/* =============================================
   ButikPastaci.com — "Pastel Elegance" 
   Feminine, Kurumsal, Premium
   ============================================= */

/* ─── 1. Variables ─── */
:root {
    --rose: #D4A0B9;
    --rose-dark: #B5738B;
    --rose-light: #F3DCE7;
    --lavender: #C9B1D0;
    --lavender-light: #EDE3F0;
    --sage: #8CC5A2;
    --sage-light: #D4EDDC;
    --powder-blue: #A8B5D1;
    --powder-blue-light: #D8E0F0;
    --warm-gold: #E8D5B7;
    --warm-gold-dark: #C4A97D;
    --peach: #F0C4A8;
    --peach-light: #FDE8D8;

    --bg: #FFFBF7;
    --bg-alt: #FDF5EF;
    --bg-section: #F9F0E8;
    --bg-card: #FFFFFF;
    --dark: #3D2C3E;
    --dark-light: #5A4A5C;
    --text: #4A3D4E;
    --text-muted: #8E7F90;
    --text-light: #B8A8BA;
    --white: #FFFFFF;
    --border: #EDE5E0;

    /* Semantic */
    --success: #8CC5A2;
    --danger: #E07070;
    --warning: #E8C46A;
    --info: #7EB5D6;
    --whatsapp: #25D366;

    /* Legacy compat aliases */
    --color-primary: #D4A0B9;
    --color-primary-accent: #FF6FAE;
    --color-primary-light: #F3DCE7;
    --color-primary-dark: #B5738B;
    --color-secondary: #F9F0E8;
    --color-accent: #E8D5B7;
    --color-accent-dark: #C4A97D;
    --color-bg: #FFFBF7;
    --color-bg-light: #FDF5EF;
    --color-bg-white: #FFFBF7;
    --color-bg-alt: #FDF5EF;
    --color-text: #4A3D4E;
    --color-text-dark: #3D2C3E;
    --color-text-muted: #8E7F90;
    --color-text-light: #B8A8BA;
    --color-dark: #3D2C3E;
    --color-dark-light: #5A4A5C;
    --color-border: #EDE5E0;
    --color-success: #8CC5A2;
    --color-danger: #E07070;
    --color-warning: #E8C46A;
    --color-info: #7EB5D6;
    --color-whatsapp: #25D366;
    --color-gold: #E8D5B7;
    --color-gold-light: #F2E6D4;
    --color-white: #FFFFFF;
    --color-cream: #F9F0E8;
    --color-rose: #D4A0B9;
    --color-rose-light: #F3DCE7;
    --color-text-on-dark: #F3ECF4;
    --color-text-on-dark-muted: #B8A8BA;
    --pastel-lila: #C9B1D0;
    --pastel-mint: #8CC5A2;
    --pastel-yellow: #E8C46A;
    --pastel-pink: #D4A0B9;
    --pastel-rose: #F3DCE7;
    --pastel-cream: #F9F0E8;

    /* Typography */
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'DM Sans', 'Inter', system-ui, sans-serif;

    /* Layout */
    --radius-sm: 12px;
    --radius-md: 20px;
    --radius-lg: 28px;
    --radius-xl: 40px;
    --radius-pill: 50px;
    --shadow-xs: 0 2px 8px rgba(61,44,62,0.04);
    --shadow-sm: 0 4px 16px rgba(61,44,62,0.06);
    --shadow-md: 0 12px 40px rgba(61,44,62,0.08);
    --shadow-lg: 0 24px 64px rgba(61,44,62,0.12);
    --shadow-glow: 0 0 40px rgba(212,160,185,0.25);
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

html { scroll-behavior: smooth; scrollbar-width: thin; scrollbar-color: var(--rose-light) var(--bg-alt); }

body {
    font-family: var(--font-body);
    font-size: 16px; line-height: 1.7; color: var(--text);
    background-color: var(--bg); overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

a { color: var(--rose-dark); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--dark); }
img { max-width: 100%; height: auto; display: block; }

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700; line-height: 1.2;
    color: var(--dark); letter-spacing: -0.01em;
}
h1 { font-size: clamp(2rem, 5vw, 3.2rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); }
h3 { font-size: 1.25rem; }
h4 { font-size: 1.1rem; }

::selection { background-color: var(--rose-light); color: var(--dark); }
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--bg-alt); }
::-webkit-scrollbar-thumb { background: linear-gradient(180deg, var(--rose-light), var(--rose)); border-radius: 10px; }

/* ─── 3. Utilities ─── */
.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-accent { color: var(--warm-gold-dark) !important; }
.text-danger { color: var(--danger); }
.mt-20 { margin-top: 20px; }
.mt-30 { margin-top: 30px; }
.btn-block { display: block; width: 100%; }

/* ─── 4. Buttons ─── */
.btn {
    display: inline-flex; align-items: center; justify-content: center;
    font-family: var(--font-body); font-weight: 600; font-size: 15px;
    padding: 14px 32px; border-radius: var(--radius-pill);
    border: none; cursor: pointer; gap: 8px;
    transition: var(--transition); position: relative; overflow: hidden;
    text-decoration: none; letter-spacing: 0.01em;
}
.btn-lg { padding: 18px 42px; font-size: 17px; }
.btn-sm { padding: 10px 22px; font-size: 13px; }

.btn-primary {
    background: linear-gradient(135deg, var(--rose) 0%, var(--rose-dark) 100%);
    color: var(--white); box-shadow: 0 6px 24px rgba(212,160,185,0.35);
}
.btn-primary:hover {
    color: var(--white); transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 36px rgba(212,160,185,0.45);
}
.btn-primary:active { transform: translateY(-1px) scale(1); }

.btn-secondary {
    background: linear-gradient(135deg, var(--warm-gold) 0%, var(--warm-gold-dark) 100%);
    color: var(--dark); box-shadow: 0 4px 20px rgba(232,213,183,0.3);
}
.btn-secondary:hover { color: var(--dark); transform: translateY(-3px); box-shadow: 0 8px 30px rgba(232,213,183,0.45); }

.btn-outline {
    background: transparent; border: 2px solid var(--rose); color: var(--rose-dark);
}
.btn-outline:hover { background: var(--rose); color: var(--white); transform: translateY(-2px); box-shadow: var(--shadow-glow); }

.btn-text { background: transparent; color: var(--text); padding: 10px 16px; }
.btn-text:hover { color: var(--rose-dark); }

.btn-whatsapp {
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: var(--white); box-shadow: 0 4px 15px rgba(37,211,102,0.3);
}
.btn-whatsapp:hover { color: var(--white); transform: translateY(-2px); box-shadow: 0 8px 25px rgba(37,211,102,0.4); }

/* ─── 5. Header ─── */
.main-header {
    position: sticky; top: 0; z-index: 1000;
    background: rgba(255,251,247,0.92);
    backdrop-filter: blur(24px) saturate(180%); -webkit-backdrop-filter: blur(24px) saturate(180%);
    border-bottom: 1px solid rgba(212,160,185,0.15);
    transition: var(--transition);
}
.main-header.scrolled { background: rgba(255,251,247,0.97); box-shadow: 0 4px 30px rgba(61,44,62,0.08); }
.main-header.scrolled .navbar { height: 64px; }

.navbar { display: flex; align-items: center; justify-content: space-between; height: 78px; transition: height 0.3s ease; }

.logo a {
    font-family: var(--font-heading); font-size: 26px; font-weight: 700;
    color: var(--dark); display: flex; align-items: center; gap: 4px;
    transition: var(--transition);
}
.logo a:hover { opacity: 0.85; color: var(--dark); }
.logo-accent { color: var(--rose-dark) !important; }

.mobile-menu-toggle {
    display: none; background: none; border: 1.5px solid var(--border);
    border-radius: var(--radius-sm); padding: 8px 12px;
    color: var(--dark); font-size: 20px; cursor: pointer; transition: var(--transition);
}
.mobile-menu-toggle:hover { border-color: var(--rose); color: var(--rose-dark); }

.nav-menu-wrapper { display: flex; align-items: center; gap: 40px; flex-grow: 1; justify-content: space-between; margin-left: 50px; }
.nav-links { display: flex; gap: 28px; }

.nav-item {
    font-family: var(--font-body); font-weight: 500; font-size: 14px;
    color: var(--dark-light); position: relative; padding: 6px 0;
}
.nav-item::after {
    content: ''; position: absolute; bottom: -2px; left: 50%; width: 0; height: 2.5px;
    background: linear-gradient(90deg, var(--rose), var(--lavender));
    transition: all 0.3s ease; border-radius: 2px; transform: translateX(-50%);
}
.nav-item:hover::after, .nav-item.active::after { width: 100%; }
.nav-item:hover, .nav-item.active { color: var(--rose-dark); }

.auth-buttons { display: flex; align-items: center; gap: 12px; }

