/* ============================================
   ROSHNI DHAL - META ADS CONSULTANT
   Feminine Elegance Theme
   ============================================ */

/* CSS Variables */
:root {
    --bg-primary: #fef6f6;
    --bg-secondary: #fff5f5;
    --bg-elevated: #ffffff;
    --bg-card: #fffafafa;
    --text-primary: #2d1f1f;
    --text-secondary: #6b5555;
    --text-muted: #9a8585;
    --accent-blush: #e8a4a4;
    --accent-coral: #f07b7b;
    --accent-rose: #d47595;
    --accent-peach: #f5c4a1;
    --accent-lavender: #c9b8d9;
    --gradient-feminine: linear-gradient(135deg, #f07b7b 0%, #d47595 50%, #e8a4a4 100%);
    --gradient-rose: linear-gradient(135deg, #f5c4a1 0%, #e8a4a4 100%);
    --gradient-soft: linear-gradient(180deg, #fef6f6 0%, #fff5f5 100%);
    --font-display: 'Playfair Display', Georgia, serif;
    --font-body: 'Nunito', sans-serif;
    --font-accent: 'Josefin Sans', sans-serif;
    --transition-smooth: cubic-bezier(0.4, 0, 0.2, 1);
    --shadow-soft: 0 4px 24px rgba(240, 123, 123, 0.08);
    --shadow-elevated: 0 8px 40px rgba(240, 123, 123, 0.15);
    --shadow-rose: 0 4px 30px rgba(212, 117, 149, 0.2);
    --radius-soft: 20px;
    --radius-round: 50%;
}

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

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

body {
    font-family: var(--font-body);
    background-color: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Subtle Pattern Background */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(circle at 20% 30%, rgba(240, 123, 123, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(212, 117, 149, 0.03) 0%, transparent 50%),
        url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M30 5c-1.5 2-3 4-3 7 0 4 3 7 3 11 0 2-1 4-2 5 1-1 3-2 3-5 0-3-1-5-1-8 0-2 1-4 2-6-1 1-2 2-2 4v5c0 1 1 2 2 2-1-3 0-6 1-9 1-2 2-4 3-5-1 1-3 2-4 5z' fill='%23f07b7b' fill-opacity='0.02'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: -1;
}

/* Container */
.container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 clamp(20px, 5vw, 50px);
}

/* Typography */
.section-tag {
    font-family: var(--font-accent);
    font-size: clamp(12px, 1.5vw, 14px);
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--accent-coral);
    margin-bottom: 16px;
    font-weight: 600;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(38px, 5.5vw, 62px);
    font-weight: 500;
    line-height: 1.15;
    margin-bottom: 24px;
    color: var(--text-primary);
}

.section-title em {
    font-style: italic;
    color: var(--accent-coral);
}

.section-desc {
    font-size: clamp(16px, 1.8vw, 18px);
    color: var(--text-secondary);
    max-width: 580px;
    line-height: 1.75;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: clamp(14px, 2vw, 16px) clamp(28px, 4vw, 36px);
    font-family: var(--font-body);
    font-size: clamp(13px, 1.5vw, 14px);
    font-weight: 600;
    letter-spacing: 0.5px;
    text-decoration: none;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.4s var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--gradient-feminine);
    color: #ffffff;
    box-shadow: var(--shadow-rose);
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 30px rgba(240, 123, 123, 0.35);
}

.btn-secondary {
    background: transparent;
    color: var(--accent-coral);
    border: 2px solid var(--accent-blush);
}

.btn-secondary:hover {
    border-color: var(--accent-coral);
    background: rgba(240, 123, 123, 0.05);
    transform: translateY(-3px);
}

.btn-full {
    width: 100%;
}

.btn .btn-loader {
    display: none;
    width: 18px;
    height: 18px;
    border: 2px solid transparent;
    border-top-color: #ffffff;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

.btn.loading .btn-text {
    opacity: 0;
}

.btn.loading .btn-loader {
    display: block;
    position: absolute;
}

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

/* Floating shapes background */
.floating-shapes {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: -1;
    overflow: hidden;
}

.shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.4;
    animation: floatShape 25s ease-in-out infinite;
}

.shape-1 {
    width: clamp(300px, 50vw, 600px);
    height: clamp(300px, 50vw, 600px);
    top: -15%;
    right: -10%;
    background: radial-gradient(circle, rgba(240, 123, 123, 0.12) 0%, transparent 70%);
}

.shape-2 {
    width: clamp(250px, 40vw, 500px);
    height: clamp(250px, 40vw, 500px);
    bottom: -10%;
    left: -10%;
    background: radial-gradient(circle, rgba(212, 117, 149, 0.1) 0%, transparent 70%);
    animation-delay: -8s;
}

.shape-3 {
    width: clamp(150px, 25vw, 300px);
    height: clamp(150px, 25vw, 300px);
    top: 40%;
    left: 20%;
    background: radial-gradient(circle, rgba(245, 196, 161, 0.15) 0%, transparent 70%);
    animation-delay: -15s;
}

@keyframes floatShape {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    25% { transform: translate(20px, -20px) rotate(5deg); }
    50% { transform: translate(-15px, 15px) rotate(-3deg); }
    75% { transform: translate(15px, 25px) rotate(3deg); }
}

/* ============================================
   NAVIGATION
   ============================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: clamp(14px, 2.5vw, 20px) 0;
    background: rgba(254, 246, 246, 0.9);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(240, 123, 123, 0.1);
    transition: all 0.4s var(--transition-smooth);
}

.navbar.scrolled {
    padding: 10px 0;
    box-shadow: var(--shadow-soft);
}

.nav-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 clamp(20px, 5vw, 50px);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    text-decoration: none;
}

.logo-text {
    font-family: var(--font-display);
    font-size: clamp(28px, 4vw, 34px);
    font-weight: 600;
    background: var(--gradient-feminine);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: clamp(24px, 4vw, 42px);
}

.nav-links a {
    font-size: clamp(13px, 1.5vw, 14px);
    font-weight: 600;
    color: var(--text-secondary);
    text-decoration: none;
    letter-spacing: 0.3px;
    transition: all 0.3s ease;
    position: relative;
    padding: 4px 0;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-feminine);
    border-radius: 2px;
    transition: width 0.3s ease;
}

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

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

.nav-cta {
    padding: clamp(10px, 1.8vw, 12px) clamp(20px, 3vw, 26px);
    font-size: clamp(12px, 1.4vw, 13px);
    font-weight: 600;
    background: var(--gradient-feminine);
    color: #ffffff;
    border: none;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.4s ease;
    box-shadow: var(--shadow-soft);
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(240, 123, 123, 0.3);
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1001;
}

.mobile-menu-btn span {
    display: block;
    width: 24px;
    height: 2.5px;
    background: var(--accent-coral);
    border-radius: 3px;
    transition: all 0.3s ease;
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--bg-primary);
    z-index: 999;
    padding: 120px clamp(24px, 8vw, 50px) 40px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s ease;
}

.mobile-menu.active {
    opacity: 1;
    visibility: visible;
}

.mobile-nav-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: clamp(24px, 5vw, 40px);
}

.mobile-nav-links a {
    font-family: var(--font-display);
    font-size: clamp(28px, 7vw, 48px);
    color: var(--text-primary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.mobile-nav-links a:hover {
    color: var(--accent-coral);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    min-height: 100vh;
    min-height: 100dvh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding: clamp(100px, 15vh, 150px) clamp(20px, 5vw, 50px) clamp(60px, 10vh, 100px);
}

.hero-content {
    max-width: 920px;
    text-align: center;
    position: relative;
    z-index: 1;
}

.hero-tagline {
    font-family: var(--font-accent);
    font-size: clamp(13px, 1.8vw, 16px);
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--accent-coral);
    margin-bottom: 24px;
    font-weight: 600;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s var(--transition-smooth) 0.2s forwards;
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(44px, 9vw, 96px);
    font-weight: 500;
    line-height: 1.05;
    margin-bottom: 32px;
    opacity: 0;
    transform: translateY(40px);
    animation: fadeInUp 1s var(--transition-smooth) 0.4s forwards;
}

.hero-title em {
    font-style: italic;
    color: var(--accent-coral);
    position: relative;
    display: inline-block;
}

.hero-title em::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 8px;
    background: rgba(240, 123, 123, 0.2);
    border-radius: 4px;
    z-index: -1;
}

.hero-subtitle {
    font-size: clamp(16px, 2.2vw, 20px);
    color: var(--text-secondary);
    max-width: 620px;
    margin: 0 auto 48px;
    line-height: 1.8;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s var(--transition-smooth) 0.7s forwards;
}

.hero-ctas {
    display: flex;
    gap: clamp(14px, 2.5vw, 20px);
    justify-content: center;
    flex-wrap: wrap;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s var(--transition-smooth) 1s forwards;
}

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

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    opacity: 0;
    animation: fadeInUp 1s var(--transition-smooth) 1.3s forwards;
}

.scroll-indicator span {
    font-size: 11px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--text-muted);
}

.scroll-mouse {
    width: 26px;
    height: 42px;
    border: 2px solid var(--accent-blush);
    border-radius: 20px;
    position: relative;
}

.scroll-mouse::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background: var(--accent-coral);
    border-radius: 2px;
    animation: scrollDot 2s ease-in-out infinite;
}

@keyframes scrollDot {
    0%, 100% { opacity: 1; transform: translateX(-50%) translateY(0); }
    50% { opacity: 0.5; transform: translateX(-50%) translateY(10px); }
}

/* Decorative elements */
.hero-decoration {
    position: absolute;
    font-size: 60px;
    opacity: 0.08;
    animation: floatDeco 6s ease-in-out infinite;
}

.hero-decoration-1 {
    top: 15%;
    left: 8%;
    animation-delay: 0s;
}

.hero-decoration-2 {
    bottom: 20%;
    right: 10%;
    animation-delay: -3s;
}

@keyframes floatDeco {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-15px) rotate(5deg); }
}

