/* ============================================
   DESIGN TOKENS & RESET
   ============================================ */
:root {
    --primary: #ff1493; /* Hot Pink */
    --primary-light: #ffb6c1;
    --primary-dark: #c71585;
    --accent-gold: #ffeb3b; /* Yellow */
    --accent-gold-light: #fff59d;
    --bg: #ffffff; /* White background */
    --bg-alt: #f9f9f9;
    --bg-dark: #111111;
    --text: #000000; /* Dark black text */
    --text-light: #333333;
    --text-muted: #666666;
    --border: #e8e8ee;
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
    --shadow-md: 0 8px 30px rgba(0,0,0,0.08);
    --shadow-lg: 0 20px 60px rgba(0,0,0,0.1);
    --shadow-xl: 0 30px 80px rgba(0,0,0,0.12);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

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

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-body);
    background: var(--bg);
    color: var(--text);
    line-height: 1.7;
    overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

.container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
}

.section {
    padding: 100px 0;
}

/* ============================================
   TYPOGRAPHY
   ============================================ */
.text-gradient {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary) 100%);    
    /* background: linear-gradient(135deg, var(--primary) 0%, var(--accent-gold) 100%);     */
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 60px;
}

.section-badge {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--primary);
    background: var(--primary-light);
    padding: 6px 18px;
    border-radius: 100px;
    margin-bottom: 16px;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 600;
    line-height: 1.25;
    color: var(--text);
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 1.05rem;
    color: black;
    line-height: 1.7;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 600;
    padding: 14px 28px;
    border-radius: var(--radius-sm);
    border: none;
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
}

.btn-primary {
    background: var(--primary);
    color: #fff;
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(194, 24, 91, 0.35);
}

.btn-whatsapp {
    background: #25d366;
    color: #fff;
}

.btn-whatsapp:hover {
    background: #1da855;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.35);
}

.btn-sm {
    font-size: 0.85rem;
    padding: 10px 18px;
}

.btn-lg {
    font-size: 1rem;
    padding: 16px 32px;
}

/* ============================================
   NAVBAR
   ============================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 16px 0;
    transition: var(--transition);
    background: transparent;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: var(--shadow-sm);
    padding: 10px 0;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 700;
    color: #fff;
    transition: var(--transition);
}

.navbar.scrolled .logo {
    color: var(--text);
}

.logo-icon {
    font-size: 1.5rem;
    color: var(--accent-gold);
}

.logo-accent {
    color: var(--primary);
}

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

.nav-links a {
    font-size: 0.9rem;
    font-weight: 500;
    color: rgba(255,255,255,0.85);
    transition: var(--transition);
    position: relative;
}

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

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

.navbar.scrolled .nav-links a {
    color: var(--text);
}

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

.nav-actions {
    display: flex;
    gap: 10px;
}

.nav-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.8rem;
    font-weight: 600;
    padding: 8px 16px;
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

.nav-btn-call {
    background: rgba(255,255,255,0.15);
    color: #fff;
    border: 1px solid rgba(255,255,255,0.25);
}

.navbar.scrolled .nav-btn-call {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
}

.nav-btn-whatsapp {
    background: #25d366;
    color: #fff;
}

.nav-btn-whatsapp:hover {
    background: #1da855;
    transform: translateY(-1px);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.hamburger span {
    width: 24px;
    height: 2px;
    background: #fff;
    transition: var(--transition);
    border-radius: 2px;
}

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

/* ============================================
   HERO
   ============================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    /* background: linear-gradient(135deg, #1a1a2e 0%, #16213e 40%, #0f3460 100%); */
    background-color: #000000;
    overflow: hidden;
    padding-top: 80px;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 80%;
    height: 200%;
    background: radial-gradient(circle, rgba(194, 24, 91, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

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

.hero-content {
    color: #fff;
}

.hero-badge {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--accent-gold);
    background: rgba(201, 149, 107, 0.15);
    border: 1px solid rgba(201, 149, 107, 0.3);
    padding: 8px 20px;
    border-radius: 100px;
    margin-bottom: 24px;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 20px;
}

.hero-tagline {
    font-size: 1.1rem;
    color: rgb(255, 255, 255);
    line-height: 1.8;
    margin-bottom: 36px;
    max-width: 500px;
}

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

.hero-stats {
    display: flex;
    gap: 32px;
    align-items: center;
}

.stat {
    text-align: center;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: #fff;
}

.stat-plus {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--accent-gold);
}