/* ─── 6. Dropdown ─── */
.dropdown { position: relative; }
.dropdown-toggle {
    cursor: pointer; display: flex; align-items: center; gap: 8px;
    font-weight: 600; padding: 8px 20px; border-radius: var(--radius-pill);
    border: 1.5px solid var(--border); background: var(--white);
    color: var(--dark); transition: var(--transition); font-size: 14px;
}
.dropdown-toggle:hover, .dropdown.active .dropdown-toggle { border-color: var(--rose); color: var(--rose-dark); background: var(--rose-light); }
.dropdown-toggle i.fa-chevron-down { font-size: 10px; transition: transform 0.3s; }
.dropdown.active .dropdown-toggle i.fa-chevron-down { transform: rotate(180deg); }
.dropdown-menu {
    position: absolute; right: 0; top: calc(100% + 8px);
    background: var(--white); border: 1px solid var(--border);
    border-radius: var(--radius-md); box-shadow: var(--shadow-lg);
    min-width: 220px; opacity: 0; visibility: hidden;
    transform: translateY(10px); transition: var(--transition); z-index: 200; overflow: hidden;
}
.dropdown-menu.show { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown-item { display: flex; align-items: center; gap: 10px; padding: 12px 20px; color: var(--text); font-weight: 500; font-size: 14px; transition: var(--transition); border-bottom: 1px solid rgba(0,0,0,0.03); }
.dropdown-item:last-child { border-bottom: none; }
.dropdown-item i { color: var(--text-muted); width: 16px; text-align: center; }
.dropdown-item:hover { background: var(--bg-alt); color: var(--rose-dark); }
.dropdown-item:hover i { color: var(--rose-dark); }

/* ─── 7. Hero Slider ─── */
.hero-slider-section {
    position: relative; width: 100%; overflow: hidden;
    min-height: 600px; background: var(--dark);
    border-radius: 0 0 60px 60px;
}
.hero-slider-track { position: relative; width: 100%; height: 100%; min-height: 600px; }
.hero-slide {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    display: flex; align-items: center; justify-content: center;
    opacity: 0; visibility: hidden; z-index: 1;
    transition: opacity 1s ease-in-out, visibility 1s ease-in-out;
}
.hero-slide.active { opacity: 1; visibility: visible; z-index: 2; }
.hero-slide-bg { position: absolute; top: 0; left: 0; width: 100%; height: 100%; object-fit: cover; z-index: 1; }
.hero-slide-gradient { position: absolute; inset: 0; background: linear-gradient(135deg, var(--dark) 0%, var(--rose-dark) 100%); z-index: 1; }
.hero-slide-overlay { position: absolute; inset: 0; z-index: 2; background: linear-gradient(180deg, rgba(61,44,62,0.6) 0%, rgba(61,44,62,0.3) 40%, rgba(61,44,62,0.7) 100%); }
.hero-slide-content {
    position: relative; z-index: 3; color: var(--white);
    max-width: 780px; margin: 0 auto; text-align: center; padding: 0 24px;
    transform: translateY(20px); transition: transform 0.8s ease;
}
.hero-slide.active .hero-slide-content { transform: translateY(0); }
.hero-slide-content .hero-tag {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(212,160,185,0.25); border: 1px solid rgba(212,160,185,0.5);
    color: var(--rose-light); padding: 10px 24px; border-radius: var(--radius-pill);
    font-size: 13px; font-weight: 600; margin-bottom: 24px;
    font-family: var(--font-body); letter-spacing: 0.08em; text-transform: uppercase;
    backdrop-filter: blur(10px);
}
.hero-slide-content h1 { font-size: clamp(2rem, 5vw, 3.2rem); color: var(--white); margin-bottom: 20px; line-height: 1.15; text-shadow: 0 2px 30px rgba(0,0,0,0.2); }
.hero-slide-content p { font-size: 17px; color: rgba(255,255,255,0.85); margin-bottom: 36px; line-height: 1.7; max-width: 560px; margin-left: auto; margin-right: auto; }
.hero-slide-content .hero-buttons { justify-content: center; }
.hero-buttons { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-nav-btn {
    position: absolute; top: 50%; transform: translateY(-50%);
    width: 52px; height: 52px; border-radius: 50%;
    background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.25);
    color: var(--white); font-size: 18px; display: flex; align-items: center; justify-content: center;
    cursor: pointer; z-index: 10; transition: var(--transition); backdrop-filter: blur(10px);
}
.hero-nav-btn:hover { background: var(--rose); border-color: var(--rose); color: var(--white); }
.hero-nav-btn.prev-btn { left: 30px; }
.hero-nav-btn.next-btn { right: 30px; }
.hero-dots-container { position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%); display: flex; gap: 10px; z-index: 10; }
.hero-dot { width: 10px; height: 10px; border-radius: 50%; background: rgba(255,255,255,0.35); border: none; cursor: pointer; transition: var(--transition); }
.hero-dot.active { background: var(--rose); width: 28px; border-radius: 5px; }

/* ─── 8. Trust Badges ─── */
.trust-badges-bar { padding: 22px 0; background: var(--white); border-bottom: 1px solid var(--border); position: relative; z-index: 5; }
.trust-badges-container { display: flex; justify-content: center; align-items: center; flex-wrap: wrap; gap: 12px; }
.trust-badge-item {
    display: inline-flex; align-items: center; gap: 8px;
    font-size: 13px; font-weight: 600; color: var(--dark);
    padding: 10px 20px; border-radius: var(--radius-pill);
    background: var(--bg-alt); border: 1px solid var(--border);
    transition: var(--transition);
}
.trust-badge-item i { font-size: 16px; color: var(--sage); }
.trust-badge-item:hover { background: var(--sage-light); border-color: var(--sage); transform: translateY(-2px); box-shadow: var(--shadow-xs); }

/* ─── 9. Sections ─── */
.section-header { text-align: center; margin-bottom: 60px; }
.section-header h2 { font-family: var(--font-heading); font-weight: 700; color: var(--dark); position: relative; display: inline-block; }
.section-header p { font-size: 16px; color: var(--text-muted); margin-top: 12px; max-width: 550px; margin-left: auto; margin-right: auto; }
.section-subtitle { display: inline-flex; align-items: center; gap: 8px; background: var(--rose-light); color: var(--rose-dark); padding: 6px 18px; border-radius: var(--radius-pill); font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 16px; }

/* ─── 10. Cards ─── */
.card {
    background: var(--white); border: 1px solid var(--border);
    border-radius: var(--radius-lg); padding: 32px;
    box-shadow: var(--shadow-xs); transition: var(--transition);
    position: relative; overflow: hidden;
}
.card:hover { box-shadow: var(--shadow-md); transform: translateY(-5px); }
.card-lila { border-color: #E0D5F0; }
.card-lila:hover { box-shadow: 0 15px 40px rgba(201,177,208,0.2); }
.card-mint { border-color: #C2E5CD; }
.card-mint:hover { box-shadow: 0 15px 40px rgba(140,197,162,0.2); }
.card-yellow { border-color: #F2E3B8; }
.card-yellow:hover { box-shadow: 0 15px 40px rgba(232,196,106,0.2); }
.card-pink { border-color: var(--rose-light); }
.card-pink:hover { box-shadow: 0 15px 40px rgba(212,160,185,0.2); }

/* ─── 11. How It Works ─── */
.how-it-works-section { padding: 100px 0; background: var(--bg); position: relative; }
.how-it-works-section::before {
    content: ''; position: absolute; top: -80px; left: 0; right: 0; height: 80px;
    background: var(--bg);
    clip-path: ellipse(60% 100% at 50% 100%);
}
.how-it-works-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.how-it-works-col {
    background: var(--white); border: 1px solid var(--border);
    border-radius: var(--radius-xl); padding: 40px 36px;
    box-shadow: var(--shadow-sm); position: relative; overflow: hidden;
}
.how-it-works-col::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 5px;
    background: linear-gradient(90deg, var(--rose), var(--lavender), var(--sage));
    border-radius: var(--radius-xl) var(--radius-xl) 0 0;
}
.col-title { font-size: 20px; font-weight: 700; margin-bottom: 28px; color: var(--dark); display: flex; align-items: center; justify-content: center; gap: 10px; }
.steps-grid-v { display: flex; flex-direction: column; gap: 24px; }
.step-item-v { display: flex; align-items: flex-start; gap: 16px; }
.step-number-v {
    display: flex; align-items: center; justify-content: center;
    width: 46px; height: 46px; border-radius: 50%;
    background: linear-gradient(135deg, var(--rose), var(--rose-dark));
    color: var(--white); font-size: 16px; font-weight: 700; flex-shrink: 0;
    box-shadow: 0 6px 18px rgba(212,160,185,0.3);
}
.step-text-v h4 { font-size: 16px; font-family: var(--font-body); font-weight: 700; margin-bottom: 4px; color: var(--dark); }
.step-text-v p { font-size: 14px; color: var(--text-muted); line-height: 1.55; }
.steps-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; }
.step-item { text-align: center; }
.step-number { display: flex; align-items: center; justify-content: center; width: 60px; height: 60px; background: var(--rose); color: var(--white); border-radius: 50%; font-size: 24px; font-weight: 700; margin: 0 auto 20px; box-shadow: 0 6px 20px rgba(212,160,185,0.25); }
.step-item h3 { font-size: 18px; margin-bottom: 10px; }
.step-item p { font-size: 14px; color: var(--text-muted); }

/* ─── 12. Trends ─── */
.trends-section { padding: 100px 0; background: var(--bg-section); position: relative; }
.trends-section::before {
    content: ''; position: absolute; top: -60px; left: 0; right: 0; height: 60px;
    background: var(--bg-section); clip-path: ellipse(55% 100% at 50% 100%);
}
.slider-wrapper { position: relative; width: 100%; margin-top: 30px; overflow: hidden; }
.slider-container { overflow: hidden; width: 100%; cursor: grab; }
.slider-container:active { cursor: grabbing; }
.slider-track { display: flex; gap: 24px; transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1); will-change: transform; }
.slider-item { flex: 0 0 calc(25% - 18px); min-width: 280px; user-select: none; }
.trend-card { padding: 0; overflow: hidden; border-radius: var(--radius-lg); }
.trend-img-container { height: 220px; overflow: hidden; }
.trend-img-container img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.trend-card:hover .trend-img-container img { transform: scale(1.08); }
.trend-body { padding: 24px; }
.trend-body h3 { font-size: 17px; font-family: var(--font-body); font-weight: 700; margin-bottom: 8px; color: var(--dark); }
.trend-body p { font-size: 14px; color: var(--text-muted); margin-bottom: 16px; height: 42px; overflow: hidden; }
.slider-nav { display: flex; justify-content: center; gap: 12px; margin-top: 30px; }
.slider-nav-btn {
    width: 48px; height: 48px; border-radius: 50%;
    background: var(--white); border: 1.5px solid var(--border);
    color: var(--dark); display: flex; align-items: center; justify-content: center;
    cursor: pointer; transition: var(--transition); font-size: 16px; box-shadow: var(--shadow-xs);
}
.slider-nav-btn:hover { background: var(--rose); color: var(--white); border-color: var(--rose); box-shadow: var(--shadow-glow); }

