
        /* ============================================== */
        /* CONTACT PAGE - ISOLATED STYLES */
        /* No conflicts with navbar/footer CSS */
        /* ============================================== */
        
        /* CSS Variables - Isolated from global */
        :root {
            --con-color-primary: #0a1929;
            --con-color-secondary: #e8c16f;
            --con-color-accent: #9d6b29;
            --con-color-dark: #050a0f;
            --con-color-light: #f5f3f0;
            --con-color-text: #e0e0e0;
            --con-font-heading: 'Cinzel', 'Georgia', serif;
            --con-font-body: 'Arial', sans-serif;
            --con-font-script: 'Dancing Script', cursive;
            --con-transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            --con-border-radius: 12px;
            --con-box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
        }
        
        /* Reset for contact page only */
        .contact-page * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }



*, *::before, *::after {
    /* Use border-box model for easy sizing and layout */
    box-sizing: border-box;
}

body, h1, h2, h3, h4, p, figure, blockquote, dl, dd {
    margin: 0;
}

ul[role='list'], ol[role='list'] {
    list-style: none;
}

a {
    text-decoration: none;
    color: inherit;
}



/* ============================================== */
/* 2. BASE STYLES & UTILITIES */
/* ============================================== */
html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: var(--font-size-base);
    color: var(--color-text-dark);
    line-height: 1.6;
    background-color: var(--color-text-light);
    overflow-x: hidden;
}

/* Track (the main bar area) */
::-webkit-scrollbar {
    width: 8px; /* Width of the entire scrollbar */
}

/* Thumb (the movable part) */
::-webkit-scrollbar-thumb {
    background-color: var(--color-secondary); /* Gold/Yellow color */
    border-radius: 4px; /* Rounded corners */
    /* Add a subtle dark border/shadow to separate it from the background */
    border: 2px solid var(--color-primary); 
}

/* Track background */
::-webkit-scrollbar-track {
    background: var(--color-primary); /* Dark background for the track */
}

