:root {
    /* Existing Website Theme Colors (Keep these for consistency) */
    --primary-blue: #1a1aff; /* Your core brand blue */
    --bg-color: #0d0d0d; /* Main dark background */
    --medium-dark: #1a1a1a; /* Slightly lighter dark for elements */
    --text-light: #f5f5f5; /* Light text on dark backgrounds */
    --text-color: #f5f5f5; /* General text color */
    --text-secondary: #B0B0B0; /* Muted text */
    --accent-blue: #00BFFF; /* Your current primary blue accent */
    --accent: #73C2FB; /* Lighter blue accent */
    --font-main: 'Poppins', sans-serif;
    --shadow: 0 4px 12px rgba(0, 0, 0, 0.2);

    /* New Wedding-Specific Colors (Integrated with your theme) */
    --wedding-primary-navy: #1B3458; /* A darker, elegant navy */
    --wedding-dark-gray: #2A2E33; /* A soft, dark gray */
    --wedding-text-contrast: #F0F0F0; /* Off-white for contrast */
    --wedding-text-muted: #A0A0A0; /* Muted text for details */
    --wedding-accent-gold: #B89C62; /* A warm, elegant gold for accents (or a muted silver/rose gold) */
    --wedding-soft-blue: #AEC6CF; /* A very light, muted blue for soft elements */
    --wedding-soft-gray: #D3D3D3; /* A light, subtle gray for backgrounds */
    --wedding-gradient: linear-gradient(90deg, rgba(27, 52, 88, 0.6), rgba(42, 46, 51, 0.5)); /* Darker gradient for overlays */

    /* Re-evaluate these based on the new palette */
    /* --primary-accent: #2E5894; */ /* This blue is close to our new navy */
    /* --hover-accent: #1B3458; */ /* This is our new wedding-primary-navy */
    /* --text-muted: #4a4a4a; */ /* Could work, but let's use wedding-text-muted */
}

.dropdown-content li a:hover {
        background: var(--gradient);
        color: var(--accent);
        padding-left: 24px;
    }

    html {
        scroll-behavior: smooth;
        height: 100%;
    }

    body {
        font-family: 'Roboto', sans-serif;
            color: var(--text-light); /* Ensure body text defaults to light */

    }

    body::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: -1;
        pointer-events: none;
background: linear-gradient(45deg, rgba(30, 30, 30, 0.7), rgba(50, 90, 130, 0.3), rgba(135, 214, 255, 0.15));    }

    .main-content {
        padding-top: clamp(80px, 10vh, 150px);
        padding-bottom: clamp(40px, 5vh, 60px);
        margin: 0 auto;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .hero {
        text-align: center;
        width: min(90%, 900px);
        padding: clamp(30px, 6vh, 60px) 0;
    }

    h2 {
        font-family: "Tai Heritage Pro", serif;
    }

    .hero .tagline {
        font-size: clamp(1.1rem, 2vw, 1.2rem);
        opacity: 0.9;
        margin: clamp(10px, 2vw, 20px) 0;
        line-height: 1.4;
        font-weight: 600;
    }

    .glow {
        font-size: clamp(2.5rem, 6vw, 4rem);
        font-family: "Tai Heritage Pro", serif;
        margin: 0;
        line-height: 1.2
    }


    .hero p {
        font-size: clamp(1rem, 2.5vw, 1.125rem);
        font-family: 'Poppins', sans-serif;
        margin: clamp(8px, 1.5vh, 12px) 0;
    }

    .contact-form {
        width: min(90%, 700px);
background: rgba(42, 46, 51, 0.95); /* Dark gray for plan cards */
    border: 1px solid rgba(0, 0, 0, 0.2); /* Softer border */
    padding: clamp(20px, 5vw, 40px);
        border-radius: 12px;
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
        margin: clamp(20px, 5vh, 40px) auto;
        color: var(--wedding-text-muted);
    }

    .contact-form h2 {
        font-size: clamp(1.8rem, 4vw, 2.2rem);
        text-align: center;
        margin-bottom: 1rem;
        font-weight: 600;
        color: var(--wedding-accent-gold);
    }

    .contact-form p {
        font-size: clamp(0.9rem, 2vw, 1.125rem);
        text-align: center;
        margin-bottom: 2rem;
        opacity: 0.9;
    }

    .form-group {
        margin-bottom: 1.5rem;
    }

    .form-group label {
        display: block;
        font-size: clamp(0.9rem, 2vw, 1rem);
        margin-bottom: 0.5rem;
        font-weight: 600;
                color: var(--text-dark);

    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        width: 100%;
        padding: 0.75rem;
        border: 1px solid rgba(255, 255, 255, 0.2);
        border-radius: 8px;
        font-size: clamp(0.9rem, 2vw, 1rem);
        font-family: 'Poppins', sans-serif;
        background: #41474f ;
        color: var(--text-secondary);
    }

    .form-group input:focus,
    .form-group select:focus,
    .form-group textarea:focus {
        outline: none;
        border-color: var(--wedding-accent-gold);
        box-shadow: 0 0 5px rgba(115, 194, 251, 0.3);
    }

    .form-group textarea {
        resize: vertical;
        min-height: 100px;
    }

    .form-group select option {
        color: var(--text-secondary);
    }

    .form-group select {
        appearance: none;
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23e0e0e0'%3E%3Cpath d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
        background-repeat: no-repeat;
        background-position: right 0.75rem center;
        background-size: 1rem;
    }

    .form-group.checkbox {
        display: flex;
        align-items: center;
        gap: 0.5rem;
    }

    .form-group.checkbox input {
        width: auto;
        margin-right: 0.5rem;
    }

    .form-group.checkbox label {
        font-weight: 400;
        margin-bottom: 0;
    }

    .form-group .required::after {
        content: '*';
        color: var(--wedding-accent-gold);
        margin-left: 0.25rem;
    }

    .inquiry-links {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: clamp(12px, 2vw, 16px);
        margin-top: clamp(16px, 3vh, 24px);
    }

        .btn {
    background: var(--wedding-accent-gold); /* Change button background to gold */
    color: var(--wedding-primary-navy); /* Dark navy text on gold button */
    border-radius: 5px; /* Slightly less rounded for a more modern look */
    text-decoration: none;
    font-weight: 600;
    transition: background 0.3s ease, transform 0.2s ease, color 0.3s ease;
    display: inline-block;
    text-align: center;
}

.btn:hover {
    background: var(--wedding-primary-navy); /* Dark navy on hover */
    color: var(--wedding-accent-gold); /* Gold text on hover */
    transform: scale(1.02);
} 

    @media screen and (max-width: 768px) {
        .contact-form p {
            text-align: left;
        }
    }