/* ============================================
   STATS BANNER
   ============================================ */
.stats-banner {
    background: var(--bg-elevated);
    border-top: 1px solid rgba(240, 123, 123, 0.1);
    border-bottom: 1px solid rgba(240, 123, 123, 0.1);
    padding: clamp(40px, 7vw, 70px) 0;
    position: relative;
}

.stats-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent-blush), transparent);
}

.stats-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 clamp(20px, 5vw, 50px);
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: clamp(30px, 5vw, 50px);
}

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

.stat-number {
    font-family: var(--font-display);
    font-size: clamp(42px, 7vw, 64px);
    font-weight: 600;
    color: var(--accent-coral);
    line-height: 1;
}

.stat-suffix {
    font-family: var(--font-display);
    font-size: clamp(24px, 4vw, 42px);
    font-weight: 500;
    color: var(--accent-coral);
}

.stat-label {
    display: block;
    font-size: clamp(11px, 1.3vw, 13px);
    color: var(--text-secondary);
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-top: 10px;
    font-weight: 600;
}

.stat-divider {
    width: 1px;
    height: clamp(35px, 7vw, 60px);
    background: linear-gradient(to bottom, transparent, var(--accent-blush), transparent);
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.about-section {
    padding: clamp(80px, 12vw, 140px) 0;
    background: var(--bg-primary);
    position: relative;
}

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(240, 123, 123, 0.15), transparent);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: clamp(40px, 8vw, 90px);
    align-items: center;
}

