/* ========================================
   CSS VARIABLES - Theme Colors
======================================== */
:root {
    /* Theme Colors */
    --primary-cyan: #0ccce9;
    --primary-purple: #4943c4;
    --gradient-primary: linear-gradient(135deg, #0ccce9 0%, #4943c4 100%);
    --gradient-reverse: linear-gradient(135deg, #4943c4 0%, #0ccce9 100%);

    /* Accent Colors */
    --cyan-light: #5dd9ec;
    --cyan-dark: #0aacca;
    --purple-light: #6b65d8;
    --purple-dark: #3a35a0;

    /* Neutral Colors */
    --white: #ffffff;
    --gray-50: #f8fafc;
    --gray-100: #f1f5f9;
    --gray-200: #e2e8f0;
    --gray-300: #cbd5e1;
    --gray-400: #94a3b8;
    --gray-500: #64748b;
    --gray-600: #475569;
    --gray-700: #334155;
    --gray-800: #1e293b;
    --gray-900: #0f172a;

    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    --shadow-glow: 0 0 30px rgba(12, 204, 233, 0.3);

    /* Border Radius */
    --radius-sm: 0.375rem;
    --radius-md: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;
    --radius-2xl: 1.5rem;
    --radius-full: 9999px;

    /* Transitions */
    --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-base: 300ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 500ms cubic-bezier(0.4, 0, 0.2, 1);
}

/* ========================================
   RESET & BASE STYLES
======================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--gray-700);
    background: var(--white);
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: var(--primary-cyan);
    transition: color var(--transition-base);
}

a:hover {
    color: var(--primary-purple);
}

/* ========================================
   TOP NAVIGATION (Same as instruction page)
======================================== */
.top-nav {
    background: var(--gray-900);
    padding: 0.75rem 0;
    border-bottom: 2px solid var(--primary-cyan);
}

.top-nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-section {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo-img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.logo-text {
    font-size: 1.25rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.logo-sequre {
    color: var(--white);
}

.logo-247 {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.network-badges {
    display: flex;
    gap: 1rem;
}

.network-badge {
    position: relative;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(12, 204, 233, 0.3);
    border-radius: var(--radius-lg);
    color: var(--white);
    font-size: 0.875rem;
    font-weight: 600;
    cursor: help;
    transition: all var(--transition-base);
}

.network-badge:hover {
    background: rgba(12, 204, 233, 0.1);
    border-color: var(--primary-cyan);
    transform: translateY(-2px);
}

.network-badge i {
    color: var(--primary-cyan);
}

.network-badge::after {
    content: attr(data-tooltip);
    position: absolute;
    bottom: calc(100% + 0.5rem);
    left: 50%;
    transform: translateX(-50%) scale(0.9);
    background: var(--gray-900);
    color: var(--white);
    padding: 0.75rem 1rem;
    border-radius: var(--radius-md);
    font-size: 0.75rem;
    font-weight: 400;
    width: 250px;
    text-align: center;
    line-height: 1.4;
    opacity: 0;
    pointer-events: none;
    transition: all var(--transition-base);
    border: 1px solid var(--primary-cyan);
    box-shadow: var(--shadow-xl);
    z-index: 1000;
}

.network-badge:hover::after {
    opacity: 1;
    transform: translateX(-50%) scale(1);
}

/* ========================================
   MAIN HEADER (Same as instruction page)
======================================== */
.main-header {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-base);
}

.main-header.scrolled {
    box-shadow: var(--shadow-lg);
}

.main-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 0.375rem;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-toggle span {
    width: 25px;
    height: 3px;
    background: var(--gray-700);
    border-radius: var(--radius-full);
    transition: all var(--transition-base);
}

.mobile-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
}

.mobile-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
    margin: 0;
}

.nav-links li a {
    color: var(--gray-700);
    font-weight: 600;
    font-size: 0.9375rem;
    position: relative;
    padding: 0.5rem 0;
    transition: color var(--transition-base);
}

.nav-links li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: width var(--transition-base);
}

.nav-links li a:hover,
.nav-links li a.active {
    color: var(--primary-cyan);
}

.nav-links li a:hover::after,
.nav-links li a.active::after {
    width: 100%;
}

.cta-button {
    padding: 0.75rem 1.5rem;
    background: var(--gradient-primary);
    color: var(--white);
    font-weight: 700;
    border-radius: var(--radius-lg);
    transition: all var(--transition-base);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
    color: var(--white);
}

/* ========================================
   HERO BANNER
======================================== */
.hero-banner {
    position: relative;
    padding: 8rem 0 6rem;
    /* background: var(--gradient-primary); */
    background: url(/assets/image/about-us-background-2.png);
    background-size: cover;
    overflow: hidden;

}

.hero-banner-service {
    position: relative;
    padding: 8rem 0 6rem;
    /* background: var(--gradient-primary); */
    background: url(/assets/image/service-banner.png);
    background-size: cover;
    overflow: hidden;
    margin-bottom: 20px;
    height: 500px;

}

.hero-banner-price {
    position: relative;
    padding: 8rem 0 6rem;
    /* background: var(--gradient-primary); */
    background: url(/assets/image/hero-banner-price.jpeg);
    background-size: cover;
    overflow: hidden;
    height: 600px;

}

.hero-banner-contact {
    position: relative;
    padding: 8rem 0 6rem;
    /* background: var(--gradient-primary); */
    background: url(/assets/image/hero-banner-contact.png);
    background-size: cover;
    overflow: hidden;
    height: 400px;
    margin-bottom: 20px;
}

.hero-wave-top {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    transform: rotate(180deg);
}

.hero-wave-top svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 60px;
    color: #ffffff;
}

