/* ===================================
   She Leads - Modern Website Styles
   =================================== */

/* CSS Variables - Brand Colors */
:root {
    /* Brand Colors */
    --primary-burgundy: #A83B47;
    --primary-deep: #8B2E39;
    --soft-pink: #FFC0CB;
    --light-pink: #FFE4E8;
    --beige: #D4B5A0;
    --dark-text: #2C2C2C;
    --light-text: #6B6B6B;
    --white: #FFFFFF;

    /* Gradients */
    --gradient-hero: linear-gradient(135deg, #A83B47 0%, #D4B5A0 100%);
    --gradient-overlay: linear-gradient(135deg, rgba(168, 59, 71, 0.9) 0%, rgba(212, 181, 160, 0.9) 100%);

    /* Spacing */
    --section-padding: 100px;
    --container-width: 1200px;

    /* Transitions */
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);

    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.16);
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--dark-text);
    line-height: 1.6;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

button {
    border: none;
    background: none;
    cursor: pointer;
    font-family: inherit;
}

/* Container */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    color: var(--dark-text);
}

h1 { font-size: clamp(2.5rem, 5vw, 4rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }
h4 { font-size: 1.25rem; }

p {
    margin-bottom: 1rem;
    color: var(--light-text);
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 72px;
}

.section-title {
    margin-bottom: 20px;
    font-weight: 800;
    letter-spacing: -0.5px;
    color: var(--primary-burgundy);
}

.title-underline {
    width: 80px;
    height: 4px;
    background: var(--primary-burgundy);
    margin: 0 auto 24px;
    border-radius: 3px;
    box-shadow: 0 2px 8px rgba(168, 59, 71, 0.25);
}

.section-subtitle {
    font-size: 1.25rem;
    color: var(--light-text);
    max-width: 650px;
    margin: 0 auto;
    line-height: 1.7;
    font-weight: 400;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 14px 32px;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 50px;
    transition: var(--transition);
    text-align: center;
    cursor: pointer;
}

.btn-primary {
    background: var(--primary-burgundy);
    color: var(--white);
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    background: var(--primary-deep);
}

.btn-hero {
    background: var(--white);
    color: var(--primary-burgundy);
    padding: 16px 40px;
    font-size: 1rem;
    font-weight: 700;
    margin-top: 0;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.5s ease;
}

.btn-hero:hover::before {
    left: 100%;
}

.btn-hero:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
    background: var(--light-pink);
}

.btn-hero:active {
    transform: translateY(-1px);
}

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

.btn-secondary:hover {
    background: var(--primary-burgundy);
    color: var(--white);
}

.btn-submit {
    background: var(--primary-burgundy);
    color: var(--white);
    width: 100%;
    max-width: 300px;
    padding: 16px 36px;
    font-size: 1rem;
    position: relative;
}

.btn-submit:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    background: var(--primary-deep);
}

.btn-submit:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

/* Navigation - Full Width with Better Scroll Behavior */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    background: transparent;
    z-index: 1000;
    padding: 24px 60px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Navbar becomes solid when scrolled */
.navbar.scrolled {
    background: rgba(139, 46, 57, 0.98);
    backdrop-filter: blur(10px);
    padding: 16px 60px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

/* Remove the hide-on-scroll behavior - it's causing issues */
.navbar.hidden {
    transform: translateY(0);
}

.navbar .container {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    max-width: 100%;
    padding: 0;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 40px;
    align-items: center;
    margin: 0;
    padding: 0;
}

.nav-link {
    font-weight: 600;
    font-size: 1rem;
    color: var(--white);
    padding: 0;
    border-radius: 0;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
}

/* Elegant underline effect */
.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--white);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.nav-link.btn-primary {
    color: var(--white);
    padding: 10px 28px;
    background: rgba(255, 255, 255, 0.15);
    border: 1.5px solid var(--white);
    border-radius: 50px;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.nav-link.btn-primary::after {
    display: none;
}

.nav-link.btn-primary:hover {
    background: var(--white);
    color: var(--primary-burgundy);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.3);
}

.navbar.scrolled .nav-link.btn-primary:hover {
    background: var(--white);
    color: var(--primary-burgundy);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    padding: 8px;
    position: absolute;
    top: 32px;
    right: 24px;
}