/* ─── 13. Inspiration ─── */
.inspiration-section { padding: 100px 0; background: var(--bg); }
.inspiration-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.inspiration-card { position: relative; border-radius: var(--radius-lg); overflow: hidden; height: 350px; box-shadow: var(--shadow-md); transition: var(--transition); }
.inspiration-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.inspiration-overlay { position: absolute; inset: 0; z-index: 2; background: linear-gradient(to top, rgba(61,44,62,0.85) 0%, rgba(212,160,185,0.2) 100%); display: flex; flex-direction: column; justify-content: flex-end; align-items: center; opacity: 0; transition: var(--transition); padding: 30px; }
.inspiration-card:hover .inspiration-overlay { opacity: 1; }
.inspiration-card:hover img { transform: scale(1.1); }
.overlay-content { text-align: center; transform: translateY(20px); transition: transform 0.4s ease; }
.inspiration-card:hover .overlay-content { transform: translateY(0); }
.overlay-content h4 { color: var(--white); font-size: 20px; margin-bottom: 15px; }

/* ─── 14. FAQ ─── */
.faq-section { padding: 100px 0; background: var(--bg-alt); position: relative; }
.faq-section::before { content: ''; position: absolute; top: -60px; left: 0; right: 0; height: 60px; background: var(--bg-alt); clip-path: ellipse(55% 100% at 50% 100%); }
.faq-grid { display: grid; grid-template-columns: 1fr; gap: 16px; max-width: 800px; margin: 0 auto; }
.faq-item { padding: 28px 32px; border-radius: var(--radius-md); }
.faq-item h4 { display: flex; align-items: center; gap: 10px; font-size: 16px; font-family: var(--font-body); font-weight: 700; margin-bottom: 12px; color: var(--dark); }
.faq-item h4 i { color: var(--rose); }
.faq-item p { font-size: 14px; color: var(--text-muted); line-height: 1.65; }