.hero-background {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--white);
    max-width: 800px;
    margin: 0 auto;
    animation: fadeInUp 0.8s ease-out;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.625rem 1.25rem;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.hero-title {
    /* font-size: 3.5rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.2); */
    margin-left: 15%;
    color: #fff;
    font-size: 62px;
}

.hero-description {
    font-size: 1.125rem;
    line-height: 1.7;
    opacity: 0.95;
    max-width: 700px;
    margin: 0 auto;
}

/* ========================================
   COMPANY OVERVIEW SECTION
======================================== */
.company-overview {
    padding: 6rem 0;
    background: var(--white);
}

.overview-card {
    background: var(--white);
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-2xl);
    padding: 3rem;
    box-shadow: var(--shadow-lg);
}

.section-header-inline {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.section-icon {
    width: 4rem;
    height: 4rem;
    background: var(--gradient-primary);
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 2rem;
    flex-shrink: 0;
    box-shadow: var(--shadow-lg);
}

.section-title {
    font-size: 2rem;
    font-weight: 900;
    color: var(--gray-900);
    margin-bottom: 0.5rem;
}

.title-underline {
    width: 80px;
    height: 4px;
    background: var(--gradient-primary);
    border-radius: var(--radius-full);
}

.overview-content {
    margin-left: 5.5rem;
}

.lead-text {
    font-size: 1.125rem;
    font-weight: 500;
    color: var(--gray-800);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.overview-content p {
    color: var(--gray-600);
    line-height: 1.8;
    margin-bottom: 1.25rem;
}

.highlight-text {
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(12, 204, 233, 0.05), rgba(73, 67, 196, 0.05));
    border-left: 4px solid var(--primary-cyan);
    border-radius: var(--radius-lg);
    color: var(--gray-800);
    font-weight: 500;
}

/* ========================================
   WHO WE ARE SECTION
======================================== */
.who-we-are {
    padding: 6rem 0;
    background: var(--gray-50);
}

.image-wrapper {
    position: relative;
}

.image-frame {
    position: relative;
    z-index: 2;
    border-radius: var(--radius-2xl);
    overflow: hidden;
    box-shadow: var(--shadow-2xl);
}

.main-image {
    width: 100%;
    display: block;
    transition: transform var(--transition-slow);
}

.image-frame:hover .main-image {
    transform: scale(1.05);
}

.image-decoration {
    position: absolute;
    top: -2rem;
    left: -2rem;
    width: 200px;
    height: 200px;
    background: var(--gradient-primary);
    opacity: 0.2;
    border-radius: 50%;
    z-index: 1;
}

.content-wrapper {
    padding-left: 2rem;
}

.section-label {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: linear-gradient(135deg, rgba(12, 204, 233, 0.1), rgba(73, 67, 196, 0.1));
    color: var(--primary-purple);
    border-radius: var(--radius-full);
    font-weight: 700;
    font-size: 0.875rem;
    margin-bottom: 1rem;
    border: 1px solid var(--primary-cyan);
}

.section-title-large {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--gray-900);
    line-height: 1.2;
    margin-bottom: 1rem;
}

.title-underline {
    width: 80px;
    height: 4px;
    background: var(--gradient-primary);
    border-radius: var(--radius-full);
    margin-bottom: 2rem;
}

.section-text {
    color: var(--gray-600);
    line-height: 1.8;
    margin-bottom: 1.25rem;
}

.feature-highlights {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    background: var(--white);
    border-radius: var(--radius-lg);
    border: 1px solid var(--gray-200);
    transition: all var(--transition-base);
}

.feature-item:hover {
    border-color: var(--primary-cyan);
    transform: translateX(10px);
}

.feature-item i {
    color: var(--primary-cyan);
    font-size: 1.25rem;
}