.nav-toggle span {
    width: 28px;
    height: 3px;
    background: var(--primary-burgundy);
    border-radius: 2px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Adaptive hamburger colors with smooth transitions */
.nav-toggle.dark-toggle span {
    background: var(--primary-burgundy) !important;
}

.nav-toggle.light-toggle span {
    background: var(--white) !important;
}

/* Enhanced contrast for better visibility */
@media (max-width: 768px) {
    .nav-toggle {
        padding: 12px;
        background: rgba(255, 255, 255, 0.1);
        border-radius: 8px;
        transition: all 0.3s ease;
    }

    .nav-toggle.dark-toggle {
        background: rgba(168, 59, 71, 0.1);
    }

    .nav-toggle.light-toggle {
        background: rgba(255, 255, 255, 0.1);
    }

    /* Add subtle backdrop on active state */
    .nav-toggle.active {
        background: rgba(255, 255, 255, 0.15);
    }

    .nav-toggle.dark-toggle.active {
        background: rgba(168, 59, 71, 0.15);
    }
}

/* Hero Section */
/* Hero Section - Split Design */
.hero {
    min-height: 100vh;
    display: flex;
    position: relative;
    overflow: hidden;
}

/* Left Side - Logo */
.hero-left {
    flex: 0 0 50%;
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
    position: relative;
}

.hero-logo-container {
    max-width: 600px;
    width: 100%;
    animation: fadeInScale 1s ease-out;
}

.hero-logo {
    width: 100%;
    height: auto;
    display: block;
    filter: drop-shadow(0 10px 30px rgba(168, 59, 71, 0.2));
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Right Side - Deep Red with Content */
.hero-right {
    flex: 0 0 50%;
    background: linear-gradient(135deg, #8B2E39 0%, #A83B47 50%, #8B2E39 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 60px 80px;
    position: relative;
    overflow: hidden;
}

/* Decorative elements on right side */
.hero-right::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 15s infinite ease-in-out;
}

.hero-right::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 20s infinite ease-in-out reverse;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(30px, -30px) scale(1.1); }
}

.hero-content {
    max-width: 650px;
    position: relative;
    z-index: 2;
    animation: fadeInUp 1s ease-out 0.3s both;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-title {
    color: var(--white);
    margin-bottom: 28px;
    font-weight: 800;
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    line-height: 1.15;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    letter-spacing: -0.5px;
}

.hero-description {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.98);
    margin-bottom: 24px;
    line-height: 1.7;
    font-weight: 400;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.hero-badge {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.7rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-top: 24px;
    margin-bottom: 32px;
    color: var(--white);
    border: 1.5px solid rgba(255, 255, 255, 0.4);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 0;
    right: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.875rem;
    z-index: 3;
}

.scroll-arrow {
    width: 24px;
    height: 24px;
    border-right: 2px solid var(--white);
    border-bottom: 2px solid var(--white);
    transform: rotate(45deg);
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0) rotate(45deg); }
    50% { transform: translateY(10px) rotate(45deg); }
}

/* About Section */
.about {
    padding: var(--section-padding) 0;
    background: linear-gradient(180deg, #FFFFFF 0%, #FEFBFC 100%);
    position: relative;
    overflow: hidden;
}

.about::before {
    content: '';
    position: absolute;
    top: 20%;
    left: -5%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(168, 59, 71, 0.03) 0%, transparent 70%);
    border-radius: 50%;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 100px;
    align-items: start;
    position: relative;
}

.about-text {
    padding: 40px 0;
}

.about-text .lead-text {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--primary-burgundy);
    margin-bottom: 32px;
    line-height: 1.4;
    letter-spacing: -0.3px;
    position: relative;
    padding-left: 24px;
}

.about-text .lead-text::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 5px;
    background: var(--primary-burgundy);
    border-radius: 3px;
}

.about-text p {
    font-size: 1.125rem;
    line-height: 1.9;
    margin-bottom: 24px;
    color: var(--dark-text);
    font-weight: 400;
}

/* Connection Pillars - Enhanced 5 Points Display */
.connection-pillars {
    display: flex;
    flex-direction: column;
    gap: 20px;
    position: relative;
}

.connection-pillars::before {
    content: '';
    position: absolute;
    left: 31px;
    top: 32px;
    bottom: 32px;
    width: 2px;
    background: linear-gradient(180deg,
        rgba(168, 59, 71, 0.15) 0%,
        rgba(168, 59, 71, 0.4) 50%,
        rgba(168, 59, 71, 0.15) 100%);
    border-radius: 2px;
}