/* ─── 15. Alerts ─── */
.flash-container { margin-top: 20px; }
.alert { display: flex; align-items: center; padding: 16px 24px; border-radius: var(--radius-md); margin-bottom: 15px; gap: 14px; box-shadow: var(--shadow-xs); font-size: 15px; }
.alert-success { background: #ECFDF5; border: 1px solid #A7F3D0; color: #065F46; }
.alert-danger { background: #FEF2F2; border: 1px solid #FECACA; color: #991B1B; }
.alert-warning { background: #FFFBEB; border: 1px solid #FDE68A; color: #92400E; }
.alert-icon { font-size: 20px; }
.alert-content { font-weight: 500; }

/* ─── 16. Forms ─── */
.form-group { margin-bottom: 22px; }
.form-group label { display: block; font-weight: 600; margin-bottom: 8px; font-size: 14px; color: var(--dark); transition: color 0.3s; }
.form-group:focus-within label { color: var(--rose-dark); }
.form-control { width: 100%; padding: 14px 18px; border-radius: var(--radius-md); border: 1.5px solid var(--border); background: var(--white); font-family: var(--font-body); font-size: 15px; color: var(--text); transition: var(--transition); }
.form-control:focus { outline: none; border-color: var(--rose); background: var(--white); box-shadow: 0 0 0 4px rgba(212,160,185,0.12); }
.form-control.is-invalid { border-color: var(--danger); }
textarea.form-control { resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.checkbox-group { display: flex; align-items: flex-start; gap: 10px; }
.checkbox-group input[type="checkbox"] { margin-top: 4px; accent-color: var(--rose); }
.checkbox-group label { font-weight: 400; font-size: 13px; color: var(--text-muted); }
.invalid-feedback { color: var(--danger); font-size: 13px; margin-top: 5px; font-weight: 500; }
.input-icon-group { position: relative; }
.input-icon-group .input-icon { position: absolute; top: 50%; left: 16px; transform: translateY(-50%); color: var(--text-muted); }
.input-icon-group .form-control { padding-left: 48px; }

/* ─── 17. Auth ─── */
.auth-section-page { padding: 80px 0; display: flex; align-items: center; justify-content: center; }
.auth-container { width: 100%; max-width: 650px; }
.auth-login-width { max-width: 450px; }
.auth-header { text-align: center; margin-bottom: 32px; }
.auth-header h2 { font-size: 28px; margin-bottom: 8px; }
.auth-header p { color: var(--text-muted); font-size: 15px; }
.auth-footer { margin-top: 20px; font-size: 14px; }

/* ─── 18. Legal ─── */
.page-title-section { padding: 70px 0 50px; text-align: center; background: linear-gradient(135deg, var(--bg-section) 0%, var(--bg-alt) 100%); }
.page-title-section h1 { font-size: 36px; margin-bottom: 10px; }
.page-title-section p { color: var(--text-muted); }
.legal-section { padding: 60px 0; }
.legal-grid { display: grid; grid-template-columns: 1fr 3fr; gap: 40px; }
.legal-nav ul { list-style: none; }
.legal-nav li { margin-bottom: 12px; }
.legal-nav a { display: block; font-weight: 500; color: var(--text); padding: 6px 12px; border-radius: var(--radius-sm); }
.legal-nav a:hover { color: var(--rose-dark); background: var(--bg-alt); }
.legal-support { margin-top: 30px; padding-top: 20px; border-top: 1px solid var(--border); font-size: 14px; }
.legal-content h2 { font-size: 24px; margin-bottom: 15px; padding-bottom: 10px; border-bottom: 1px solid var(--border); }
.legal-section-block { margin-bottom: 40px; }
.legal-section-block p { margin-bottom: 15px; }
.company-details-table { margin-top: 20px; border: 1px solid var(--border); border-radius: var(--radius-md); overflow: hidden; }
.detail-row { display: flex; padding: 15px; border-bottom: 1px solid var(--border); }
.detail-row:last-child { border-bottom: none; }
.detail-label { width: 200px; font-weight: 600; color: var(--dark); }
.detail-val { color: var(--text); }

/* ─── 19. Contact ─── */
.contact-section { padding: 80px 0; }
.contact-grid { display: grid; grid-template-columns: 1.5fr 1fr; gap: 50px; }
.contact-form h2, .contact-info-container h2 { margin-bottom: 20px; }
.info-items { display: flex; flex-direction: column; gap: 25px; }
.info-item { display: flex; align-items: flex-start; gap: 15px; }
.info-icon { font-size: 20px; color: var(--rose-dark); background: var(--rose-light); padding: 12px; border-radius: 50%; }
.info-text strong { display: block; font-size: 16px; color: var(--dark); }
.info-text span { font-size: 14px; color: var(--text-muted); }
.support-card { margin-top: 30px; background: linear-gradient(135deg, var(--bg) 0%, var(--bg-section) 100%); }
.support-card p { font-size: 14px; margin-bottom: 20px; }
.whatsapp-support { margin-top: 20px; }
.whatsapp-support .support-text { display: block; margin-top: 8px; font-size: 11px; font-style: italic; color: var(--text-muted); }

/* ─── 20. Wizard ─── */
.wizard-section { padding: 60px 0; }
.wizard-progress { display: flex; align-items: center; justify-content: space-between; padding: 24px 40px; margin-bottom: 40px; background: var(--white); border-radius: var(--radius-xl); box-shadow: var(--shadow-sm); border: 1px solid var(--border); }
.progress-step { display: flex; flex-direction: column; align-items: center; gap: 8px; position: relative; z-index: 1; }
.step-dot { width: 44px; height: 44px; background: var(--bg-alt); border: 2px solid var(--border); color: var(--text-muted); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 700; transition: var(--transition); }
.step-label { font-size: 12px; font-weight: 600; color: var(--text-muted); transition: var(--transition); }
.progress-line { flex-grow: 1; height: 2px; background: var(--border); margin: 0 15px; margin-top: -24px; }
.progress-step.active .step-dot { background: linear-gradient(135deg, var(--rose), var(--rose-dark)); border-color: var(--rose); color: var(--white); box-shadow: 0 0 0 6px rgba(212,160,185,0.15); }
.progress-step.active .step-label { color: var(--rose-dark); }
.wizard-step { display: none; }
.wizard-step.active { display: block; animation: fadeIn 0.4s ease; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }
.step-header { margin-bottom: 30px; }
.step-header h2 { font-size: 24px; margin-bottom: 8px; }
.step-header p { color: var(--text-muted); font-size: 14px; }
.wizard-actions { display: flex; justify-content: space-between; margin-top: 30px; padding-top: 20px; border-top: 1px solid var(--border); }
.radio-card-group { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.radio-card { border: 2px solid var(--border); border-radius: var(--radius-md); padding: 20px; display: flex; align-items: flex-start; gap: 14px; cursor: pointer; transition: var(--transition); }
.radio-card input[type="radio"] { margin-top: 5px; accent-color: var(--rose); }
.radio-card-content i { font-size: 24px; color: var(--rose); margin-bottom: 8px; display: block; }
.radio-card-content strong { display: block; margin-bottom: 4px; }
.radio-card-content span { font-size: 12px; color: var(--text-muted); }
.radio-card:hover { border-color: var(--rose); background: var(--rose-light); transform: translateY(-2px); }
.radio-card:has(input[type="radio"]:checked) { border-color: var(--rose); background: var(--rose-light); box-shadow: 0 4px 20px rgba(212,160,185,0.15); }
.radio-pill-group { display: flex; gap: 12px; flex-wrap: wrap; }
.radio-pill { cursor: pointer; }
.radio-pill input[type="radio"] { display: none; }
.radio-pill span { display: block; padding: 10px 20px; border: 1.5px solid var(--border); border-radius: var(--radius-pill); background: var(--white); font-weight: 500; transition: var(--transition); }
.radio-pill span:hover { border-color: var(--rose); background: var(--rose-light); }
.radio-pill input[type="radio"]:checked + span { background: linear-gradient(135deg, var(--rose), var(--rose-dark)); border-color: var(--rose); color: var(--white); }
.file-upload-wrapper { position: relative; border: 2px dashed var(--border); border-radius: var(--radius-md); padding: 40px; text-align: center; cursor: pointer; transition: var(--transition); background: var(--bg-alt); }
.file-upload-input { position: absolute; inset: 0; opacity: 0; cursor: pointer; }
.file-upload-trigger i { font-size: 36px; color: var(--rose); margin-bottom: 10px; display: block; }
.file-upload-trigger span { font-weight: 600; display: block; margin-bottom: 5px; }
.file-upload-trigger .file-info { font-size: 12px; color: var(--text-muted); }
.file-upload-wrapper:hover { border-color: var(--rose); background: var(--rose-light); }
.summary-card { background: linear-gradient(135deg, var(--white) 0%, var(--bg-section) 100%); margin-bottom: 30px; }
.summary-paragraph p { font-size: 18px; font-family: var(--font-heading); color: var(--dark); margin-bottom: 25px; line-height: 1.5; }
.summary-details-list { display: grid; grid-template-columns: 1fr 1fr; gap: 15px 30px; padding-top: 20px; border-top: 1px solid var(--border); }
.sum-item { display: flex; justify-content: space-between; font-size: 14px; }
.sum-lbl { color: var(--text-muted); }
.wizard-success-card { max-width: 600px; margin: 0 auto; padding: 50px 40px; text-align: center; }
.success-icon { font-size: 64px; color: var(--sage); margin-bottom: 20px; }
.wizard-success-card h2 { font-size: 32px; margin-bottom: 15px; }
.wizard-success-card p { color: var(--text-muted); margin-bottom: 30px; }
.match-badge { display: inline-flex; align-items: center; gap: 10px; background: var(--bg-section); color: var(--dark); padding: 12px 24px; border-radius: var(--radius-pill); font-weight: 600; font-size: 15px; margin-bottom: 30px; }
.success-notice { text-align: left; }

/* ─── 21. Error ─── */
.error-page-section { padding: 100px 0; }
.error-card { max-width: 500px; margin: 0 auto; padding: 60px 30px; text-align: center; }
.error-icon { font-size: 72px; margin-bottom: 20px; }
.error-card h1 { font-size: 28px; margin-bottom: 15px; }
.error-card p { color: var(--text-muted); margin-bottom: 20px; }

/* ─── 22. Footer ─── */
.main-footer {
    background: linear-gradient(180deg, var(--dark) 0%, #2A1E2C 100%);
    color: var(--text-light); padding: 80px 0 0;
    position: relative; overflow: hidden;
    border-radius: 60px 60px 0 0;
}
.main-footer::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 4px; background: linear-gradient(90deg, var(--rose), var(--lavender), var(--sage), var(--peach), var(--rose)); background-size: 200% auto; animation: gradientSlide 4s linear infinite; border-radius: 60px 60px 0 0; }
@keyframes gradientSlide { 0% { background-position: 0% center; } 100% { background-position: 200% center; } }
.main-footer h3, .main-footer h4 { color: var(--white); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 2fr; gap: 50px; padding-bottom: 50px; }
.footer-brand p { margin: 20px 0; font-size: 14px; color: var(--text-light); }
.social-icons { display: flex; gap: 12px; }
.social-icons a { display: inline-flex; align-items: center; justify-content: center; width: 42px; height: 42px; border-radius: 50%; border: 1.5px solid rgba(255,255,255,0.12); color: var(--text-light); font-size: 18px; transition: var(--transition); }
.social-icons a:hover { background: var(--rose); border-color: var(--rose); color: var(--white); transform: translateY(-3px); box-shadow: 0 6px 20px rgba(212,160,185,0.35); }
.footer-links h4, .footer-contact h4 { margin-bottom: 20px; font-size: 14px; font-family: var(--font-body); font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; }
.footer-links ul { list-style: none; }
.footer-links li { margin-bottom: 10px; }
.footer-links a { color: var(--text-light); font-size: 14px; position: relative; display: inline-block; }
.footer-links a::after { content: ''; position: absolute; bottom: -2px; left: 0; width: 0; height: 1px; background: var(--rose); transition: width 0.3s; }
.footer-links a:hover { color: var(--rose-light); }
.footer-links a:hover::after { width: 100%; }
.footer-contact p { font-size: 14px; margin-bottom: 10px; display: flex; align-items: center; gap: 10px; color: var(--text-light); }
.footer-contact p i { color: var(--rose); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.06); padding: 24px 0; font-size: 13px; color: var(--text-light); }
.footer-bottom-flex { display: flex; justify-content: space-between; align-items: center; }

/* ─── 23. Offers ─── */
.offer-card { border: 1px solid var(--border); border-radius: var(--radius-lg); background: var(--white); box-shadow: var(--shadow-xs); transition: var(--transition); }
.offer-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.offer-card-header { background: linear-gradient(135deg, var(--bg-alt) 0%, var(--bg-section) 100%); border-bottom: 1px solid var(--border); padding: 24px; border-radius: var(--radius-lg) var(--radius-lg) 0 0; }
.offer-card-body { padding: 24px; }
.offer-whatsapp-btn { background: linear-gradient(135deg, #25D366, #128C7E); color: var(--white); border: none; box-shadow: 0 4px 15px rgba(37,211,102,0.25); border-radius: var(--radius-pill); padding: 14px 28px; display: inline-flex; align-items: center; justify-content: center; gap: 8px; font-weight: 700; cursor: pointer; transition: var(--transition); }
.offer-whatsapp-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 25px rgba(37,211,102,0.4); }

/* ─── 24. Widgets ─── */
.widget-credits { background: #F3EEFF !important; border: 1px solid #DCC7FF !important; }
.widget-active { background: #ECFDF5 !important; border: 1px solid #A7F3D0 !important; }
.widget-pending { background: #FFFBEB !important; border: 1px solid #FDE68A !important; }
.widget-rejected { background: #FEF2F2 !important; border: 1px solid #FECACA !important; }

/* ─── 25. Audio ─── */
.audio-intro-section { padding: 40px 0; }
.audio-box { display: flex; align-items: center; gap: 30px; background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 30px; box-shadow: var(--shadow-sm); }
.audio-icon { font-size: 36px; color: var(--white); background: linear-gradient(135deg, var(--rose), var(--rose-dark)); padding: 20px; border-radius: 50%; width: 80px; height: 80px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; box-shadow: 0 8px 20px rgba(212,160,185,0.25); }
.audio-info h3 { margin-bottom: 8px; }
.audio-info p { color: var(--text-muted); margin-bottom: 12px; }
.audio-controls { display: flex; gap: 10px; }
.audio-transcript-box { margin-top: 15px; padding: 15px; background: var(--bg-alt); border-radius: var(--radius-sm); border-left: 4px solid var(--warm-gold); font-size: 14px; font-style: italic; }
.audio-waveform-container { display: flex; align-items: flex-end; gap: 3px; height: 35px; margin-top: 15px; }
.waveform-bar { width: 4px; height: 5px; background: var(--rose-light); border-radius: 4px; transition: height 0.15s ease; }
.audio-box.playing .waveform-bar { animation: bounce 1.2s ease-in-out infinite alternate; }
.audio-box.playing .waveform-bar:nth-child(2n) { animation-delay: 0.15s; }
.audio-box.playing .waveform-bar:nth-child(3n) { animation-delay: 0.3s; }
@keyframes bounce { 0% { height: 5px; } 100% { height: 35px; } }

/* ─── 26. Blog ─── */
.blog-rich-content h2 { font-family: var(--font-heading); font-size: 1.8rem; color: var(--dark); margin-top: 35px; margin-bottom: 15px; }
.blog-rich-content h3 { font-family: var(--font-heading); font-size: 1.4rem; color: var(--dark); margin-top: 25px; margin-bottom: 10px; }
.blog-rich-content p { margin-bottom: 20px; line-height: 1.8; color: #4a4a4a; }
.blog-rich-content ul, .blog-rich-content ol { margin-bottom: 25px; padding-left: 25px; }
.blog-rich-content li { margin-bottom: 10px; line-height: 1.7; color: #4a4a4a; }
.blog-rich-content strong { color: var(--dark); font-weight: 600; }
.blog-list-section .card { transition: var(--transition-slow); }
.blog-list-section .card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.blog-list-section .card img { transition: transform 0.6s ease; }
.blog-list-section .card:hover img { transform: scale(1.08); }
.post-header-section { position: relative; overflow: hidden; }
.post-header-section::before { content: ''; position: absolute; top: -40%; right: -15%; width: 400px; height: 400px; background: radial-gradient(circle, rgba(212,160,185,0.1) 0%, transparent 70%); border-radius: 50%; pointer-events: none; }

/* ─── 27. Decorations ─── */
.decorations-container { position: relative; overflow: hidden; }
.decorative-icon { position: absolute; color: var(--rose-light); opacity: 0.15; pointer-events: none; z-index: 0; }
.dec-1 { top: 10%; left: 5%; font-size: 28px; animation: floatSlow 8s ease-in-out infinite; }
.dec-2 { top: 80%; left: 8%; font-size: 32px; animation: floatReverse 9s ease-in-out infinite; }
.dec-3 { top: 15%; right: 6%; font-size: 36px; animation: floatSlow 10s ease-in-out infinite; }
.dec-4 { top: 75%; right: 10%; font-size: 30px; animation: floatReverse 7s ease-in-out infinite; }
.dec-5 { top: 45%; left: 85%; font-size: 34px; animation: floatSlow 11s ease-in-out infinite; }
@keyframes floatSlow { 0% { transform: translateY(0) rotate(0deg); } 50% { transform: translateY(-18px) rotate(10deg); } 100% { transform: translateY(0) rotate(0deg); } }
@keyframes floatReverse { 0% { transform: translateY(0) rotate(0deg); } 50% { transform: translateY(14px) rotate(-15deg); } 100% { transform: translateY(0) rotate(0deg); } }

/* ─── 28. Badges ─── */
.badge { display: inline-flex; align-items: center; gap: 6px; padding: 6px 16px; border-radius: var(--radius-pill); font-size: 13px; font-weight: 600; }
.badge-accent { background: var(--bg-section); color: var(--dark); border: 1px solid var(--border); }
.badge-primary { background: linear-gradient(135deg, var(--rose), var(--rose-dark)); color: var(--white); }
.badge-status { display: inline-block; font-size: 11px; padding: 4px 12px; border-radius: var(--radius-pill); font-weight: 600; }

/* ─── 29. Mobile Sticky CTA ─── */
.mobile-sticky-cta { display: none; position: fixed; bottom: 0; left: 0; width: 100%; background: rgba(255,251,247,0.95); backdrop-filter: blur(20px); border-top: 1px solid var(--border); padding: 12px 20px; box-shadow: 0 -8px 30px rgba(0,0,0,0.06); z-index: 999; }
.mobile-sticky-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.mobile-sticky-grid .btn { padding: 12px 20px; font-size: 14px; text-align: center; }

/* ─── 30. Drawer ─── */
.drawer-backdrop { position: fixed; inset: 0; background: rgba(61,44,62,0.5); backdrop-filter: blur(4px); opacity: 0; visibility: hidden; transition: var(--transition); z-index: 998; }
.drawer-backdrop.active { opacity: 1; visibility: visible; }
.drawer-close-btn { display: none; position: absolute; top: 15px; right: 15px; width: 42px; height: 42px; border-radius: 50%; border: 1.5px solid var(--border); background: var(--bg-alt); color: var(--dark); font-size: 18px; cursor: pointer; align-items: center; justify-content: center; transition: var(--transition); z-index: 10; }
.drawer-close-btn:hover { background: var(--rose); color: var(--white); border-color: var(--rose); }

/* ─── 31. Overlays & Animations ─── */
.page-transition-overlay { position: fixed; inset: 0; background: var(--bg); z-index: 9999; pointer-events: none; opacity: 1; transition: opacity 0.4s ease; }
.page-transition-overlay.loaded { opacity: 0; }
@keyframes revealUp { from { opacity: 0; transform: translateY(40px); } to { opacity: 1; transform: translateY(0); } }
@keyframes revealScale { from { opacity: 0; transform: scale(0.92); } to { opacity: 1; transform: scale(1); } }
.reveal-element { opacity: 0; }
.reveal-element.revealed { animation-duration: 0.8s; animation-fill-mode: both; animation-timing-function: cubic-bezier(0.25, 0.46, 0.45, 0.94); }
.reveal-element.revealed[data-animate="fadeInUp"] { animation-name: revealUp; }
.reveal-element.revealed[data-animate="scaleIn"] { animation-name: revealScale; }
.animate-pulse { animation: pulse 2s infinite; }
@keyframes pulse { 0% { transform: scale(1); } 50% { transform: scale(1.05); } 100% { transform: scale(1); } }

/* ─── 32. Legacy ─── */
.hero-section { padding: 80px 0; background: linear-gradient(135deg, var(--bg) 0%, var(--bg-alt) 100%); }
.trends-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }

/* ─── 33. NEW — Animated Counters ─── */
.stats-section {
    padding: 90px 0; position: relative; overflow: hidden;
    background: linear-gradient(135deg, var(--bg-alt) 0%, var(--bg) 100%);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}
.stats-section::before {
    content: ''; position: absolute; top: -150px; right: -100px; width: 450px; height: 450px;
    background: radial-gradient(circle, rgba(212,160,185,0.18) 0%, transparent 70%); border-radius: 50%;
}
.stats-section::after {
    content: ''; position: absolute; bottom: -100px; left: -80px; width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(140,197,162,0.15) 0%, transparent 70%); border-radius: 50%;
}
.stats-header { text-align: center; margin-bottom: 55px; position: relative; z-index: 1; }
.stats-header h2 { 
    font-family: var(--font-heading); 
    font-size: clamp(2rem, 4vw, 2.4rem); 
    color: var(--dark); 
    font-weight: 700; 
    margin-bottom: 12px;
    letter-spacing: -0.5px;
}
.stats-header p { 
    color: var(--text-muted); 
    font-size: 16px; 
    max-width: 500px; 
    margin: 0 auto; 
    font-weight: 400;
}
.stats-grid { 
    display: grid; 
    grid-template-columns: repeat(4, 1fr); 
    gap: 16px; 
    position: relative; 
    z-index: 1; 
    max-width: 760px; 
    margin: 0 auto; 
}
.stat-card {
    text-align: center; padding: 18px 12px 14px;
    border-radius: 14px; position: relative; overflow: hidden;
    background: var(--white);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}
.stat-card::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
    background: linear-gradient(90deg, transparent, var(--rose), transparent);
    opacity: 0; transition: opacity 0.4s;
}
.stat-card:hover { 
    transform: translateY(-4px); 
    box-shadow: var(--shadow-md), 0 8px 20px rgba(212,160,185,0.06); 
    border-color: var(--rose);
}
.stat-card:hover::before { opacity: 1; }
.stat-icon {
    width: 40px; height: 40px; border-radius: 50%; display: flex; align-items: center; justify-content: center;
    margin: 0 auto 10px; font-size: 15px; transition: var(--transition);
}
.stat-icon.rose { background: rgba(212,160,185,0.15); color: var(--rose-dark); }
.stat-icon.sage { background: rgba(140,197,162,0.18); color: #4A7A5C; }
.stat-icon.lavender { background: rgba(201,177,208,0.18); color: #7B5F82; }
.stat-icon.peach { background: rgba(240,196,168,0.18); color: #A76E4B; }
.stat-card:hover .stat-icon { transform: scale(1.08) rotate(5deg); }
.stat-value { display: flex; align-items: baseline; justify-content: center; gap: 2px; margin-bottom: 4px; }
.stat-number { 
    font-family: var(--font-heading); 
    font-size: 26px; 
    font-weight: 700; 
    color: var(--dark); 
    line-height: 1; 
    letter-spacing: -0.5px;
}
.stat-suffix { 
    font-family: var(--font-heading); 
    font-size: 16px; 
    font-weight: 400; 
    color: var(--rose-dark); 
    vertical-align: super;
}
.stat-label { font-size: 12.5px; color: var(--text); font-weight: 700; margin-bottom: 2px; }
.stat-desc { font-size: 11px; color: var(--text-muted); line-height: 1.3; }

/* ─── 34. NEW — Category Grid ─── */
.categories-section { padding: 100px 0; background: var(--bg); }
.categories-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 20px; }
.category-card {
    text-align: center; padding: 32px 16px; border-radius: var(--radius-lg);
    background: var(--white); border: 1.5px solid var(--border);
    transition: var(--transition); cursor: pointer; text-decoration: none; color: var(--text);
    display: block;
}
.category-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: var(--rose); color: var(--rose-dark); }
.category-icon {
    width: 70px; height: 70px; border-radius: 50%; display: flex; align-items: center; justify-content: center;
    margin: 0 auto 16px; font-size: 28px; transition: var(--transition);
}
.category-card:hover .category-icon { transform: scale(1.1); }
.category-card h4 { font-family: var(--font-body); font-size: 14px; font-weight: 700; }

/* ─── 35. NEW — Comparison Table ─── */
.comparison-section { padding: 100px 0; background: var(--bg-section); }
.comparison-table { max-width: 800px; margin: 0 auto; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); }
.comparison-header { display: grid; grid-template-columns: 2fr 1fr 1fr; background: var(--dark); color: var(--white); }
.comparison-header div { padding: 18px 24px; font-weight: 700; font-size: 14px; text-align: center; }
.comparison-header div:first-child { text-align: left; }
.comparison-row { display: grid; grid-template-columns: 2fr 1fr 1fr; background: var(--white); border-bottom: 1px solid var(--border); }
.comparison-row:nth-child(even) { background: var(--bg-alt); }
.comparison-row div { padding: 16px 24px; font-size: 14px; display: flex; align-items: center; justify-content: center; }
.comparison-row div:first-child { justify-content: flex-start; font-weight: 600; color: var(--dark); }
.comp-yes { color: var(--sage); font-size: 20px; }
.comp-no { color: var(--danger); font-size: 20px; }

/* ─── 36. NEW — Testimonials ─── */
.testimonials-section { padding: 100px 0; background: var(--bg); position: relative; }
.testimonials-slider { position: relative; max-width: 700px; margin: 0 auto; overflow: hidden; }
.testimonials-track { display: flex; transition: transform 0.5s ease; }
.testimonial-slide { flex: 0 0 100%; padding: 0 20px; }
.testimonial-card {
    text-align: center; padding: 48px 40px; border-radius: var(--radius-xl);
    background: var(--white); border: 1px solid var(--border); box-shadow: var(--shadow-sm);
    position: relative;
}
.testimonial-card::before { content: '\201C'; position: absolute; top: 20px; left: 30px; font-size: 60px; color: var(--rose-light); font-family: Georgia, serif; line-height: 1; }
.testimonial-avatar { width: 72px; height: 72px; border-radius: 50%; object-fit: cover; margin: 0 auto 16px; border: 3px solid var(--rose-light); }
.testimonial-stars { color: var(--warm-gold-dark); font-size: 16px; margin-bottom: 16px; display: flex; justify-content: center; gap: 4px; }
.testimonial-text { font-size: 16px; font-style: italic; color: var(--text); line-height: 1.7; margin-bottom: 20px; }
.testimonial-author { font-weight: 700; color: var(--dark); font-size: 15px; }
.testimonial-location { font-size: 13px; color: var(--text-muted); margin-top: 4px; }
.testimonial-dots { display: flex; justify-content: center; gap: 8px; margin-top: 28px; }
.testimonial-dot { width: 10px; height: 10px; border-radius: 50%; background: var(--border); border: none; cursor: pointer; transition: var(--transition); }
.testimonial-dot.active { background: var(--rose); width: 28px; border-radius: 5px; }

/* ─── 37. NEW — Service Areas ─── */
.areas-section { padding: 100px 0; background: var(--bg-alt); }
.areas-grid { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; margin-top: 36px; }
.area-pill {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 12px 24px; border-radius: var(--radius-pill);
    background: var(--white); border: 1.5px solid var(--border);
    font-weight: 600; font-size: 14px; color: var(--dark);
    transition: var(--transition); cursor: default;
}
.area-pill i { color: var(--rose); font-size: 12px; }
.area-pill:hover { border-color: var(--rose); background: var(--rose-light); transform: translateY(-2px); box-shadow: var(--shadow-xs); }
.area-pill.coming-soon { opacity: 0.5; border-style: dashed; }
.areas-note { text-align: center; margin-top: 24px; font-size: 13px; color: var(--text-muted); }

/* ─── 38. NEW — Video Section ─── */
.video-section { padding: 100px 0; background: var(--bg); }
.video-wrapper {
    max-width: 800px; margin: 0 auto; border-radius: var(--radius-xl); overflow: hidden;
    box-shadow: var(--shadow-lg); position: relative; aspect-ratio: 16/9;
    background: var(--dark); cursor: pointer;
}
.video-placeholder {
    width: 100%; height: 100%; display: flex; flex-direction: column; align-items: center; justify-content: center;
    background: linear-gradient(135deg, var(--dark) 0%, var(--rose-dark) 100%);
    color: var(--white); position: relative;
}
.video-play-btn {
    width: 80px; height: 80px; border-radius: 50%; background: rgba(255,255,255,0.15);
    border: 2px solid rgba(255,255,255,0.4); display: flex; align-items: center; justify-content: center;
    font-size: 28px; color: var(--white); margin-bottom: 16px; transition: var(--transition);
    backdrop-filter: blur(10px);
}
.video-wrapper:hover .video-play-btn { background: var(--rose); border-color: var(--rose); transform: scale(1.1); }
.video-placeholder span { font-size: 15px; font-weight: 600; opacity: 0.85; }

/* Video Explainer Animation */
.video-explainer {
    width: 100%; height: 100%; display: flex; flex-direction: column; align-items: center; justify-content: center;
    background: linear-gradient(135deg, #2D1F30 0%, #1A1A2E 50%, #2D1F30 100%);
    padding: 60px 40px; position: relative;
}
.explainer-step {
    display: none; text-align: center; animation: explainerFadeIn 0.6s ease;
}
.explainer-step.active { display: block; }
@keyframes explainerFadeIn { from { opacity: 0; transform: translateY(20px) scale(0.95); } to { opacity: 1; transform: translateY(0) scale(1); } }
.explainer-icon {
    width: 90px; height: 90px; border-radius: 50%; display: flex; align-items: center; justify-content: center;
    margin: 0 auto 24px; font-size: 36px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}
.explainer-step-badge {
    display: inline-block; padding: 5px 16px; border-radius: var(--radius-pill);
    background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.15);
    color: rgba(255,255,255,0.6); font-size: 12px; font-weight: 600; margin-bottom: 16px;
    letter-spacing: 0.05em; text-transform: uppercase;
}
.explainer-progress {
    position: absolute; bottom: 60px; left: 50%; transform: translateX(-50%);
    width: 200px; height: 3px; background: rgba(255,255,255,0.1); border-radius: 3px; overflow: hidden;
}
.explainer-progress-bar {
    height: 100%; background: linear-gradient(90deg, var(--rose), var(--lavender));
    border-radius: 3px; width: 33%; transition: width 0.4s ease;
}
.explainer-dots {
    position: absolute; bottom: 24px; left: 50%; transform: translateX(-50%);
    display: flex; gap: 10px;
}
.explainer-dot {
    width: 32px; height: 32px; border-radius: 50%; border: 1.5px solid rgba(255,255,255,0.2);
    background: transparent; color: rgba(255,255,255,0.5); font-size: 13px; font-weight: 700;
    cursor: pointer; transition: var(--transition); display: flex; align-items: center; justify-content: center;
}
.explainer-dot.active { background: var(--rose); border-color: var(--rose); color: var(--white); box-shadow: 0 4px 15px rgba(212,160,185,0.4); }
.explainer-dot:hover { border-color: var(--rose); color: var(--rose-light); }

/* ─── 39. NEW — App Banner ─── */
.app-banner-section { padding: 80px 0; background: linear-gradient(135deg, var(--rose-light) 0%, var(--lavender-light) 100%); }
.app-banner-grid { display: flex; align-items: center; justify-content: center; gap: 40px; text-align: center; }
.app-banner-text h2 { margin-bottom: 12px; }
.app-banner-text p { color: var(--text-muted); margin-bottom: 24px; max-width: 400px; }
.app-badges { display: flex; gap: 12px; justify-content: center; }
.app-badge {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 12px 24px; border-radius: var(--radius-md); background: var(--dark);
    color: var(--white); font-size: 13px; font-weight: 600; transition: var(--transition);
}
.app-badge i { font-size: 22px; }
.app-badge:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); color: var(--white); }
.app-badge-text { text-align: left; line-height: 1.3; }
.app-badge-text small { display: block; font-size: 10px; font-weight: 400; opacity: 0.7; }

/* ─── 40. NEW — Newsletter ─── */
.newsletter-section { padding: 80px 0; background: var(--bg-section); }
.newsletter-box {
    max-width: 600px; margin: 0 auto; text-align: center;
    background: var(--white); border: 1px solid var(--border);
    border-radius: var(--radius-xl); padding: 48px 40px; box-shadow: var(--shadow-sm);
}
.newsletter-box h3 { margin-bottom: 10px; }
.newsletter-box p { color: var(--text-muted); font-size: 14px; margin-bottom: 28px; }
.newsletter-form { display: flex; gap: 12px; }
.newsletter-form input {
    flex: 1; padding: 14px 20px; border: 1.5px solid var(--border);
    border-radius: var(--radius-pill); font-family: var(--font-body);
    font-size: 15px; color: var(--text); background: var(--bg-alt);
    transition: var(--transition);
}
.newsletter-form input:focus { outline: none; border-color: var(--rose); background: var(--white); box-shadow: 0 0 0 4px rgba(212,160,185,0.1); }
.newsletter-form button { white-space: nowrap; }

/* ─── 41. NEW — Live Feed Toast ─── */
.live-toast {
    position: fixed; bottom: 100px; left: 24px; z-index: 997;
    background: var(--white); border: 1px solid var(--border);
    border-radius: var(--radius-md); padding: 16px 20px;
    box-shadow: var(--shadow-lg); display: flex; align-items: center; gap: 14px;
    max-width: 340px; transform: translateX(-120%); transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.live-toast.show { transform: translateX(0); }
.live-toast-icon { width: 40px; height: 40px; border-radius: 50%; background: var(--sage-light); color: var(--sage); display: flex; align-items: center; justify-content: center; font-size: 18px; flex-shrink: 0; }
.live-toast-text { font-size: 13px; color: var(--text); line-height: 1.4; }
.live-toast-text strong { color: var(--dark); }
.live-toast-time { font-size: 11px; color: var(--text-muted); margin-top: 2px; }

/* ─── 42. NEW — Instagram Feed ─── */
.instagram-section { padding: 80px 0; background: var(--bg); }
.instagram-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 8px; }
.instagram-item {
    aspect-ratio: 1; border-radius: var(--radius-sm); overflow: hidden;
    position: relative; cursor: pointer;
}
.instagram-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.instagram-item:hover img { transform: scale(1.1); }
.instagram-item::after {
    content: '\f16d'; font-family: 'Font Awesome 6 Brands'; font-weight: 400;
    position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
    background: rgba(61,44,62,0.5); color: var(--white); font-size: 24px;
    opacity: 0; transition: opacity 0.3s;
}
.instagram-item:hover::after { opacity: 1; }

/* ─── 43. Enhanced Trust Badges ─── */
.trust-extended-section { padding: 50px 0; background: var(--white); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.trust-ext-grid { display: flex; justify-content: center; gap: 40px; flex-wrap: wrap; }
.trust-ext-item { display: flex; align-items: center; gap: 12px; }
.trust-ext-icon { width: 44px; height: 44px; border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center; font-size: 20px; }
.trust-ext-icon.green { background: var(--sage-light); color: var(--sage); }
.trust-ext-icon.blue { background: var(--powder-blue-light); color: var(--powder-blue); }
.trust-ext-icon.rose { background: var(--rose-light); color: var(--rose); }
.trust-ext-text { font-size: 13px; font-weight: 700; color: var(--dark); line-height: 1.3; }
.trust-ext-text small { display: block; font-weight: 400; color: var(--text-muted); font-size: 11px; }

/* ─── 44. Responsive updates for new sections ─── */
@media (max-width: 1024px) {
    .mobile-menu-toggle { display: block; }
    .nav-menu-wrapper { position: fixed; top: 0; right: -340px; width: 340px; height: 100vh; background: var(--white); border-left: 1px solid var(--border); box-shadow: -10px 0 40px rgba(0,0,0,0.1); padding: 70px 30px 30px; flex-direction: column; justify-content: flex-start; align-items: stretch; gap: 30px; z-index: 999; margin-left: 0; transition: right 0.4s cubic-bezier(0.25, 1, 0.5, 1); display: flex !important; }
    .nav-menu-wrapper.active { right: 0; }
    .drawer-close-btn { display: flex; }
    .nav-links { flex-direction: column; gap: 0; align-items: stretch; border-bottom: 1px solid var(--border); padding-bottom: 20px; }
    .nav-item { font-size: 16px; padding: 14px 0; color: var(--text); border-bottom: 1px solid rgba(0,0,0,0.04); }
    .nav-item:hover { color: var(--rose-dark); }
    .nav-item::after { display: none; }
    .auth-buttons { flex-direction: column; gap: 12px; align-items: stretch; }
    .auth-buttons .btn { width: 100%; padding: 14px; text-align: center; }
    .how-it-works-grid { grid-template-columns: 1fr; }
    .steps-grid, .trends-grid { grid-template-columns: repeat(2, 1fr); }
    .inspiration-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr; gap: 30px; }
    .contact-grid, .legal-grid { grid-template-columns: 1fr; }
    .slider-item { flex: 0 0 calc(50% - 12px); }
    .hero-slider-section { min-height: 500px; border-radius: 0 0 40px 40px; }
    .hero-slider-track { min-height: 500px; }
    .hero-slide-content h1 { font-size: 1.8rem; }
    .hero-nav-btn { display: none; }
    .main-footer { border-radius: 40px 40px 0 0; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
    .categories-grid { grid-template-columns: repeat(3, 1fr); }
    .instagram-grid { grid-template-columns: repeat(4, 1fr); }
}

@media (max-width: 768px) {
    .mobile-sticky-cta { display: block; }
    body { padding-bottom: 80px; }
    .section-header h2 { font-size: 1.5rem; }
    .section-header { margin-bottom: 40px; }
    .hero-slide-content .hero-buttons { flex-direction: column; gap: 12px; align-items: center; }
    .hero-slide-content .hero-buttons .btn { width: 100%; max-width: 300px; }
    .footer-bottom-flex { flex-direction: column; text-align: center; gap: 8px; }
    .trust-badges-container { flex-wrap: wrap; justify-content: center; }
    .trust-badge-item { font-size: 12px; padding: 8px 14px; }
    .hero-slider-section, .hero-slider-track { min-height: 450px; }
    .categories-grid { grid-template-columns: repeat(2, 1fr); }
    .comparison-header, .comparison-row { grid-template-columns: 2fr 1fr 1fr; }
    .newsletter-form { flex-direction: column; }
    .app-banner-grid { flex-direction: column; }
    .app-badges { flex-direction: column; align-items: center; }
    .trust-ext-grid { gap: 20px; }
    .instagram-grid { grid-template-columns: repeat(3, 1fr); }
    .live-toast { left: 12px; right: 12px; max-width: none; bottom: 90px; }
    .stat-number { font-size: 24px; }
}

@media (max-width: 600px) {
    .steps-grid, .trends-grid, .inspiration-grid, .faq-grid { grid-template-columns: 1fr; }
    .form-row, .summary-details-list, .radio-card-group { grid-template-columns: 1fr; }
    .wizard-progress { padding: 15px; }
    .step-label { display: none; }
    .progress-line { margin-top: -20px; }
    .slider-item { flex: 0 0 100%; }
    .inspiration-card { height: 240px; }
    .hero-slider-section, .hero-slider-track { min-height: 400px; border-radius: 0 0 30px 30px; }
    .hero-slide-content h1 { font-size: 1.5rem; }
    .hero-slide-content p { font-size: 14px; margin-bottom: 24px; }
    .container { padding: 0 16px; }
    .main-footer { border-radius: 30px 30px 0 0; }
    .stats-grid { grid-template-columns: 1fr 1fr; }
    .categories-grid { grid-template-columns: 1fr 1fr; }
    .instagram-grid { grid-template-columns: repeat(3, 1fr); }
}

/* ─── Premium Upgrades & Interactive Elements ─── */
.hero-slide-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    height: 100%;
    min-height: 600px;
    z-index: 5;
    position: relative;
    padding-top: 40px;
    padding-bottom: 40px;
}
.hero-slide-content-col {
    flex: 1.2;
    text-align: left;
    color: var(--white);
}
.hero-slide-content-col h1 {
    font-size: clamp(2rem, 4.5vw, 3rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--white);
    text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}
.hero-slide-content-col p {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 36px;
    line-height: 1.7;
    max-width: 600px;
}
.hero-slide-media-col {
    flex: 0.8;
    display: flex;
    justify-content: center;
    align-items: center;
}
.hero-media-wrapper {
    position: relative;
    width: 100%;
    max-width: 440px;
    perspective: 1000px;
}
.video-mockup-frame, .image-mockup-frame {
    border-radius: 24px;
    border: 3px solid rgba(255,255,255,0.2);
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0,0,0,0.4);
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(10px);
}
.mockup-poster-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 16/10;
    background: #000;
}
.mockup-poster, .mockup-img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
    max-height: 340px;
    transition: transform 0.5s ease;
}
.image-mockup-frame .mockup-img {
    max-height: 380px;
    border-radius: 20px;
}
.video-play-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: rgba(45,31,48,0.4);
    cursor: pointer;
    transition: background-color 0.3s;
}
.video-play-overlay:hover {
    background: rgba(45,31,48,0.25);
}
.play-btn-circle {
    width: 76px;
    height: 76px;
    border-radius: 50%;
    background: var(--rose);
    border: none;
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    cursor: pointer;
    box-shadow: 0 10px 25px rgba(248,175,200,0.5);
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.3s;
}
.video-play-overlay:hover .play-btn-circle {
    transform: scale(1.1);
    box-shadow: 0 12px 30px rgba(248,175,200,0.7);
}
.play-btn-circle i {
    margin-left: 4px;
}
.play-btn-text {
    margin-top: 14px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: var(--white);
    text-transform: uppercase;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}
.animate-float {
    animation: float 5s ease-in-out infinite;
}
@keyframes float {
    0% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-12px) rotate(0.5deg); }
    100% { transform: translateY(0px) rotate(0deg); }
}

