/* ===== CSS VARIABLES ===== */
:root {
    --primary: #FF1493;
    --primary-light: #FFC0CB;
    --primary-dark: #C71585;
    --secondary: #FF69B4;
    --secondary-light: #FFB6C1;
    --neutral-dark: #2C2C2C;
    --neutral-light: #FAFAFA;
    --neutral-white: #FFFFFF;
    --accent-pink: #FF1493;
    --accent-rose: #FFB6D9;
    --accent-gold: #FFB347;
    --error: #E74C3C;
    --text-body: #555555;
    --text-muted: #888888;
    --border-light: #F0F0F0;
    --shadow-sm: 0 2px 10px rgba(255, 20, 147, 0.08);
    --shadow-md: 0 4px 20px rgba(255, 20, 147, 0.12);
    --shadow-lg: 0 8px 30px rgba(255, 20, 147, 0.15);
    --shadow-xl: 0 15px 50px rgba(255, 20, 147, 0.2);
    --radius-sm: 10px;
    --radius-md: 15px;
    --radius-lg: 25px;
    --radius-full: 50px;
    --transition: all 0.3s ease;
    --font-heading: 'Poppins', sans-serif;
    --font-body: 'Inter', sans-serif;
    --font-accent: 'Raleway', sans-serif;
}

/* ===== RESET & BASE ===== */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
    /* Better font rendering */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--neutral-dark);
    background: var(--neutral-white);
    overflow-x: hidden;
    max-width: 100vw;
    width: 100%;
    /* Prevent text size adjustment on mobile */
    -webkit-text-size-adjust: 100%;
    -moz-text-size-adjust: 100%;
    text-size-adjust: 100%;
}

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

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

ul {
    list-style: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    color: var(--neutral-dark);
}

h1 {
    font-size: 3.5rem;
    font-weight: 800;
}

h2 {
    font-size: 2.5rem;
}

.about-preview-content p,
.about-preview-content .about-lead {
    overflow-wrap: anywhere;
}
h3 {
    font-size: 1.5rem;
    font-weight: 600;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    width: 100%;
}

.text-gradient {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    border-radius: var(--radius-full);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 15px;
    border: 2px solid transparent;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
    white-space: nowrap;
}

/* Focus states for accessibility */
.btn:focus-visible,
button:focus-visible,
a:focus-visible {
    outline: 3px solid rgba(255, 20, 147, 0.5);
    outline-offset: 2px;
}

.btn-primary {
    background: var(--primary);
    color: var(--neutral-white);
    border-color: var(--primary);
}

.btn-primary:hover {
    background: var(--primary-light);
    border-color: var(--primary-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 20, 147, 0.3);
}

.btn-outline {
    background: transparent;
    color: var(--primary);
    border-color: var(--primary);
}

.btn-outline:hover {
    background: var(--primary);
    color: var(--neutral-white);
    transform: translateY(-2px);
}

.btn-secondary {
    background: var(--secondary);
    color: var(--neutral-white);
    border-color: var(--secondary);
}

.btn-secondary:hover {
    background: var(--secondary-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 20, 147, 0.3);
}

.btn-cta {
    background: var(--secondary);
    color: var(--neutral-white);
    border-color: var(--secondary);
    font-size: 18px;
    padding: 16px 40px;
}

.btn-cta:hover {
    background: var(--secondary-light);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 20, 147, 0.4);
}

.btn-sm {
    padding: 8px 20px;
    font-size: 14px;
}

.btn-lg {
    padding: 14px 36px;
    font-size: 16px;
}

