/* ============================================
   DASKHABEAUTY - Premium Beauty Website CSS
   ============================================ */

/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700;800&family=Poppins:wght@300;400;500;600;700;800&display=swap');

:root {
    /* Brand Colors */
    --primary: #c8956c;
    --primary-dark: #a5724a;
    --primary-light: #e4b896;
    --secondary: #e8c9a0;
    --accent: #f4e4d0;
    --gold: #c9a84c;
    --gold-light: #e8d08a;
    --cream: #f7ede2;
    --beige: #ede0d4;
    --rose: #e8b4a0;
    --blush: #f2d4c8;

    /* Text Colors */
    --text-dark: #2c2018;
    --text-mid: #5c4a3a;
    --text-light: #8c7a6a;
    --text-muted: #b8a898;

    /* Backgrounds */
    --bg-lightest: #fffaf6;
    --bg-light: #fdf5ee;
    --bg-cream: #f9f0e6;
    --white: #ffffff;

    /* Glassmorphism */
    --glass-bg: rgba(255, 245, 235, 0.75);
    --glass-border: rgba(200, 149, 108, 0.2);
    --glass-blur: blur(20px);

    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(180, 120, 80, 0.12);
    --shadow-md: 0 8px 24px rgba(180, 120, 80, 0.18);
    --shadow-lg: 0 20px 60px rgba(180, 120, 80, 0.22);
    --shadow-xl: 0 40px 80px rgba(180, 120, 80, 0.28);

    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #c8956c 0%, #e8c9a0 100%);
    --gradient-gold: linear-gradient(135deg, #c9a84c 0%, #f4e4d0 100%);
    --gradient-rose: linear-gradient(135deg, #e8b4a0 0%, #f2d4c8 100%);
    --gradient-hero: linear-gradient(135deg, rgba(80, 40, 20, 0.85) 0%, rgba(160, 90, 50, 0.75) 50%, rgba(200, 149, 108, 0.65) 100%);
    --gradient-dark: linear-gradient(135deg, #2c1810 0%, #4a2a18 100%);

    /* Radius */
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 40px;
    --radius-full: 100px;

    /* Transitions */
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

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

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

body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.7;
    color: var(--text-dark);
    background: var(--bg-cream);
    overflow-x: hidden;
}

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

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

/* ======================== SCROLL REVEAL ======================== */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }

/* ======================== TYPOGRAPHY ======================== */
.display-heading {
    font-family: 'Playfair Display', serif;
    font-weight: 800;
}

.gradient-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-label {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--primary);
    background: rgba(200, 149, 108, 0.1);
    border: 1px solid rgba(200, 149, 108, 0.3);
    padding: 6px 18px;
    border-radius: var(--radius-full);
    margin-bottom: 1rem;
}

.section-heading {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 4vw, 3rem);
    text-align: center;
    margin-bottom: 1rem;
    color: var(--text-dark);
    font-weight: 700;
    line-height: 1.2;
}

