:root {
    --primary: #9b72e6;
    --primary-dark: #7c4fd4;
    --primary-light: #d4beff;
    --primary-ultra-light: #f0eaff;
    --secondary: #c47fd4;
    --accent: #f5a7d5;
    --accent2: #7ecfd4;
    --dark: #2c1f4a;
    --mid: #5a4a7a;
    --light: #ffffff;
    --light-bg: #faf7ff;
    --gray: #7a6e90;
    --card-bg: rgba(255,255,255,0.92);
}

* { box-sizing: border-box; }

body {
    font-family: 'DM Sans', sans-serif;
    color: var(--dark);
    background-color: var(--light-bg);
    overflow-x: hidden;
    scroll-behavior: smooth;
}

h1, h2, h3, h4, h5 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
}

/* ── HEADER ── */
.header {
    background: rgba(255, 255, 255, 0.96);
    padding: 14px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(155, 114, 230, 0.1);
    backdrop-filter: blur(12px);
    transition: all 0.3s ease;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem;
}

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

.logo-circle {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    box-shadow: 0 4px 12px rgba(155, 114, 230, 0.4);
}

.brand-name {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 700;
    font-size: 1.45rem;
    color: var(--primary-dark);
    margin: 0;
    letter-spacing: -0.3px;
}

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

.social-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-icon:hover { transform: scale(1.1) translateY(-2px); color: white; }
.instagram { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }
.youtube { background: #FF0000; }
.whatsapp { background: #25D366; }

/* ── HERO ── */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 100px;
    background: linear-gradient(145deg, #f5eeff 0%, #faf0ff 40%, #eef5ff 100%);
    position: relative;
    overflow: hidden;
}

.hero-bg-orbs {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.35;
}

.orb-1 {
    width: 500px; height: 500px;
    background: radial-gradient(circle, var(--primary-light), transparent);
    top: -150px; right: -100px;
    animation: floatOrb 8s ease-in-out infinite;
}

.orb-2 {
    width: 350px; height: 350px;
    background: radial-gradient(circle, var(--accent), transparent);
    bottom: -80px; left: -80px;
    animation: floatOrb 10s ease-in-out infinite reverse;
}

.orb-3 {
    width: 250px; height: 250px;
    background: radial-gradient(circle, var(--accent2), transparent);
    top: 40%; left: 40%;
    animation: floatOrb 12s ease-in-out infinite 2s;
}

@keyframes floatOrb {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(20px, -20px) scale(1.05); }
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 2rem 0;
    animation: fadeInUp 0.9s ease-out;
}

.hero-badge {
    display: inline-block;
    background: rgba(155, 114, 230, 0.12);
    color: var(--primary-dark);
    border: 1px solid rgba(155, 114, 230, 0.25);
    padding: 6px 18px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.hero-title {
    font-size: 3.8rem;
    line-height: 1.15;
    margin-bottom: 1.2rem;
    color: var(--dark);
}

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

.hero-subtitle {
    font-size: 1.15rem;
    color: var(--gray);
    font-weight: 400;
    max-width: 500px;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.btn-primary-custom {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    border: none;
    padding: 14px 34px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    box-shadow: 0 6px 20px rgba(155, 114, 230, 0.4);
}

.btn-primary-custom:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(155, 114, 230, 0.5);
    color: white;
}

.locations-card {
    background: rgba(255,255,255,0.88);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    padding: 2rem 2.2rem;
    box-shadow: 0 20px 50px rgba(155, 114, 230, 0.15);
    border: 1px solid rgba(155, 114, 230, 0.15);
    position: relative;
    z-index: 2;
    animation: fadeInRight 0.9s ease-out 0.3s both;
}

.locations-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 24px;
    background: linear-gradient(135deg, rgba(155,114,230,0.05), rgba(196,127,212,0.05));
    pointer-events: none;
}

.locations-card-header {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 1.2rem;
    text-align: center;
}

.locations-list { list-style: none; padding: 0; margin: 0; }

.location-item {
    display: flex;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px dashed rgba(155, 114, 230, 0.2);
    gap: 14px;
}

.location-item:last-child { border-bottom: none; }

.location-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    flex-shrink: 0;
    box-shadow: 0 0 8px rgba(155, 114, 230, 0.5);
}