/* Video Modal overlay & layout */
.video-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(26,17,27,0.9);
    backdrop-filter: blur(12px);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}
.video-modal-overlay.active {
    opacity: 1;
    visibility: visible;
}
.video-modal-container {
    position: relative;
    width: 90%;
    max-width: 800px;
    background: #000;
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,0.15);
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    transform: scale(0.95);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.video-modal-overlay.active .video-modal-container {
    transform: scale(1);
}
.video-modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.15);
    border: none;
    color: var(--white);
    font-size: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: background-color 0.3s;
}
.video-modal-close:hover {
    background: var(--color-danger);
}
.video-player-wrapper {
    width: 100%;
    aspect-ratio: 16/9;
    display: flex;
    background: #000;
}
.video-player-wrapper video {
    width: 100%;
    height: 100%;
    object-fit: contain;
}


/* SSS Search & Accordion upgrades */
.faq-search-wrapper {
    position: relative;
    max-width: 500px;
    margin: -20px auto 40px auto;
}
#faq-search-input {
    width: 100%;
    padding: 14px 20px 14px 48px;
    border-radius: 50px;
    border: 2px solid var(--border);
    background: var(--white);
    font-size: 15px;
    box-shadow: var(--shadow-sm);
    outline: none;
    transition: border-color 0.3s, box-shadow 0.3s;
}
#faq-search-input:focus {
    border-color: var(--color-primary);
    box-shadow: 0 0 0 4px var(--rose-light);
}
.faq-search-wrapper .search-icon {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
    font-size: 16px;
}
.search-clear-btn {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
    font-size: 16px;
    display: none;
    transition: color 0.2s;
    padding: 0;
}
.search-clear-btn:hover {
    color: var(--color-primary);
}

