/* =========================================
   Reset & Variables
========================================= */
:root {
    --primary-gold: #D4AF37;
    --primary-gold-hover: #b8972e;
    --dark-bg: #1A1A1A;
    --darker-bg: #111111;
    --light-bg: #F8F9FA;
    --white: #FFFFFF;
    --text-main: #333333;
    --text-muted: #666666;
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Lato', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    color: var(--text-main);
    line-height: 1.6;
    background-color: var(--white);
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
    font-family: var(--font-heading);
    font-weight: 700;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

ul {
    list-style: none;
}

/* =========================================
   Utility Classes
========================================= */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: 100px 0;
}

.section-title {
    font-size: 2.1rem;
    text-align: center;
    margin-bottom: 20px;
    color: var(--darker-bg);
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-muted);
    max-width: 700px;
    margin: 0 auto 50px auto;
}

.bg-light { background-color: var(--light-bg); }
.bg-dark { background-color: var(--dark-bg); }
.text-white { color: var(--white); }

/* Buttons */
.btn-primary {
    display: inline-block;
    background-color: var(--primary-gold);
    color: var(--white);
    padding: 15px 40px;
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-primary:hover {
    background-color: var(--primary-gold-hover);
}

.btn-secondary {
    display: inline-block;
    background-color: rgba(255, 255, 255, 0.9);
    color: var(--darker-bg);
    padding: 10px 25px;
    font-weight: bold;
    border-radius: 4px;
    border: none;
    cursor: pointer;
}

.btn-secondary:hover {
    background-color: var(--white);
    color: var(--primary-gold);
}

/* =========================================
   Navigation
========================================= */
header {
    background-color: var(--darker-bg);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.logo {
    color: var(--primary-gold);
    font-size: 2rem;
    font-family: var(--font-heading);
    font-weight: 700;
}

.nav-links a {
    color: var(--white);
    margin: 0 15px;
    font-size: 1rem;
}

.nav-links a:hover {
    color: var(--primary-gold);
}

.nav-actions {
    display: flex;
    align-items: center;
}

.nav-btn-login {
    color: var(--primary-gold);
    margin-right: 20px;
    font-weight: 700;
}

.nav-btn-join {
    padding: 10px 25px;
    font-size: 0.9rem;
}

/* =========================================
   Hero Section
========================================= */
.hero {
    height: 90vh;
    min-height: 600px;
    background: linear-gradient(rgba(17, 17, 17, 0.2), rgba(17, 17, 17, 0.2)), url('images/sugar-baby-mumbai.jpg') center/cover no-repeat;
    display: flex;
    align-items: center;
    text-align: center;
}

.hero-content {
    color: var(--white);
    max-width: 900px;
}

.hero h1 {
    font-size: 4rem;
    color: var(--primary-gold);
    margin-bottom: 25px;
    line-height: 1.2;
}

.hero p {
    font-size: 1.3rem;
    margin-bottom: 40px;
}

/* =========================================
   What Section (Two Column)
========================================= */
.two-column {
    display: flex;
    gap: 50px;
    align-items: center;
}

.text-content {
    flex: 1;
}

.text-content p {
    font-size: 1.15rem;
    margin-bottom: 20px;
    color: var(--text-muted);
}

.image-content {
    flex: 1;
}

.rounded-img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

/* =========================================
   Grid Layouts (Benefits & Where)
========================================= */
.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    border-top: 4px solid var(--primary-gold);
}

.card-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--darker-bg);
}

.location-card {
    background: #2A2A2A;
    padding: 40px;
    border-radius: 8px;
    border-left: 4px solid var(--primary-gold);
}

.location-card h3 {
    color: var(--primary-gold);
    font-size: 1.6rem;
    margin-bottom: 15px;
}

.location-card p {
    color: #DDDDDD;
}

/* =========================================
   How It Works
========================================= */
.steps-container {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    margin-top: 50px;
}

.step-item {
    flex: 1;
    text-align: center;
    position: relative;
}

.step-number {
    width: 70px;
    height: 70px;
    background-color: var(--primary-gold);
    color: var(--white);
    font-size: 2rem;
    font-family: var(--font-heading);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin: 0 auto 20px;
}

.step-item h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

/* =========================================
   Member Teaser
========================================= */
.teaser-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.teaser-card {
    position: relative;
    height: 350px;
    border-radius: 8px;
    overflow: hidden;
    background-color: #000;
}