.pillar-card {
    background: var(--white);
    padding: 28px 28px 28px 88px;
    border-radius: 16px;
    border: 2px solid rgba(168, 59, 71, 0.1);
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: left;
}

.pillar-card::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: var(--primary-burgundy);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.pillar-card:hover::before {
    opacity: 1;
}

.pillar-card:hover {
    border-color: var(--primary-burgundy);
    transform: translateX(8px);
    box-shadow: 0 8px 28px rgba(168, 59, 71, 0.15);
    background: linear-gradient(135deg, rgba(168, 59, 71, 0.02) 0%, var(--white) 100%);
}

.pillar-icon {
    width: 64px;
    height: 64px;
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    background: var(--primary-burgundy);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    box-shadow: 0 4px 20px rgba(168, 59, 71, 0.25);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 2;
}

.pillar-card:hover .pillar-icon {
    transform: translateY(-50%) scale(1.08);
    box-shadow: 0 6px 24px rgba(168, 59, 71, 0.4);
}

.pillar-icon svg {
    width: 30px;
    height: 30px;
}

.pillar-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-burgundy);
    margin-bottom: 8px;
    letter-spacing: 0.3px;
    position: relative;
    z-index: 1;
}

.pillar-card p {
    font-size: 0.95rem;
    line-height: 1.65;
    color: var(--light-text);
    margin: 0;
    position: relative;
    z-index: 1;
    font-weight: 400;
}

/* Benefits Section */
.benefits {
    padding: var(--section-padding) 0;
    background: linear-gradient(135deg, #FFFFFF 0%, #FFE4E8 50%, #FFF5F7 100%);
    position: relative;
    overflow: hidden;
}

.benefits::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(168, 59, 71, 0.05) 0%, transparent 70%);
    border-radius: 50%;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
}

.benefit-card {
    background: var(--white);
    padding: 48px 36px;
    border-radius: 24px;
    box-shadow: 0 4px 20px rgba(168, 59, 71, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: center;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(168, 59, 71, 0.03), transparent);
    transition: left 0.6s ease;
}

.benefit-card:hover::before {
    left: 100%;
}

.benefit-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 16px 48px rgba(168, 59, 71, 0.18);
    border-color: var(--primary-burgundy);
}

.benefit-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 24px;
    background: var(--primary-burgundy);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    box-shadow: 0 6px 20px rgba(168, 59, 71, 0.25);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.benefit-card:hover .benefit-icon {
    transform: scale(1.08) rotate(-5deg);
    box-shadow: 0 8px 24px rgba(168, 59, 71, 0.35);
}

.benefit-icon svg {
    width: 36px;
    height: 36px;
}

.benefit-card h3 {
    margin-bottom: 16px;
    color: var(--primary-burgundy);
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 0.3px;
}

.benefit-card p {
    font-size: 1.05rem;
    line-height: 1.75;
    color: var(--light-text);
}

/* Testimonials Section */
.testimonials {
    padding: var(--section-padding) 0;
    background: linear-gradient(180deg, #FFFFFF 0%, #FFF9FA 100%);
    position: relative;
}

.testimonials::before {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(168, 59, 71, 0.03) 0%, transparent 70%);
    border-radius: 50%;
}

.testimonials-slider {
    max-width: 950px;
    margin: 0 auto;
}

.testimonial-track {
    position: relative;
    overflow: hidden;
}

.testimonial-card {
    display: none;
    opacity: 0;
    transition: opacity 0.6s ease-in-out;
}

.testimonial-card.active {
    display: block;
    opacity: 1;
    animation: fadeInScale 0.6s ease-out;
}

