* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --gold: #d4af37;
            --gold-dark: #b8941f;
            --navy: #1a2332;
            --navy-light: #2d3e50;
            --cream: #faf8f5;
            --white: #ffffff;
            --text: #333333;
        }

        body {
            font-family: 'Montserrat', sans-serif;
            color: var(--text);
            line-height: 1.7;
            background: var(--white);
        }

        h1, h2, h3, h4 {
            font-family: 'Playfair Display', serif;
            font-weight: 600;
        }

        .container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 3rem;
        }

        /* Page Header */
        .page-header {
            margin-top: 70px;
            height: 70vh;
            background: linear-gradient(rgba(26, 35, 50, 0.7), rgba(26, 35, 50, 0.5)),
                        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1920 800"><rect fill="%231a2332" width="1920" height="800"/><circle cx="960" cy="400" r="300" fill="%23d4af37" opacity="0.05"/></svg>');
            background-size: cover;
            background-position: center;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: var(--white);
            position: relative;
        }

        .page-header::before {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 150px;
            background: linear-gradient(to bottom, transparent, var(--white));
        }

        .page-header-content {
            position: relative;
            z-index: 2;
        }

        .page-header h1 {
            font-size: 5rem;
            margin-bottom: 1.5rem;
            letter-spacing: 8px;
        }

        .page-header-divider {
            width: 120px;
            height: 2px;
            background: var(--gold);
            margin: 2rem auto;
        }

        .page-header p {
            font-size: 1.3rem;
            letter-spacing: 4px;
            color: rgba(255,255,255,0.9);
            text-transform: uppercase;
            font-weight: 300;
        }

        /* Contact Section */
        .contact-section {
            padding: 8rem 0;
        }

        .contact-grid {
            display: grid;
            grid-template-columns: 1fr 1.3fr;
            gap: 5rem;
            align-items: start;
        }

        .contact-info {
            background: var(--navy);
            color: var(--white);
            padding: 4rem 3rem;
        }

        .contact-info h2 {
            font-size: 2.5rem;
            color: var(--gold);
            margin-bottom: 2rem;
        }

        .contact-item {
            margin-bottom: 3rem;
            padding-bottom: 3rem;
            border-bottom: 1px solid rgba(212, 175, 55, 0.2);
        }

        .contact-item:last-child {
            border-bottom: none;
            margin-bottom: 0;
            padding-bottom: 0;
        }

        .contact-label {
            font-size: 0.85rem;
            letter-spacing: 3px;
            text-transform: uppercase;
            color: var(--gold);
            margin-bottom: 1rem;
            font-weight: 600;
        }

        .contact-value {
            font-size: 1.2rem;
            line-height: 1.8;
            color: rgba(255,255,255,0.9);
        }

        .contact-value a {
            color: rgba(255,255,255,0.9);
            text-decoration: none;
            transition: color 0.3s;
        }

        .contact-value a:hover {
            color: var(--gold);
        }

        .whatsapp-btn {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 1rem;
            background: linear-gradient(135deg, #25D366 0%, #20ba5a 100%);
            color: white;
            padding: 1.2rem 2rem;
            text-decoration: none;
            font-weight: 600;
            font-size: 1.05rem;
            letter-spacing: 1px;
            margin-top: 3rem;
            transition: all 0.3s;
        }


        /* Map Section */
        .map-container {
            height: 650px;
            background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--gold);
            font-size: 4rem;
            position: relative;
            width: -webkit-fill-available;
        }

        .map-placeholder {
            text-align: center;
        }

        .map-placeholder p {
            font-size: 1.2rem;
            margin-top: 1rem;
            color: rgba(255,255,255,0.8);
            letter-spacing: 2px;
        }

        /* Transport Section */
        .transport-section {
            padding: 8rem 0;
            background: var(--cream);
        }

        .section-header {
            text-align: center;
            margin-bottom: 5rem;
        }

        .section-subtitle {
            font-size: 0.9rem;
            letter-spacing: 4px;
            text-transform: uppercase;
            color: var(--gold);
            margin-bottom: 1rem;
            font-weight: 500;
        }

        .section-title {
            font-size: 3.5rem;
            color: var(--navy);
            margin-bottom: 1rem;
        }

        .section-divider {
            width: 80px;
            height: 2px;
            background: var(--gold);
            margin: 1.5rem auto;
        }

        .transport-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 3rem;
        }

        .transport-card {
            background: var(--white);
            padding: 3rem;
            border-left: 4px solid var(--gold);
            box-shadow: 0 10px 40px rgba(0,0,0,0.05);
            transition: all 0.3s;
        }

        .transport-card:hover {
            transform: translateX(10px);
            box-shadow: 0 15px 50px rgba(0,0,0,0.1);
        }

        .transport-icon {
            font-size: 3.5rem;
            margin-bottom: 1.5rem;
        }

        .transport-card h3 {
            font-size: 1.8rem;
            color: var(--navy);
            margin-bottom: 1.5rem;
        }

        .transport-steps {
            margin-bottom: 2rem;
        }

        .step {
            display: flex;
            gap: 1.5rem;
            margin-bottom: 1.5rem;
            align-items: start;
        }

        .step-number {
            min-width: 40px;
            height: 40px;
            background: var(--gold);
            color: var(--navy);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            font-size: 1.1rem;
        }

        .step-text {
            flex: 1;
            padding-top: 0.5rem;
        }

        .step-text p {
            color: #555;
            line-height: 1.8;
        }

        .step-text strong {
            color: var(--navy);
        }

        .transport-time {
            background: var(--navy);
            color: var(--gold);
            padding: 1rem;
            text-align: center;
            font-weight: 600;
            letter-spacing: 1px;
        }

        .transport-options p {
            margin-bottom: 1rem;
            color: #555;
            line-height: 1.8;
        }

        .transport-options strong {
            color: var(--navy);
        }

        /* Nearby Section */
        .nearby-section {
            padding: 8rem 0;
        }

        .nearby-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2.5rem;
        }

        .nearby-card {
            background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
            color: var(--white);
            padding: 3rem 2rem;
            text-align: center;
            transition: all 0.4s;
            position: relative;
            overflow: hidden;
        }

        .nearby-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
            transition: left 0.4s;
            z-index: 0;
        }

        .nearby-card:hover::before {
            left: 0;
        }

        .nearby-card > * {
            position: relative;
            z-index: 1;
        }

        .nearby-card h4 {
            font-size: 1.5rem;
            margin-bottom: 0.8rem;
        }

        .nearby-card:hover h4 {
            color: var(--navy);
        }

        .distance {
            font-size: 1rem;
            opacity: 0.9;
            letter-spacing: 1px;
        }

        /* CTA Section */
        .cta-section {
            padding: 8rem 0;
            background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
            color: var(--white);
            text-align: center;
        }

        .cta-section h2 {
            font-size: 3.5rem;
            margin-bottom: 1.5rem;
            color: var(--white);
        }

        .cta-section p {
            font-size: 1.2rem;
            margin-bottom: 3rem;
            color: rgba(255,255,255,0.8);
        }

        .cta-buttons {
            display: flex;
            gap: 2rem;
            justify-content: center;
            flex-wrap: wrap;
        }

        .cta-btn {
            display: inline-block;
            padding: 1.2rem 3.5rem;
            background: var(--gold);
            color: var(--navy);
            text-decoration: none;
            font-size: 0.9rem;
            font-weight: 600;
            letter-spacing: 3px;
            text-transform: uppercase;
            transition: all 0.4s;
            border: 2px solid var(--gold);
        }

        .cta-btn:hover {
            background: transparent;
            color: var(--gold);
            transform: translateY(-3px);
            box-shadow: 0 10px 40px rgba(212, 175, 55, 0.3);
        }

        .cta-btn-secondary {
            background: transparent;
            color: var(--white);
            border: 2px solid var(--white);
        }

        .cta-btn-secondary:hover {
            background: var(--white);
            color: var(--navy);
            border-color: var(--white);
        }


        @media (max-width: 1024px) {
            .contact-grid {
                grid-template-columns: 1fr;
            }

            .transport-grid {
                grid-template-columns: 1fr;
            }

            .nearby-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .footer-content {
                grid-template-columns: 1fr 1fr;
            }
        }

        @media (max-width: 768px) {
            .container,
            .nav-container {
                padding: 0 1.5rem;
            }

            .page-header h1 {
                font-size: 2.5rem;
            }

            .section-title {
                font-size: 2.5rem;
            }

            .nearby-grid {
                grid-template-columns: 1fr;
            }

            .cta-buttons {
                flex-direction: column;
                align-items: center;
            }

            .footer-content {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 480px) {
            .container {
                padding: 0 1rem;
            }

            .page-header {
                height: 40vh;
                min-height: 300px;
                margin-top: 60px;
            }

            .page-header h1 {
                font-size: 2rem !important;
                letter-spacing: 2px;
            }

            .page-header p {
                font-size: 0.9rem !important;
                letter-spacing: 1px;
            }

            .contact-section {
                padding: 4rem 0;
            }

            .contact-info {
                padding: 2.5rem 1.5rem;
            }

            .contact-info h2 {
                font-size: 2rem;
            }

            .contact-item {
                margin-bottom: 2rem;
                padding-bottom: 2rem;
            }

            .contact-value {
                font-size: 1rem;
            }

            .map-container {
                height: 400px;
            }

            .transport-section, .nearby-section {
                padding: 4rem 0;
            }

            .section-title {
                font-size: 2rem !important;
            }

            .section-subtitle {
                font-size: 0.8rem;
                letter-spacing: 2px;
            }

            .transport-card {
                padding: 2rem 1.5rem;
            }

            .transport-card h3 {
                font-size: 1.5rem;
            }

            .transport-icon {
                font-size: 2.5rem;
            }

            .step {
                gap: 1rem;
            }

            .step-number {
                min-width: 35px;
                height: 35px;
                font-size: 1rem;
            }

            .step-text p {
                font-size: 0.9rem;
            }

            .transport-time {
                padding: 0.8rem;
                font-size: 0.85rem;
            }

            .nearby-card {
                padding: 2rem 1.5rem;
            }

            .nearby-card h4 {
                font-size: 1.2rem;
            }

            .cta-section {
                padding: 4rem 0;
            }

            .cta-section h2 {
                font-size: 2rem !important;
            }

            .cta-section p {
                font-size: 1rem !important;
            }

            .cta-btn {
                padding: 1rem 2rem;
                font-size: 0.75rem;
                letter-spacing: 2px;
            }

            .whatsapp-btn {
                padding: 1rem 1.5rem;
                font-size: 0.95rem;
            }
        }