.about-image {
    position: relative;
}

.image-frame {
    position: relative;
    width: 100%;
    aspect-ratio: 3/4;
    max-width: 420px;
}

.image-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(145deg, var(--bg-elevated) 0%, var(--bg-secondary) 100%);
    border: 2px solid rgba(240, 123, 123, 0.15);
    border-radius: var(--radius-soft);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    transition: all 0.5s ease;
    box-shadow: var(--shadow-soft);
}

.profile-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.image-placeholder:hover .profile-image {
    transform: scale(1.05);
}

.image-accent {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 100%;
    height: 100%;
    border: 2px solid var(--accent-blush);
    border-radius: var(--radius-soft);
    opacity: 0.4;
    z-index: -1;
    transition: all 0.5s ease;
}

.image-frame:hover .image-accent {
    top: -10px;
    right: -10px;
    opacity: 0.6;
}

.badge {
    position: absolute;
    bottom: -20px;
    right: 25px;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: var(--gradient-feminine);
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    color: #ffffff;
    letter-spacing: 0.3px;
    box-shadow: var(--shadow-rose);
    animation: badgeFloat 3s ease-in-out infinite;
}

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

.badge-icon {
    font-size: 10px;
}

.about-content .section-title {
    margin-bottom: 32px;
}

.about-text {
    margin-bottom: 40px;
}

.about-text p {
    font-size: clamp(15px, 1.7vw, 17px);
    color: var(--text-secondary);
    line-height: 1.85;
    margin-bottom: 20px;
}

.about-text strong {
    color: var(--text-primary);
    font-weight: 600;
}

.about-text .location {
    font-size: 14px;
    color: var(--text-muted);
    margin-top: 26px;
    padding-top: 26px;
    border-top: 1px solid rgba(240, 123, 123, 0.1);
}