.feature-item span {
    font-weight: 600;
    color: var(--gray-700);
}

/* ========================================
   CORE VALUES SECTION
======================================== */
.core-values {
    padding: 6rem 0;
    background: var(--white);
}

.section-header-center {
    text-align: center;
    margin-bottom: 4rem;
}

.section-label-center {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: linear-gradient(135deg, rgba(12, 204, 233, 0.1), rgba(73, 67, 196, 0.1));
    color: var(--primary-purple);
    border-radius: var(--radius-full);
    font-weight: 700;
    font-size: 0.875rem;
    margin-bottom: 1rem;
    border: 1px solid var(--primary-cyan);
}

.section-title-center {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--gray-900);
    margin-bottom: 1rem;
}

.title-underline-center {
    width: 80px;
    height: 4px;
    background: var(--gradient-primary);
    border-radius: var(--radius-full);
    margin: 0 auto;
}

.value-card {
    background: var(--white);
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-2xl);
    padding: 2.5rem 2rem;
    height: 100%;
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
}

.value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform var(--transition-base);
}

.value-card:hover::before {
    transform: scaleX(1);
}

.value-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary-cyan);
    box-shadow: var(--shadow-xl);
}

.value-card.featured {
    background: var(--gradient-primary);
    border-color: transparent;
}

.value-card.featured .value-title,
.value-card.featured .value-description {
    color: var(--white);
}

.value-card.featured .value-icon {
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
}

.value-icon-wrapper {
    margin-bottom: 2rem;
}

.value-icon {
    width: 4rem;
    height: 4rem;
    background: linear-gradient(135deg, rgba(12, 204, 233, 0.1), rgba(73, 67, 196, 0.1));
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--primary-cyan);
    transition: all var(--transition-base);
}

.value-card:hover .value-icon {
    transform: scale(1.1) rotate(5deg);
}

.value-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 1rem;
}

.value-description {
    color: var(--gray-600);
    line-height: 1.7;
}

/* ========================================
   STATS SECTION
======================================== */
.stats-section {
    padding: 5rem 0;
    background: var(--gradient-primary);
}

.stat-card {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-xl);
    transition: all var(--transition-base);
}

.stat-card:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
}

.stat-icon {
    width: 4rem;
    height: 4rem;
    background: rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--white);
    flex-shrink: 0;
}

.stat-content {
    flex: 1;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--white);
    margin-bottom: 0.25rem;
    line-height: 1;
}

.stat-label {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    margin: 0;
}

/* ========================================
   CTA SECTION
======================================== */
.cta-section {
    padding: 5rem 0;
    background: var(--gray-50);
}

.cta-content {
    background: var(--white);
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-2xl);
    padding: 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    box-shadow: var(--shadow-lg);
}

.cta-title {
    font-size: 2rem;
    font-weight: 900;
    color: var(--gray-900);
    margin-bottom: 0.75rem;
}

.cta-description {
    color: var(--gray-600);
    font-size: 1.125rem;
    margin: 0;
}

.cta-actions {
    display: flex;
    gap: 1rem;
    flex-shrink: 0;
}

.cta-btn-primary,
.cta-btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: var(--radius-lg);
    font-weight: 700;
    font-size: 1rem;
    transition: all var(--transition-base);
    white-space: nowrap;
}

.cta-btn-primary {
    background: var(--gradient-primary);
    color: var(--white);
    border: none;
}

.cta-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
    color: var(--white);
}

.cta-btn-secondary {
    background: transparent;
    color: var(--primary-purple);
    border: 2px solid var(--primary-purple);
}

.cta-btn-secondary:hover {
    background: var(--primary-purple);
    color: var(--white);
}

