
        :root {
            --primary: #015f80;
            --secondary: #00829c;
            --accent: #6abcc7;
            --gold: #caad2a;
            --light-gold: #e6c74f;
            --dark-gold: #a98e1f;
            --light: #f8f9fa;
            --dark: #333333;
            --shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            --highlight: var(--gold);
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Montserrat', sans-serif;
            color: var(--dark);
            line-height: 1.6;
            overflow-x: hidden;
            background-color: #f9f9f9;
        }
        
        h1, h2, h3, h4, h5 {
            font-family: 'Playfair Display', serif;
            font-weight: 600;
        }
        
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        .btn {
            display: inline-block;
            background: var(--highlight);
            color: white;
            padding: 10px 25px;
            border-radius: 30px;
            text-decoration: none;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
            font-size: 14px;
        }
        
        .btn:hover {
            background: linear-gradient(135deg, var(--dark-gold), var(--gold));
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(202, 173, 42, 0.5);
        }
        
        .btn-outline {
            background: transparent;
            border: 2px solid var(--highlight);
            color: var(--highlight);
        }
        
        .btn-outline:hover {
            background: var(--highlight);
            color: white;
        }
        
        section {
            padding: 60px 0;
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 40px;
            position: relative;
        }
        
        .section-title h2 {
            font-size: 32px;
            color: var(--primary);
            margin-bottom: 15px;
        }
        
        .section-title:after {
            content: '';
            position: absolute;
            width: 80px;
            height: 3px;
            background: var(--highlight);
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
        }

            /* Header Styles */
        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 1000;
            padding: 20px 0;
            transition: all 0.3s ease;
        }
        
        header.scrolled {
            background: rgba(255, 255, 255, 0.95);
            box-shadow: var(--shadow);
            padding: 15px 0;
        }
        
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
.logo {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    font-weight: 700;
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}

.logo img {
    height: 80px; /* adjust as needed */
    width: auto;
    transition: all 0.3s ease; /* for smooth color/size changes */
    padding-top: 10px;
}

header.scrolled .logo {
    color: var(--primary);
}

.logo span {
    color: var(--gold);
}
        
        nav ul {
            display: flex;
            list-style: none;
        }
        
        nav ul li {
            margin-left: 30px;
        }
        
        nav ul li a {
            color: white;
            text-decoration: none;
            font-weight: 500;
            transition: color 0.3s ease;
        }
        
        nav ul li a:hover {
            color: var(--gold);
        }



header.scrolled nav ul li a {
    color: var(--primary);
}

header.scrolled nav ul li a:hover {
    color: var(--gold);
}
        
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 24px;
            cursor: pointer;
        }

.mobile-menu-btn i {
    transition: color 0.3s ease;
}