.teaser-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;

    transition: filter 0.4s ease;
}

.teaser-card:hover img {
    filter: blur(2px) brightness(0.8);
}

.teaser-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    text-align: center;
}

.teaser-info {
    position: absolute;
    bottom: 20px;
    left: 20px;
    color: var(--white);
    font-weight: 700;
    font-size: 1.1rem;
    z-index: 2;
}


/* =========================================
   Final CTA
========================================= */
.final-cta {
    background-color: var(--darker-bg);
    background-image: url('data:image/svg+xml,%3Csvg width="60" height="60" viewBox="0 0 60 60" xmlns="http://www.w3.org/2000/svg"%3E%3Cg fill="none" fill-rule="evenodd"%3E%3Cg fill="%23d4af37" fill-opacity="0.05"%3E%3Cpath d="M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z"/%3E%3C/g%3E%3C/g%3E%3C/svg%3E');
    text-align: center;
    color: var(--white);
    padding: 120px 20px;
}

.final-cta h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.final-cta p {
    font-size: 1.3rem;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    color: #ccc;
}

.cta-large {
    font-size: 1.3rem;
    padding: 20px 50px;
}

/* =========================================
   Footer
========================================= */
footer {
    background-color: #0A0A0A;
    color: #888888;
    padding-top: 80px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 60px;
}

.footer-col h4 {
    color: var(--white);
    margin-bottom: 25px;
    font-family: var(--font-body);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a:hover {
    color: var(--primary-gold);
}

.footer-bottom {
    border-top: 1px solid #222;
    padding: 25px 0;
    text-align: center;
    font-size: 0.9rem;
}

/* =========================================
   Responsive Design
========================================= */
@media (max-width: 992px) {
    .grid-3, .grid-2, .teaser-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .two-column {
        flex-direction: column;
    }
    .hero h1 {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none; /* Mobile menu requires JS, hidden for simplicity */
    }
    .grid-3, .grid-2, .teaser-grid, .footer-grid {
        grid-template-columns: 1fr;
    }
    .steps-container {
        flex-direction: column;
    }
    .hero h1 {
        font-size: 2.5rem;
    }
    .section {
        padding: 60px 0;
    }
}

/* =========================================
   New Section: Advantages (From Provided Image)
========================================= */
.bg-advantages {
    background-color: #F0F2FA; /* Very light blue/gray background */
}

.text-dark-blue {
    color: #1A264A;
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 50px;
    text-transform: ;
}

.advantages-wrapper {
    display: flex;
    max-width: 1000px;
    margin: 0 auto;
    border-radius: 40px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0,0,0,0.06);
}

.adv-card {
    flex: 1;
    padding: 60px 50px;
    display: flex;
    flex-direction: column;
}

.adv-card-baby {
    background-color: #D6D8F4; /* Light purple background */
}

.adv-card-daddy {
    background-color: #FFFFFF; /* White background */
}

.adv-title {
    font-family: var(--font-body);
    font-size: 1.5rem;
    font-weight: 700;
    color: #111;
    margin-bottom: 15px;
    text-align: left;
}

.adv-subtitle {
    font-size: 1rem;
    color: #444;
    margin-bottom: 30px;
    text-align: left;
}

.adv-list {
    list-style: none;
    padding: 0;
    margin-bottom: 40px;
    flex-grow: 1; /* Pushes the button to the bottom evenly */
}

.adv-list li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 15px;
    color: #666;
    font-size: 1rem;
    text-align: left;
}

.adv-list li::before {
    content: '•';
    color: #E63946; /* Red dot exactly like the image */
    position: absolute;
    left: 0;
    font-size: 1.5rem;
    line-height: 1rem;
    top: 3px;
}

.adv-btn-container {
    text-align: left; /* Align button to the left like the image */
}

.btn-adv {
    background-color: #21337B; /* Dark blue pill button */
    color: #FFFFFF;
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 0.95rem;
    padding: 15px 40px;
    border-radius: 30px; /* Pill shape */
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.btn-adv:hover {
    background-color: #152256;
    transform: translateY(-2px);
}

/* =========================================
   Mobile Responsive Updates for New Section
========================================= */
@media (max-width: 768px) {
    .advantages-wrapper {
        flex-direction: column;
        border-radius: 20px;
    }
    .adv-card {
        padding: 40px 30px;
    }
    .text-dark-blue {
        font-size: 1.6rem;
    }
}