.location-name {
    font-weight: 500;
    color: var(--mid);
    font-size: 1.05rem;
}

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

@keyframes fadeInRight {
    from { opacity: 0; transform: translateX(25px); }
    to { opacity: 1; transform: translateX(0); }
}

/* ── SECTION HEADERS ── */
.section-header { margin-bottom: 0; }

.subtitle-tag {
    display: inline-block;
    color: var(--primary);
    font-weight: 700;
    font-size: 0.8rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.section-title {
    font-size: 2.6rem;
    margin-bottom: 1rem;
    color: var(--dark);
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    border-radius: 3px;
}

.section-desc {
    color: var(--gray);
    font-size: 1rem;
    max-width: 600px;
    margin: 1.5rem auto 0;
    line-height: 1.7;
}

/* ── SERVICES ── */
.services-section {
    padding: 110px 0;
    background: var(--light-bg);
    position: relative;
}

.services-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--primary), var(--secondary), transparent);
}

.service-card {
    background: var(--card-bg);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(155, 114, 230, 0.1);
    border: 1px solid rgba(155, 114, 230, 0.1);
    transition: all 0.35s ease;
    height: 100%;
    position: relative;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(155, 114, 230, 0.2);
    border-color: rgba(155, 114, 230, 0.3);
}

.service-badge {
    position: absolute;
    top: 14px;
    right: 14px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    font-size: 0.72rem;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 20px;
    z-index: 5;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.service-img-wrap { height: 190px; overflow: hidden; position: relative; }

.service-img-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3.5rem;
    color: white;
}