.testimonial-content {
    background: linear-gradient(135deg, #FFE4E8 0%, #FFF5F7 100%);
    padding: 40px;
    border-radius: 32px;
    position: relative;
    box-shadow: 0 8px 32px rgba(168, 59, 71, 0.12);
    border: 2px solid rgba(168, 59, 71, 0.08);
    display: flex;
    gap: 40px;
    align-items: center;
}

.testimonial-image {
    flex: 0 0 25%;
    width: 25%;
    height: auto;
    border-radius: 20px;
    object-fit: cover;
    aspect-ratio: 3/4;
    box-shadow: 0 8px 24px rgba(168, 59, 71, 0.2);
    border: 3px solid var(--white);
}

.testimonial-text-content {
    flex: 1;
    position: relative;
}

.quote-mark {
    font-size: 5rem;
    color: var(--primary-burgundy);
    opacity: 0.15;
    position: absolute;
    top: -10px;
    left: 0;
    font-family: Georgia, serif;
    line-height: 1;
    font-weight: 700;
}

.testimonial-text {
    font-size: 1.05rem;
    font-style: italic;
    color: var(--dark-text);
    margin-bottom: 28px;
    position: relative;
    z-index: 1;
    line-height: 1.7;
    font-weight: 400;
    padding-top: 20px;
}

.testimonial-author {
    display: flex;
    align-items: flex-start;
    gap: 0;
}

.author-info h4 {
    margin-bottom: 6px;
    font-size: 1.25rem;
    color: var(--primary-burgundy);
    font-weight: 700;
}

.author-info p {
    color: var(--light-text);
    font-size: 1rem;
    margin: 0;
    font-weight: 500;
}

.testimonial-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    margin-top: 48px;
}

.testimonial-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--primary-burgundy);
    color: var(--white);
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(168, 59, 71, 0.25);
    border: 2px solid transparent;
}

.testimonial-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(168, 59, 71, 0.35);
    background: var(--primary-deep);
}

.testimonial-btn:active {
    transform: scale(1.05);
}

.testimonial-dots {
    display: flex;
    gap: 14px;
}

.dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: rgba(168, 59, 71, 0.2);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.dot.active {
    background: var(--primary-burgundy);
    transform: scale(1.3);
    box-shadow: 0 0 0 4px rgba(168, 59, 71, 0.15);
}

.dot:hover {
    background: var(--primary-burgundy);
    transform: scale(1.2);
}

/* Membership Modal */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    overflow: hidden;
}

.modal.active {
    display: block;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(4px);
    animation: fadeIn 0.3s ease-out;
}

.modal-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    max-width: 900px;
    max-height: 90vh;
    background: var(--white);
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    animation: slideUp 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translate(-50%, -45%);
    }
    to {
        opacity: 1;
        transform: translate(-50%, -50%);
    }
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.1);
    color: var(--dark-text);
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
    transition: var(--transition);
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-close:hover {
    background: var(--primary-burgundy);
    color: var(--white);
    transform: rotate(90deg);
}

.modal-header {
    padding: 40px 48px 24px;
    text-align: center;
    border-bottom: 2px solid var(--light-pink);
    background: linear-gradient(180deg, var(--light-pink) 0%, var(--white) 100%);
}

.modal-title {
    color: var(--primary-burgundy);
    margin-bottom: 12px;
}

.modal-subtitle {
    font-size: 1rem;
    color: var(--light-text);
    margin: 0;
}

.modal-body {
    flex: 1;
    overflow-y: auto;
    padding: 32px 48px 48px;
}

/* Custom scrollbar for modal */
.modal-body::-webkit-scrollbar {
    width: 8px;
}

.modal-body::-webkit-scrollbar-track {
    background: #F5F5F5;
}

.modal-body::-webkit-scrollbar-thumb {
    background: var(--primary-burgundy);
    border-radius: 4px;
}

.modal-body::-webkit-scrollbar-thumb:hover {
    background: var(--primary-deep);
}

.membership-form {
    max-width: 100%;
}

.form-section {
    margin-bottom: 48px;
}

.form-section:last-of-type {
    margin-bottom: 32px;
}

.form-section-title {
    color: var(--primary-burgundy);
    margin-bottom: 24px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--light-pink);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

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

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

.required {
    color: var(--primary-burgundy);
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid #E0E0E0;
    border-radius: 12px;
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
    background: var(--white);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-burgundy);
    box-shadow: 0 0 0 4px rgba(168, 59, 71, 0.1);
}

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

.form-group.error input,
.form-group.error textarea,
.form-group.error select {
    border-color: #E53E3E;
}

.error-message {
    display: none;
    color: #E53E3E;
    font-size: 0.875rem;
    margin-top: 6px;
}

.form-group.error .error-message {
    display: block;
}

.radio-group {
    display: flex;
    gap: 24px;
    margin-top: 12px;
}

.radio-label {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    font-weight: 500;
}