.section-subheading {
    font-size: 1.1rem;
    text-align: center;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto 4rem;
    line-height: 1.8;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

/* ======================== BUTTONS ======================== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 36px;
    border: none;
    border-radius: var(--radius-full);
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: var(--transition-bounce);
    position: relative;
    overflow: hidden;
    white-space: nowrap;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--white);
    box-shadow: 0 8px 25px rgba(200, 149, 108, 0.45);
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 15px 40px rgba(200, 149, 108, 0.55);
}

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

.btn-outline:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.btn-white {
    background: var(--white);
    color: var(--primary);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.btn-white:hover {
    background: var(--cream);
    transform: translateY(-4px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.btn-lg {
    padding: 18px 52px;
    font-size: 1.1rem;
}

.btn-icon {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
}

/* ======================== NAVBAR ======================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    transition: var(--transition);
}

.navbar.scrolled {
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border-bottom: 1px solid var(--glass-border);
    padding: 12px 0;
    box-shadow: var(--shadow-md);
}

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

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.navbar-logo {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    object-fit: cover;
    box-shadow: var(--shadow-sm);
}

.navbar-logo-placeholder {
    width: 44px;
    height: 44px;
    background: var(--gradient-primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.1rem;
    color: var(--white);
    box-shadow: var(--shadow-sm);
    letter-spacing: 0;
}

.navbar-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--white);
    text-shadow: 0 2px 8px rgba(0,0,0,0.3);
    transition: var(--transition);
}

.navbar.scrolled .navbar-name {
    color: var(--text-dark);
    text-shadow: none;
}

.navbar-cta {
    display: flex;
    align-items: center;
    gap: 12px;
}

/* ======================== HERO SECTION ======================== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: #2c1810;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    transition: transform 0.1s linear;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: var(--gradient-hero);
}

.hero-particles {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.particle {
    position: absolute;
    width: 6px;
    height: 6px;
    background: rgba(232, 200, 150, 0.6);
    border-radius: 50%;
    animation: floatParticle linear infinite;
}

.particle:nth-child(1) { left: 15%; animation-duration: 8s; animation-delay: 0s; width: 4px; height: 4px; }
.particle:nth-child(2) { left: 30%; animation-duration: 12s; animation-delay: 2s; width: 8px; height: 8px; }
.particle:nth-child(3) { left: 50%; animation-duration: 10s; animation-delay: 1s; }
.particle:nth-child(4) { left: 65%; animation-duration: 9s; animation-delay: 3s; width: 4px; height: 4px; }
.particle:nth-child(5) { left: 80%; animation-duration: 11s; animation-delay: 0.5s; width: 10px; height: 10px; }
.particle:nth-child(6) { left: 92%; animation-duration: 7s; animation-delay: 2.5s; width: 5px; height: 5px; }

@keyframes floatParticle {
    0% { transform: translateY(110vh) rotate(0deg); opacity: 0; }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% { transform: translateY(-10vh) rotate(360deg); opacity: 0; }
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 140px 0 80px;
    max-width: 900px;
    text-align: center;
    margin: 0 auto;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: var(--white);
    padding: 8px 20px;
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 2rem;
    animation: fadeInDown 0.8s ease;
}

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

@keyframes pulse-green {
    0%, 100% { box-shadow: 0 0 0 0 rgba(74, 222, 128, 0.4); }
    50% { box-shadow: 0 0 0 8px rgba(74, 222, 128, 0); }
}

.hero-heading {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 6vw, 5rem);
    margin-bottom: 1.2rem;
    font-weight: 800;
    color: var(--white);
    text-shadow: 0 4px 20px rgba(0,0,0,0.4);
    animation: fadeInUp 0.9s ease 0.1s both;
    line-height: 1.15;
}

.hero-subheading {
    font-size: clamp(1.2rem, 2.5vw, 1.8rem);
    margin-bottom: 1.5rem;
    font-weight: 600;
    animation: fadeInUp 0.9s ease 0.25s both;
    color: var(--secondary);
    text-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.hero-description {
    font-size: clamp(1rem, 1.8vw, 1.2rem);
    margin-bottom: 3rem;
    line-height: 1.9;
    animation: fadeInUp 0.9s ease 0.4s both;
    color: rgba(255, 255, 255, 0.9);
    max-width: 680px;
    margin-left: auto;
    margin-right: auto;
}

.hero-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 0.9s ease 0.55s both;
    margin-bottom: 3rem;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    animation: fadeInUp 0.9s ease 0.7s both;
}

.hero-stat {
    text-align: center;
    color: var(--white);
}

.hero-stat-number {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 800;
    display: block;
    color: var(--secondary);
    line-height: 1;
}

.hero-stat-label {
    font-size: 0.8rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.7);
}

.hero-scroll {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    animation: bounceScroll 2s ease-in-out infinite;
}

.hero-scroll-icon {
    width: 30px;
    height: 50px;
    border: 2px solid rgba(255,255,255,0.5);
    border-radius: 20px;
    display: flex;
    justify-content: center;
    padding-top: 8px;
}

.hero-scroll-dot {
    width: 6px;
    height: 6px;
    background: var(--white);
    border-radius: 50%;
    animation: scrollDot 2s ease-in-out infinite;
}

@keyframes scrollDot {
    0% { transform: translateY(0); opacity: 1; }
    100% { transform: translateY(20px); opacity: 0; }
}

@keyframes bounceScroll {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(8px); }
}

/* ======================== ABOUT SECTION ======================== */
.about {
    padding: 120px 0;
    background: var(--white);
    position: relative;
    overflow: hidden;
}

.about::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(200, 149, 108, 0.08) 0%, transparent 70%);
    border-radius: 50%;
}

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

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