/* ===== NAVBAR ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    transition: all 0.3s ease;
    padding: 14px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
    padding: 10px 0;
}

.navbar.scrolled .navbar-menu a {
    color: var(--neutral-dark);
}

.navbar.scrolled .navbar-menu a:hover,
.navbar.scrolled .navbar-menu a.active {
    color: var(--primary);
}

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

.navbar-logo img {
    height: 44px;
    width: auto;
}

.navbar.scrolled .navbar-logo img {
    height: 40px;
}

.navbar-menu {
    display: flex;
    align-items: center;
    gap: 32px;
}

.navbar-menu a {
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 15px;
    color: var(--neutral-dark);
    position: relative;
    padding: 8px 0;
    transition: all 0.3s ease;
}

.navbar-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    transition: width 0.3s ease;
    border-radius: 2px;
}

.navbar-menu a:hover::after,
.navbar-menu a.active::after {
    width: 100%;
}

.navbar-menu a:hover,
.navbar-menu a.active {
    color: var(--primary);
    transform: translateY(-1px);
}

.navbar-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.hamburger:hover {
    background: rgba(255, 20, 147, 0.05);
}

.hamburger span {
    display: block;
    width: 26px;
    height: 3px;
    background: var(--neutral-dark);
    border-radius: 3px;
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.navbar.scrolled .hamburger span {
    background: var(--neutral-dark);
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
    background: var(--primary);
}

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

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
    background: var(--primary);
}

/* ===== HERO ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #FFFFFF 0%, #FFE5F0 50%, #FFB6D9 100%);
    overflow: hidden;
    padding: 120px 0 80px;
}

.hero-bg-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 50%, rgba(255, 20, 147, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 182, 217, 0.15) 0%, transparent 50%);
    opacity: 1;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
    padding: 40px 20px;
}

.hero-badge {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(255, 20, 147, 0.1);
    border: 1px solid rgba(255, 20, 147, 0.3);
    border-radius: var(--radius-full);
    color: var(--primary);
    font-size: 14px;
    font-weight: 600;
    font-family: var(--font-heading);
    margin-bottom: 20px;
    backdrop-filter: blur(10px);
}

.hero-content h1 {
    color: var(--neutral-dark);
    font-size: clamp(2rem, 5vw, 3.5rem);
    margin-bottom: 20px;
    line-height: 1.15;
}

.hero-content h1 .text-gradient {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    color: var(--text-body);
    font-size: clamp(16px, 2vw, 18px);
    line-height: 1.7;
    margin-bottom: 32px;
    max-width: 540px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

.hero-stats {
    display: flex;
    gap: 40px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary);
}

.stat-suffix {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary);
}

.stat-label {
    display: block;
    color: var(--text-body);
    font-size: 13px;
    margin-top: 4px;
}

/* Hero 3D Cards */
.hero-cards-wrapper {
    position: relative;
    height: 450px;
    perspective: 1200px;
    overflow: visible;
}

.hero-cards-carousel {
    position: relative;
    width: 100%;
    height: 380px;
    transform-style: preserve-3d;
    overflow: visible;
}

.hero-card {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 280px;
    padding: 36px 28px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 20, 147, 0.15);
    border-radius: var(--radius-lg);
    text-align: center;
    transform: translate(-50%, -50%) scale(0.8) rotateY(20deg);
    opacity: 0;
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    cursor: pointer;
    will-change: transform, opacity;
}

.hero-card.active {
    transform: translate(-50%, -50%) scale(1.05) rotateY(0deg);
    opacity: 1;
    z-index: 10;
    box-shadow: 0 20px 60px rgba(255, 20, 147, 0.3);
}

.hero-card.prev {
    transform: translate(-130%, -50%) scale(0.85) rotateY(25deg);
    opacity: 0.5;
    z-index: 5;
}

.hero-card.next {
    transform: translate(30%, -50%) scale(0.85) rotateY(-25deg);
    opacity: 0.5;
    z-index: 5;
}

.card-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 28px;
    color: var(--neutral-white);
}

.hero-card h3 {
    color: var(--neutral-dark);
    margin-bottom: 12px;
    font-size: 1.25rem;
}

.hero-card p {
    color: var(--text-body);
    font-size: 14px;
    line-height: 1.6;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 24px;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 20, 147, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.dot.active {
    background: var(--primary);
    transform: scale(1.4);
    border-color: var(--primary-light);
    box-shadow: 0 0 0 4px rgba(255, 20, 147, 0.2);
}

.hero-wave {
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    z-index: 3;
}

.hero-wave svg {
    display: block;
    width: 100%;
}

/* ===== SECTION STYLES ===== */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-badge {
    display: inline-block;
    padding: 6px 18px;
    background: rgba(255, 20, 147, 0.1);
    color: var(--primary);
    border-radius: var(--radius-full);
    font-size: 14px;
    font-weight: 600;
    font-family: var(--font-heading);
    margin-bottom: 16px;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.section-header p {
    color: var(--text-muted);
    font-size: 18px;
    max-width: 600px;
    margin: 0 auto;
}

/* ===== FEATURES ===== */
.features {
    padding: 100px 0;
    background: var(--neutral-light);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.feature-card {
    background: var(--neutral-white);
    padding: 40px 30px;
    border-radius: var(--radius-md);
    text-align: center;
    transition: var(--transition);
    border: 1px solid transparent;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(255, 20, 147, 0.1);
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-icon {
    width: 72px;
    height: 72px;
    background: rgba(255, 20, 147, 0.1);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 28px;
    color: var(--primary);
    transition: var(--transition);
}

.feature-card:hover .feature-icon {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: var(--neutral-white);
    transform: scale(1.1) rotate(5deg);
}

.feature-card h3 {
    font-family: var(--font-accent);
    margin-bottom: 12px;
    font-size: 1.2rem;
}

.feature-card p {
    color: var(--text-muted);
    font-size: 15px;
    line-height: 1.6;
}

/* ===== STATS SECTION ===== */
.stats-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    position: relative;
    overflow: hidden;
}

.stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 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='%23ffffff' 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");
    opacity: 0.4;
}

.stats-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 30px;
    position: relative;
    z-index: 1;
}

.stat-box {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-md);
    padding: 40px 30px;
    text-align: center;
    border: 2px solid rgba(255, 255, 255, 0.2);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.stat-box:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.4);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.stat-box .stat-icon {
    width: 70px;
    height: 70px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--neutral-white);
}