.stat-label {
    display: block;
    font-size: 0.8rem;
    color: rgba(255,255,255,0.5);
    margin-top: 4px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(255,255,255,0.15);
}

/* Hero Visual */
.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image-wrapper {
    position: relative;
    width: 420px;
    height: 520px;
}

.hero-image-card {
    width: 100%;
    height: 100%;
    border-radius: var(--radius-xl);
    overflow: hidden;
    position: relative;
    box-shadow: var(--shadow-xl);
}

.hero-img-gradient {
    position: absolute;
    inset: 0;
    /* background: linear-gradient(135deg, #f093fb 0%, #f5576c 50%, #667eea 100%); */
    opacity: 0.9;
}

.hero-img-pattern {
    position: absolute;
    inset: 0;
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(255,255,255,0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255,255,255,0.1) 0%, transparent 50%);
}

.hero-floating-badge {
    position: absolute;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(10px);
    padding: 10px 20px;
    border-radius: var(--radius-md);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text);
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: center;
    gap: 8px;
    animation: float 3s ease-in-out infinite;
}

.top-badge {
    top: 20px;
    right: 7px;
}

.bottom-badge {
    bottom: 40px;
    left: -30px;
    animation-delay: 1.5s;
    color: var(--primary);
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: #25d366;
    border-radius: 50%;
    animation: pulse-dot 2s ease-in-out infinite;
}

.hero-glow {
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(194, 24, 91, 0.3) 0%, transparent 70%);
    bottom: -50px;
    right: -50px;
    border-radius: 50%;
    filter: blur(40px);
    pointer-events: none;
}

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

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

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.3); }
}

/* ============================================
   PROFILE CARDS GRID (8 cards)
   ============================================ */
.profiles-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.profile-card {
    border-radius: var(--radius-md);
    overflow: hidden;
    background: var(--bg);
    box-shadow: rgba(255, 105, 180, 1);
    border-bottom: 4px solid var(--primary);
    transition: var(--transition);
    cursor: pointer;
}

.profile-card:hover {
    transform: translateY(-8px);
    box-shadow: rgba(255, 105, 180, 0.399);
}

.card-image {
    position: relative;
    height: 300px;
    background: var(--gradient);
    overflow: hidden;
}

.card-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--primary);
    color: #fff;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 4px 12px;
    border-radius: 100px;
    z-index: 2;
}

.card-badge.premium {
    background: var(--accent-gold);
    color: var(--primary);
}

.card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 60%);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    transition: var(--transition);
}

.profile-card:hover .card-overlay {
    opacity: 1;
}

.card-actions {
    display: flex;
    gap: 10px;
}

.card-action-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.2);
    backdrop-filter: blur(10px);
    color: #fff;
    transition: var(--transition);
    transform: translateY(20px);
}

.profile-card:hover .card-action-btn {
    transform: translateY(0);
}

.card-action-btn:hover {
    background: var(--primary);
}

.card-action-btn.whatsapp-action:hover {
    background: #25d366;
}

.card-info {
    padding: 16px 18px;
}

.card-name {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 4px;
}

.card-age {
    font-size: 0.85rem;
    color: var(--text-light);
}



/* ============================================
   LONG PROFILES (50% width grid)
   ============================================ */
.long-profiles-section {
    background: var(--bg-alt);
}

.long-profiles-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
}

.long-profile-card {
    display: grid;
    grid-template-columns: 200px 1fr;
    background: rgb(17, 17, 17);
    border-radius: var(--radius-md);
    border-right: 7px solid var(--primary);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

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

.lp-image {
    position: relative;
    background: var(--gradient);
    min-height: 280px;
}

.lp-img-inner {
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 40% 60%, rgba(255,255,255,0.15) 0%, transparent 50%);
}

.lp-content {
    padding: 24px;
    display: flex;
    flex-direction: column;
}

.lp-name {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: gold;
}

.lp-desc {
    font-size: 0.9rem;
    color: white;
    line-height: 1.7;
    margin-bottom: 14px;
    flex-grow: 1;
}

.lp-tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 12px;
}

.lp-tag {
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 4px 12px;
    border-radius: 100px;
    background: var(--primary-light);
    color: var(--primary);
}

.lp-meta {
    display: flex;
    gap: 16px;
    margin-bottom: 16px;
}