.radio-label input[type="radio"] {
    width: 20px;
    height: 20px;
    cursor: pointer;
    accent-color: var(--primary-burgundy);
}

.form-actions {
    display: flex;
    justify-content: center;
    margin-top: 40px;
}

.btn-loading {
    display: flex;
    align-items: center;
    gap: 12px;
}

.spinner {
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-top-color: var(--white);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Success Message */
.success-message {
    background: var(--white);
    padding: 60px 48px;
    border-radius: 24px;
    text-align: center;
    box-shadow: var(--shadow-md);
}

.success-icon {
    width: 80px;
    height: 80px;
    background: #48BB78;
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    margin: 0 auto 24px;
}

.success-message h3 {
    color: var(--primary-burgundy);
    margin-bottom: 16px;
}

.success-message p {
    font-size: 1.125rem;
    margin-bottom: 32px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.error-alert {
    background: #FED7D7;
    color: #C53030;
    padding: 16px 24px;
    border-radius: 12px;
    margin-bottom: 24px;
    border-left: 4px solid #E53E3E;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #2C2C2C 0%, #1A1A1A 100%);
    color: var(--white);
    padding: 80px 0 32px;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--primary-burgundy);
}

.footer::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(168, 59, 71, 0.08) 0%, transparent 70%);
    border-radius: 50%;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 80px;
    margin-bottom: 48px;
    position: relative;
    z-index: 1;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-brand-name {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-burgundy);
    margin: 0;
    letter-spacing: -0.5px;
    text-shadow: 0 2px 8px rgba(168, 59, 71, 0.3);
}

.footer-tagline {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.85);
    margin: 0;
    font-weight: 500;
    letter-spacing: 0.3px;
}

.footer-links h4 {
    color: var(--white);
    margin-bottom: 20px;
    font-size: 1.25rem;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.social-links {
    display: flex;
    gap: 16px;
}

.social-link {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.social-link:hover {
    background: var(--primary-burgundy);
    transform: translateY(-4px);
    box-shadow: 0 6px 20px rgba(168, 59, 71, 0.4);
    border-color: var(--primary-burgundy);
}

.social-link svg {
    width: 22px;
    height: 22px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 36px;
    border-top: 2px solid rgba(255, 255, 255, 0.1);
    position: relative;
    z-index: 1;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
    font-size: 1rem;
}

.footer-credit {
    color: var(--primary-burgundy);
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
}

.footer-credit:hover {
    color: var(--white);
    text-decoration: underline;
}

.footer-bottom-links {
    display: flex;
    gap: 32px;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.footer-bottom-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-burgundy);
    transition: width 0.3s ease;
}

.footer-bottom-links a:hover {
    color: var(--white);
}

.footer-bottom-links a:hover::after {
    width: 100%;
}

/* Scroll to Top Button */
.scroll-top {
    position: fixed;
    bottom: 32px;
    right: 32px;
    width: 52px;
    height: 52px;
    background: var(--primary-burgundy);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 999;
}

.scroll-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    transform: translateY(-3px);
    background: var(--primary-deep);
}

.scroll-top svg {
    width: 24px;
    height: 24px;
}