.si-1 { background: linear-gradient(135deg, #c9a4ef, #9b72e6); }
.si-2 { background: linear-gradient(135deg, #f5a7d5, #d470b5); }
.si-3 { background: linear-gradient(135deg, #9b72e6, #7ecfd4); }
.si-4 { background: linear-gradient(135deg, #d4a0ef, #9b72e6); }

.service-card:hover .service-img-placeholder { transform: scale(1.05); transition: transform 0.5s ease; }

.service-content { padding: 1.5rem; text-align: center; }

.service-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 4px;
}

.service-duration {
    color: var(--gray);
    font-size: 0.85rem;
    margin-bottom: 10px;
}

.service-name {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 8px;
}

.service-desc {
    color: var(--gray);
    font-size: 0.88rem;
    line-height: 1.6;
    margin-bottom: 16px;
}

.service-btn {
    display: inline-block;
    padding: 9px 26px;
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.service-btn:hover {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-color: transparent;
    color: white;
    transform: translateY(-2px);
}

/* ── STATS ── */
.stats-section {
    padding: 110px 0;
    background: linear-gradient(135deg, var(--primary-ultra-light), #fff);
    position: relative;
    overflow: hidden;
}

.stats-section::after {
    content: '✦';
    font-size: 20rem;
    color: rgba(155, 114, 230, 0.04);
    position: absolute;
    top: -5rem;
    right: -3rem;
    pointer-events: none;
    font-family: serif;
}

.stats-intro {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 60px;
}

.stats-title {
    font-size: 2.6rem;
    color: var(--dark);
    margin-bottom: 1rem;
}

.stats-description {
    color: var(--gray);
    font-size: 1.05rem;
    line-height: 1.7;
}

.stats-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 28px;
}

.stat-card {
    background: white;
    border-radius: 22px;
    padding: 2.2rem 1.8rem;
    width: 240px;
    text-align: center;
    box-shadow: 0 10px 35px rgba(155, 114, 230, 0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(155, 114, 230, 0.1);
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
}

.stat-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(155, 114, 230, 0.2);
}

.stat-icon {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: var(--primary-ultra-light);
    color: var(--primary);
    font-size: 1.3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 14px;
}

.stat-number {
    font-size: 2.8rem;
    font-weight: 700;
    font-family: 'Cormorant Garamond', serif;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
    margin-bottom: 8px;
}

.stat-text {
    font-weight: 500;
    color: var(--gray);
    font-size: 1rem;
}

/* ── BRANDS ── */
.brands-section {
    padding: 110px 0;
    background: white;
}

.brands-slider-container {
    max-width: 900px;
    margin: 50px auto 0;
    position: relative;
}

.brands-slider { position: relative; }

.brands-slides {
    position: relative;
    height: 260px;
}

.brand-slide {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease;
}

.brand-slide.active { opacity: 1; visibility: visible; }

.brand-group {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px;
    height: 100%;
}

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

.brand-logo-circle {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    background: var(--primary-ultra-light);
    border: 2px solid rgba(155, 114, 230, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 14px;
    transition: all 0.3s ease;
}

.brand-logo-circle:hover {
    transform: translateY(-5px);
    background: linear-gradient(135deg, var(--primary-ultra-light), #e8d8ff);
    box-shadow: 0 10px 30px rgba(155, 114, 230, 0.2);
    border-color: rgba(155, 114, 230, 0.4);
}

.brand-text-logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-dark);
    letter-spacing: 1px;
}

.brand-label {
    font-size: 1rem;
    font-weight: 600;
    color: var(--mid);
    margin: 0;
}

.brand-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: white;
    border: 2px solid rgba(155, 114, 230, 0.2);
    color: var(--primary);
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
}

.brand-nav:hover {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    border-color: transparent;
    box-shadow: 0 5px 20px rgba(155, 114, 230, 0.4);
}

.brands-slider .prev-btn { left: -25px; }
.brands-slider .next-btn { right: -25px; }

.brand-dots, .review-dots {
    display: flex;
    justify-content: center;
    margin-top: 28px;
    gap: 10px;
}

.brand-dot, .review-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(155, 114, 230, 0.25);
    cursor: pointer;
    transition: all 0.3s ease;
}

.brand-dot.active, .review-dot.active {
    background: var(--primary);
    transform: scale(1.3);
}

/* ── HOW IT WORKS ── */
.how-it-works-section {
    padding: 110px 0;
    background: var(--light-bg);
    position: relative;
}

.how-it-works-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--secondary), var(--primary), transparent);
}

.step-card {
    background: white;
    border-radius: 22px;
    padding: 2.5rem 1.8rem;
    box-shadow: 0 10px 35px rgba(155, 114, 230, 0.08);
    border: 1px solid rgba(155, 114, 230, 0.1);
    height: 100%;
    text-align: center;
    transition: all 0.35s ease;
    position: relative;
    overflow: hidden;
}

.step-card::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 0;
    background: linear-gradient(135deg, rgba(155,114,230,0.05), rgba(196,127,212,0.05));
    transition: height 0.3s ease;
}

.step-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(155, 114, 230, 0.18);
}

.step-card:hover::after { height: 100%; }

.step-icon-wrapper {
    position: relative;
    display: inline-block;
    margin-bottom: 28px;
}

.step-icon {
    width: 78px;
    height: 78px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-light), var(--primary));
    color: white;
    font-size: 1.9rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    box-shadow: 0 10px 25px rgba(155, 114, 230, 0.35);
}

.step-number {
    position: absolute;
    top: -8px; right: -8px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--secondary), var(--primary-dark));
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(155, 114, 230, 0.4);
}

.step-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 14px;
    position: relative;
    z-index: 1;
}

.step-description {
    color: var(--gray);
    font-size: 0.92rem;
    line-height: 1.75;
    position: relative;
    z-index: 1;
}

