:root {
    --primary-dark: #2b2b2b;
    --primary-light: #f8f5f2;
    --secondary-light: #eee4db;
    --accent-gold: #af956a;
    --accent-teal: #b4ba8f;
    --text-dark: #323232;
    --text-light: #fffbf5;
    --shadow: rgba(0, 0, 0, 0.05);
}

/* Font Imports from Google Fonts */

/* Alice Font */
.alice-regular {
    font-family: "Alice", serif;
    font-weight: 400;
    font-style: normal;
  }


  /* Lato Font */
  .lato-thin {
    font-family: "Lato", sans-serif;
    font-weight: 100;
    font-style: normal;
  }
  
  .lato-light {
    font-family: "Lato", sans-serif;
    font-weight: 300;
    font-style: normal;
  }
  
  .lato-regular {
    font-family: "Lato", sans-serif;
    font-weight: 400;
    font-style: normal;
  }
  
  .lato-bold {
    font-family: "Lato", sans-serif;
    font-weight: 700;
    font-style: normal;
  }
  
  .lato-black {
    font-family: "Lato", sans-serif;
    font-weight: 900;
    font-style: normal;
  }
  
  .lato-thin-italic {
    font-family: "Lato", sans-serif;
    font-weight: 100;
    font-style: italic;
  }
  
  .lato-light-italic {
    font-family: "Lato", sans-serif;
    font-weight: 300;
    font-style: italic;
  }
  
  .lato-regular-italic {
    font-family: "Lato", sans-serif;
    font-weight: 400;
    font-style: italic;
  }
  
  .lato-bold-italic {
    font-family: "Lato", sans-serif;
    font-weight: 700;
    font-style: italic;
  }
  

  /* Comfortaa Font */
  .comfortaa-regular {
    font-family: "Comfortaa", sans-serif;
    font-weight: 400;
    font-style: normal;
  }


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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'lato-regular', sans-serif;
    font-size: 18px;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--primary-light);
    overflow-x: hidden;
}

/* Improved typography for readability */
h1, h2, h3, h4 {
      font-family: "Alice", serif;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 1rem;
    /* color: var(--primary-dark); */
}

h1 {
    font-size: 3.5rem;
    letter-spacing: -0.5px;
}

h2 {
    font-size: 2.8rem;
}

h3 {
    font-size: 2.2rem;
}

p {
    margin-bottom: 1.5rem;
    font-weight: 300;
}
.main-nav.scrolled {background-color: #ffffff !important;}
.main-nav.scrolled .comfortaa-logo {color: #000000 !important;}
.main-nav.scrolled .nav-links a {color: #000000 !important;}
.large-text {
    font-size: 1.3rem;
    line-height: 1.7;
}

/* Layout improvements */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

section {
    padding: 80px 0;
    position: relative;
}

.section-dark {
    background-color: var(--primary-dark);
    color: var(--text-light);
}

.section-dark h1, 
.section-dark h2, 
.section-dark h3, 
.section-dark h4 {
    color: var(--text-light);
}

.section-light {
    background-color: var(--primary-light);
}

.section-beige {
    background-color: var(--secondary-light);
}

/* Hero section with video background */
.hero {
    min-height: 100vh;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    background-color: #2b2b2b; /* Fallback color */
}

/* YouTube Video Background */
.hero-video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
    pointer-events: none;
}

.hero-video-iframe {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100vw;
    height: 100vh;
    min-width: 100%;
    min-height: 100%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    border: none;
}

/* Scale video to cover entire area - maintain 16:9 aspect ratio */
@media (min-aspect-ratio: 16/9) {
    .hero-video-iframe {
        width: 100vw;
        height: 56.25vw; /* 16:9 aspect ratio */
        min-height: 100vh;
        min-width: 177.77vh; /* 16:9 aspect ratio */
    }
}

@media (max-aspect-ratio: 16/9) {
    .hero-video-iframe {
        width: 177.77vh; /* 16:9 aspect ratio */
        height: 100vh;
        min-width: 100vw;
        min-height: 56.25vw; /* 16:9 aspect ratio */
    }
}

.hero-video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.3) 0%,
        rgba(0, 0, 0, 0.5) 50%,
        rgba(0, 0, 0, 0.7) 100%
    );
    z-index: 2;
}