.about-features {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.feature {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 22px;
    background: var(--bg-elevated);
    border: 1px solid rgba(240, 123, 123, 0.1);
    border-radius: 50px;
    font-size: 14px;
    color: var(--text-secondary);
    transition: all 0.4s ease;
}

.feature:hover {
    border-color: var(--accent-coral);
    color: var(--accent-coral);
    transform: translateY(-3px);
    box-shadow: var(--shadow-soft);
}

.feature-icon {
    color: var(--accent-coral);
    font-size: 10px;
}

/* ============================================
   SERVICES SECTION
   ============================================ */
.services-section {
    padding: clamp(80px, 12vw, 140px) 0;
    background: var(--bg-secondary);
    position: relative;
    overflow: hidden;
}

.services-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(240, 123, 123, 0.15), transparent);
}

/* Decorative circles */
.services-section .deco-circle {
    position: absolute;
    border-radius: 50%;
    opacity: 0.08;
    pointer-events: none;
}

.services-section .deco-1 {
    width: 350px;
    height: 350px;
    top: 5%;
    left: -8%;
    background: radial-gradient(circle, var(--accent-coral) 0%, transparent 70%);
}

.services-section .deco-2 {
    width: 280px;
    height: 280px;
    bottom: 10%;
    right: -5%;
    background: radial-gradient(circle, var(--accent-rose) 0%, transparent 70%);
}

.section-header {
    text-align: center;
    margin-bottom: clamp(50px, 9vw, 90px);
}

.section-header .section-desc {
    margin: 0 auto;
}

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

.service-card {
    background: var(--bg-elevated);
    border: 1px solid rgba(240, 123, 123, 0.08);
    border-radius: var(--radius-soft);
    padding: clamp(28px, 4vw, 40px);
    position: relative;
    transition: all 0.5s var(--transition-smooth);
    overflow: hidden;
}

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

.service-card:hover {
    transform: translateY(-10px);
    border-color: rgba(240, 123, 123, 0.2);
    box-shadow: var(--shadow-elevated);
}

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

.service-card.featured {
    border-color: rgba(240, 123, 123, 0.25);
    background: linear-gradient(145deg, #fffafafa 0%, rgba(240, 123, 123, 0.03) 100%);
}

.service-card.featured::before {
    transform: scaleX(1);
}

.service-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    padding: 6px 14px;
    background: var(--gradient-feminine);
    color: #ffffff;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    border-radius: 50px;
}

.service-icon {
    font-size: clamp(36px, 5vw, 46px);
    margin-bottom: 22px;
    display: block;
    transition: all 0.4s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.15) rotate(-5deg);
}

.service-card h3 {
    font-family: var(--font-display);
    font-size: clamp(20px, 2.3vw, 24px);
    font-weight: 600;
    margin-bottom: 14px;
    color: var(--text-primary);
    transition: color 0.3s ease;
}

.service-card:hover h3 {
    color: var(--accent-coral);
}

.service-card p {
    font-size: clamp(13px, 1.5vw, 15px);
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 22px;
}

.service-price {
    display: inline-block;
    padding: 10px 18px;
    background: rgba(240, 123, 123, 0.08);
    border-radius: 50px;
    font-size: 13px;
    color: var(--accent-coral);
    font-weight: 600;
    transition: all 0.3s ease;
}

.service-card:hover .service-price {
    background: rgba(240, 123, 123, 0.15);
}

/* ============================================
   RESULTS SECTION
   ============================================ */
.results-section {
    padding: clamp(80px, 12vw, 140px) 0;
    background: var(--bg-primary);
    position: relative;
}

.results-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(240, 123, 123, 0.15), transparent);
}

.results-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: clamp(20px, 3vw, 30px);
    margin-bottom: clamp(50px, 9vw, 90px);
}

.result-card {
    background: var(--bg-elevated);
    border: 1px solid rgba(240, 123, 123, 0.08);
    border-radius: var(--radius-soft);
    padding: clamp(26px, 4vw, 40px) clamp(20px, 3vw, 28px);
    text-align: center;
    transition: all 0.5s var(--transition-smooth);
}

.result-card:hover {
    transform: translateY(-8px);
    border-color: rgba(240, 123, 123, 0.2);
    box-shadow: var(--shadow-elevated);
}

.result-metric {
    margin-bottom: 24px;
}

.metric-value {
    font-family: var(--font-display);
    font-size: clamp(40px, 6vw, 56px);
    font-weight: 600;
    color: var(--accent-coral);
    line-height: 1;
    position: relative;
    display: inline-block;
}

.metric-value::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70px;
    height: 70px;
    background: radial-gradient(circle, rgba(240, 123, 123, 0.12) 0%, transparent 70%);
    border-radius: 50%;
    z-index: -1;
}