/* ========================================
   FOOTER (Same as instruction page)
======================================== */
.main-footer {
    background: var(--gray-900);
    color: var(--white);
    padding: 4rem 0 0;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.footer-logo-img {
    width: 40px;
    height: 40px;
}

.footer-logo-text {
    font-size: 1.25rem;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-description {
    color: var(--gray-400);
    line-height: 1.7;
}

.footer-title {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 1.25rem;
    color: var(--white);
}

.footer-links,
.footer-contact {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: var(--gray-400);
    transition: all var(--transition-base);
}

.footer-links a:hover {
    color: var(--primary-cyan);
    padding-left: 0.5rem;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1rem;
    color: var(--gray-400);
}

.footer-contact i {
    color: var(--primary-cyan);
    margin-top: 0.25rem;
    flex-shrink: 0;
}

.footer-contact a {
    color: var(--gray-400);
}

.footer-contact a:hover {
    color: var(--primary-cyan);
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-links a {
    width: 2.5rem;
    height: 2.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(12, 204, 233, 0.3);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: all var(--transition-base);
}

.social-links a:hover {
    background: var(--gradient-primary);
    border-color: transparent;
    transform: translateY(-3px);
}

.newsletter-form {
    margin-top: 1rem;
}

.input-group {
    display: flex;
    margin-bottom: 1rem;
}

.input-group input {
    flex: 1;
    padding: 0.875rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-right: none;
    border-radius: var(--radius-lg) 0 0 var(--radius-lg);
    color: var(--white);
    font-size: 0.9375rem;
}

.input-group input::placeholder {
    color: var(--gray-500);
}

.input-group input:focus {
    outline: none;
    border-color: var(--primary-cyan);
}

.input-group button {
    padding: 0.875rem 1.25rem;
    background: var(--gradient-primary);
    border: none;
    border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
    color: var(--white);
    cursor: pointer;
    transition: all var(--transition-base);
}

.input-group button:hover {
    box-shadow: var(--shadow-glow);
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--gray-400);
    font-size: 0.875rem;
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    cursor: pointer;
}

.footer-bottom {
    padding: 2rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    color: var(--gray-400);
}

.footer-bottom p {
    margin: 0;
}

/* ========================================
   WHATSAPP FLOAT BUTTON
======================================== */
.whatsapp-float {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 3.5rem;
    height: 3.5rem;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 2rem;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    transition: all var(--transition-base);
    z-index: 1000;
    animation: pulse-whatsapp 2s ease-in-out infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
    color: var(--white);
}



/* ========================================
   ANIMATIONS
======================================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse-whatsapp {

    0%,
    100% {
        box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    }

    50% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.7);
    }
}

/* ========================================
   RESPONSIVE DESIGN
======================================== */
@media (max-width: 1368px) {
    .hero-banner-price {
        height: 415px !important;
    }

    .hero-banner-service {

        height: 415px;

    }

    .hero-banner-contact {

        height: 415px;

    }
}

@media (max-width: 991px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .section-title,
    .section-title-large,
    .section-title-center {
        font-size: 2rem;
    }

    .network-badges {
        gap: 0.5rem;
    }

    .network-badge span {
        display: none;
    }

    .network-badge {
        padding: 0.5rem;
    }

    .overview-content {
        margin-left: 0;
        margin-top: 2rem;
    }

    .section-header-inline {
        flex-direction: column;
        align-items: flex-start;
    }

    .content-wrapper {
        padding-left: 0;
        margin-top: 3rem;
    }

    .cta-content {
        flex-direction: column;
        text-align: center;
    }

    .cta-actions {
        width: 100%;
        flex-direction: column;
    }

    .cta-btn-primary,
    .cta-btn-secondary {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 767px) {
    .mobile-toggle {
        display: flex;
    }

    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 1rem;
        box-shadow: var(--shadow-lg);
        transform: translateY(-100%);
        opacity: 0;
        pointer-events: none;
        transition: all var(--transition-base);
    }

    .nav-links.active {
        transform: translateY(0);
        opacity: 1;
        pointer-events: all;
    }

    .nav-links li {
        width: 100%;
    }

    .nav-links li a {
        display: block;
        padding: 0.75rem 1rem;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-description {
        font-size: 1rem;
    }

    .overview-card {
        padding: 2rem 1.5rem;
    }

    .value-card {
        padding: 2rem 1.5rem;
    }

    .stat-card {
        flex-direction: column;
        text-align: center;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .whatsapp-float {
        bottom: 1rem;
        right: 1rem;
        width: 3rem;
        height: 3rem;
        font-size: 1.75rem;
    }
}

@media (max-width: 480px) {
    .top-nav {
        padding: 0.5rem 0;
    }

    .logo-img {
        width: 32px;
        height: 32px;
    }

    .logo-text {
        font-size: 1rem;
    }

    .network-badges {
        display: none;
    }

    .hero-banner {
        padding: 6rem 0 4rem;
    }

    .hero-title {
        font-size: 1.75rem;
    }

    .section-title,
    .section-title-large,
    .section-title-center,
    .cta-title {
        font-size: 1.75rem;
    }

    .overview-card,
    .cta-content {
        padding: 1.5rem;
    }

    .stat-number {
        font-size: 2rem;
    }

    .hero-banner {
        background: url(/assets/image/about-us-banner.png);
        background-size: cover;
    }

    .navpadd {
        padding: 0 !important;
        height: 60px;
    }

    .hero-banner-service {

        background: url(/assets/image/service-banner-mobile.png);
        background-size: cover;

    }

    .hero-banner-price {

        background: url(/assets/image/prince-banner-mobile.png);
        background-size: cover;

    }

    .hero-banner-contact {

        background: url(/assets/image/contact-us-banner-mobile.png);
        background-size: cover;

    }

}