header.menu-open .mobile-menu-btn i {
    color: var(--gold);
}
        
        /* Hero Section */
        .contact-hero {
            position: relative;
            height: 40vh;
            min-height: 300px;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
        }
        
        .contact-hero::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to bottom, rgba(1, 95, 128, 0.7), rgba(0, 130, 156, 0.8));
            z-index: 2;
        }
        
        .contact-hero-content {
            position: relative;
            z-index: 3;
            text-align: center;
            color: white;
            max-width: 800px;
            width: 90%;
            padding: 0 20px;
        }
        
        .contact-hero-content h1 {
            padding-top: 40px;
            margin-bottom: 0.8rem;
            font-size: 2.8rem;
            text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
        }
        
        .contact-hero-content p {
            font-size: 1.1rem;
            font-weight: 300;
        }
        
        /* Contact Cards */
        .contact-cards {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
            margin-bottom: 40px;
        }
        
        .contact-card {
            background: white;
            border-radius: 12px;
            padding: 25px 20px;
            box-shadow: var(--shadow);
            text-align: center;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        
        .contact-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.12);
        }
        
        .contact-card-icon {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            color: white;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            font-size: 24px;
        }
        
        .contact-card h3 {
            color: var(--primary);
            margin-bottom: 15px;
            font-size: 20px;
        }
        
        .contact-card p {
            color: var(--dark);
            line-height: 1.5;
            margin-bottom: 8px;
            font-size: 14px;
        }
        
        .contact-card a {
            color: var(--secondary);
            text-decoration: none;
            transition: color 0.3s ease;
            font-size: 14px;
        }
        
        .contact-card a:hover {
            color: var(--gold);
        }
        
        /* Contact Grid */
        .contact-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 30px;
        }
        
        .contact-info {
            background: white;
            border-radius: 12px;
            padding: 30px;
            box-shadow: var(--shadow);
        }
        
        .contact-info h3 {
            color: var(--primary);
            margin-bottom: 20px;
            font-size: 22px;
        }
        
        .contact-details {
            list-style: none;
            margin-bottom: 25px;
        }
        
        .contact-details li {
            margin-bottom: 15px;
            display: flex;
            align-items: flex-start;
        }
        
        .contact-details i {
            color: var(--gold);
            font-size: 18px;
            margin-right: 12px;
            min-width: 20px;
            margin-top: 3px;
        }
        
        .contact-details span {
            line-height: 1.5;
            font-size: 14px;
        }
        
        .social-links-contact {
            display: flex;
            gap: 12px;
            margin-top: 25px;
        }
        
        .social-links-contact a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: var(--primary);
            color: white;
            transition: all 0.3s ease;
            font-size: 16px;
        }
        
        .social-links-contact a:hover {
            background: var(--gold);
            transform: translateY(-3px);
        }
        
        /* Contact Form */
        .contact-form {
            background: white;
            border-radius: 12px;
            padding: 30px;
            box-shadow: var(--shadow);
        }
        
        .contact-form h3 {
            color: var(--primary);
            margin-bottom: 20px;
            font-size: 22px;
            text-align: center;
        }
        
        .form-group {
            margin-bottom: 15px;
        }
        
        .form-group label {
            display: block;
            margin-bottom: 6px;
            font-weight: 500;
            color: var(--primary);
            font-size: 14px;
        }
        
        .form-control {
            width: 100%;
            padding: 12px;
            border: 1px solid #ddd;
            border-radius: 6px;
            font-family: 'Montserrat', sans-serif;
            font-size: 14px;
            transition: all 0.3s ease;
        }
        
        .form-control:focus {
            outline: none;
            border-color: var(--accent);
            box-shadow: 0 0 0 3px rgba(106, 188, 199, 0.2);
        }
        
        textarea.form-control {
            min-height: 120px;
            resize: vertical;
        }
        
        .btn-submit {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 12px 25px;
            background: linear-gradient(135deg, var(--gold), var(--dark-gold));
            color: white;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
            font-size: 14px;
        }
        
        .btn-submit:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 20px rgba(202, 173, 42, 0.4);
        }
        
        .btn-submit i {
            margin-left: 8px;
        }
        
        /* Map Section */
        .map-section {
            padding: 0 0 60px;
        }
        
        .map-container {
            height: 350px;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: var(--shadow);
        }
        
        .map-container iframe {
            width: 100%;
            height: 100%;
            border: none;
        }
        
        /* FAQ Section */
        .faq-section {
            background-color: white;
            padding: 60px 0;
        }
        
        .faq-container {
            max-width: 900px;
            margin: 0 auto;
        }
        
        .faq-item {
            margin-bottom: 15px;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: var(--shadow);
        }
        
        .faq-question {
            padding: 15px 20px;
            background: var(--primary);
            color: white;
            cursor: pointer;
            position: relative;
            font-weight: 500;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .faq-answer {
            padding: 0;
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease, padding 0.3s ease;
            background: #f9f9f9;
        }
        
        .faq-answer.active {
            padding: 20px;
            max-height: 300px;
        }
        
        /* Footer Styles */
        footer {
            background: linear-gradient(to bottom, var(--primary), #014a66);
            color: white;
            padding: 2.5rem 0 1rem;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 1rem;
        }

        .footer-col {
            display: flex;
            flex-direction: column;
        }

        .footer-logo {
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 0.75rem;
            color: var(--light-gold);
        }

        .footer-description {
            opacity: 0.9;
            line-height: 1.5;
            margin-bottom: 1.25rem;
            font-size: 0.9rem;
        }

        .social-links {
            display: flex;
            gap: 0.75rem;
            margin-top: auto;
        }

        .social-links a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 35px;
            height: 35px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            color: white;
            text-decoration: none;
            transition: var(--transition);
            font-size: 0.9rem;
        }

        .social-links a:hover {
            background: var(--gold);
            transform: translateY(-2px);
        }

        .footer-col h4 {
            color: var(--light-gold);
            font-size: 1.1rem;
            margin-bottom: 1rem;
            font-weight: 600;
            position: relative;
            padding-bottom: 0.5rem;
        }

        .footer-col h4::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 30px;
            height: 2px;
            background: var(--light-gold);
        }

        .footer-links {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 0.5rem;
        }

        .footer-links a {
            color: rgba(255, 255, 255, 0.9);
            text-decoration: none;
            font-size: 0.9rem;
            transition: var(--transition);
            display: block;
            padding: 0.25rem 0;
        }

        .footer-links a:hover {
            color: var(--light-gold);
            transform: translateX(5px);
        }

        .footer-info {
            list-style: none;
        }

        .footer-info li {
            display: flex;
            align-items: flex-start;
            gap: 0.75rem;
            margin-bottom: 1.5rem;
            font-size: 0.9rem;
        }

        .footer-info i {
            color: var(--light-gold);
            margin-top: 0.15rem;
            min-width: 16px;
        }

        .footer-info span {
            opacity: 0.9;
            line-height: 1.4;
        }

        .copyright {
            text-align: center;
            padding-top: 2rem;
            margin-top: 2rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            font-size: 0.85rem;
            opacity: 0.8;
            max-width: 1200px;
            margin-left: auto;
            margin-right: auto;
            padding-left: 1rem;
            padding-right: 1rem;
        }