.lp-age, .lp-location {
    font-size: 0.85rem;
    color: white;
    font-weight: 500;
}

.lp-actions {
    display: flex;
    gap: 10px;
}

/* ============================================
   CATEGORY CARDS (No images, shadow, hover, text animation)
   ============================================ */
.category-section {
    background: var(--bg);
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.category-card {
    position: relative;
    background: var(--bg);
    border: 1px solid var(--border);
    border-left: 3px solid var(--primary);
    border-right: 3px solid var(--primary);
    border-radius: var(--radius-md);
    padding: 36px 24px;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.04);
}

.category-card::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: linear-gradient(to top, rgba(194, 24, 91, 0.08), transparent);
    transition: height 0.5s ease;
}

.category-card:hover::before {
    height: 100%;
}

.category-card:hover {
    border-color: var(--primary-light);
    box-shadow: 0 12px 40px rgba(194, 24, 91, 0.12);
    transform: translateY(-6px);
}

.cat-tag {
    display: inline-block;
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--primary);
    background: var(--accent-gold-light);
    padding: 4px 14px;
    border-radius: 100px;
    margin-bottom: 14px;
    position: relative;
    z-index: 1;
}

.cat-name {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--text);
    position: relative;
    z-index: 1;
    transition: var(--transition);
}

.category-card:hover .cat-name {
    color: var(--primary);
    transform: scale(1.05);
}

.cat-hover-line {
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--accent-gold));
    margin: 14px auto 0;
    border-radius: 2px;
    transition: width 0.4s ease;
}

.category-card:hover .cat-hover-line {
    width: 50px;
}

/* ============================================
   ZIG-ZAG GALLERY
   ============================================ */
.zigzag-gallery {
    background: var(--bg-alt);
}

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

.zz-item {
    border-radius: var(--radius-md);
    background: var(--gradient);
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: var(--transition);
}

.zz-item:hover {
    transform: scale(1.03);
    box-shadow: var(--shadow-lg);
    z-index: 2;
}

.zz-tall {
    grid-row: span 2;
}

.zz-wide {
    /* grid-column: span 2; */
}

.zz-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.6) 0%, transparent 50%);
    display: flex;
    align-items: flex-end;
    padding: 20px;
    opacity: 0;
    transition: var(--transition);
}

.zz-item:hover .zz-overlay {
    opacity: 1;
}

.zz-overlay span {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 600;
    color: #fff;
    transform: translateY(10px);
    transition: var(--transition);
}

.zz-item:hover .zz-overlay span {
    transform: translateY(0);
}

/* ============================================
   TRUST SIGNALS
   ============================================ */
.trust-section {
    background: var(--bg);
}

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

.trust-card {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 36px 28px;
    text-align: center;
    transition: var(--transition);
}

.trust-card:hover {
    border-color: var(--primary-light);
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.trust-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-light);
    color: var(--primary);
    border-radius: 50%;
    transition: var(--transition);
}

.trust-card:hover .trust-icon {
    background: var(--primary);
    color: #fff;
}

.trust-title {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.trust-desc {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.7;
}

/* ============================================
   HOW TO CONTACT (Steps)
   ============================================ */
.how-to-section {
    background: var(--bg-alt);
}

.steps-grid {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 0;
}

.step-card {
    flex: 1;
    max-width: 260px;
    text-align: center;
    padding: 0 20px;
}

.step-number {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary), var(--accent-gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 16px;
    line-height: 1;
}

.step-title {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.step-desc {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.7;
}

.step-connector {
    display: flex;
    align-items: center;
    padding-top: 24px;
    color: var(--border);
    flex-shrink: 0;
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
    background: var(--bg);
}

.cta-box {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    border-radius: var(--radius-xl);
    padding: 80px 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-box::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -30%;
    width: 60%;
    height: 200%;
    background: radial-gradient(circle, rgba(194, 24, 91, 0.15) 0%, transparent 60%);
    pointer-events: none;
}

.cta-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 16px;
    position: relative;
    z-index: 1;
}

.cta-desc {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.7);
    margin-bottom: 36px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 1;
}

.cta-btns {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

/* ============================================
   SOCIAL SHARE
   ============================================ */
.social-share-section {
    background: var(--bg-alt);
    padding: 50px 0;
    text-align: center;
}

.share-title {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--text-light);
}

.share-links {
    display: flex;
    gap: 14px;
    justify-content: center;
}