/* Accordion Accordance styling */
.faq-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}
.faq-item {
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all 0.3s ease;
    padding: 0 !important;
}
.faq-item:hover {
    box-shadow: var(--shadow-sm);
    border-color: var(--color-primary-light);
}
.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    cursor: pointer;
    user-select: none;
}
.faq-question h4 {
    margin: 0;
    font-size: 15.5px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--dark);
}
.faq-chevron {
    font-size: 14px;
    color: var(--text-muted);
    transition: transform 0.3s ease, color 0.3s;
}
.faq-item.active {
    border-color: var(--color-primary-light);
}
.faq-item.active .faq-chevron {
    transform: rotate(180deg);
    color: var(--color-primary);
}
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background-color: var(--bg-alt);
    border-top: 1px solid transparent;
}
.faq-item.active .faq-answer {
    border-top: 1px solid var(--border);
}
.faq-answer p {
    padding: 20px 24px;
    margin: 0;
    color: var(--text-muted);
    line-height: 1.7;
    font-size: 14.5px;
}

/* Testimonials premium cards */
.testimonial-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 36px;
    position: relative;
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s ease, box-shadow 0.3s;
}
.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

/* Responsiveness split layout & controls */
@media (max-width: 992px) {
    .hero-slide-container {
        flex-direction: column;
        justify-content: center;
        text-align: center;
        min-height: 520px;
        gap: 30px;
    }
    .hero-slide-content-col {
        text-align: center;
        flex: none;
    }
    .hero-slide-content-col p {
        margin-left: auto;
        margin-right: auto;
    }
    .hero-slide-media-col {
        flex: none;
        width: 100%;
    }
    .hero-media-wrapper {
        margin: 0 auto;
    }
    .cake-builder-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .cake-builder-preview {
        min-height: 380px;
    }
}
@media (max-width: 600px) {
    .hero-slide-container {
        min-height: 480px;
    }
    .play-btn-circle {
        width: 60px;
        height: 60px;
        font-size: 20px;
    }
    .play-btn-text {
        font-size: 11px;
    }
    .btn-control {
        padding: 8px 14px;
        font-size: 12.5px;
    }
}