.hero-content {
    max-width: 910px;
    margin-left: 10%;
    text-align: left;
    /* padding: 0px 20px; */
    position: relative;
    z-index: 3;
}
.hero-content p {
    max-width: 600px;
}
.hero-content h1 {
    color: #fff;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
    font-size: 2.5rem;
}

.hero-content .large-text {
    color: #fff;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
    opacity: 0.95;
}

.hero-content .btn {
    text-shadow: none;
    position: relative;
    z-index: 4;
    /* width: 250px; */
}

.hero-image {
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    overflow: hidden;
    opacity: 0.7;
    z-index: 1;
}

.hero-image-left {
    top: 10%;
    left: 5%;
    background-color: var(--secondary-light);
    background-image: url('_assets/media/8105a273ea94dabe222a2c0421e400bf.png');
    background-size: cover;
    background-position: center;
}

.hero-image-right {
    bottom: 10%;
    right: 5%;
    background-color: var(--accent-gold);
    background-image: url('_assets/media/30850c51682ea579f5d46bf49fac677e.jpg');
    background-size: cover;
    background-position: center;
}

/* Decorative elements */
.decorative-circle {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background-color: var(--secondary-light);
    position: absolute;
    z-index: 2;
    pointer-events: none;
}

.circle-1 {
    top: 15%;
    right: 10%;
}

.circle-2 {
    bottom: 20%;
    left: 8%;
    background-color: var(--accent-teal);
    opacity: 0.4;
}

/* Button styling for better visibility */
.btn {
    display: inline-block;
    padding: 18px 36px;
    font-family: 'Poppins', sans-serif;
    font-size: 1.1rem;
    font-weight: 500;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    text-align: center;
}

.btn-primary {
    background-color: var(--accent-gold);
    color: var(--text-light);
    box-shadow: 0 4px 12px rgba(175, 149, 106, 0.3);
}

.btn-primary:hover {
    background-color: #9c825d;
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(175, 149, 106, 0.4);
}

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

.btn-secondary:hover {
    background-color: var(--accent-gold);
    color: var(--text-light);
}

/* Card design for services */
.card-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-top: 50px;
}

.card {
    background-color: white;
    border-radius: 12px;
    overflow: hidden;
    width: 100%;
    max-width: 350px;
    box-shadow: 0 10px 30px var(--shadow);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

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

.card-image {
    height: 220px;
    overflow: hidden;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.card:hover .card-image img {
    transform: scale(1.05);
}

.card-content {
    padding: 30px;
}

.card h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: var(--primary-dark);
}

/* Improved testimonial design */
.testimonial {
    background-color: var(--secondary-light);
    border-radius: 12px;
    padding: 40px;
    margin: 30px 0;
    position: relative;
}

.testimonial:before {
    content: '"';
    font-family: 'Poppins', sans-serif;
    font-size: 120px;
    color: var(--accent-gold);
    position: absolute;
    top: -20px;
    left: 20px;
    opacity: 0.3;
}

.testimonial-author {
    display: flex;
    align-items: center;
    margin-top: 20px;
}

.author-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: var(--accent-gold);
    margin-right: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
}

/* Contact form styling */
.contact-form {
    /* max-width: 600px; */
    /* margin: 0 auto; */
    background-color: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 10px 30px var(--shadow);
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--primary-dark);
}

.form-control {
    width: 100%;
    padding: 16px;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    border: 1px solid #ddd;
    border-radius: 8px;
    transition: border-color 0.3s ease;
}

.form-control:focus {
    outline: none;
    border-color: var(--accent-gold);
    box-shadow: 0 0 0 3px rgba(175, 149, 106, 0.2);
}

/* Footer styling */
footer {
    background-color: #af956a;
    color: var(--text-light);
    padding: 60px 0 30px;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 40px;
}

.footer-section {
    flex: 1;
    min-width: 250px;
    margin-bottom: 30px;
    padding-right: 20px;
}

.footer-section h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: var(--text-light);
}

.footer-section a {
    color: var(--text-light);
    text-decoration: none;
    display: block;
    margin-bottom: 10px;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--primary-dark);
}