.stat-box .stat-content {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.stat-box .stat-number {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 800;
    color: var(--neutral-white);
    line-height: 1;
}

.stat-box .stat-suffix {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 800;
    color: var(--neutral-white);
}

.stat-box .stat-label {
    color: rgba(255, 255, 255, 0.9);
    font-size: 16px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ===== HOW IT WORKS ===== */
.how-it-works {
    padding: 100px 0;
    background: var(--neutral-white);
}

.steps-grid {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.step-card {
    flex: 1;
    min-width: 200px;
    max-width: 250px;
    background: var(--neutral-light);
    padding: 36px 24px;
    border-radius: var(--radius-md);
    text-align: center;
    position: relative;
    transition: var(--transition);
}

.step-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
}

.step-number {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 800;
    color: rgba(255, 20, 145, 0.353);
    position: absolute;
    top: 10px;
    right: 16px;
}

.step-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
    font-size: 24px;
    color: var(--neutral-white);
}

.step-card h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.step-card p {
    color: var(--text-muted);
    font-size: 14px;
}

.step-connector {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 24px;
    opacity: 0.4;
}

.step-connector i {
    display: inline-block;
    transition: transform 0.2s ease;
}

/* ===== ABOUT PREVIEW ===== */
.about-preview {
    padding: 100px 0;
    background: var(--neutral-light);
}

.about-preview-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-preview-image {
    position: relative;
}

.about-preview-image img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.about-preview-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--primary);
    color: var(--neutral-white);
    padding: 20px 28px;
    border-radius: var(--radius-md);
    text-align: center;
    box-shadow: var(--shadow-md);
}

.badge-number {
    display: block;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
}

.badge-text {
    font-size: 13px;
    opacity: 0.85;
}

.about-preview-content .section-badge {
    margin-bottom: 12px;
}

.about-preview-content h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
}

.about-lead {
    font-size: 17px;
    font-weight: 500;
    color: var(--neutral-dark);
    margin-bottom: 16px;
}

.about-preview-content p {
    color: var(--text-body);
    margin-bottom: 16px;
    line-height: 1.7;
}

.about-values-mini {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 24px 0;
}

.value-chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    background: rgba(255, 20, 147, 0.08);
    border-radius: var(--radius-full);
    font-size: 14px;
    font-weight: 500;
    color: var(--primary);
}

.value-chip i {
    color: var(--primary);
}

/* ===== TESTIMONIALS ===== */
.testimonials {
    padding: 100px 0;
    background: var(--neutral-white);
}

.testimonials-slider {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding: 20px 0;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.testimonials-slider::-webkit-scrollbar {
    display: none;
}

.testimonial-card {
    min-width: 350px;
    max-width: 380px;
    background: var(--neutral-light);
    padding: 32px;
    border-radius: var(--radius-md);
    scroll-snap-align: start;
    flex-shrink: 0;
    transition: var(--transition);
    border: 1px solid var(--border-light);
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: rgba(255, 20, 147, 0.2);
}

.testimonial-stars {
    margin-bottom: 16px;
    color: var(--accent-gold);
    font-size: 16px;
    display: flex;
    gap: 2px;
}

.testimonial-quote {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-body);
    margin-bottom: 24px;
    font-style: italic;
    position: relative;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 14px;
}

.testimonial-author img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--primary);
}

.testimonial-author h4 {
    font-size: 15px;
    font-weight: 600;
}

.testimonial-author span {
    font-size: 13px;
    color: var(--text-muted);
}

.testimonial-nav {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 30px;
}

.testimonial-prev,
.testimonial-next {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 2px solid var(--primary);
    background: transparent;
    color: var(--primary);
    cursor: pointer;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.testimonial-prev:hover,
.testimonial-next:hover {
    background: var(--primary);
    color: var(--neutral-white);
}

/* ===== CTA SECTION ===== */
.cta-section {
    padding: 80px 0;
    background: var(--neutral-light);
}

.cta-card {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: var(--radius-lg);
    padding: 60px;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 40px;
    align-items: center;
    overflow: hidden;
    position: relative;
}

.cta-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 400px;
    height: 400px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
}

.cta-content {
    position: relative;
    z-index: 2;
}

.cta-content h2 {
    color: var(--neutral-white);
    font-size: 2rem;
    margin-bottom: 16px;
}

.cta-content p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 32px;
}

.cta-image {
    position: relative;
    z-index: 2;
}

.cta-image img {
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-xl);
    width: 100%;
    height: auto;
}