.metric-label {
    display: block;
    font-size: clamp(11px, 1.3vw, 13px);
    color: var(--text-muted);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-top: 10px;
    font-weight: 600;
}

.result-details h4 {
    font-family: var(--font-display);
    font-size: clamp(16px, 1.9vw, 19px);
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.result-details p {
    font-size: clamp(12px, 1.4vw, 14px);
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Testimonial Carousel */
.testimonial-carousel {
    max-width: 850px;
    margin: 0 auto;
    text-align: center;
    position: relative;
}

.testimonial {
    display: none;
    opacity: 0;
    transition: opacity 0.6s ease;
    padding: 0 20px;
}

.testimonial.active {
    display: block;
    opacity: 1;
}

.testimonial blockquote {
    font-family: var(--font-display);
    font-size: clamp(22px, 3.2vw, 34px);
    font-style: italic;
    font-weight: 400;
    line-height: 1.55;
    color: var(--text-primary);
    margin-bottom: 30px;
    position: relative;
}

.testimonial blockquote::before {
    content: '"';
    position: absolute;
    top: -25px;
    left: 50%;
    transform: translateX(-50%);
    font-size: clamp(50px, 10vw, 90px);
    color: var(--accent-blush);
    font-family: var(--font-display);
}

.testimonial cite {
    font-size: clamp(13px, 1.5vw, 16px);
    color: var(--accent-coral);
    font-style: normal;
    font-weight: 600;
    letter-spacing: 0.5px;
}

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

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--accent-blush);
    border: none;
    cursor: pointer;
    transition: all 0.4s ease;
}

.dot:hover {
    background: var(--accent-rose);
}

.dot.active {
    background: var(--gradient-feminine);
    transform: scale(1.3);
    box-shadow: 0 0 15px rgba(240, 123, 123, 0.4);
}

/* ============================================
   WHY CHOOSE SECTION
   ============================================ */
.why-choose-section {
    padding: clamp(80px, 12vw, 140px) 0;
    background: var(--bg-secondary);
    position: relative;
}

.why-choose-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(240, 123, 123, 0.15), transparent);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: clamp(20px, 3vw, 30px);
}

.why-card {
    background: var(--bg-elevated);
    border: 1px solid rgba(240, 123, 123, 0.1);
    border-radius: var(--radius-soft);
    padding: clamp(28px, 4vw, 40px);
    text-align: center;
    transition: all 0.5s var(--transition-smooth);
}

.why-card:hover {
    transform: translateY(-10px);
    border-color: rgba(240, 123, 123, 0.25);
    box-shadow: var(--shadow-elevated);
}

.why-icon {
    font-size: clamp(40px, 5vw, 52px);
    margin-bottom: 20px;
}

.why-card h3 {
    font-family: var(--font-display);
    font-size: clamp(17px, 2vw, 21px);
    font-weight: 600;
    margin-bottom: 14px;
    color: var(--text-primary);
}

.why-card p {
    font-size: clamp(13px, 1.5vw, 15px);
    color: var(--text-secondary);
    line-height: 1.65;
}

/* ============================================
   CLIENTS SECTION
   ============================================ */
.clients-section {
    padding: clamp(50px, 8vw, 80px) 0;
    background: var(--bg-primary);
    border-top: 1px solid rgba(240, 123, 123, 0.08);
    border-bottom: 1px solid rgba(240, 123, 123, 0.08);
}

.clients-section .section-tag {
    text-align: center;
    margin-bottom: clamp(30px, 5vw, 50px);
}

.clients-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: clamp(30px, 6vw, 60px);
}

.client-logo {
    font-family: var(--font-display);
    font-size: clamp(16px, 2vw, 22px);
    font-weight: 600;
    color: var(--text-muted);
    padding: clamp(12px, 2vw, 18px) clamp(24px, 4vw, 36px);
    background: var(--bg-elevated);
    border: 1px solid rgba(240, 123, 123, 0.1);
    border-radius: 50px;
    transition: all 0.4s ease;
}

.client-logo:hover {
    color: var(--accent-coral);
    border-color: rgba(240, 123, 123, 0.3);
    transform: scale(1.05);
}

/* ============================================
   PROCESS SECTION
   ============================================ */
.process-section {
    padding: clamp(80px, 12vw, 140px) 0;
    background: var(--bg-secondary);
    position: relative;
}

.process-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(240, 123, 123, 0.15), transparent);
}

.process-section .section-header {
    text-align: center;
    margin-bottom: clamp(50px, 9vw, 80px);
}