.about-image-bg {
    position: absolute;
    top: -30px;
    left: -30px;
    right: 30px;
    bottom: 30px;
    background: var(--gradient-primary);
    border-radius: var(--radius-lg);
    opacity: 0.12;
}

.about-image-frame {
    position: absolute;
    top: 20px;
    right: -20px;
    bottom: -20px;
    left: 20px;
    border: 2px solid rgba(200, 149, 108, 0.3);
    border-radius: var(--radius-lg);
}

.about-image {
    width: 100%;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    position: relative;
    z-index: 1;
    transition: var(--transition);
    object-fit: cover;
    aspect-ratio: 4/5;
    display: block;
}

.about-image:hover {
    transform: scale(1.02) translateY(-5px);
}

.about-badge {
    position: absolute;
    bottom: 24px;
    right: -24px;
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 16px 20px;
    box-shadow: var(--shadow-lg);
    z-index: 2;
    text-align: center;
    min-width: 130px;
}

.about-badge-number {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
    display: block;
}

.about-badge-text {
    font-size: 0.8rem;
    color: var(--text-light);
    font-weight: 500;
}

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

.about-content p {
    font-size: 1.1rem;
    line-height: 2;
    color: var(--text-mid);
    margin-bottom: 1.5rem;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 2rem;
}

.about-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    color: var(--text-dark);
    font-size: 0.95rem;
}

.about-feature-check {
    width: 24px;
    height: 24px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 0.7rem;
    color: var(--white);
}

/* ======================== BENEFITS SECTION ======================== */
.benefits {
    padding: 120px 0;
    background: var(--bg-light);
    position: relative;
}

.benefits::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 80%, rgba(200, 149, 108, 0.06) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(201, 168, 76, 0.06) 0%, transparent 50%);
}

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

.benefit-card {
    background: var(--white);
    padding: 50px 36px;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-bounce);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(200, 149, 108, 0.1);
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.benefit-card::after {
    content: '';
    position: absolute;
    bottom: -50%;
    right: -50%;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(200, 149, 108, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    transition: var(--transition);
}

.benefit-card:hover::before { transform: scaleX(1); }
.benefit-card:hover::after { transform: scale(2); }

.benefit-card:hover {
    transform: translateY(-16px);
    box-shadow: var(--shadow-xl);
    border-color: rgba(200, 149, 108, 0.2);
}

.benefit-icon-wrap {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, rgba(200, 149, 108, 0.1), rgba(201, 168, 76, 0.1));
    border: 2px solid rgba(200, 149, 108, 0.2);
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.8rem;
    transition: var(--transition-bounce);
    font-size: 2.8rem;
}

.benefit-card:hover .benefit-icon-wrap {
    background: var(--gradient-primary);
    border-color: transparent;
    transform: scale(1.1) rotate(-5deg);
}

.benefit-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
    font-weight: 700;
    transition: var(--transition);
}

.benefit-card:hover h3 {
    color: var(--primary);
}

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

/* ======================== HOW TO USE SECTION ======================== */
.how-to-use {
    padding: 120px 0;
    background: var(--white);
    position: relative;
}

.steps-wrapper {
    position: relative;
}

.steps-line {
    position: absolute;
    top: 50px;
    left: 12%;
    right: 12%;
    height: 2px;
    background: linear-gradient(to right, var(--primary), var(--gold), var(--primary-light));
    opacity: 0.3;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    position: relative;
}

.step-card {
    text-align: center;
    padding: 20px 16px;
    transition: var(--transition-bounce);
}

.step-card:hover {
    transform: translateY(-8px);
}

.step-number-wrap {
    position: relative;
    display: inline-block;
    margin-bottom: 1.5rem;
}