/* On hover, make it slightly brighter */
::-webkit-scrollbar-thumb:hover {
    background-color: #f1d380; /* Lighter gold on hover */
}    
        .contact-page {
            font-family: var(--con-font-body);
            background: var(--con-color-dark);
            color: var(--con-color-text);
            line-height: 1.7;
            overflow-x: hidden;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }
        
        /* Hero Section */
        .con-hero-section {
            position: relative;
            height: clamp(400px, 60vh, 600px);
            min-height: 600px;
            overflow: hidden;
            isolation: isolate;
            display: flex;
            flex-direction: column;
            margin-top: 80px; /* Space for fixed navbar */
        }
        
        .con-hero-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(rgba(5, 10, 15, 0.7), rgba(5, 10, 15, 0.9)),
                        url('/images/aerial_view_to_north_1920x1080.jpg') center/cover no-repeat;
            z-index: 1;
        }
        
        .con-hero-content {
            position: relative;
            z-index: 3;
            flex: 1;
            display: flex;
            flex-direction: column;
            justify-content: center;
            padding: clamp(20px, 5vw, 60px) clamp(20px, 5vw, 40px);
            text-align: center;
        }
        
        .con-hero-title {
            font-family: var(--con-font-heading);
            font-size: clamp(2.5rem, 6vw, 4rem);
            font-weight: 700;
            color: var(--con-color-light);
            line-height: 1.1;
            margin-bottom: clamp(15px, 3vw, 25px);
            text-transform: uppercase;
        }
        
        .con-hero-pre-title {
            display: block;
            font-family: var(--con-font-script);
            font-size: clamp(1.8rem, 4vw, 2.5rem);
            color: var(--con-color-secondary);
            font-weight: 400;
            text-transform: none;
            margin-bottom: -5px;
        }
        
        .con-hero-subtitle {
            font-size: clamp(1rem, 1.6vw, 1.2rem);
            max-width: min(600px, 90vw);
            margin: 0 auto;
            opacity: 0.9;
            line-height: 1.7;
        }
        
        /* Hero Bottom Navigation */
        .con-hero-bottom-nav {
            position: relative;
            z-index: 4;
            background: rgba(5, 10, 15, 0.8);
            backdrop-filter: blur(10px);
            border-top: 1px solid rgba(232, 193, 111, 0.2);
            padding: clamp(15px, 3vw, 20px) 0;
        }
        
        .con-hero-nav-container {
            max-width: min(1400px, 95vw);
            margin: 0 auto;
            padding: 0 clamp(20px, 5vw, 40px);
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .con-breadcrumb {
            font-size: clamp(0.9rem, 1.2vw, 1rem);
            color: rgba(255, 255, 255, 0.9);
        }
        
        .con-breadcrumb a {
            color: var(--con-color-secondary);
            text-decoration: none;
            transition: color 0.3s ease;
            font-weight: 500;
        }
        
        .con-breadcrumb a:hover {
            color: var(--con-color-light);
            text-decoration: underline;
        }
        
        .con-breadcrumb-separator {
            margin: 0 10px;
            color: rgba(255, 255, 255, 0.5);
        }
        
        .con-breadcrumb-current {
            color: var(--con-color-light);
            opacity: 0.8;
            font-weight: 500;
        }
        
        .con-scroll-indicator {
            background: rgba(232, 193, 111, 0.1);
            border: 1px solid rgba(232, 193, 111, 0.3);
            color: var(--con-color-secondary);
            width: 44px;
            height: 44px;
            border-radius: 50%;
            font-size: 1.2rem;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
            flex-shrink: 0;
        }
        
        .con-scroll-indicator:hover {
            background: var(--con-color-secondary);
            color: var(--con-color-dark);
            transform: translateY(-3px);
        }
        
        /* Contact Container */
        .con-container {
            max-width: min(1400px, 95vw);
            margin: 0 auto;
            padding: 0 clamp(20px, 5vw, 40px);
        }
        
        /* Contact Grid */
        .con-grid-section {
            padding: clamp(60px, 8vw, 100px) 0;
            background: var(--con-color-dark);
        }
        
        .con-grid {
            display: grid;
            grid-template-columns: 1fr 1.2fr;
            gap: clamp(40px, 6vw, 60px);
        }
        
        @media (max-width: 992px) {
            .con-grid {
                grid-template-columns: 1fr;
                gap: 50px;
            }
        }
        
        /* Contact Info Section */
        .con-info-section {
            background: rgba(10, 25, 41, 0.5);
            border-radius: var(--con-border-radius);
            padding: clamp(30px, 4vw, 50px);
            border: 1px solid rgba(232, 193, 111, 0.1);
            backdrop-filter: blur(10px);
        }
        
        .con-section-title {
            font-family: var(--con-font-heading);
            font-size: clamp(1.8rem, 3vw, 2.2rem);
            color: var(--con-color-light);
            margin-bottom: 30px;
            position: relative;
            padding-bottom: 15px;
        }
        
        .con-section-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 60px;
            height: 3px;
            background: var(--con-color-secondary);
        }
        
        .con-info-item {
            display: flex;
            align-items: flex-start;
            gap: 20px;
            margin-bottom: 30px;
            padding-bottom: 30px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }
        
        .con-info-item:last-child {
            border-bottom: none;
            margin-bottom: 0;
            padding-bottom: 0;
        }
        
        .con-info-icon {
            width: 50px;
            height: 50px;
            background: rgba(232, 193, 111, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--con-color-secondary);
            font-size: 1.2rem;
            flex-shrink: 0;
        }
        
        .con-info-content h3 {
            font-family: var(--con-font-heading);
            color: var(--con-color-light);
            margin-bottom: 8px;
            font-size: 1.2rem;
        }
        
        .con-info-content p {
            color: rgba(255, 255, 255, 0.8);
            margin-bottom: 5px;
        }
        
        .con-info-content a {
            color: var(--con-color-secondary);
            text-decoration: none;
            transition: color 0.3s ease;
        }
        
        .con-info-content a:hover {
            color: var(--con-color-light);
            text-decoration: underline;
        }
        
        /* Working Hours */
        .con-hours {
            margin-top: 40px;
            padding-top: 30px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }
        
        .con-hours-list {
            list-style: none;
        }
        
        .con-hours-list li {
            display: flex;
            justify-content: space-between;
            padding: 8px 0;
            color: rgba(255, 255, 255, 0.8);
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        }
        
        .con-hours-list li:last-child {
            border-bottom: none;
        }
        
        .con-hours-day {
            font-weight: 600;
            color: var(--con-color-light);
        }
        
        /* Contact Form Section */
        .con-form-section {
            background: rgba(10, 25, 41, 0.5);
            border-radius: var(--con-border-radius);
            padding: clamp(30px, 4vw, 50px);
            border: 1px solid rgba(232, 193, 111, 0.1);
            backdrop-filter: blur(10px);
        }
        
        .con-form-header {
            margin-bottom: 30px;
        }
        
        .con-form-subtitle {
            color: rgba(255, 255, 255, 0.7);
            font-size: 1.1rem;
            margin-top: 10px;
        }
        
        /* Form Styles */
        .con-form {
            display: grid;
            gap: 25px;
        }
        
        .con-form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 25px;
        }
        
        @media (max-width: 768px) {
            .con-form-row {
                grid-template-columns: 1fr;
                gap: 25px;
            }
        }
        
        .con-form-group {
            display: flex;
            flex-direction: column;
            gap: 8px;
        }
        
        .con-form-label {
            color: var(--con-color-light);
            font-weight: 600;
            font-size: 0.95rem;
        }
        
        .con-form-label span {
            color: var(--con-color-secondary);
        }
        
        .con-form-input,
        .con-form-select,
        .con-form-textarea {
            padding: 16px 20px;
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 8px;
            color: var(--con-color-light);
            font-size: 1rem;
            font-family: var(--con-font-body);
            transition: all 0.3s ease;
        }
        
        .con-form-input:focus,
        .con-form-select:focus,
        .con-form-textarea:focus {
            outline: none;
            border-color: var(--con-color-secondary);
            background: rgba(255, 255, 255, 0.08);
            box-shadow: 0 0 0 3px rgba(232, 193, 111, 0.1);
        }
        
        .con-form-input::placeholder,
        .con-form-textarea::placeholder {
            color: rgba(255, 255, 255, 0.5);
        }
        
        .con-form-textarea {
            min-height: 150px;
            resize: vertical;
        }
        
        .con-form-checkbox {
            display: flex;
            align-items: flex-start;
            gap: 12px;
            margin-top: 10px;
        }
        
        .con-form-checkbox input[type="checkbox"] {
            margin-top: 4px;
            accent-color: var(--con-color-secondary);
            width: 20px;
            height: 20px;
            flex-shrink: 0;
        }
        
        .con-form-checkbox label {
            color: rgba(255, 255, 255, 0.8);
            font-size: 0.9rem;
            line-height: 1.5;
        }
        
        .con-form-checkbox a {
            color: var(--con-color-secondary);
            text-decoration: none;
        }
        
        .con-form-checkbox a:hover {
            text-decoration: underline;
        }
        
        .con-form-submit {
            background: var(--con-color-secondary);
            color: var(--con-color-dark);
            border: none;
            padding: 18px 40px;
            border-radius: 8px;
            font-size: 1rem;
            font-weight: 700;
            cursor: pointer;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 12px;
            transition: all 0.3s ease;
            margin-top: 10px;
        }
        
        .con-form-submit:hover {
            background: var(--con-color-light);
            transform: translateY(-2px);
            box-shadow: 0 10px 20px rgba(232, 193, 111, 0.2);
        }
        
        /* Success Message */
        .con-success-message {
            display: none;
            background: rgba(232, 193, 111, 0.1);
            border: 1px solid rgba(232, 193, 111, 0.3);
            border-radius: 8px;
            padding: 30px;
            text-align: center;
            margin-top: 30px;
        }
        
        .con-success-message.show {
            display: block;
            animation: con-fadeIn 0.5s ease;
        }
        
        .con-success-icon {
            font-size: 3rem;
            color: var(--con-color-secondary);
            margin-bottom: 20px;
        }
        
        .con-success-title {
            font-family: var(--con-font-heading);
            color: var(--con-color-light);
            font-size: 1.5rem;
            margin-bottom: 10px;
        }
        
        @keyframes con-fadeIn {
            from { opacity: 0; transform: translateY(-10px); }
            to { opacity: 1; transform: translateY(0); }
        }
        
        /* Map Section */
        .con-map-section {
            padding: clamp(40px, 6vw, 80px) 0;
            background: var(--con-color-primary);
        }
        
        .con-map-wrapper {
            border-radius: var(--con-border-radius);
            overflow: hidden;
            border: 1px solid rgba(232, 193, 111, 0.2);
            box-shadow: var(--con-box-shadow);
            height: 400px;
            position: relative;
        }
        
        .con-map-placeholder {
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(10, 25, 41, 0.9), rgba(5, 10, 15, 0.9)),
                        url('images/contact/map-placeholder.jpg') center/cover;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--con-color-light);
            font-size: 1.2rem;
        }
        
        .con-map-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(5, 10, 15, 0.3);
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .con-map-content {
            background: rgba(10, 25, 41, 0.95);
            padding: 30px;
            border-radius: 8px;
            max-width: 400px;
            text-align: center;
            border: 1px solid rgba(232, 193, 111, 0.2);
            backdrop-filter: blur(10px);
        }
        
        /* FAQ Section */
        .con-faq-section {
            padding: clamp(60px, 8vw, 100px) 0;
            background: var(--con-color-dark);
        }
        
        .con-faq-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 40px;
        }
        
        .con-faq-item {
            background: rgba(10, 25, 41, 0.5);
            border-radius: var(--con-border-radius);
            padding: 30px;
            border: 1px solid rgba(232, 193, 111, 0.1);
            backdrop-filter: blur(10px);
            transition: all 0.3s ease;
        }
        
        .con-faq-item:hover {
            border-color: rgba(232, 193, 111, 0.3);
            transform: translateY(-5px);
        }
        
        .con-faq-question {
            font-family: var(--con-font-heading);
            color: var(--con-color-light);
            font-size: 1.2rem;
            margin-bottom: 15px;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .con-faq-question i {
            color: var(--con-color-secondary);
        }
        
        .con-faq-answer {
            color: rgba(255, 255, 255, 0.8);
            line-height: 1.6;
        }
        
        /* CTA Section */
        .con-cta-section {
            padding: clamp(60px, 8vw, 100px) 0;
            background: linear-gradient(135deg, var(--con-color-primary), var(--con-color-dark));
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        
        .con-cta-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, 
                transparent 0%, 
                var(--con-color-secondary) 50%, 
                transparent 100%);
        }
        
        .con-cta-content {
            max-width: min(600px, 90vw);
            margin: 0 auto;
            position: relative;
            z-index: 2;
        }
        
        .con-cta-title {
            font-family: var(--con-font-heading);
            font-size: clamp(2rem, 4vw, 2.8rem);
            color: var(--con-color-light);
            margin-bottom: 20px;
        }
        
        .con-cta-description {
            color: rgba(255, 255, 255, 0.8);
            font-size: clamp(1rem, 1.5vw, 1.2rem);
            margin-bottom: 40px;
            line-height: 1.7;
        }
        
        .con-cta-buttons {
            display: flex;
            gap: 20px;
            justify-content: center;
            flex-wrap: wrap;
        }
        
        .con-cta-btn {
            padding: 16px 40px;
            border-radius: 8px;
            font-weight: 700;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            transition: all 0.3s ease;
        }
        
        .con-cta-btn.primary {
            background: var(--con-color-secondary);
            color: var(--con-color-dark);
        }
        
        .con-cta-btn.primary:hover {
            background: var(--con-color-light);
            transform: translateY(-3px);
        }
        
        .con-cta-btn.secondary {
            background: transparent;
            color: var(--con-color-secondary);
            border: 2px solid var(--con-color-secondary);
        }
        
        .con-cta-btn.secondary:hover {
            background: var(--con-color-secondary);
            color: var(--con-color-dark);
            transform: translateY(-3px);
        }
        
        /* Responsive fixes */
        @media (max-width: 768px) {
            .con-hero-bottom-nav .con-hero-nav-container {
                flex-direction: column;
                gap: 15px;
                text-align: center;
            }
            
            .con-cta-buttons {
                flex-direction: column;
                align-items: center;
            }
            
            .con-cta-btn {
                width: 100%;
                justify-content: center;
            }
        }
        
        @media (max-width: 480px) {
            .con-hero-section {
                height: clamp(350px, 50vh, 450px);
                min-height: 350px;
            }
            
            .con-hero-content {
                padding: 20px;
            }
            
            .con-hero-title {
                font-size: 2rem;
            }
            
            .con-hero-pre-title {
                font-size: 1.5rem;
            }
            
            .con-info-item {
                flex-direction: column;
                gap: 15px;
                text-align: center;
            }
            
            .con-info-icon {
                margin: 0 auto;
            }
        }
        
        /* Utility classes */
        .sr-only {
            position: absolute;
            width: 1px;
            height: 1px;
            padding: 0;
            margin: -1px;
            overflow: hidden;
            clip: rect(0,0,0,0);
            border: 0;
        }
    