.process-section .section-desc {
    margin: 0 auto;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: clamp(20px, 3vw, 30px);
}

.process-card {
    background: var(--bg-elevated);
    border: 1px solid rgba(240, 123, 123, 0.1);
    border-radius: var(--radius-soft);
    padding: clamp(28px, 4vw, 40px);
    position: relative;
    transition: all 0.5s var(--transition-smooth);
}

.process-card:hover {
    transform: translateY(-8px);
    border-color: rgba(240, 123, 123, 0.25);
    box-shadow: var(--shadow-elevated);
}

.process-number {
    font-family: var(--font-display);
    font-size: clamp(36px, 5vw, 52px);
    font-weight: 600;
    color: rgba(240, 123, 123, 0.15);
    margin-bottom: 16px;
}

.process-card h3 {
    font-family: var(--font-display);
    font-size: clamp(18px, 2.2vw, 22px);
    font-weight: 600;
    margin-bottom: 14px;
    color: var(--text-primary);
}

.process-card p {
    font-size: clamp(13px, 1.5vw, 15px);
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ============================================
   CONTACT SECTION
   ============================================ */
.contact-section {
    padding: clamp(80px, 12vw, 140px) 0;
    background: var(--bg-secondary);
    position: relative;
    overflow: hidden;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(240, 123, 123, 0.15), transparent);
}

.contact-section .deco-circle {
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    opacity: 0.06;
    pointer-events: none;
}

.contact-section .deco-1 {
    top: -15%;
    right: -10%;
    background: radial-gradient(circle, var(--accent-coral) 0%, transparent 70%);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: clamp(40px, 8vw, 90px);
    align-items: start;
}

.contact-desc {
    font-size: clamp(15px, 1.7vw, 17px);
    color: var(--text-secondary);
    line-height: 1.75;
    margin-bottom: 40px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 16px;
    transition: transform 0.3s ease;
}

.contact-item:hover {
    transform: translateX(8px);
}

.contact-icon {
    width: clamp(48px, 6vw, 56px);
    height: clamp(48px, 6vw, 56px);
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-elevated);
    border: 1px solid rgba(240, 123, 123, 0.15);
    border-radius: var(--radius-soft);
    font-size: clamp(16px, 2vw, 20px);
    color: var(--accent-coral);
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.contact-item:hover .contact-icon {
    border-color: var(--accent-coral);
    box-shadow: var(--shadow-rose);
    transform: scale(1.05);
}

.contact-item > div {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.contact-label {
    font-size: clamp(11px, 1.2vw, 12px);
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.contact-item a,
.contact-item span:not(.contact-icon):not(.contact-label) {
    font-size: clamp(14px, 1.6vw, 16px);
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: var(--accent-coral);
}

.contact-form-wrapper {
    background: var(--bg-elevated);
    border: 1px solid rgba(240, 123, 123, 0.1);
    border-radius: var(--radius-soft);
    padding: clamp(32px, 5vw, 50px);
    box-shadow: var(--shadow-soft);
    position: relative;
    overflow: hidden;
}

.contact-form-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-feminine);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: clamp(12px, 1.4vw, 13px);
    font-weight: 600;
    color: var(--text-secondary);
    letter-spacing: 0.3px;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: clamp(14px, 2vw, 16px);
    background: var(--bg-secondary);
    border: 1px solid rgba(240, 123, 123, 0.15);
    border-radius: 12px;
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: clamp(14px, 1.5vw, 15px);
    transition: all 0.3s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-muted);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-coral);
    box-shadow: 0 0 0 3px rgba(240, 123, 123, 0.1);
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23c9a4a4' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
}

.form-group select option {
    background: var(--bg-elevated);
    color: var(--text-primary);
}

.form-message {
    margin-top: 20px;
    padding: 16px;
    font-size: 14px;
    text-align: center;
    display: none;
    border-radius: 12px;
}

.form-message.success {
    display: block;
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid #22c55e;
    color: #16a34a;
}

.form-message.error {
    display: block;
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid #ef4444;
    color: #dc2626;
}

/* ============================================
   FINAL CTA SECTION
   ============================================ */
.final-cta {
    padding: clamp(60px, 10vw, 100px) 0;
    background: linear-gradient(135deg, rgba(240, 123, 123, 0.08) 0%, rgba(212, 117, 149, 0.08) 100%);
    text-align: center;
    border-top: 1px solid rgba(240, 123, 123, 0.1);
    border-bottom: 1px solid rgba(240, 123, 123, 0.1);
}