/* ── REVIEWS ── */
.reviews-section {
    padding: 110px 0;
    background: linear-gradient(160deg, #f5eeff, #fff5fb, #eef5ff);
    position: relative;
}

.reviews-slider-container {
    max-width: 900px;
    margin: 50px auto 0;
}

.reviews-slider { position: relative; }

.reviews-slides {
    position: relative;
    height: 320px;
}

.review-slide {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease;
}

.review-slide.active { opacity: 1; visibility: visible; }

.review-card {
    background: white;
    border-radius: 22px;
    padding: 2.2rem 2.5rem;
    box-shadow: 0 12px 40px rgba(155, 114, 230, 0.1);
    border: 1px solid rgba(155, 114, 230, 0.1);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all 0.3s ease;
}

.review-card:hover {
    box-shadow: 0 20px 60px rgba(155, 114, 230, 0.18);
    transform: translateY(-4px);
}

.review-stars { color: #f5c518; font-size: 1.1rem; margin-bottom: 16px; gap: 4px; display: flex; }

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

.review-author { display: flex; align-items: center; }

.review-avatar {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    font-size: 0.95rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-right: 14px;
    box-shadow: 0 4px 12px rgba(155, 114, 230, 0.35);
}

.review-author-info { flex-grow: 1; }

.review-author-name {
    font-size: 1rem;
    font-weight: 700;
    color: var(--dark);
    margin: 0 0 3px;
}

.review-date { color: var(--gray); font-size: 0.85rem; margin: 0; }

.review-quote-icon { font-size: 2rem; color: var(--primary-light); }

.review-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: white;
    border: 2px solid rgba(155, 114, 230, 0.2);
    color: var(--primary);
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
}

.review-nav:hover {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    border-color: transparent;
    box-shadow: 0 5px 20px rgba(155, 114, 230, 0.4);
}

.prev-btn { left: -25px; }
.next-btn { right: -25px; }

/* ── FOOTER ── */
.footer {
    background: linear-gradient(160deg, #1a0d36, #2c1f4a);
    color: white;
    padding: 80px 0 30px;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at top right, rgba(155, 114, 230, 0.15), transparent 60%);
    pointer-events: none;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 18px;
}

.footer-logo-circle {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1rem;
}

.footer-brand span {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--primary-light);
}

.footer-title {
    font-weight: 700;
    color: white;
    font-size: 1.3rem;
    margin-bottom: 14px;
}

.footer-divider {
    width: 50px;
    height: 2px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    margin-bottom: 18px;
    border-radius: 2px;
}

.footer-text { color: rgba(255,255,255,0.6); line-height: 1.8; font-size: 0.92rem; }

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

.footer-icon { color: var(--primary-light); font-size: 1rem; margin-top: 3px; }

.footer-contact-text { color: rgba(255,255,255,0.65); font-size: 0.92rem; }

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

.footer-social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.12);
    color: white;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-social-icon:hover {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-color: transparent;
    transform: translateY(-4px);
    box-shadow: 0 6px 20px rgba(155, 114, 230, 0.5);
    color: white;
}

.footer-bottom {
    padding-top: 28px;
    margin-top: 50px;
    border-top: 1px solid rgba(255,255,255,0.08);
    text-align: center;
}

.footer-copyright { color: rgba(255,255,255,0.4); font-size: 0.87rem; }

.footer-link {
    color: var(--primary-light);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-link:hover { color: white; }

/* ── BACK TO TOP ── */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    cursor: pointer;
    box-shadow: 0 6px 20px rgba(155, 114, 230, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
}

.back-to-top.visible { opacity: 1; visibility: visible; }
.back-to-top:hover { transform: translateY(-4px); box-shadow: 0 10px 30px rgba(155, 114, 230, 0.6); }

/* ── ANIMATIONS ── */
.fade-in {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity 0.65s ease, transform 0.65s ease;
}

.fade-in.active { opacity: 1; transform: translateY(0); }

/* ── RESPONSIVE ── */
@media (max-width: 991px) {
    .hero-title { font-size: 3rem; }
    .locations-card { margin-top: 2.5rem; }
    .section-title { font-size: 2.2rem; }
    .stats-title { font-size: 2.2rem; }
}

@media (max-width: 767px) {
    .header-content { padding: 0 1rem; }
    .brand-name { font-size: 1.15rem; }
    .hero { padding-top: 90px; padding-bottom: 50px; min-height: auto; }
    .hero-title { font-size: 2.4rem; }
    .hero-subtitle { font-size: 1rem; }
    .reviews-slides { height: 380px; }
    .prev-btn { left: -15px; }
    .next-btn { right: -15px; }
    .brand-group { gap: 25px; }
    .brands-slides { height: 260px; }
    .brands-slider .prev-btn { left: -15px; }
    .brands-slider .next-btn { right: -15px; }
}

@media (max-width: 575px) {
    .hero-title { font-size: 2rem; }
    .brand-logo-circle { width: 100px; height: 100px; }
    .brand-text-logo { font-size: 1.2rem; }
    .brands-slides { height: 380px; }
    .brand-group { flex-direction: column; gap: 20px; }
    .reviews-slides { height: 430px; }
    .review-card { padding: 1.5rem; }
    .stat-card { width: 90%; max-width: 300px; }
    .back-to-top { bottom: 20px; right: 20px; width: 40px; height: 40px; }
}