.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    /* background-color: rgba(255, 255, 255, 0.1); */
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.social-icon:hover {
    /* background-color: var(--accent-gold); */
}

.copyright {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

/* Navigation for better accessibility */
.main-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #00000069;
    z-index: 1000;
    box-shadow: none;
    /* padding: 20px 0; */
    transition: background-color 0.4s ease, box-shadow 0.4s ease, padding 0.3s ease;
}

/* Optional: Add subtle background on scroll */
.main-nav.scrolled {
    background-color: #ffffff;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.comfortaa-logo {
font-family: "Comfortaa", sans-serif;
font-optical-sizing: auto;
font-weight: 700;
font-style: normal;
}

/* .logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: #fff;
    text-decoration: none;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    transition: color 0.3s ease, text-shadow 0.3s ease;
} */
/*         
.logo span {
    color: var(--accent-gold);
} */

.main-nav.scrolled .logo {
    color: #000000;
    text-shadow: none;
}

.nav-links {
    display: flex;
    list-style: none;
    align-items: center;
}

.nav-links li {
    margin-left: 30px;
}

.nav-links a {
    text-decoration: none;
    color: #fff;
    font-weight: 500;
    font-size: 1.1rem;
    transition: color 0.3s ease, text-shadow 0.3s ease;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.nav-links a:hover {
    color: var(--accent-gold);
}

.main-nav.scrolled .nav-links a {
    color: #000000;
    text-shadow: none;
}

.main-nav.scrolled .nav-links a:hover {
    color: var(--accent-gold);
}

/* Dropdown Menu Styles */
.nav-links li {
    position: relative;
}

.nav-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: white;
    min-width: 220px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    border-radius: 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    padding: 10px 0;
    margin-top: 10px;
    z-index: 1000;
    list-style: none;
}

.nav-links li:hover .nav-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav-dropdown li {
    margin: 0;
}

.nav-dropdown a {
    display: block;
    padding: 12px 20px;
    color: var(--primary-dark);
    text-shadow: none;
    font-size: 0.95rem;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.nav-dropdown a:hover {
    background-color: var(--secondary-light);
    color: var(--accent-gold);
}

.nav-links li.has-dropdown > a::after {
    content: ' ▼';
    font-size: 0.7rem;
    margin-left: 5px;
}

/* Dropdown styles for scrolled nav */
.main-nav.scrolled .nav-dropdown a {
    color: var(--primary-dark);
}

.main-nav.scrolled .nav-dropdown a:hover {
    color: var(--accent-gold);
}

@media (max-width: 768px) {
    .nav-dropdown {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background-color: transparent;
        padding: 0;
        margin-top: 0;
        margin-left: 20px;
    }

    .nav-dropdown a {
        padding: 8px 0;
        font-size: 0.9rem;
        color: #fff;
    }

    .main-nav.scrolled .nav-dropdown a {
        color: var(--primary-dark);
    }

    .nav-links li.has-dropdown > a::after {
        content: '';
    }
}

/* High contrast mode for accessibility */
.high-contrast {
    background-color: #000 !important;
    color: #fff !important;
}

.high-contrast-text {
    color: #fff !important;
}
.high-contrast h2, .high-contrast p{
    color: #fff !important;
}
.high-contrast-bg {
    background-color: #000 !important;
}

/* Accessibility controls */
.accessibility-controls {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.accessibility-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--accent-gold);
    color: white;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.accessibility-btn:hover {
    transform: scale(1.1);
}

/* Responsive design */
@media (max-width: 992px) {
    h1 {
        font-size: 2.8rem;
    }
    
    h2 {
        font-size: 2.3rem;
    }
    
    .hero-image {
        width: 300px;
        height: 300px;
    }
    
    .nav-links li {
        margin-left: 20px;
    }
}

@media (max-width: 768px) {
    body {
        font-size: 16px;
    }
    
    h1 {
        font-size: 2.4rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    section {
        padding: 60px 0;
    }
    
    .hero {
        min-height: 100vh;
        height: 100vh;
    }
    
    .hero-image {
        display: none;
    }
    
    .hero-content {
        padding: 20px 15px;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-content .large-text {
        font-size: 1.1rem;
    }
    
    .hero-content .btn {
        display: block;
        width: 100%;
        max-width: 280px;
        margin: 0.5rem auto;
    }
    
    .hero-content .btn-secondary {
        margin-left: 0 !important;
    }
    
    .nav-container {
        flex-direction: column;
    }
    
    .nav-links {
        margin-top: 20px;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .nav-links li {
        margin: 5px 15px;
    }
    
    .footer-content {
        flex-direction: column;
    }
    
    .card {
        max-width: 100%;
    }
}

/* Animation for gentle interactions */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeInUp 0.8s ease forwards;
}

/* Typography for Why The Lullaby section - letter/book feel */
#about {
    font-family: 'Georgia', 'Times New Roman', serif;
}

#about p {
    margin-bottom: 1.5rem;
}

/* Testimonial placeholders styling */
.testimonial-placeholder {
    background-color: var(--secondary-light);
    border-radius: 12px;
    padding: 40px;
    margin: 30px 0;
    font-style: italic;
    font-size: 1.2rem;
    line-height: 1.8;
    text-align: center;
    color: var(--text-dark);
}

/* Process numbers styling */
.process-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-gold);
    margin-bottom: 1rem;
}