.cta-content h2 {
    font-family: var(--font-display);
    font-size: clamp(28px, 5vw, 44px);
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 16px;
}

.cta-content p {
    font-size: clamp(16px, 2vw, 18px);
    color: var(--text-secondary);
    margin-bottom: 32px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    padding: clamp(50px, 9vw, 90px) 0 clamp(30px, 5vw, 45px);
    background: var(--bg-primary);
    border-top: 1px solid rgba(240, 123, 123, 0.1);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: clamp(40px, 7vw, 70px);
    margin-bottom: clamp(40px, 7vw, 60px);
}

.footer-brand .logo {
    display: inline-block;
    margin-bottom: 22px;
}

.footer-brand p {
    font-size: clamp(14px, 1.5vw, 15px);
    color: var(--text-secondary);
    line-height: 1.7;
    max-width: 300px;
}

.footer h4 {
    font-family: var(--font-accent);
    font-size: clamp(12px, 1.4vw, 14px);
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-primary);
    margin-bottom: 24px;
    font-weight: 600;
}

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

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    font-size: clamp(13px, 1.5vw, 14px);
    color: var(--text-secondary);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--accent-coral);
    padding-left: 5px;
}

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

.social-links a {
    width: clamp(42px, 5vw, 48px);
    height: clamp(42px, 5vw, 48px);
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-elevated);
    border: 1px solid rgba(240, 123, 123, 0.1);
    border-radius: 50%;
    color: var(--text-secondary);
    font-size: clamp(12px, 1.4vw, 14px);
    text-decoration: none;
    transition: all 0.4s ease;
}

.social-links a:hover {
    border-color: var(--accent-coral);
    color: var(--accent-coral);
    transform: translateY(-4px);
    box-shadow: var(--shadow-soft);
}

.footer-bottom {
    padding-top: clamp(30px, 5vw, 45px);
    border-top: 1px solid rgba(240, 123, 123, 0.08);
    text-align: center;
}

.footer-bottom p {
    font-size: clamp(12px, 1.3vw, 13px);
    color: var(--text-muted);
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
/* ============================================
   WHY CHOOSE SECTION
   ============================================ */
.why-choose-section {
    padding: clamp(80px, 12vw, 140px) 0;
    background: var(--bg-elevated);
    position: relative;
}

.why-choose-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(240, 123, 123, 0.15), transparent);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: clamp(20px, 3vw, 30px);
}

.why-card {
    background: var(--bg-primary);
    border: 1px solid rgba(240, 123, 123, 0.1);
    border-radius: var(--radius-soft);
    padding: clamp(28px, 4vw, 40px);
    text-align: center;
    transition: all 0.5s var(--transition-smooth);
}

.why-card:hover {
    transform: translateY(-8px);
    border-color: rgba(240, 123, 123, 0.25);
    box-shadow: var(--shadow-elevated);
}

.why-icon {
    font-size: clamp(36px, 5vw, 48px);
    margin-bottom: 20px;
}

.why-card h3 {
    font-family: var(--font-display);
    font-size: clamp(16px, 2vw, 20px);
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.why-card p {
    font-size: clamp(13px, 1.5vw, 15px);
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ============================================
   CLIENTS SECTION
   ============================================ */
.clients-section {
    padding: clamp(50px, 8vw, 80px) 0;
    background: var(--bg-primary);
    border-top: 1px solid rgba(240, 123, 123, 0.08);
    border-bottom: 1px solid rgba(240, 123, 123, 0.08);
}

.clients-section .section-tag {
    text-align: center;
    margin-bottom: 36px;
}

.clients-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: clamp(30px, 6vw, 60px);
}

.client-logo {
    font-family: var(--font-display);
    font-size: clamp(16px, 2.5vw, 24px);
    font-weight: 500;
    color: var(--text-muted);
    padding: clamp(12px, 2vw, 20px) clamp(20px, 4vw, 36px);
    background: var(--bg-elevated);
    border: 1px solid rgba(240, 123, 123, 0.1);
    border-radius: var(--radius-soft);
    transition: all 0.4s ease;
}

.client-logo:hover {
    color: var(--accent-coral);
    border-color: rgba(240, 123, 123, 0.3);
    transform: scale(1.05);
}

/* ============================================
   PROCESS SECTION
   ============================================ */
.process-section {
    padding: clamp(80px, 12vw, 140px) 0;
    background: var(--bg-secondary);
    position: relative;
}

.process-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(240, 123, 123, 0.15), transparent);
}