.step-number {
    width: 80px;
    height: 80px;
    background: var(--white);
    border: 3px solid transparent;
    background-clip: padding-box;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary);
    box-shadow: var(--shadow-md);
    margin: 0 auto;
    position: relative;
    transition: var(--transition-bounce);
    background: var(--white);
}

.step-number::before {
    content: '';
    position: absolute;
    inset: -3px;
    border-radius: 50%;
    background: var(--gradient-primary);
    z-index: -1;
}

.step-card:hover .step-number {
    background: var(--gradient-primary);
    color: var(--white);
    transform: scale(1.15) rotate(360deg);
    transition: transform 0.6s ease, background 0.3s ease, color 0.3s ease;
}

.step-card:hover .step-number::before {
    animation: spinGlow 1.5s linear infinite;
}

@keyframes spinGlow {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.step-emoji {
    font-size: 1.8rem;
    display: block;
    margin-bottom: 0.5rem;
}

.step-card h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.4rem;
}

.step-card p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ======================== TESTIMONIALS SECTION ======================== */
.testimonials {
    padding: 120px 0;
    background: var(--bg-cream);
    position: relative;
    overflow: hidden;
}

.testimonials::before {
    content: '"';
    position: absolute;
    top: -40px;
    left: 40px;
    font-size: 20rem;
    color: rgba(200, 149, 108, 0.06);
    font-family: 'Playfair Display', serif;
    line-height: 1;
    pointer-events: none;
}

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

.testimonial-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 36px 30px;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(200, 149, 108, 0.1);
    transition: var(--transition-bounce);
    position: relative;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(200, 149, 108, 0.25);
}

.testimonial-stars {
    display: flex;
    gap: 4px;
    margin-bottom: 1.2rem;
    color: var(--gold);
    font-size: 1.1rem;
}

.testimonial-text {
    font-size: 1rem;
    color: var(--text-mid);
    line-height: 1.9;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 14px;
    border-top: 1px solid var(--beige);
    padding-top: 1.2rem;
}

.testimonial-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--secondary);
    flex-shrink: 0;
}

.testimonial-avatar-placeholder {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--white);
    flex-shrink: 0;
}

.testimonial-name {
    font-weight: 700;
    color: var(--text-dark);
    font-size: 0.95rem;
}

.testimonial-meta {
    font-size: 0.82rem;
    color: var(--text-muted);
}

/* ======================== CTA SECTION ======================== */
.cta {
    padding: 120px 0;
    position: relative;
    overflow: hidden;
    background: var(--text-dark);
}

.cta-bg {
    position: absolute;
    inset: 0;
    background: var(--gradient-dark);
}