/* WhatsApp button green */
.btn-whatsapp {
    background-color: #88D0E5;
    color: white;
    border-color: #88D0E5;
}

.btn-whatsapp:hover {
    background-color: #20ba5a;
    border-color: #20ba5a;
}
/* <!-- Poetic Style --> */
.lullaby-linear {
padding: 40px 20px;
background-color: transparent;
font-family: 'Georgia', serif;
color: #2d2d2d;
}

.poetry-card {
max-width: 550px;
margin: 0 auto;
text-align: center;
background: #fff;
padding: 30px;
border-radius: 4px;
border: 1px solid rgba(0,0,0,0.05);
}

.poetry-card h2 {
font-size: 1.4rem;
font-weight: 400;
margin-bottom: 25px;
color: #1a1a1a;
letter-spacing: 0.5px;
}

.stanza {
margin-bottom: 20px;
line-height: 1.6;
}

.stanza p {
margin: 4px 0;
font-size: 1.1rem;
}

.focus-word {
font-size: 1.8rem;
font-weight: 600;
color: #c5a48d;
display: block;
margin: 15px 0;
}

.sub-text {
font-size: 0.95rem;
color: #666;
font-style: italic;
}

/* Mobile adjustments */
@media (max-width: 480px) {
.poetry-card { padding: 20px; }
.focus-word { font-size: 1.5rem; }
.stanza p { font-size: 1rem; }
}
/* gift */
.section-beige-gift {
background-color: #f5f1ed; /* Beige background */
padding: 60px 0;
font-family: 'Georgia', serif;
color: #2d2d2d;
overflow: hidden;
}

.gift-container {
max-width: 1000px;
margin: 0 auto;
padding: 0 40px;
display: flex;
align-items: center;
gap: 60px;
}

/* Left Side: Visual */
.gift-visual {
flex: 1;
position: relative;
}

.gift-visual img {
width: 100%;
height: auto;
border-radius: 2px;
box-shadow: 0 10px 30px rgba(0,0,0,0.05);
filter: sepia(15%);
}

/* Right Side: Content */
.gift-content {
flex: 1.2;
}

.gift-content h2 {
font-size: 2rem;
font-weight: 400;
margin-bottom: 20px;
line-height: 1.2;
color: #1a1a1a;
}

.gift-poetry {
font-size: 1.15rem;
line-height: 1.6;
margin-bottom: 30px;
border-left: 2px solid #c5a48d;
padding-left: 20px;
}

.gift-list-wrap {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 15px;
margin-bottom: 30px;
}

.gift-item {
font-size: 0.95rem;
line-height: 1.4;
color: #555;
position: relative;
padding-left: 12px;
}

.gift-item::before {
content: "•";
position: absolute;
left: 0;
color: #c5a48d;
}

.gift-footer {
font-size: 1.2rem;
font-weight: 600;
color: #c5a48d;
margin-top: 20px;
}