/* ─── Turkey Map Styling ─── */
.turkey-map-section {
    padding: 100px 0;
    background: var(--bg);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}
.map-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 50px;
    align-items: center;
}
.map-visual-container {
    background: linear-gradient(135deg, var(--white) 0%, var(--bg-alt) 100%);
    border-radius: var(--radius-xl);
    border: 1px solid var(--border);
    padding: 30px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: var(--shadow-sm);
    overflow: hidden;
}
.map-canvas-wrapper {
    position: relative;
    width: 100%;
    max-width: 650px;
}
.turkey-svg {
    width: 100%;
    height: auto;
    display: block;
}
.turkey-border-outline {
    fill: rgba(248, 175, 200, 0.07);
    stroke: var(--rose-light);
    stroke-width: 2.5;
    stroke-dasharray: 4 4;
    transition: fill 0.3s;
}
.map-grid-line {
    stroke: rgba(0, 0, 0, 0.02);
    stroke-width: 1;
}
.map-hotspot {
    cursor: pointer;
}
.hotspot-pulse-ring {
    fill: none;
    stroke: var(--rose);
    stroke-width: 2.5;
    transform-box: fill-box;
    transform-origin: center;
    animation: pulse-ring-animation 2s infinite;
}
.hotspot-core {
    fill: var(--rose);
    stroke: var(--white);
    stroke-width: 2;
    transform-box: fill-box;
    transform-origin: center;
    transition: fill 0.3s, transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.hotspot-label {
    fill: var(--dark);
    font-size: 11px;
    font-weight: 700;
    pointer-events: none;
    text-shadow: 0 1px 3px var(--white);
    font-family: var(--font-body);
    transition: fill 0.3s, font-size 0.3s;
}
.map-hotspot:hover .hotspot-core {
    fill: var(--color-primary);
    transform: scale(1.25);
}
.map-hotspot:hover .hotspot-label {
    fill: var(--color-primary);
}

/* Active hotspot styling */
.map-hotspot.active .hotspot-core {
    fill: var(--color-primary);
    stroke: var(--white);
    stroke-width: 2.5;
    transform: scale(1.25);
}
.map-hotspot.active .hotspot-pulse-ring {
    stroke: var(--color-primary);
    stroke-width: 3.5;
}
.map-hotspot.active .hotspot-label {
    fill: var(--color-primary);
    font-size: 12px;
    font-weight: 800;
}

/* Non-major city styling to prevent clutter */
.map-hotspot.non-major .hotspot-label {
    display: none;
}
.map-hotspot.non-major:hover .hotspot-label,
.map-hotspot.non-major.active .hotspot-label {
    display: block;
}
.map-hotspot.non-major .hotspot-core {
    fill: rgba(248, 175, 200, 0.6);
    stroke: var(--white);
    stroke-width: 1.5;
    transform: scale(0.7);
}
.map-hotspot.non-major .hotspot-pulse-ring {
    animation: none;
    stroke: rgba(248, 175, 200, 0.3);
    stroke-width: 1.5;
    transform: scale(0.7);
}
.map-hotspot.non-major:hover .hotspot-core,
.map-hotspot.non-major.active .hotspot-core {
    fill: var(--color-primary);
    transform: scale(1.25);
    stroke-width: 2.5;
}
.map-hotspot.non-major:hover .hotspot-pulse-ring,
.map-hotspot.non-major.active .hotspot-pulse-ring {
    animation: pulse-ring-animation 2s infinite;
    stroke: var(--color-primary);
    stroke-width: 3.5;
}


@keyframes pulse-ring-animation {
    0% {
        transform: scale(0.4);
        opacity: 1;
    }
    100% {
        transform: scale(1.6);
        opacity: 0;
    }
}

/* Details Card styling */
.map-details-card {
    border: 2px solid var(--rose-light) !important;
    padding: 40px 36px !important;
    background: linear-gradient(135deg, var(--white) 0%, var(--bg-alt) 100%) !important;
    border-radius: var(--radius-xl);
}
.details-card-header .badge-status-glow {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 10.5px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    background: rgba(140, 197, 162, 0.2);
    color: #409b67;
    padding: 6px 14px;
    border-radius: var(--radius-pill);
    box-shadow: 0 2px 5px rgba(140, 197, 162, 0.1);
}
.details-card-header h3 {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 700;
    color: var(--dark);
    margin: 12px 0 0 0;
}
.stat-row {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-top: 28px;
}
.stat-row .stat-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    box-shadow: var(--shadow-sm);
}
.stat-row .stat-icon.lila {
    background: var(--lavender-light);
    color: var(--lavender);
}
.stat-row .stat-icon.peach {
    background: var(--peach-light);
    color: var(--peach);
}
.stat-text {
    display: flex;
    flex-direction: column;
}
.stat-number-label {
    font-size: 26px;
    font-weight: 700;
    color: var(--dark);
    line-height: 1.2;
}
.stat-desc-label {
    font-size: 13.5px;
    color: var(--text-muted);
}
.map-note {
    font-size: 13.5px;
    color: var(--text-muted);
    margin-top: 28px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
}