/* Responsive Design */
@media (max-width: 968px) {
    :root {
        --section-padding: 80px;
    }

    /* Hero Section - Stack on tablet */
    .hero {
        flex-direction: column;
    }

    .hero-left,
    .hero-right {
        flex: 1 1 auto;
        min-height: 50vh;
    }

    .hero-left {
        padding: 60px 40px;
    }

    .hero-right {
        padding: 80px 40px 60px;
    }

    .hero-logo-container {
        max-width: 400px;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .about-text {
        padding: 20px 0;
    }

    .about-text .lead-text {
        font-size: 1.5rem;
        margin-bottom: 24px;
        padding-left: 20px;
    }

    .about-text .lead-text::before {
        width: 4px;
    }

    .connection-pillars::before {
        left: 27px;
    }

    .pillar-card {
        padding: 24px 24px 24px 80px;
    }

    .pillar-icon {
        width: 56px;
        height: 56px;
        left: 10px;
    }

    .pillar-icon svg {
        width: 26px;
        height: 26px;
    }

    .pillar-card h3 {
        font-size: 1.15rem;
    }

    .pillar-card p {
        font-size: 0.9rem;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 60px;
    }

    /* Navbar mobile */
    .navbar {
        width: 100%;
        padding: 16px 24px;
        background: transparent;
    }

    .navbar.scrolled {
        padding: 12px 24px;
        background: rgba(139, 46, 57, 0.98);
        backdrop-filter: blur(10px);
    }

    .navbar .container {
        justify-content: space-between;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(139, 46, 57, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        padding: 100px 40px 60px;
        gap: 32px;
        transform: translateX(-100%);
        transition: all 0.3s ease-in-out;
        box-shadow: none;
        justify-content: flex-start;
        overflow-y: auto;
    }

    .nav-menu.active {
        transform: translateX(0);
    }

    .nav-toggle {
        display: flex;
        z-index: 1001;
    }

    .nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(8px, 8px);
    }

    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(8px, -8px);
    }

    .nav-link {
        font-size: 1.25rem;
        width: 100%;
        text-align: center;
    }

    .nav-link::after {
        display: none;
    }

    .nav-link.btn-primary {
        padding: 16px 32px;
        text-align: center;
        font-size: 1rem;
        width: 100%;
        max-width: 250px;
        margin: 0 auto;
    }

    /* Hero mobile adjustments */
    .hero-left {
        padding: 70px 20px 30px;
        min-height: 35vh;
    }

    .hero-right {
        padding: 40px 24px 80px;
        min-height: 65vh;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .hero-logo-container {
        max-width: 240px;
    }

    .hero-content {
        text-align: center;
    }

    .hero-title {
        font-size: 1.75rem;
        margin-bottom: 24px;
        line-height: 1.25;
        letter-spacing: -0.3px;
    }

    .hero-description {
        font-size: 1rem;
        margin-bottom: 16px;
        line-height: 1.6;
    }

    .hero-badge {
        padding: 8px 20px;
        font-size: 0.7rem;
        margin-top: 24px;
        margin-bottom: 32px;
        letter-spacing: 1.2px;
    }

    .btn-hero {
        width: 100%;
        max-width: 100%;
        padding: 18px 40px;
        font-size: 0.9rem;
        letter-spacing: 0.3px;
    }

    .scroll-indicator {
        bottom: 30px;
        font-size: 0.8rem;
    }

    .scroll-indicator span {
        margin-bottom: 6px;
    }

    .scroll-arrow {
        width: 20px;
        height: 20px;
    }

    .modal-content {
        width: 95%;
        max-height: 95vh;
    }

    .modal-header {
        padding: 32px 24px 20px;
    }

    .modal-body {
        padding: 24px;
    }

    .modal-close {
        top: 12px;
        right: 12px;
        width: 36px;
        height: 36px;
        font-size: 24px;
    }

    .testimonial-content {
        padding: 28px 20px;
        flex-direction: column;
        gap: 24px;
    }

    .testimonial-image {
        flex: 0 0 auto;
        width: 100%;
        max-width: 200px;
        margin: 0 auto;
    }

    .testimonial-text-content {
        text-align: center;
    }

    .quote-mark {
        font-size: 3.5rem;
        left: 50%;
        transform: translateX(-50%);
        top: -15px;
    }

    .testimonial-text {
        font-size: 0.95rem;
        padding-top: 25px;
    }

    .testimonial-author {
        justify-content: center;
    }

    .author-info h4 {
        font-size: 1.1rem;
    }

    .author-info p {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .hero-left {
        padding: 60px 16px 24px;
        min-height: 30vh;
    }

    .hero-right {
        padding: 32px 20px 70px;
    }

    .hero-logo-container {
        max-width: 200px;
    }

    .hero-title {
        font-size: 1.5rem;
        margin-bottom: 20px;
    }

    .hero-description {
        font-size: 0.95rem;
        margin-bottom: 14px;
    }

    .hero-badge {
        padding: 6px 16px;
        font-size: 0.65rem;
        margin-top: 20px;
        margin-bottom: 28px;
    }

    .btn-hero {
        padding: 16px 32px;
        font-size: 0.85rem;
    }

    h1 { font-size: 1.5rem; }
    h2 { font-size: 1.5rem; }

    .scroll-top {
        width: 46px;
        height: 46px;
        bottom: 20px;
        right: 20px;
    }

    .scroll-top svg {
        width: 20px;
        height: 20px;
    }
}

/* Print Styles */
@media print {
    .navbar,
    .scroll-top,
    .testimonial-controls,
    .nav-toggle {
        display: none;
    }
}