/* ===== FOOTER ===== */
.footer {
    background: var(--neutral-dark);
    color: rgba(255, 255, 255, 0.7);
    padding: 60px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logo img {
    height: 40px;
    margin-bottom: 16px;
}

.footer-about p {
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 20px;
}

/* Inspirational Quote Section */
.inspirational-quote {
    padding: 80px 0;
    background: linear-gradient(135deg, #FFE5F0 0%, #FFB6D9 100%);
    position: relative;
    overflow: hidden;
}

.inspirational-quote::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    opacity: 0.6;
}

.quote-container {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
}

.quote-wrapper {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 50px 60px;
    border-radius: var(--radius-lg);
    box-shadow: 0 20px 60px rgba(255, 20, 147, 0.2);
    border-left: 5px solid var(--primary);
    position: relative;
}

.quote-icon {
    font-size: 60px;
    color: var(--primary);
    opacity: 0.2;
    position: absolute;
    top: 20px;
    left: 30px;
}

.quote-text {
    font-family: 'Georgia', serif;
    font-size: 1.8rem;
    line-height: 1.8;
    color: var(--neutral-dark);
    font-style: italic;
    margin: 0;
    position: relative;
}

.quote-attribution {
    margin-top: 24px;
    font-family: var(--font-heading);
    font-size: 16px;
    color: var(--primary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--neutral-white);
    font-size: 16px;
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--primary);
    transform: translateY(-3px);
}

.footer-col h4 {
    color: var(--neutral-white);
    font-size: 16px;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 12px;
}

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

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    transition: var(--transition);
}

.footer-col ul li a:hover {
    color: var(--secondary);
    padding-left: 4px;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
}

.footer-contact li i {
    color: var(--secondary);
    margin-top: 4px;
    min-width: 16px;
}

.footer-bottom {
    text-align: center;
    padding: 24px 0;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.4);
}

.footer-bottom p {
    margin-bottom: 4px;
}

/* ===== WHATSAPP FLOAT ===== */
.whatsapp-float {
    position: fixed;
    bottom: max(24px, env(safe-area-inset-bottom, 24px));
    right: max(24px, env(safe-area-inset-right, 24px));
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 30px;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
    z-index: 998;
    transition: all 0.3s ease;
    animation: pulse-wa 2s infinite;
    cursor: pointer;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.5);
}

@keyframes pulse-wa {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.4);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* ===== BACK TO TOP ===== */
.back-to-top {
    position: fixed;
    bottom: 24px;
    right: 100px;
    width: 46px;
    height: 46px;
    background: var(--primary);
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-md);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: var(--transition);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: var(--primary-light);
    transform: translateY(-3px);
}

/* ===== PAGE HERO (for inner pages) ===== */
.page-hero {
    background: linear-gradient(135deg, #FFFFFF 0%, #FFE5F0 50%, #FFB6D9 100%);
    padding: 140px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 50%, rgba(255, 20, 147, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 182, 217, 0.1) 0%, transparent 50%);
}

.page-hero .container {
    position: relative;
    z-index: 2;
}

.page-hero h1 {
    color: var(--neutral-dark);
    font-size: 3rem;
    margin-bottom: 16px;
}

.page-hero p {
    color: var(--text-body);
    font-size: 18px;
    max-width: 600px;
    margin: 0 auto;
}

.breadcrumb {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
    font-size: 14px;
    color: var(--text-muted);
}

.breadcrumb a {
    color: var(--text-muted);
}

.breadcrumb a:hover {
    color: var(--primary);
}

.breadcrumb .separator {
    color: var(--text-muted);
}

/* ===== ABOUT PAGE ===== */
.about-mission {
    padding: 80px 0;
}

.about-mission-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.mission-card {
    background: var(--neutral-light);
    padding: 40px;
    border-radius: var(--radius-md);
    border-left: 4px solid var(--primary);
}

.mission-card h3 {
    color: var(--primary);
    margin-bottom: 16px;
    font-size: 1.3rem;
}

.mission-card p {
    color: var(--text-body);
    line-height: 1.7;
}

.core-values {
    padding: 80px 0;
    background: var(--neutral-light);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.value-card {
    background: var(--neutral-white);
    padding: 32px;
    border-radius: var(--radius-md);
    text-align: center;
    transition: var(--transition);
    border: 1px solid transparent;
}

.value-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
    border-color: rgba(255, 20, 147, 0.15);
}