.share-btn {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--bg);
    border: 1px solid var(--border);
    color: var(--text-light);
    transition: var(--transition);
}

.share-btn:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.share-facebook { background: #1877f2; color: #fff; }
.share-twitter { background: #1da1f2; color: #fff; }
.share-instagram { background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); color: #fff; }
.share-telegram { background: #0088cc; color: #fff; }
.share-whatsapp { background: #25d366; color: #fff; }


.share-facebook:hover { background: #1877f2; color: #fff; border-color: #1877f2; }
.share-twitter:hover { background: #1da1f2; color: #fff; border-color: #1da1f2; }
.share-instagram:hover { background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); color: #fff; border-color: #dc2743; }
.share-telegram:hover { background: #0088cc; color: #fff; border-color: #0088cc; }
.share-whatsapp:hover { background: #25d366; color: #fff; border-color: #25d366; }


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

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

.footer .logo {
    color: #fff;
    margin-bottom: 16px;
}

.footer-desc {
    font-size: 0.9rem;
    color: rgb(255, 255, 255);
    line-height: 1.7;
}

.footer-heading {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 20px;
}

.footer-links li {
    margin-bottom: 10px;
    color: white;
}

.footer-links a {
    font-size: 0.9rem;
    color: rgb(255, 255, 255);
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--primary-light);
    padding-left: 4px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    font-size: 0.85rem;
    color: rgb(255, 255, 255);
}

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

.footer-bottom-links a {
    color: rgb(255, 255, 255);
    transition: var(--transition);
}

.footer-bottom-links a:hover {
    color: rgb(255, 255, 255);
}

/* ============================================
   FLOATING BUTTONS
   ============================================ */
.floating-btns {
    position: fixed;
    bottom: 24px;
    right: 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 999;
}

.float-btn {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
}

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

.float-call {
    background: var(--primary);
}

.float-whatsapp {
    background: #25d366;
}

/* ============================================
   ANIMATIONS
   ============================================ */
.animate-fade-up {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 0.8s ease forwards;
}

.animate-fade-left {
    opacity: 0;
    transform: translateX(40px);
    animation: fadeLeft 0.8s ease forwards;
}

.delay-1 { animation-delay: 0.15s; }
.delay-2 { animation-delay: 0.3s; }
.delay-3 { animation-delay: 0.45s; }
.delay-4 { animation-delay: 0.6s; }

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

@keyframes fadeLeft {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Scroll reveal (controlled via JS) */
[data-aos] {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-aos="fade-right"] {
    transform: translateX(-30px);
}

[data-aos="fade-left"] {
    transform: translateX(30px);
}

[data-aos].aos-animate {
    opacity: 1;
    transform: translate(0, 0);
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials-section {
    background: var(--bg-alt);
}

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

.testimonial-card {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 40px 30px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-light);
}

.testimo-rating {
    color: var(--accent-gold);
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.testimo-text {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 24px;
    flex-grow: 1;
    font-style: italic;
}

.testimo-author {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 600;
    color: var(--text);
}

/* ============================================
   FAQ
   ============================================ */
.faq-section {
    background: var(--bg);
}

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

.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    overflow: hidden;
    background: var(--bg);
    transition: var(--transition);
}

.faq-item:hover {
    border-color: var(--primary-light);
    box-shadow: var(--shadow-sm);
}

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

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

.faq-icon {
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--primary);
    transition: transform 0.3s ease;
}

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

.faq-item.active .faq-question {
    color: var(--primary);
    padding-bottom: 12px;
    background-color: gold;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0 24px;
    color: #000000;
}

.faq-item.active .faq-answer {
    padding-bottom: 24px;
    background-color: gold;
}

.faq-answer p {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.7;
}

/* ============================================
   AREAS WE SERVE (CHANDIGARH LOCATIONS)
   ============================================ */
.areas-section {
    background: var(--bg);
    padding-top: 60px;
    padding-bottom: 80px;
}

.areas-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    justify-content: center;
    max-width: 900px;
    margin: 0 auto;
}

.area-tag {
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--bg-alt);
    border: 1px solid var(--border);
    padding: 12px 24px;
    border-radius: 100px;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-light);
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
}

.area-icon {
    font-size: 1.1rem;
    transition: var(--transition);
}

.area-tag:hover {
    transform: translateY(-4px);
}

/* Colorful variations based on child pseudo classes */
.area-tag:nth-child(4n+1):hover {
    background: rgba(255, 235, 59, 0.15); /* Yellow */
    color: #e6c800;
    border-color: #e6c800;
    box-shadow: 0 8px 25px rgba(230, 200, 0, 0.2);
}

.area-tag:nth-child(4n+2):hover {
    background: rgba(37, 211, 102, 0.1); /* Green */
    color: #25d366;
    border-color: #25d366;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.2);
}

.area-tag:nth-child(4n+3):hover {
    background: rgba(255, 20, 147, 0.08); /* Pink/Primary */
    color: var(--primary);
    border-color: var(--primary);
    box-shadow: 0 8px 25px rgba(255, 20, 147, 0.2);
}

.area-tag:nth-child(4n+4):hover {
    background: rgba(161, 140, 209, 0.15); /* Purple */
    color: #845ec2;
    border-color: #845ec2;
    box-shadow: 0 8px 25px rgba(132, 94, 194, 0.2);
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 1024px) {
    .section-title { font-size: 2rem; }
    .hero-title { font-size: 2.8rem; }
    
    .profiles-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .trust-grid,
    .category-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .long-profiles-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .steps-grid {
        flex-wrap: wrap;
        gap: 20px;
    }
    
    .step-connector {
        display: none;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
    
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .section { padding: 70px 0; }
    .section-title { font-size: 1.75rem; }
    .section-header { margin-bottom: 40px; }
    
    /* Navbar mobile */
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: var(--bg);
        flex-direction: column;
        padding: 80px 30px 30px;
        gap: 20px;
        transition: var(--transition);
        box-shadow: -10px 0 30px rgba(0,0,0,0.1);
        z-index: 1001;
    }
    
    .nav-links.active {
        right: 0;
    }
    
    .nav-links a {
        color: var(--text) !important;
        font-size: 1rem;
    }
    
    .nav-actions { display: none; }
    
    .hamburger {
        display: flex;
        z-index: 1002;
    }
    
    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }
    
    /* Hero */
    .hero { min-height: auto; padding: 120px 0 80px; }
    .hero-container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .hero-title { font-size: 2.2rem; }
    .hero-tagline { margin: 0 auto 30px; }
    .hero-btns { justify-content: center; }
    .hero-stats { justify-content: center; }
    
    .hero-visual { order: -1; }
    .hero-image-wrapper {
        width: 280px;
        height: 350px;
    }
    
    .top-badge { right: 5px; }
    .bottom-badge { left: -10px; }
    
    /* Profile Cards */
    .profiles-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
    
    .card-image { height: 240px; }
    
    /* Showcase */
    .showcase-row,
    .showcase-row.reverse {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .showcase-row.reverse .showcase-content { order: 0; }
    .showcase-row.reverse .showcase-image { order: 0; }
    
    .showcase-img-box { height: 300px; }
    .showcase-title { font-size: 1.75rem; }
    
    /* Long Profiles */
    .long-profiles-grid {
        grid-template-columns: 1fr;
    }
    
    .long-profile-card {
        grid-template-columns: 160px 1fr;
    }
    
    /* Testimonials */
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    /* Category Grid */
    .category-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
    }
    
    .category-card { padding: 28px 18px; }
    
    /* Zig-zag Gallery */
    .zigzag-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 180px;
    }
    
    /* Trust */
    .trust-grid {
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }
    
    .trust-card { padding: 28px 20px; }
    
    /* Steps */
    .steps-grid {
        flex-direction: column;
        align-items: center;
    }
    
    .step-card { max-width: 100%; }
    
    /* CTA */
    .cta-box { padding: 50px 30px; }
    .cta-title { font-size: 1.85rem; }
    
    /* Footer */
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container { padding: 0 16px; }
    .section { padding: 50px 0; }
    .section-title { font-size: 1.5rem; }
    .hero-title { font-size: 1.8rem; }
    
    .profiles-grid { gap: 12px; }
    .card-image { height: 200px; }
    .card-name { font-size: 0.95rem; }
    
    .long-profile-card {
        grid-template-columns: 1fr;
    }
    
    .lp-image { min-height: 200px; }
    
    .category-grid, .trust-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .zigzag-grid {
        grid-template-columns: 1fr 1fr;
        grid-auto-rows: 150px;
    }
    
    .cta-box { padding: 40px 20px; }
    .cta-title { font-size: 1.5rem; }
    
    .hero-image-wrapper {
        width: 240px;
        height: 300px;
    }
}
