/* ============================================================
                   RESET & BASE
                ============================================================ */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --primary: #0a4b7a;
            --primary-dark: #062d4a;
            --primary-light: #1a6ba0;
            --secondary: #e8a838;
            --secondary-light: #f5c542;
            --light: #f4f9ff;
            --dark: #0f1a26;
            --gray: #6b7f94;
            --gray-light: #e8edf3;
            --white: #ffffff;
            --shadow: 0 20px 60px rgba(10, 75, 122, 0.10);
            --shadow-hover: 0 30px 80px rgba(10, 75, 122, 0.18);
            --radius: 20px;
            --radius-sm: 12px;
            --transition: 0.6s cubic-bezier(0.23, 1, 0.32, 1);
            --whatsapp: #25D366;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
            background: var(--light);
            color: var(--dark);
            line-height: 1.7;
            overflow-x: hidden;
        }

        a {
            text-decoration: none;
            color: inherit;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        ul {
            list-style: none;
        }

        .container {
            width: 92%;
            max-width: 1240px;
            margin: 0 auto;
            padding: 0 16px;
        }

        /* ============================================================
                   BUTTONS
                ============================================================ */
        .btn {
            display: inline-block;
            padding: 14px 38px;
            background: var(--secondary);
            color: var(--dark);
            font-weight: 700;
            border-radius: 50px;
            border: none;
            cursor: pointer;
            transition: var(--transition);
            font-size: 1rem;
            text-align: center;
            box-shadow: 0 4px 24px rgba(232, 168, 56, 0.40);
            letter-spacing: 0.3px;
            position: relative;
            overflow: hidden;
        }
        .btn::after {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 0;
            height: 0;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.35);
            transform: translate(-50%, -50%);
            transition: width 0.6s, height 0.6s;
        }
        .btn:hover::after {
            width: 400px;
            height: 400px;
        }
        .btn:hover {
            background: var(--secondary-light);
            transform: translateY(-3px) scale(1.02);
            box-shadow: 0 8px 40px rgba(232, 168, 56, 0.55);
        }

        .btn-primary {
            background: var(--primary);
            color: var(--white);
            box-shadow: 0 4px 24px rgba(10, 75, 122, 0.35);
        }
        .btn-primary:hover {
            background: var(--primary-light);
            box-shadow: 0 8px 40px rgba(10, 75, 122, 0.50);
        }

        .btn-outline {
            background: transparent;
            color: var(--white);
            border: 2px solid rgba(255, 255, 255, 0.35);
            box-shadow: none;
        }
        .btn-outline:hover {
            background: rgba(255, 255, 255, 0.10);
            border-color: var(--white);
            transform: translateY(-3px);
            box-shadow: 0 8px 32px rgba(255, 255, 255, 0.10);
        }

        .btn-whatsapp {
            background: var(--whatsapp);
            color: var(--white);
            box-shadow: 0 4px 24px rgba(37, 211, 102, 0.40);
            display: inline-flex;
            align-items: center;
            gap: 10px;
        }
        .btn-whatsapp:hover {
            background: #1ebe5c;
            box-shadow: 0 8px 40px rgba(37, 211, 102, 0.55);
        }
        .btn-whatsapp::after {
            background: rgba(255, 255, 255, 0.25);
        }

        /* ============================================================
                   TOP BAR
                ============================================================ */
        .top-bar {
            background: var(--primary-dark);
            color: var(--white);
            padding: 10px 0;
            font-size: 0.85rem;
            position: relative;
            z-index: 1001;
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        }
        .top-bar .container {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: center;
            gap: 8px 20px;
        }
        .top-bar a {
            color: var(--secondary-light);
            transition: var(--transition);
        }
        .top-bar a:hover {
            color: var(--white);
        }
        .top-bar .contact-info {
            display: flex;
            flex-wrap: wrap;
            gap: 8px 24px;
            font-size: 0.85rem;
        }
        .top-bar .contact-info span {
            display: flex;
            align-items: center;
            gap: 6px;
        }
        .top-bar .social-links {
            display: flex;
            gap: 14px;
        }
        .top-bar .social-links a {
            color: var(--white);
            display: flex;
            align-items: center;
            justify-content: center;
            transition: var(--transition);
            opacity: 0.8;
        }
        .top-bar .social-links a svg {
            width: 18px;
            height: 18px;
        }
        .top-bar .social-links a:hover {
            opacity: 1;
            color: var(--secondary-light);
            transform: scale(1.1);
        }

        /* ============================================================
                   HEADER
                ============================================================ */
        header {
            background: rgba(255, 255, 255, 0.92);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            box-shadow: 0 2px 40px rgba(0, 0, 0, 0.06);
            position: sticky;
            top: 0;
            z-index: 1000;
            border-bottom: 1px solid rgba(255, 255, 255, 0.3);
            transition: var(--transition);
        }
        header.scrolled {
            background: rgba(255, 255, 255, 0.97);
            box-shadow: 0 4px 50px rgba(0, 0, 0, 0.08);
        }
        header .container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding-top: 12px;
            padding-bottom: 12px;
            flex-wrap: wrap;
            gap: 12px 20px;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 0;
            font-weight: 800;
            flex-shrink: 0;
        }
        .logo-img {
            width: auto;
            height: 60px;
            border-radius: 0;
            background: none;
            display: flex;
            align-items: center;
        }
        .logo-img img {
            height: 60px;
            width: auto;
            display: block;
        }

        nav {
            display: flex;
            align-items: center;
            gap: 6px 20px;
            flex-wrap: wrap;
        }
        nav a {
            font-weight: 500;
            font-size: 0.9rem;
            padding: 6px 4px;
            border-bottom: 2px solid transparent;
            transition: var(--transition);
            color: var(--dark);
            position: relative;
        }
        nav a::after {
            content: '';
            position: absolute;
            bottom: -2px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--secondary);
            transition: var(--transition);
        }
        nav a:hover::after,
        nav a.active::after {
            width: 100%;
        }
        nav a:hover,
        nav a.active {
            color: var(--primary);
        }

        .nav-cta {
            background: var(--secondary);
            color: var(--dark) !important;
            padding: 8px 28px !important;
            border-radius: 50px;
            border-bottom: none !important;
            font-weight: 700;
            box-shadow: 0 4px 16px rgba(232, 168, 56, 0.30);
            transition: var(--transition);
        }
        .nav-cta::after {
            display: none !important;
        }
        .nav-cta:hover {
            background: var(--secondary-light) !important;
            transform: translateY(-2px) scale(1.02);
            box-shadow: 0 8px 28px rgba(232, 168, 56, 0.45);
            border-bottom: none !important;
        }

        .hamburger {
            display: none;
            flex-direction: column;
            gap: 5px;
            cursor: pointer;
            background: none;
            border: none;
            padding: 4px;
        }
        .hamburger span {
            display: block;
            width: 28px;
            height: 2.5px;
            background: var(--primary);
            border-radius: 3px;
            transition: var(--transition);
        }
        .hamburger.open span:nth-child(1) {
            transform: rotate(45deg) translate(5px, 5px);
        }
        .hamburger.open span:nth-child(2) {
            opacity: 0;
        }
        .hamburger.open span:nth-child(3) {
            transform: rotate(-45deg) translate(5px, -5px);
        }

        /* ============================================================
                   PAGE BANNER
                ============================================================ */
        .page-banner {
            background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 50%, var(--primary-light) 100%);
            color: var(--white);
            padding: 70px 0 60px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        .page-banner::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -20%;
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, rgba(232, 168, 56, 0.10) 0%, transparent 70%);
            border-radius: 50%;
            pointer-events: none;
        }
        .page-banner::after {
            content: '';
            position: absolute;
            bottom: -40%;
            left: -10%;
            width: 500px;
            height: 500px;
            background: radial-gradient(circle, rgba(232, 168, 56, 0.07) 0%, transparent 70%);
            border-radius: 50%;
            pointer-events: none;
        }
        .page-banner .container {
            position: relative;
            z-index: 1;
        }
        .page-banner .badge {
            display: inline-block;
            background: rgba(232, 168, 56, 0.20);
            color: var(--secondary-light);
            padding: 6px 22px;
            border-radius: 50px;
            font-size: 0.75rem;
            font-weight: 600;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            margin-bottom: 16px;
            border: 1px solid rgba(232, 168, 56, 0.20);
        }
        .page-banner h1 {
            font-size: 3.2rem;
            font-weight: 800;
            line-height: 1.15;
            margin-bottom: 12px;
        }
        .page-banner h1 span {
            color: var(--secondary);
        }
        .page-banner p {
            opacity: 0.85;
            font-size: 1.15rem;
            max-width: 640px;
            margin: 0 auto;
            font-weight: 400;
        }

        /* ── Particles ── */
        .particles {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            overflow: hidden;
            z-index: 0;
        }
        .particle {
            position: absolute;
            width: 6px;
            height: 6px;
            background: rgba(255, 255, 255, 0.12);
            border-radius: 50%;
            animation: floatParticle 20s infinite ease-in-out;
        }
        .particle:nth-child(1) {
            left: 10%;
            top: 20%;
            animation-duration: 18s;
            animation-delay: 0s;
        }
        .particle:nth-child(2) {
            left: 25%;
            top: 60%;
            animation-duration: 22s;
            animation-delay: 2s;
            width: 8px;
            height: 8px;
        }
        .particle:nth-child(3) {
            left: 50%;
            top: 15%;
            animation-duration: 16s;
            animation-delay: 4s;
            width: 4px;
            height: 4px;
        }
        .particle:nth-child(4) {
            left: 70%;
            top: 70%;
            animation-duration: 24s;
            animation-delay: 1s;
            width: 10px;
            height: 10px;
        }
        .particle:nth-child(5) {
            left: 85%;
            top: 30%;
            animation-duration: 20s;
            animation-delay: 3s;
            width: 5px;
            height: 5px;
        }
        .particle:nth-child(6) {
            left: 40%;
            top: 85%;
            animation-duration: 19s;
            animation-delay: 5s;
            width: 7px;
            height: 7px;
        }
        @keyframes floatParticle {
            0%,
            100% {
                transform: translateY(0) translateX(0) scale(1);
                opacity: 0.3;
            }
            25% {
                transform: translateY(-40px) translateX(20px) scale(1.2);
                opacity: 0.8;
            }
            50% {
                transform: translateY(-10px) translateX(-30px) scale(0.8);
                opacity: 0.4;
            }
            75% {
                transform: translateY(30px) translateX(10px) scale(1.1);
                opacity: 0.7;
            }
        }

        /* ============================================================
                   SECTION TITLES
                ============================================================ */
        .section-title {
            font-size: 2.8rem;
            font-weight: 800;
            margin-bottom: 8px;
            color: var(--primary);
            letter-spacing: -0.02em;
        }
        .section-title span {
            color: var(--secondary);
        }
        .section-subtitle {
            color: var(--gray);
            font-size: 1.1rem;
            margin-bottom: 48px;
            max-width: 640px;
        }
        .section-padding {
            padding: 80px 0;
        }
        .section-white {
            background: var(--white);
        }
        .section-light {
            background: var(--light);
        }

        /* ============================================================
                   REVEAL ANIMATIONS
                ============================================================ */
        .reveal {
            opacity: 0;
            transform: translateY(50px);
            transition: opacity 0.8s cubic-bezier(0.23, 1, 0.32, 1),
                transform 0.8s cubic-bezier(0.23, 1, 0.32, 1);
        }
        .reveal.visible {
            opacity: 1;
            transform: translateY(0);
        }
        .reveal-scale {
            opacity: 0;
            transform: scale(0.92);
            transition: opacity 0.8s cubic-bezier(0.23, 1, 0.32, 1),
                transform 0.8s cubic-bezier(0.23, 1, 0.32, 1);
        }
        .reveal-scale.visible {
            opacity: 1;
            transform: scale(1);
        }

        .stagger>* {
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 0.7s ease, transform 0.7s ease;
        }
        .stagger.visible>*:nth-child(1) {
            transition-delay: 0.05s;
        }
        .stagger.visible>*:nth-child(2) {
            transition-delay: 0.10s;
        }
        .stagger.visible>*:nth-child(3) {
            transition-delay: 0.15s;
        }
        .stagger.visible>*:nth-child(4) {
            transition-delay: 0.20s;
        }
        .stagger.visible>*:nth-child(5) {
            transition-delay: 0.25s;
        }
        .stagger.visible>* {
            opacity: 1;
            transform: translateY(0);
        }

        /* ============================================================
                   CONTACT SECTION
                ============================================================ */
        .section-contact {
            padding: 80px 0;
            background: var(--white);
            position: relative;
        }
        .section-contact::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: radial-gradient(ellipse at 10% 20%, rgba(10, 75, 122, 0.02) 0%, transparent 70%);
            pointer-events: none;
        }

        .contact-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 50px;
            align-items: start;
        }

        /* ── Contact Details ── */
        .contact-details {
            display: flex;
            flex-direction: column;
            gap: 20px;
            opacity: 0;
            transform: translateY(60px);
            transition: opacity 0.8s cubic-bezier(0.23, 1, 0.32, 1),
                transform 0.8s cubic-bezier(0.23, 1, 0.32, 1);
        }
        .contact-details.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .contact-details .detail-card {
            background: var(--white);
            padding: 24px 28px;
            border-radius: var(--radius-sm);
            box-shadow: var(--shadow);
            border: 1px solid rgba(10, 75, 122, 0.06);
            display: flex;
            align-items: center;
            gap: 18px;
            transition: var(--transition);
            position: relative;
            overflow: hidden;
        }
        .contact-details .detail-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 4px;
            height: 100%;
            background: linear-gradient(180deg, var(--secondary), var(--secondary-light));
            opacity: 0;
            transition: var(--transition);
        }
        .contact-details .detail-card:hover::before {
            opacity: 1;
        }
        .contact-details .detail-card:hover {
            box-shadow: var(--shadow-hover);
            transform: translateY(-4px);
            border-color: rgba(232, 168, 56, 0.15);
        }

        .contact-details .detail-card .icon {
            font-size: 1.8rem;
            width: 52px;
            height: 52px;
            border-radius: 14px;
            background: linear-gradient(135deg, rgba(232, 168, 56, 0.10), rgba(232, 168, 56, 0.03));
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            transition: var(--transition);
        }
        .contact-details .detail-card:hover .icon {
            background: linear-gradient(135deg, rgba(232, 168, 56, 0.20), rgba(232, 168, 56, 0.06));
            transform: scale(1.05);
        }

        .contact-details .detail-card .info {
            flex: 1;
        }
        .contact-details .detail-card .info .label {
            font-size: 0.75rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.8px;
            color: var(--gray);
            margin-bottom: 2px;
        }
        .contact-details .detail-card .info .value {
            font-size: 1rem;
            font-weight: 500;
            color: var(--dark);
        }
        .contact-details .detail-card .info .value a {
            color: var(--primary);
            transition: var(--transition);
        }
        .contact-details .detail-card .info .value a:hover {
            color: var(--secondary);
        }

        .contact-details .detail-card.highlight {
            border-left: 4px solid var(--secondary);
            background: linear-gradient(135deg, rgba(232, 168, 56, 0.04), rgba(232, 168, 56, 0.01));
        }

        /* ── WhatsApp Floating Button ── */
        .whatsapp-float {
            position: fixed;
            bottom: 30px;
            right: 30px;
            z-index: 999;
            background: var(--whatsapp);
            color: var(--white);
            width: 64px;
            height: 64px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2.2rem;
            box-shadow: 0 8px 32px rgba(37, 211, 102, 0.45);
            transition: var(--transition);
            animation: pulseWhatsApp 2.5s infinite;
            text-decoration: none;
        }
        .whatsapp-float:hover {
            transform: scale(1.1);
            box-shadow: 0 12px 48px rgba(37, 211, 102, 0.60);
        }
        @keyframes pulseWhatsApp {
            0%,
            100% {
                box-shadow: 0 8px 32px rgba(37, 211, 102, 0.45);
            }
            50% {
                box-shadow: 0 8px 48px rgba(37, 211, 102, 0.75);
            }
        }
        .whatsapp-float .tooltip {
            position: absolute;
            right: 74px;
            background: var(--dark);
            color: var(--white);
            padding: 6px 16px;
            border-radius: 8px;
            font-size: 0.8rem;
            font-weight: 500;
            white-space: nowrap;
            opacity: 0;
            visibility: hidden;
            transition: var(--transition);
        }
        .whatsapp-float:hover .tooltip {
            opacity: 1;
            visibility: visible;
        }
        .whatsapp-float .tooltip::after {
            content: '';
            position: absolute;
            right: -6px;
            top: 50%;
            transform: translateY(-50%);
            border-left: 6px solid var(--dark);
            border-top: 6px solid transparent;
            border-bottom: 6px solid transparent;
        }

        /* ── Contact Form ── */
        .contact-form-wrapper {
            background: var(--white);
            padding: 44px 40px;
            border-radius: var(--radius);
            box-shadow: var(--shadow);
            border: 1px solid rgba(10, 75, 122, 0.06);
            transition: var(--transition);
            opacity: 0;
            transform: translateY(60px);
            transition: opacity 0.8s cubic-bezier(0.23, 1, 0.32, 1) 0.15s,
                transform 0.8s cubic-bezier(0.23, 1, 0.32, 1) 0.15s,
                box-shadow 0.5s ease;
        }
        .contact-form-wrapper.visible {
            opacity: 1;
            transform: translateY(0);
        }
        .contact-form-wrapper:hover {
            box-shadow: var(--shadow-hover);
        }

        .contact-form-wrapper .form-header {
            display: flex;
            align-items: center;
            gap: 14px;
            margin-bottom: 28px;
        }
        .contact-form-wrapper .form-header .icon {
            font-size: 2rem;
            width: 52px;
            height: 52px;
            border-radius: 14px;
            background: linear-gradient(135deg, rgba(10, 75, 122, 0.10), rgba(10, 75, 122, 0.03));
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }
        .contact-form-wrapper .form-header h2 {
            font-size: 1.6rem;
            font-weight: 700;
            color: var(--primary);
            letter-spacing: -0.01em;
        }
        .contact-form-wrapper .form-header h2 span {
            color: var(--secondary);
        }
        .contact-form-wrapper .form-header p {
            color: var(--gray);
            font-size: 0.9rem;
            margin-top: -4px;
        }

        .form-group {
            margin-bottom: 22px;
        }
        .form-group label {
            display: block;
            font-weight: 600;
            font-size: 0.9rem;
            margin-bottom: 6px;
            color: var(--dark);
        }
        .form-group label .required {
            color: #e74c3c;
            margin-left: 2px;
        }
        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 14px 18px;
            border: 2px solid #e8edf3;
            border-radius: var(--radius-sm);
            font-size: 1rem;
            transition: var(--transition);
            background: var(--white);
            color: var(--dark);
            font-family: inherit;
            outline: none;
        }
        .form-group input:focus,
        .form-group textarea:focus {
            border-color: var(--primary);
            box-shadow: 0 0 0 4px rgba(10, 75, 122, 0.08);
        }
        .form-group input::placeholder,
        .form-group textarea::placeholder {
            color: #aab8c9;
        }
        .form-group textarea {
            resize: vertical;
            min-height: 120px;
        }

        .form-group .captcha-box {
            display: flex;
            align-items: center;
            gap: 14px;
            padding: 12px 18px;
            border: 2px solid #e8edf3;
            border-radius: var(--radius-sm);
            background: var(--white);
            transition: var(--transition);
        }
        .form-group .captcha-box:hover {
            border-color: var(--primary);
        }
        .form-group .captcha-box input[type="checkbox"] {
            width: 20px;
            height: 20px;
            accent-color: var(--primary);
            cursor: pointer;
            flex-shrink: 0;
            margin: 0;
        }
        .form-group .captcha-box label {
            margin-bottom: 0;
            font-weight: 500;
            cursor: pointer;
            font-size: 0.95rem;
            color: var(--dark);
        }

        .form-submit {
            display: flex;
            flex-direction: column;
            gap: 12px;
        }
        .form-submit .btn {
            width: 100%;
            padding: 16px;
            font-size: 1.05rem;
        }
        .form-submit .btn-whatsapp {
            width: 100%;
            padding: 16px;
            font-size: 1.05rem;
            justify-content: center;
        }

        /* ============================================================
                   MAP SECTION - FULL WIDTH WITH EMBED
                ============================================================ */
        .section-map {
            padding: 0 0 80px;
            background: var(--white);
        }
        .section-map .map-container {
            border-radius: var(--radius);
            overflow: hidden;
            box-shadow: var(--shadow);
            border: 1px solid rgba(10, 75, 122, 0.06);
            transition: var(--transition);
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 0.7s ease, transform 0.7s ease, box-shadow 0.3s ease;
            position: relative;
        }
        .section-map .map-container.visible {
            opacity: 1;
            transform: translateY(0);
        }
        .section-map .map-container:hover {
            box-shadow: var(--shadow-hover);
        }
        .section-map .map-container iframe {
            width: 100%;
            height: 400px;
            display: block;
            border: none;
        }
        .section-map .map-container .map-overlay {
            position: absolute;
            bottom: 20px;
            left: 50%;
            transform: translateX(-50%);
            background: rgba(10, 75, 122, 0.85);
            backdrop-filter: blur(10px);
            color: var(--white);
            padding: 10px 24px;
            border-radius: 50px;
            font-size: 0.85rem;
            font-weight: 600;
            display: flex;
            align-items: center;
            gap: 10px;
            white-space: nowrap;
            pointer-events: none;
            border: 1px solid rgba(255, 255, 255, 0.10);
        }
        .section-map .map-container .map-overlay span {
            font-size: 1.1rem;
        }

        /* ============================================================
                   CTA SECTION
                ============================================================ */
        .section-cta {
            padding: 80px 0;
            background: linear-gradient(135deg, var(--primary-dark), var(--primary));
            color: var(--white);
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        .section-cta::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -20%;
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, rgba(232, 168, 56, 0.08) 0%, transparent 70%);
            border-radius: 50%;
            pointer-events: none;
        }
        .section-cta .container {
            position: relative;
            z-index: 1;
        }
        .section-cta h2 {
            font-size: 2.6rem;
            font-weight: 800;
            margin-bottom: 12px;
        }
        .section-cta h2 span {
            color: var(--secondary);
        }
        .section-cta p {
            opacity: 0.85;
            font-size: 1.15rem;
            max-width: 560px;
            margin: 0 auto 32px;
        }
        .section-cta .btn-group {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 16px;
        }

        /* ============================================================
                   FOOTER
                ============================================================ */
        footer {
            background: var(--primary-dark);
            color: rgba(255, 255, 255, 0.85);
            padding: 50px 0 20px;
        }
        footer .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 40px;
            margin-bottom: 30px;
        }
        footer h4 {
            color: var(--white);
            font-size: 1.1rem;
            margin-bottom: 16px;
            font-weight: 600;
        }
        footer .footer-about p {
            font-size: 0.95rem;
            opacity: 0.85;
            margin-bottom: 12px;
        }
        footer .footer-about .logo-text {
            font-size: 1.4rem;
            font-weight: 800;
            color: var(--white);
            margin-bottom: 8px;
        }
        footer .footer-about .logo-text span {
            color: var(--secondary);
        }
        footer ul li {
            padding: 4px 0;
        }
        footer ul li a {
            opacity: 0.8;
            transition: var(--transition);
            font-size: 0.95rem;
        }
        footer ul li a:hover {
            opacity: 1;
            color: var(--secondary-light);
            padding-left: 6px;
        }
        footer .footer-contact li {
            display: flex;
            gap: 10px;
            align-items: baseline;
        }
        footer .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.08);
            padding-top: 20px;
            text-align: center;
            font-size: 0.9rem;
            opacity: 0.7;
        }

        /* ============================================================
                   RESPONSIVE
                ============================================================ */
        @media (max-width: 992px) {
            .page-banner h1 {
                font-size: 2.6rem;
            }
            .contact-grid {
                grid-template-columns: 1fr;
                gap: 40px;
            }
            .section-map .map-container iframe {
                height: 320px;
            }
            footer .footer-grid {
                grid-template-columns: 1fr 1fr;
            }
        }

        @media (max-width: 768px) {
            .top-bar .container {
                flex-direction: column;
                align-items: center;
                text-align: center;
            }
            .top-bar .contact-info {
                justify-content: center;
            }
            .logo {
                flex-shrink: 1;
                min-width: 0;
            }
            .logo-img {
                height: 52px;
                min-width: 0;
            }
            .logo-img img {
                height: 52px;
                width: auto;
                max-width: 100%;
            }
            .hamburger {
                display: flex;
                flex-shrink: 0;
            }
            nav {
                display: none;
                flex-direction: column;
                width: 100%;
                padding: 16px 0 8px;
                gap: 10px;
            }
            nav.open {
                display: flex;
            }
            nav a {
                width: 100%;
                text-align: center;
                padding: 8px 0;
            }
            .nav-cta {
                width: 100%;
                text-align: center;
            }

            .page-banner {
                padding: 50px 0 40px;
            }
            .page-banner h1 {
                font-size: 2rem;
            }
            .section-title {
                font-size: 2rem;
            }
            .section-padding {
                padding: 60px 0;
            }

            .contact-details .detail-card {
                padding: 18px 20px;
                flex-wrap: wrap;
            }
            .contact-form-wrapper {
                padding: 28px 20px;
            }
            .contact-form-wrapper .form-header {
                flex-direction: column;
                text-align: center;
            }
            .contact-form-wrapper .form-header h2 {
                font-size: 1.4rem;
            }

            .section-map .map-container iframe {
                height: 260px;
            }
            .section-map .map-container .map-overlay {
                font-size: 0.75rem;
                padding: 6px 16px;
                bottom: 12px;
                white-space: normal;
            }

            .whatsapp-float {
                width: 56px;
                height: 56px;
                font-size: 1.8rem;
                bottom: 20px;
                right: 20px;
            }
            .whatsapp-float .tooltip {
                display: none;
            }

            .section-cta h2 {
                font-size: 1.8rem;
            }

            footer .footer-grid {
                grid-template-columns: 1fr;
                gap: 30px;
            }
        }

        @media (max-width: 480px) {
            .logo-img {
                height: 46px;
            }
            .logo-img img {
                height: 46px;
            }

            .page-banner h1 {
                font-size: 1.6rem;
            }
            .contact-details .detail-card {
                flex-direction: column;
                text-align: center;
            }
            .contact-details .detail-card .info .value {
                font-size: 0.95rem;
            }
            .section-map .map-container iframe {
                height: 200px;
            }
            .section-map .map-container .map-overlay {
                font-size: 0.65rem;
                padding: 4px 12px;
                bottom: 8px;
            }
            .whatsapp-float {
                width: 48px;
                height: 48px;
                font-size: 1.5rem;
                bottom: 16px;
                right: 16px;
            }
        }