.value-icon {
    width: 64px;
    height: 64px;
    background: rgba(255, 20, 147, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    font-size: 26px;
    color: var(--primary);
}

.value-card h3 {
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.value-card p {
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.6;
}

.our-story {
    padding: 80px 0;
}

.timeline {
    position: relative;
    max-width: 700px;
    margin: 0 auto;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 3px;
    height: 100%;
    background: linear-gradient(to bottom, var(--primary), var(--secondary));
}

.timeline-item {
    display: flex;
    justify-content: flex-end;
    padding: 0 0 40px 0;
    width: 50%;
    position: relative;
}

.timeline-item:nth-child(even) {
    justify-content: flex-start;
    margin-left: 50%;
}

.timeline-item::after {
    content: '';
    position: absolute;
    top: 8px;
    width: 16px;
    height: 16px;
    background: var(--primary);
    border: 3px solid var(--neutral-white);
    border-radius: 50%;
    box-shadow: var(--shadow-sm);
}

.timeline-item:nth-child(odd)::after {
    right: -8px;
}

.timeline-item:nth-child(even)::after {
    left: -8px;
}

.timeline-content {
    background: var(--neutral-light);
    padding: 24px;
    border-radius: var(--radius-md);
    margin: 0 24px;
    max-width: 300px;
}

.timeline-content .year {
    display: inline-block;
    background: var(--primary);
    color: var(--neutral-white);
    padding: 4px 12px;
    border-radius: var(--radius-full);
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 8px;
}

.timeline-content h3 {
    font-size: 1rem;
    margin-bottom: 8px;
}

.timeline-content p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
}

/* Why Choose Us */
.why-choose {
    padding: 80px 0;
    background: var(--neutral-light);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.why-card {
    display: flex;
    gap: 20px;
    background: var(--neutral-white);
    padding: 32px;
    border-radius: var(--radius-md);
    transition: var(--transition);
}

.why-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.why-card-icon {
    width: 56px;
    height: 56px;
    min-width: 56px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: var(--neutral-white);
}

.why-card h3 {
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.why-card p {
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.6;
}

/* ===== FEATURES PAGE — For Buyers / Sellers ===== */
.solutions-section {
    padding: 80px 0;
}

.solutions-section.alt-bg {
    background: var(--neutral-light);
}

.solutions-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.solution-card {
    display: flex;
    gap: 16px;
    padding: 28px;
    background: var(--neutral-white);
    border-radius: var(--radius-md);
    border: 1px solid var(--border-light);
    transition: var(--transition);
}

.solutions-section.alt-bg .solution-card {
    background: var(--neutral-white);
}

.solution-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
    border-color: rgba(255, 20, 147, 0.2);
}

.solution-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.solution-icon.green {
    background: rgba(255, 20, 147, 0.1);
    color: var(--primary);
}

.solution-icon.orange {
    background: rgba(255, 20, 147, 0.08);
    color: var(--secondary);
}

.solution-card h3 {
    font-size: 1rem;
    margin-bottom: 6px;
}

.solution-card p {
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.5;
}

/* ===== FAQ PAGE ===== */
.faq-section {
    padding: 80px 0;
}

.faq-search {
    max-width: 500px;
    margin: 0 auto 50px;
    position: relative;
}

.faq-search input {
    width: 100%;
    padding: 16px 24px 16px 50px;
    border: 2px solid var(--border-light);
    border-radius: var(--radius-full);
    font-size: 16px;
    font-family: var(--font-body);
    outline: none;
    transition: var(--transition);
}

.faq-search input:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(255, 20, 147, 0.1);
}

.faq-search i {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
}

.faq-categories {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.faq-cat-btn {
    padding: 10px 24px;
    border: 2px solid var(--border-light);
    background: transparent;
    border-radius: var(--radius-full);
    cursor: pointer;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 14px;
    color: var(--text-muted);
    transition: var(--transition);
}

.faq-cat-btn.active,
.faq-cat-btn:hover {
    border-color: var(--primary);
    background: var(--primary);
    color: var(--neutral-white);
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    margin-bottom: 12px;
    overflow: hidden;
    transition: var(--transition);
}

.faq-item:hover {
    border-color: rgba(255, 20, 147, 0.2);
}

.faq-question {
    width: 100%;
    padding: 20px 24px;
    background: transparent;
    border: none;
    text-align: left;
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 600;
    color: var(--neutral-dark);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
}

.faq-question:hover {
    color: var(--primary);
}

.faq-question i {
    font-size: 14px;
    transition: transform 0.3s ease;
    color: var(--primary);
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.faq-answer-inner {
    padding: 0 24px 20px;
    color: var(--text-body);
    font-size: 15px;
    line-height: 1.7;
}

.faq-item.active .faq-answer {
    max-height: 300px;
}

/* ===== CONTACT PAGE ===== */
.contact-section {
    padding: 80px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.contact-info-list {
    margin-top: 32px;
}

.contact-info-item {
    display: flex;
    gap: 16px;
    margin-bottom: 28px;
}

.contact-info-icon {
    width: 52px;
    height: 52px;
    min-width: 52px;
    background: rgba(255, 20, 147, 0.1);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--primary);
}

.contact-info-item h4 {
    font-size: 15px;
    margin-bottom: 4px;
}

.contact-info-item p,
.contact-info-item a {
    color: var(--text-muted);
    font-size: 14px;
}

.contact-info-item a:hover {
    color: var(--primary);
}

.contact-form-card {
    background: var(--neutral-light);
    padding: 40px;
    border-radius: var(--radius-lg);
}

.contact-form-card h3 {
    margin-bottom: 6px;
}

.contact-form-card>p {
    color: var(--text-muted);
    font-size: 14px;
    margin-bottom: 28px;
}

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

.form-group label {
    display: block;
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 6px;
    color: var(--neutral-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--border-light);
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 15px;
    outline: none;
    transition: var(--transition);
    background: var(--neutral-white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(255, 20, 147, 0.1);
}

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

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

/* ===== LEGAL PAGES (Privacy & Terms) ===== */
.legal-content {
    padding: 80px 0;
    max-width: 900px;
    margin: 0 auto;
}

.legal-content h2 {
    font-size: 1.5rem;
    color: var(--primary);
    margin: 40px 0 16px;
    padding-bottom: 8px;
    border-bottom: 2px solid rgba(255, 20, 147, 0.1);
}

.legal-content h3 {
    font-size: 1.15rem;
    margin: 24px 0 12px;
    color: var(--neutral-dark);
}

.legal-content p {
    color: var(--text-body);
    line-height: 1.8;
    margin-bottom: 14px;
}

.legal-content ul {
    margin: 12px 0 20px 24px;
    list-style: disc;
}

.legal-content ul li {
    color: var(--text-body);
    line-height: 1.7;
    margin-bottom: 6px;
    font-size: 15px;
}

.legal-content strong {
    color: var(--neutral-dark);
}

.legal-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    font-size: 14px;
}

.legal-table th,
.legal-table td {
    padding: 12px 16px;
    border: 1px solid var(--border-light);
    text-align: left;
}

.legal-table th {
    background: var(--neutral-light);
    font-weight: 600;
    color: var(--neutral-dark);
}

.legal-table td {
    color: var(--text-body);
}

.legal-highlight {
    background: rgba(255, 20, 147, 0.05);
    border-left: 4px solid var(--primary);
    padding: 20px 24px;
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    margin: 20px 0;
}

.legal-highlight p {
    margin-bottom: 0;
    font-weight: 500;
}

.legal-warning {
    background: rgba(231, 76, 60, 0.06);
    border-left: 4px solid var(--error);
    padding: 20px 24px;
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    margin: 20px 0;
}

.legal-warning p {
    margin-bottom: 0;
    color: var(--error);
    font-weight: 500;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    h1 {
        font-size: 2.8rem;
    }

    h2 {
        font-size: 2rem;
    }

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-content h1 {
        font-size: 2.8rem;
    }

    .hero-subtitle {
        margin: 0 auto 32px;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-stats {
        justify-content: center;
    }

    .hero-cards-wrapper {
        height: 380px;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-preview-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .cta-card {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .cta-image {
        display: none;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .about-mission-grid {
        grid-template-columns: 1fr;
    }

    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

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

@media (max-width: 768px) {
    h1 {
        font-size: 2.2rem;
    }

    h2 {
        font-size: 1.8rem;
    }

    .section-header h2 {
        font-size: 1.8rem;
    }

    .navbar-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: min(320px, 85vw);
        height: 100vh;
        height: 100dvh;
        /* Dynamic viewport height for mobile */
        background: var(--neutral-white);
        flex-direction: column;
        padding: 80px 30px 30px;
        gap: 0;
        box-shadow: -4px 0 30px rgba(0, 0, 0, 0.1);
        transition: right 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
        z-index: 1001;
        /* Above overlay (999) */
        overflow-y: auto;
        overflow-x: hidden;
        -webkit-overflow-scrolling: touch;
    }

    .navbar-menu.open {
        right: 0;
    }

    .navbar-menu a {
        color: var(--neutral-dark) !important;
        padding: 16px 0;
        /* Larger touch area */
        font-size: 16px;
        border-bottom: 1px solid var(--border-light);
        display: block;
        width: 100%;
        -webkit-tap-highlight-color: rgba(255, 20, 147, 0.1);
    }

    .hamburger {
        display: flex;
        z-index: 1002;
        /* Above everything */
        position: relative;
        padding: 10px;
        /* Larger touch area */
        -webkit-tap-highlight-color: transparent;
        touch-action: manipulation;
    }

    .navbar-actions .btn {
        display: none;
    }

    /* Make CTA fit better on small screens */
    .btn-cta {
        padding: 12px 22px;
        font-size: 16px;
        width: 100%;
        justify-content: center;
    }

    .cta-content .btn {
        display: inline-block;
        margin: 0 auto;
    }

    .cta-card {
        padding: 32px 24px;
        text-align: center;
    }

    .cta-content h2 {
        font-size: 1.6rem;
        line-height: 1.3;
    }

    .cta-content p {
        font-size: 15px;
        line-height: 1.6;
    }

    /* Marathi CTA copy is longer, so allow safe wrapping on mobile */
    html[lang="mr"] .cta-content h2,
    html[lang="mr"] .cta-content p,
    html[lang="mr"] .cta-content .btn-cta {
        overflow-wrap: anywhere;
    }

    html[lang="mr"] .cta-content .btn-cta {
        white-space: normal;
        line-height: 1.35;
    }

    .hero-content h1 {
        font-size: clamp(1.8rem, 6vw, 2.2rem);
        line-height: 1.2;
    }

    .hero-stats {
        flex-wrap: wrap;
        gap: 20px;
    }

    .hero-cards-wrapper {
        height: 350px;
    }

    .hero-card {
        width: 240px;
        padding: 28px 20px;
    }

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

    /* Inspirational Quote responsive */
    .inspirational-quote {
        padding: 60px 0;
    }

    .quote-wrapper {
        padding: 36px 24px;
    }

    .quote-icon {
        font-size: 40px;
        top: 15px;
        left: 15px;
    }

    .quote-text {
        font-size: 1.3rem;
        line-height: 1.6;
    }

    .quote-attribution {
        font-size: 14px;
        margin-top: 20px;
    }

    .stats-wrapper {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .stat-box {
        padding: 30px 20px;
    }

    .stat-box .stat-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    .stat-box .stat-number {
        font-size: 2.5rem;
    }

    .steps-grid {
        flex-direction: column;
    }

    .step-connector {
        margin: 2px 0;
        transform: none;
    }

    .step-connector i {
        transform: rotate(90deg);
    }

    .step-card {
        max-width: 100%;
    }

    .testimonial-card {
        min-width: 280px;
    }

    .cta-card {
        padding: 36px 24px;
    }

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

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

    .contact-info-item {
        align-items: flex-start;
    }

    .contact-info-item > div {
        min-width: 0;
    }

    .contact-info-item p,
    .contact-info-item a,
    .contact-form-card p,
    .contact-form-card label,
    .contact-form-card input,
    .contact-form-card select,
    .contact-form-card textarea {
        overflow-wrap: anywhere;
    }

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

    .page-hero h1 {
        font-size: 2.2rem;
    }

    .timeline::before {
        left: 20px;
    }

    .timeline-item {
        width: 100%;
        padding-left: 50px;
    }

    .timeline-item:nth-child(even) {
        margin-left: 0;
        padding-left: 50px;
    }

    .timeline-item::after {
        left: 12px !important;
        right: auto !important;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
        max-width: 100%;
    }

    h1 {
        font-size: clamp(1.5rem, 5vw, 1.8rem);
    }

    .hero-content h1 {
        font-size: clamp(1.6rem, 6vw, 1.8rem);
        line-height: 1.25;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .hero-buttons .btn {
        width: 100%;
        justify-content: center;
    }

    .hero-card {
        width: 220px;
    }

    .stats-wrapper {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .stat-box .stat-number {
        font-size: 2rem;
    }

    .cta-card {
        padding: 28px 20px;
    }

    .cta-content h2 {
        font-size: 1.5rem;
    }

    html[lang="mr"] .cta-content h2 {
        font-size: 1.35rem;
        line-height: 1.35;
    }

    html[lang="mr"] .cta-content .btn-cta {
        font-size: 15px;
        padding: 12px 18px;
    }

    .contact-form-card {
        padding: 28px 20px;
    }

    /* WhatsApp button mobile positioning */
    .whatsapp-float {
        bottom: max(20px, env(safe-area-inset-bottom, 20px));
        right: max(16px, env(safe-area-inset-right, 16px));
        width: 56px;
        height: 56px;
        font-size: 26px;
    }
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

/* Mobile menu overlay */
.nav-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    pointer-events: none;
    /* Disabled by default */
}

.nav-overlay.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    /* Enable clicks when active - allows closing menu */
}

.langSwitcherBtn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border: 1px solid rgba(255, 20, 147, 0.35);
    border-radius: 999px;
    background: linear-gradient(135deg, #fff, #fff0f6);
    color: var(--primary);
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 600;
    padding: 8px 16px;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 8px 22px rgba(255, 20, 147, 0.12);
}

.langSwitcherBtn i {
    font-size: 16px;
}

.langSwitcherBtn:hover {
    border-color: var(--primary);
    background: var(--primary);
    color: var(--neutral-white);
    box-shadow: 0 12px 32px rgba(255, 20, 147, 0.25);
    transform: translateY(-2px);
}

.lang-modal {
    position: fixed;
    inset: 0;
    display: none;
    align-items: center;
    justify-content: center;
    background: rgba(13, 13, 23, 0.55);
    backdrop-filter: blur(6px);
    z-index: 1200;
    padding: 20px;
}

.lang-modal.show {
    display: flex;
}

.lang-card {
    width: 100%;
    max-width: 520px;
    background: radial-gradient(circle at 18% 18%, rgba(255, 20, 147, 0.08), transparent 42%),
        radial-gradient(circle at 82% 0%, rgba(255, 182, 217, 0.14), transparent 38%),
        #ffffff;
    border-radius: 20px;
    padding: 28px;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.26);
    border: 1px solid rgba(255, 20, 147, 0.16);
    position: relative;
    overflow: hidden;
}

.lang-card::after {
    content: '';
    position: absolute;
    width: 160px;
    height: 160px;
    background: linear-gradient(135deg, rgba(255, 20, 147, 0.14), rgba(255, 182, 217, 0.08));
    border-radius: 50%;
    top: -60px;
    right: -40px;
    filter: blur(6px);
    opacity: 0.8;
}

.lang-chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    background: rgba(255, 20, 147, 0.1);
    color: var(--primary);
    border-radius: var(--radius-full);
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 0.3px;
}

.lang-card h2 {
    margin: 16px 0 8px;
    font-size: 1.6rem;
    color: var(--neutral-dark);
}

.lang-lead {
    color: var(--text-body);
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.lang-note {
    color: var(--text-muted);
    font-size: 13px;
    margin: 0 0 14px;
}

.lang-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-bottom: 18px;
}

.lang-option {
    border: 1px solid rgba(255, 20, 147, 0.25);
    border-radius: 12px;
    padding: 14px 12px;
    background: #fff;
    color: var(--neutral-dark);
    font-family: var(--font-heading);
    font-weight: 700;
    letter-spacing: 0.2px;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.lang-option::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 20, 147, 0.08), rgba(255, 182, 217, 0.14));
    opacity: 0;
    transition: var(--transition);
}

.lang-option:hover,
.lang-option:focus-visible {
    border-color: var(--primary);
    color: var(--primary);
    box-shadow: 0 10px 30px rgba(255, 20, 147, 0.18);
}

.lang-option:hover::after,
.lang-option:focus-visible::after {
    opacity: 1;
}

.cookie-banner {
    position: fixed;
    bottom: max(20px, env(safe-area-inset-bottom, 20px));
    left: max(20px, env(safe-area-inset-left, 20px));
    width: min(420px, 92vw);
    background: linear-gradient(135deg, #ffffff, #fff8fb);
    color: var(--neutral-dark);
    border-radius: 18px;
    padding: 20px 22px;
    box-shadow: 0 12px 40px rgba(255, 20, 147, 0.15);
    border: 1px solid rgba(255, 20, 147, 0.18);
    display: none;
    gap: 14px;
    align-items: flex-start;
    flex-wrap: wrap;
    z-index: 1300;
}

.cookie-banner.show {
    display: flex;
}

.cookie-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(255, 20, 147, 0.15), rgba(255, 182, 217, 0.12));
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 20px;
    flex-shrink: 0;
    box-shadow: 0 6px 20px rgba(255, 20, 147, 0.16);
}

.cookie-text {
    display: grid;
    gap: 6px;
    min-width: 0;
    flex: 1 1 auto;
}

.cookie-title {
    font-weight: 800;
    font-size: 16px;
    letter-spacing: 0.2px;
    color: var(--neutral-dark);
}

.cookie-copy {
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-body);
    overflow-wrap: anywhere;
}

.cookie-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.cookie-btn {
    border-radius: 10px;
    padding: 10px 18px;
    font-weight: 700;
    border: 1px solid rgba(255, 20, 147, 0.25);
    background: #ffffff;
    color: var(--neutral-dark);
    cursor: pointer;
    transition: var(--transition);
    font-size: 13px;
}

.cookie-btn.primary {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: #ffffff;
    border-color: transparent;
    box-shadow: 0 8px 24px rgba(255, 20, 147, 0.32);
}

.cookie-btn.ghost:hover {
    background: rgba(255, 20, 147, 0.08);
    border-color: var(--primary);
    color: var(--primary);
}

.cookie-btn.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(255, 20, 147, 0.35);
}

@media (max-width: 768px) {
    .langSwitcherBtn {
        font-size: 13px;
        padding: 6px 12px;
    }

    .langSwitcherBtn i {
        font-size: 14px;
    }

    .lang-card {
        max-width: 95vw;
        padding: 20px;
    }

    .lang-card h2 {
        font-size: 1.4rem;
    }

    .lang-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
    }

    .lang-option {
        padding: 12px 8px;
        font-size: 13px;
    }

    .cookie-banner {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
        width: min(calc(100vw - 40px), 420px);
        padding: 16px;
    }

    .cookie-title {
        font-size: 15px;
    }

    .cookie-copy {
        font-size: 13px;
    }

    .cookie-icon {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }

    .cookie-actions {
        width: 100%;
        justify-content: stretch;
    }

    .cookie-btn {
        flex: 1;
        text-align: center;
    }
}