/* Map details transitions */
#map-selected-city, #map-bakers-count, #map-requests-count, #map-note-el {
    transition: opacity 0.25s ease, transform 0.25s ease;
}
.fade-out {
    opacity: 0;
    transform: translateY(-5px);
}

@media (max-width: 992px) {
    .map-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .map-visual-container {
        padding: 20px;
    }
}
@media (max-width: 600px) {
    .turkey-svg {
        transform: scale(1.05);
    }
}

/* Turkey Map High-Tech / Advanced styles */
.radar-circle {
    fill: none;
    stroke: rgba(248, 175, 200, 0.05);
    stroke-width: 1;
    pointer-events: none;
}
.radar-sweep {
    stroke: var(--rose);
    stroke-width: 1.5;
    opacity: 0.12;
    transform-origin: 400px 200px;
    animation: radar-rotate 10s linear infinite;
    pointer-events: none;
}
.map-network-lines {
    pointer-events: none;
}
.net-line {
    stroke: var(--rose-light);
    stroke-width: 1.2;
    opacity: 0.22;
    stroke-dasharray: 4 6;
    animation: flow-dash 20s linear infinite;
}
@keyframes radar-rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}
@keyframes flow-dash {
    to { stroke-dashoffset: -100; }
}

/* Details Card Layout Extensions */
.stat-row-mini {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.meta-item {
    background: rgba(255, 255, 255, 0.5);
    border: 1px solid var(--border);
    padding: 10px 14px;
    border-radius: var(--radius-md);
    transition: var(--transition);
}
.meta-item:hover {
    background: var(--white);
    border-color: var(--rose-light);
    box-shadow: var(--shadow-xs);
}

#map-match-rate, #map-avg-time, #map-popular-cat, #map-last-act {
    transition: opacity 0.25s ease, transform 0.25s ease;
}

@keyframes ping {
    75%, 100% {
        transform: scale(2);
        opacity: 0;
    }
}
.animate-ping {
    animation: ping 1.5s cubic-bezier(0, 0, 0.2, 1) infinite;
}

/* ─── Logo Styling ─── */
.header-logo-img {
    height: 52px;
    width: auto;
    object-fit: contain;
    transition: var(--transition);
}
.main-header.scrolled .header-logo-img {
    height: 42px;
}

/* ─── Interactive Map City Selectors ─── */
.city-pill-btn:hover {
    border-color: var(--rose) !important;
    color: var(--rose-dark) !important;
    background: var(--bg-alt) !important;
    transform: translateY(-1px);
    box-shadow: var(--shadow-sm);
}
.city-pill-btn.active {
    border-color: var(--rose) !important;
    background: var(--rose) !important;
    color: var(--white) !important;
    box-shadow: 0 4px 10px rgba(212, 160, 185, 0.3) !important;
}

@media (max-width: 768px) {
    .desktop-city-pills {
        display: none !important;
    }
    .mobile-city-select-wrapper {
        display: block !important;
    }
}