.footer-logo {
    text-align: left; /* center the logo */
    margin-right: 20px;
}

.footer-logo-img {
    max-width: 100px; /* adjust as needed */
    height: auto;
}
        
        /* Loading animation for form */
        .loading {
            display: inline-block;
            width: 16px;
            height: 16px;
            border: 2px solid rgba(255,255,255,.3);
            border-radius: 50%;
            border-top-color: #fff;
            animation: spin 1s ease-in-out infinite;
            margin-left: 8px;
        }
        
        @keyframes spin {
            to { transform: rotate(360deg); }
        }
        
        /* Success/error messages */
        .form-message {
            padding: 10px;
            border-radius: 6px;
            margin-bottom: 15px;
            display: none;
            font-size: 14px;
        }
        
        .form-message.success {
            background-color: #d4edda;
            color: #155724;
            border: 1px solid #c3e6cb;
        }
        
        .form-message.error {
            background-color: #f8d7da;
            color: #721c24;
            border: 1px solid #f5c6cb;
        }
        
        /* Responsive Styles */
        @media (max-width: 992px) {
            .contact-hero-content h1 {
                font-size: 2.4rem;
            }
            
            .contact-cards {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .contact-grid {
                grid-template-columns: 1fr;
                gap: 25px;
            }
        }
        
        @media (max-width: 768px) {
    /* Header adjustments */
    .header-container {
        padding: 0 15px;
    }
    
    .logo img {
        height: 60px;
        padding-top: 5px;
    }
    
    nav {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(1, 95, 128, 0.98);
        z-index: 1000;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    
    nav.active {
        display: flex;
    }
    
    nav ul {
        flex-direction: column;
        text-align: center;
    }
    
    nav ul li {
        margin: 15px 0;
    }
    
    nav ul li a {
        font-size: 18px;
        padding: 12px 25px;
        display: block;
    }
    
    .mobile-menu-btn {
        display: block;
        z-index: 1001;
        font-size: 28px;
    }
            
            .contact-hero {
                height: 35vh;
                min-height: 280px;
            }
            
            .contact-hero-content h1 {
                font-size: 2rem;
            }
            
            .contact-hero-content p {
                font-size: 1rem;
            }
            
            .contact-cards {
                grid-template-columns: 1fr;
                gap: 15px;
            }
            
            .contact-card {
                padding: 20px 15px;
            }
            
            .contact-info, .contact-form {
                padding: 20px;
            }
            
            .map-container {
                height: 300px;
            }
            
            section {
                padding: 40px 0;
            }
    
    /* Footer */
    footer {
        padding: 40px 0 20px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .footer-logo {
        text-align: center;
        margin-right: 0;
    }

.footer-col {
    display: flex;
    flex-direction: column;
    align-items: center; /* Centers items horizontally */
    text-align: center;  /* Centers text inside */
}

        .footer-col h4 {
            font-size: 1.7rem;
        }

    .footer-col h4::after {
            display: none;
        }

    .footer-info li {
        justify-content: center;
    }
    
    .social-links {
        justify-content: center;
    }
        }
        
        @media (max-width: 576px) {
            .contact-hero-content h1 {
                font-size: 1.8rem;
            }
            
            .section-title h2 {
                font-size: 26px;
            }
            
            .btn-submit {
                width: 100%;
                justify-content: center;
            }
        }