.process-section .section-desc {
    margin: 0 auto;
    text-align: center;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: clamp(20px, 3vw, 30px);
    margin-top: clamp(50px, 8vw, 80px);
}

.process-card {
    background: var(--bg-elevated);
    border: 1px solid rgba(240, 123, 123, 0.08);
    border-radius: var(--radius-soft);
    padding: clamp(28px, 4vw, 40px);
    position: relative;
    transition: all 0.5s var(--transition-smooth);
}

.process-card::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-feminine);
    border-radius: 0 0 var(--radius-soft) var(--radius-soft);
    transform: scaleX(0);
    transition: transform 0.5s ease;
}

.process-card:hover {
    transform: translateY(-8px);
    border-color: rgba(240, 123, 123, 0.2);
    box-shadow: var(--shadow-elevated);
}

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

.process-number {
    font-family: var(--font-display);
    font-size: clamp(36px, 5vw, 48px);
    font-weight: 600;
    color: var(--accent-coral);
    opacity: 0.3;
    margin-bottom: 16px;
}

.process-card h3 {
    font-family: var(--font-display);
    font-size: clamp(18px, 2.2vw, 22px);
    font-weight: 600;
    margin-bottom: 14px;
    color: var(--text-primary);
}

.process-card p {
    font-size: clamp(13px, 1.5vw, 15px);
    color: var(--text-secondary);
    line-height: 1.7;
}


/* ============================================
   PROCESS SECTION
   ============================================ */
.process-section {
    padding: clamp(80px, 12vw, 140px) 0;
    background: var(--bg-secondary);
    position: relative;
}

.process-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(240, 123, 123, 0.15), transparent);
}

.process-section .section-header {
    text-align: center;
    margin-bottom: clamp(50px, 9vw, 80px);
}

.process-section .section-desc {
    margin: 0 auto;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: clamp(20px, 3vw, 30px);
}

.process-card {
    background: var(--bg-elevated);
    border: 1px solid rgba(240, 123, 123, 0.1);
    border-radius: var(--radius-soft);
    padding: clamp(28px, 4vw, 40px);
    position: relative;
    transition: all 0.5s var(--transition-smooth);
}

.process-card:hover {
    transform: translateY(-8px);
    border-color: rgba(240, 123, 123, 0.25);
    box-shadow: var(--shadow-elevated);
}

.process-number {
    font-family: var(--font-display);
    font-size: clamp(36px, 5vw, 52px);
    font-weight: 600;
    color: rgba(240, 123, 123, 0.15);
    margin-bottom: 16px;
}

.process-card h3 {
    font-family: var(--font-display);
    font-size: clamp(18px, 2.2vw, 22px);
    font-weight: 600;
    margin-bottom: 14px;
    color: var(--text-primary);
}

.process-card p {
    font-size: clamp(13px, 1.5vw, 15px);
    color: var(--text-secondary);
    line-height: 1.7;
}

@media (max-width: 1100px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

@media (max-width: 900px) {
    .nav-links,
    .nav-cta {
        display: none;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .mobile-menu {
        display: block;
    }

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

    .about-image {
        order: -1;
        max-width: 380px;
        margin: 0 auto;
    }

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

    .footer-brand {
        grid-column: span 2;
    }
}

@media (max-width: 600px) {
    .hero {
        min-height: 100vh;
        min-height: 100dvh;
        padding: 110px 20px 70px;
    }

    .hero-subtitle {
        margin-bottom: 40px;
    }

    .hero-ctas {
        flex-direction: column;
        width: 100%;
    }

    .hero-ctas .btn {
        width: 100%;
    }

    .stats-container {
        flex-direction: column;
        gap: clamp(24px, 6vw, 42px);
    }

    .stat-divider {
        width: 60px;
        height: 1px;
    }

    .services-grid,
    .results-grid {
        grid-template-columns: 1fr;
    }

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

    .footer-brand {
        grid-column: span 1;
    }

    .contact-form-wrapper {
        padding: 28px 22px;
    }
}

@media (max-width: 400px) {
    .section-title {
        font-size: 34px;
    }

    .badge {
        right: 12px;
        bottom: -16px;
        font-size: 11px;
        padding: 10px 16px;
    }

    .metric-value {
        font-size: 44px;
    }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    html {
        scroll-behavior: auto;
    }
}


/* Responsive for new sections */
@media (max-width: 900px) {
    .why-grid, .process-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .why-grid, .process-grid {
        grid-template-columns: 1fr;
    }
    
    .clients-grid {
        flex-direction: column;
        align-items: center;
    }
}