.cta-glow-1 {
    position: absolute;
    top: -100px;
    right: -100px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(200, 149, 108, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    animation: ctaGlow 6s ease-in-out infinite;
}

.cta-glow-2 {
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(201, 168, 76, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    animation: ctaGlow 8s ease-in-out infinite reverse;
}

@keyframes ctaGlow {
    0%, 100% { transform: scale(1) rotate(0deg); }
    50% { transform: scale(1.2) rotate(15deg); }
}

.cta-content {
    position: relative;
    z-index: 1;
    text-align: center;
}

.cta-heading {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 4vw, 3.5rem);
    margin-bottom: 1.5rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1.2;
}

.cta-description {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.9;
    color: rgba(255, 255, 255, 0.8);
}

.cta-urgency {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(200, 149, 108, 0.2);
    border: 1px solid rgba(200, 149, 108, 0.4);
    color: var(--secondary);
    padding: 8px 20px;
    border-radius: var(--radius-full);
    font-size: 0.88rem;
    font-weight: 600;
    margin-bottom: 2rem;
}

/* ======================== FOOTER ======================== */
.footer {
    padding: 80px 0 0;
    background: linear-gradient(180deg, #1e1008 0%, #0e0804 100%);
    color: var(--white);
    position: relative;
}

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

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1.2fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-brand h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-brand p {
    color: rgba(255,255,255,0.6);
    line-height: 1.9;
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}

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

.footer-social-link {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-bounce);
    text-decoration: none;
    font-size: 1.2rem;
}

.footer-social-link.whatsapp { background: rgba(37, 211, 102, 0.15); color: #25d366; border: 1px solid rgba(37, 211, 102, 0.3); }
.footer-social-link.instagram { background: rgba(228, 64, 95, 0.15); color: #e44060; border: 1px solid rgba(228, 64, 95, 0.3); }
.footer-social-link.tiktok { background: rgba(255, 255, 255, 0.1); color: #fff; border: 1px solid rgba(255,255,255,0.2); }
.footer-social-link.shopee { background: rgba(238, 77, 45, 0.15); color: #ee4d2d; border: 1px solid rgba(238, 77, 45, 0.3); }
.footer-social-link.facebook { background: rgba(24, 119, 242, 0.15); color: #1877f2; border: 1px solid rgba(24, 119, 242, 0.3); }

.footer-social-link:hover {
    transform: translateY(-4px) scale(1.1);
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
    opacity: 1;
}

.footer-col h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.85rem;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 1.2rem;
}

.footer-contact-icon {
    font-size: 1.2rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.footer-contact-text {
    color: rgba(255,255,255,0.65);
    font-size: 0.95rem;
    line-height: 1.7;
}

.footer-contact-text a {
    color: rgba(255,255,255,0.65);
    text-decoration: none;
    transition: var(--transition);
}

.footer-contact-text a:hover {
    color: var(--secondary);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    font-size: 0.95rem;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-links a::before {
    content: '→';
    font-size: 0.8rem;
    transition: var(--transition);
    color: var(--primary);
}

.footer-links a:hover {
    color: var(--secondary);
    padding-left: 6px;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 24px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.footer-bottom p {
    color: rgba(255,255,255,0.4);
    font-size: 0.88rem;
}

.footer-bottom-badge {
    display: flex;
    align-items: center;
    gap: 6px;
    color: rgba(255,255,255,0.4);
    font-size: 0.85rem;
}

/* ======================== WHATSAPP FLOAT ======================== */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 62px;
    height: 62px;
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.5);
    z-index: 999;
    transition: var(--transition-bounce);
    animation: waBounce 3s ease-in-out infinite;
    border: 3px solid var(--white);
    text-decoration: none;
}

.whatsapp-float::before {
    content: '';
    position: absolute;
    inset: -8px;
    border-radius: 50%;
    border: 2px solid rgba(37, 211, 102, 0.3);
    animation: waPulse 2s ease-in-out infinite;
}

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

@keyframes waPulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.2); opacity: 0; }
}

.whatsapp-float:hover {
    transform: scale(1.15) translateY(-4px);
    box-shadow: 0 15px 40px rgba(37, 211, 102, 0.6);
    animation: none;
}

.whatsapp-float svg {
    width: 34px;
    height: 34px;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.2));
}

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

@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ======================== RESPONSIVE ======================== */
@media (max-width: 1024px) {
    .about-grid {
        gap: 50px;
    }
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
    .footer-brand {
        grid-column: 1 / -1;
    }
}

@media (max-width: 768px) {
    .hero-content { padding: 120px 0 60px; }
    .hero-stats { gap: 24px; }
    .hero-stat-number { font-size: 1.5rem; }

    .about-grid { grid-template-columns: 1fr; gap: 40px; }
    .about-badge { right: 16px; bottom: 16px; }

    .benefits-grid { grid-template-columns: 1fr; }
    .steps-grid { grid-template-columns: repeat(2, 1fr); }
    .steps-line { display: none; }

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

    .footer-grid { grid-template-columns: 1fr; gap: 40px; }
    .footer-brand { grid-column: auto; }

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

    .navbar-cta .btn-outline { display: none; }
}

@media (max-width: 480px) {
    .container { padding: 0 16px; }
    .hero-actions { flex-direction: column; align-items: center; }
    .steps-grid { grid-template-columns: 1fr; }
    .about-features { grid-template-columns: 1fr; }
    .btn-lg { padding: 14px 36px; font-size: 1rem; }
    .whatsapp-float { width: 52px; height: 52px; bottom: 20px; right: 20px; }
    .whatsapp-float svg { width: 28px; height: 28px; }
}