/* Responsive Mobile Design */
@media (max-width: 850px) {
.gift-container {
    flex-direction: column;
    text-align: center;
    padding: 0 25px;
    gap: 40px;
}
.gift-poetry {
    border-left: none;
    padding-left: 0;
}
.gift-list-wrap {
    grid-template-columns: 1fr;
    text-align: left;
    max-width: 400px;
    margin: 0 auto 30px;
}
.gift-content h2 { font-size: 1.7rem; }
}
/* who chooses a lullaby */
.lullaby-final-section {
    padding: 60px 20px;
    background-color: transparent;
    font-family: 'Georgia', serif;
    color: #2d2d2d;
}

.choice-card {
    max-width: 580px;
    margin: 0 auto;
    text-align: center;
    background: #fff;
    padding: 45px 35px;
    border-radius: 4px;
    border: 1px solid rgba(0,0,0,0.05);
    box-shadow: 0 4px 25px rgba(0,0,0,0.03);
}

.choice-card h2 {
    font-size: 2.6rem;
    /* font-weight: 400; */
    margin-bottom: 30px;
    color: #1a1a1a;
    letter-spacing: 0.5px;
}

.visual-placeholder {
    width: 100%;
    height: 250px;
    background-color: #f7f3f0; /* Warm taupe base */
    margin-bottom: 35px;
    border-radius: 2px;
    overflow: hidden;
}

.visual-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.9;
}

.choice-list {
    margin-bottom: 40px;
    line-height: 1.8;
}

.choice-list p {
    margin-bottom: 12px;
    font-size: 1.05rem;
    color: #444;
}

.endure-text {
    font-size: 1.2rem;
    font-weight: 600;
    color: #c5a48d;
    margin: 30px 0;
    display: block;
}

.cta-wrapper {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid #f5f5f5;
}

.cta-text {
    font-size: 1.1rem;
    margin-bottom: 25px;
    color: #1a1a1a;
}

.btn-group {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-lullaby {
    padding: 12px 28px;
    border-radius: 2px;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: opacity 0.2s;
    display: inline-block;
    font-family: sans-serif;
}

.btn-wa { background-color: #88D0E5; color: black; }
.btn-call { background-color: #1a1a2e; color: white; }
.btn-lullaby:hover { opacity: 0.9; }

@media (max-width: 480px) {
    .choice-card { padding: 30px 20px; }
    .choice-card h2 { font-size: 1.4rem; }
    .visual-placeholder { height: 180px; }
}
/* Contact */
.contact-section {
padding: 120px 0;
background: #fafafa;
}

.contact-hero {
display: grid;
grid-template-columns: 1.2fr 1fr;
gap: 60px;
align-items: center;
margin-bottom: 80px;
}

.contact-hero h1 {
font-size: 3rem;
margin-bottom: 1rem;
}

.contact-hero p {
font-size: 1.2rem;
color: #555;
max-width: 520px;
}

.hero-graphic {
width: 100%;
height: 280px;
background: linear-gradient(135deg, #ddd, #eee);
border-radius: 16px;
/* Replace with image:
background: url('/images/mumbai-listening.jpg') center/cover no-repeat;
*/
}

.contact-content {
display: grid;
grid-template-columns: 2fr 1fr;
gap: 80px;
}

.contact-form .form-group {
margin-bottom: 24px;
}

.form-control {
width: 100%;
padding: 14px 16px;
border-radius: 8px;
border: 1px solid #ccc;
font-size: 1rem;
}

.optional {
font-weight: normal;
color: #888;
}

.btn-primary {
width: 100%;
padding: 18px;
font-size: 1.1rem;
border: none;
border-radius: 10px;
background: var(--accent-gold);
color: #000;
cursor: pointer;
}

.contact-info h3 {
margin-bottom: 16px;
}

.contact-info a {
font-size: 1.1rem;
color: var(--accent-gold);
text-decoration: none;
}

.contact-info .location {
margin-top: 8px;
color: #666;
}

/* Responsive */
@media (max-width: 768px) {
.contact-hero,
.contact-content {
grid-template-columns: 1fr;
}

.hero-graphic {
height: 220px;
}
}
