/* =============================================
   GURUKRIPA JYOTISH KENDRA — Premium Stylesheet
   ============================================= */

:root {
    --red: #C1121F;
    --red-soft: #E63946;
    --red-light: #f8d7da;
    --cream: #FFF8F2;
    --peach: #FDEDE8;
    --peach-mid: #FAD9CC;
    --dark: #222222;
    --gray: #666666;
    --gray-light: #999;
    --white: #ffffff;
    --shadow-sm: 0 4px 15px rgba(193, 18, 31, 0.08);
    --shadow-md: 0 8px 30px rgba(193, 18, 31, 0.12);
    --shadow-lg: 0 20px 60px rgba(193, 18, 31, 0.15);
    --gradient-red: linear-gradient(135deg, #C1121F 0%, #E63946 100%);
    --gradient-warm: linear-gradient(135deg, #FFF8F2 0%, #FDEDE8 100%);
    --radius: 16px;
    --radius-lg: 24px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}


/* ==================== RESET & BASE ==================== */

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Roboto', sans-serif;
    background: var(--cream);
    color: var(--dark);
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5 {
    font-family: 'Poppins', sans-serif;
}

a {
    text-decoration: none;
    transition: var(--transition);
}

img {
    max-width: 100%;
}

.section-pad {
    padding: 90px 0;
}


/* ==================== PRELOADER ==================== */

#preloader {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: var(--cream);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.preloader-inner {
    text-align: center;
}

.preloader-logo img {
    height: 80px;
    margin-bottom: 30px;
    animation: pulseLogo 2s ease-in-out infinite;
}

@keyframes pulseLogo {
    0%,
    100% {
        opacity: 1;
        transform: scale(1)
    }
    50% {
        opacity: 0.7;
        transform: scale(0.95)
    }
}

.preloader-spinner {
    position: relative;
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
}

.spinner-ring {
    position: absolute;
    border-radius: 50%;
    border: 3px solid transparent;
    animation: spinRing 1.5s linear infinite;
}

.spinner-ring:nth-child(1) {
    inset: 0;
    border-top-color: var(--red);
    animation-duration: 1.5s;
}

.spinner-ring:nth-child(2) {
    inset: 10px;
    border-right-color: var(--red-soft);
    animation-duration: 1.2s;
    animation-direction: reverse;
}

.spinner-ring:nth-child(3) {
    inset: 20px;
    border-bottom-color: var(--peach-mid);
    animation-duration: 0.9s;
}

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

.preloader-text {
    font-family: 'Poppins', sans-serif;
    color: var(--gray);
    font-size: 0.9rem;
    letter-spacing: 1px;
}


/* ==================== NAVBAR ==================== */

#mainNavbar {
    background: rgba(255, 248, 242, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(193, 18, 31, 0.08);
    padding: 12px 0;
    transition: var(--transition);
    z-index: 1000;
}

#mainNavbar.scrolled {
    box-shadow: 0 4px 30px rgba(193, 18, 31, 0.1);
    padding: 8px 0;
}

.navbar-logo {
    height: 52px;
    width: auto;
}

.nav-link {
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-size: 0.88rem;
    color: var(--dark) !important;
    padding: 8px 14px !important;
    border-radius: 8px;
    transition: var(--transition);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--red);
    border-radius: 2px;
    transition: var(--transition);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 60%;
}

.nav-link:hover {
    color: var(--red) !important;
}

.btn-cta-nav {
    background: var(--gradient-red);
    color: white !important;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 0.85rem;
    padding: 10px 22px;
    border-radius: 50px;
    border: none;
    box-shadow: 0 4px 15px rgba(193, 18, 31, 0.3);
    transition: var(--transition);
    white-space: nowrap;
}

.btn-cta-nav:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(193, 18, 31, 0.4);
}


/* Hamburger */

.navbar-toggler {
    border: none;
    background: none;
    padding: 4px;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.hamburger-icon {
    display: flex;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.hamburger-icon span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--red);
    border-radius: 2px;
    transition: var(--transition);
}


/* ==================== HERO ==================== */

.hero-section {
    position: relative;
    background: linear-gradient(135deg, #FFF8F2 0%, #FDEDE8 50%, #FAD9CC 100%);
    overflow: hidden;
    min-height: 100vh;
}

.hero-particles {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}

.particle {
    position: absolute;
    border-radius: 50%;
    opacity: 0.4;
    animation: floatParticle linear infinite;
}

@keyframes floatParticle {
    0% {
        transform: translateY(100vh) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 0.4;
    }
    90% {
        opacity: 0.2;
    }
    100% {
        transform: translateY(-100px) rotate(720deg);
        opacity: 0;
    }
}

.glow-ring {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(193, 18, 31, 0.1);
    animation: pulseRing 4s ease-in-out infinite;
}

.ring-1 {
    width: 400px;
    height: 400px;
    top: -100px;
    right: -100px;
    animation-delay: 0s;
}

.ring-2 {
    width: 600px;
    height: 600px;
    top: -200px;
    right: -200px;
    animation-delay: 1s;
}

.ring-3 {
    width: 800px;
    height: 800px;
    top: -300px;
    right: -300px;
    animation-delay: 2s;
}

@keyframes pulseRing {
    0%,
    100% {
        transform: scale(1);
        opacity: 0.3;
    }
    50% {
        transform: scale(1.05);
        opacity: 0.1;
    }
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 40px 0;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(193, 18, 31, 0.08);
    color: var(--red);
    border: 1px solid rgba(193, 18, 31, 0.2);
    font-family: 'Poppins', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    padding: 8px 18px;
    border-radius: 50px;
    letter-spacing: 0.5px;
}

.hero-headline {
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 800;
    line-height: 1.2;
    color: var(--dark);
    margin: 20px 0 18px;
}

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

.hero-subtext {
    font-size: 1rem;
    color: var(--gray);
    line-height: 1.7;
    margin-bottom: 30px;
    max-width: 520px;
}


/* CTA Buttons */

.btn-hero-primary {
    background: var(--gradient-red);
    color: white;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    padding: 14px 28px;
    border-radius: 50px;
    border: none;
    box-shadow: 0 6px 20px rgba(193, 18, 31, 0.35);
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
}

.btn-hero-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(193, 18, 31, 0.45);
    color: white;
}

.btn-hero-secondary {
    background: white;
    color: var(--red);
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    padding: 14px 28px;
    border-radius: 50px;
    border: 2px solid var(--red);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
}

.btn-hero-secondary:hover {
    background: var(--red);
    color: white;
    transform: translateY(-3px);
}

.btn-whatsapp {
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: white;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    padding: 14px 28px;
    border-radius: 50px;
    border: none;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.3);
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-whatsapp:hover {
    transform: translateY(-2px);
    color: white;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
}

.btn-outline-whatsapp {
    background: transparent;
    color: #25D366;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    padding: 13px 26px;
    border-radius: 50px;
    border: 2px solid #25D366;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
}

.btn-outline-whatsapp:hover {
    background: #25D366;
    color: white;
}


/* Trust Badges */

.trust-badges {
    display: flex;
    align-items: center;
    gap: 20px;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(193, 18, 31, 0.1);
    border-radius: var(--radius);
    padding: 16px 24px;
    width: fit-content;
}

.badge-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Poppins', sans-serif;
}

.badge-item i {
    color: var(--red);
    font-size: 1.4rem;
}

.badge-item span {
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--dark);
    line-height: 1.3;
}

.badge-divider {
    width: 1px;
    height: 36px;
    background: rgba(193, 18, 31, 0.15);
}


/* Hero Visual */

.hero-visual {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 0;
}

.hero-illustration {
    position: relative;
    width: 420px;
    height: 420px;
    max-width: 100%;
}

.astro-circle-outer {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 2px dashed rgba(193, 18, 31, 0.2);
    animation: rotateOrbit 20s linear infinite;
}

.astro-circle-mid {
    position: absolute;
    inset: 30px;
    border-radius: 50%;
    border: 2px dashed rgba(193, 18, 31, 0.15);
    animation: rotateOrbit 15s linear infinite reverse;
}

.astro-circle-inner {
    position: absolute;
    inset: 65px;
    border-radius: 50%;
    border: 2px solid rgba(193, 18, 31, 0.1);
    background: rgba(253, 237, 232, 0.5);
    animation: rotateOrbit 10s linear infinite;
}

.astro-core {
    position: absolute;
    inset: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--red);
    opacity: 0.3;
}

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


/* Zodiac floats */

.zodiac-float {
    position: absolute;
    font-size: 1.5rem;
    color: var(--red);
    animation: floatZodiac 6s ease-in-out infinite;
    text-shadow: 0 2px 10px rgba(193, 18, 31, 0.3);
}

.z1 {
    top: 5%;
    left: 50%;
    animation-delay: 0s;
}

.z2 {
    top: 18%;
    right: 8%;
    animation-delay: 0.8s;
}

.z3 {
    top: 40%;
    right: 2%;
    animation-delay: 1.6s;
}

.z4 {
    bottom: 18%;
    right: 10%;
    animation-delay: 2.4s;
}

.z5 {
    bottom: 5%;
    left: 50%;
    animation-delay: 3.2s;
}

.z6 {
    bottom: 18%;
    left: 8%;
    animation-delay: 4.0s;
}

.z7 {
    top: 40%;
    left: 2%;
    animation-delay: 4.8s;
}

.z8 {
    top: 18%;
    left: 8%;
    animation-delay: 5.6s;
}

@keyframes floatZodiac {
    0%,
    100% {
        transform: translateY(0) scale(1);
    }
    50% {
        transform: translateY(-10px) scale(1.1);
    }
}

.hero-center-image {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200px;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-logo-glow {
    width: 170px;
    height: 170px;
    object-fit: contain;
    border-radius: 50%;
    padding: 20px;
    background: white;
    box-shadow: 0 0 40px rgba(193, 18, 31, 0.2), 0 0 80px rgba(193, 18, 31, 0.1);
    animation: glowPulse 3s ease-in-out infinite;
}

@keyframes glowPulse {
    0%,
    100% {
        box-shadow: 0 0 40px rgba(193, 18, 31, 0.2), 0 0 80px rgba(193, 18, 31, 0.1);
    }
    50% {
        box-shadow: 0 0 60px rgba(193, 18, 31, 0.35), 0 0 120px rgba(193, 18, 31, 0.2);
    }
}

.rotating-border {
    position: absolute;
    inset: -15px;
    border-radius: 50%;
    border: 3px solid transparent;
    border-top-color: var(--red);
    border-bottom-color: rgba(193, 18, 31, 0.3);
    animation: rotateOrbit 3s linear infinite;
}


/* Scroll Indicator */

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    z-index: 2;
}

.scroll-mouse {
    width: 26px;
    height: 42px;
    border: 2px solid rgba(193, 18, 31, 0.4);
    border-radius: 13px;
    display: flex;
    justify-content: center;
    padding-top: 6px;
}

.scroll-wheel {
    width: 4px;
    height: 8px;
    background: var(--red);
    border-radius: 2px;
    animation: scrollWheel 1.5s ease-in-out infinite;
}

@keyframes scrollWheel {
    0%,
    100% {
        transform: translateY(0);
        opacity: 1;
    }
    100% {
        transform: translateY(12px);
        opacity: 0;
    }
}

.scroll-indicator span {
    font-size: 0.7rem;
    color: var(--gray);
    letter-spacing: 1px;
    font-family: 'Poppins', sans-serif;
}


/* ==================== STATS SECTION ==================== */

.stats-section {
    background: var(--gradient-red);
    padding: 60px 0;
}

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

.stat-icon {
    font-size: 2rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 10px;
}

.stat-number {
    font-family: 'Poppins', sans-serif;
    font-size: 2.8rem;
    font-weight: 800;
    color: white;
    display: inline;
}

.stat-plus,
.stat-suffix {
    font-family: 'Poppins', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.8);
}

.stat-label {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.8);
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    margin-top: 4px;
}


/* ==================== SECTION HEADERS ==================== */

.section-tag {
    display: inline-block;
    background: rgba(193, 18, 31, 0.08);
    color: var(--red);
    font-family: 'Poppins', sans-serif;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 6px 18px;
    border-radius: 50px;
    border: 1px solid rgba(193, 18, 31, 0.15);
    margin-bottom: 16px;
}

.section-title {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 14px;
    line-height: 1.25;
}

.section-sub {
    font-size: 1rem;
    color: var(--gray);
    max-width: 540px;
    margin: 0 auto;
    line-height: 1.6;
}

.text-red {
    color: var(--red) !important;
}


/* ==================== SERVICES SECTION ==================== */

.services-section {
    background: var(--cream);
}

.service-card {
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    height: 100%;
    border: 1px solid rgba(193, 18, 31, 0.06);
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(193, 18, 31, 0.15);
}

.service-img-wrap {
    padding: 30px 30px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #FFF8F2, #FDEDE8);
}

.service-icon-bg {
    width: 80px;
    height: 80px;
    background: var(--gradient-red);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    box-shadow: 0 8px 20px rgba(193, 18, 31, 0.3);
    transition: var(--transition);
}

.service-card:hover .service-icon-bg {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 12px 30px rgba(193, 18, 31, 0.4);
}

.service-body {
    padding: 20px 24px 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.service-body h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 10px;
    line-height: 1.4;
}

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

.btn-service {
    background: transparent;
    color: var(--red);
    border: 1.5px solid var(--red);
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 0.82rem;
    padding: 8px 20px;
    border-radius: 50px;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    width: fit-content;
}

.btn-service:hover {
    background: var(--red);
    color: white;
}


/* ==================== ABOUT SECTION ==================== */

.about-section {
    background: white;
}

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

.about-img-card {
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--gradient-warm);
    border: 1px solid rgba(193, 18, 31, 0.1);
}

.about-img-placeholder {
    height: 420px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.about-om {
    font-size: 8rem;
    color: rgba(193, 18, 31, 0.06);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    user-select: none;
}

.om-ring {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(193, 18, 31, 0.1);
    animation: pulseRing 4s ease-in-out infinite;
}

.om-ring.r1 {
    width: 200px;
    height: 200px;
}

.om-ring.r2 {
    width: 300px;
    height: 300px;
    animation-delay: 1s;
}

.about-logo-img {
    /* width: 220px; */
    object-fit: contain;
    position: relative;
    z-index: 2;
}

.about-exp-badge {
    position: absolute;
    bottom: 25px;
    right: -20px;
    background: var(--gradient-red);
    color: white;
    padding: 16px 20px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(193, 18, 31, 0.4);
}

.exp-num {
    display: block;
    font-family: 'Poppins', sans-serif;
    font-size: 2rem;
    font-weight: 800;
    line-height: 1;
}

.exp-text {
    font-size: 0.72rem;
    font-weight: 600;
    opacity: 0.9;
    line-height: 1.3;
}

.about-desc {
    font-size: 0.97rem;
    color: var(--gray);
    line-height: 1.75;
    margin-bottom: 16px;
}

.about-feature {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 14px;
    background: var(--peach);
    border-radius: 12px;
    border: 1px solid rgba(193, 18, 31, 0.08);
}

.about-feature i {
    color: var(--red);
    font-size: 1.3rem;
    margin-top: 2px;
    flex-shrink: 0;
}

.about-feature strong {
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    color: var(--dark);
    display: block;
}

.about-feature p {
    font-size: 0.8rem;
    color: var(--gray);
    margin: 0;
}


/* ==================== WHY CHOOSE US ==================== */

.why-section {
    background: var(--peach);
}

.why-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 32px 28px;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(193, 18, 31, 0.06);
    transition: var(--transition);
    height: 100%;
}

.why-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
    border-color: rgba(193, 18, 31, 0.15);
}

.why-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #FFF8F2, #FDEDE8);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    color: var(--red);
    margin-bottom: 20px;
    border: 1px solid rgba(193, 18, 31, 0.12);
    transition: var(--transition);
}

.why-card:hover .why-icon {
    background: var(--gradient-red);
    color: white;
}

.why-card h4 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 12px;
}

.why-card p {
    font-size: 0.9rem;
    color: var(--gray);
    line-height: 1.65;
    margin: 0;
}


/* ==================== REVIEWS SECTION ==================== */

.reviews-section {
    background: var(--cream);
}

.reviews-slider-wrap {
    position: relative;
    overflow: hidden;
}

.reviews-track {
    display: flex;
    gap: 24px;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.review-card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(193, 18, 31, 0.1);
    border-radius: var(--radius-lg);
    padding: 28px;
    min-width: calc(33.333% - 16px);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    flex-shrink: 0;
}

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

.review-header {
    display: flex;
    gap: 14px;
    align-items: center;
    margin-bottom: 16px;
}

.reviewer-avatar {
    width: 52px;
    height: 52px;
    background: var(--gradient-red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: white;
    flex-shrink: 0;
}

.reviewer-info h5 {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--dark);
    margin: 0 0 2px;
}

.reviewer-info span {
    font-size: 0.8rem;
    color: var(--gray);
}

.stars {
    color: #f59e0b;
    font-size: 0.9rem;
    letter-spacing: 2px;
    margin-top: 2px;
}

.review-text {
    font-size: 0.88rem;
    color: #555;
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 14px;
}

.review-service {
    display: inline-block;
    background: rgba(193, 18, 31, 0.08);
    color: var(--red);
    font-size: 0.75rem;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 50px;
    font-family: 'Poppins', sans-serif;
}

.slider-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.slider-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 2px solid rgba(193, 18, 31, 0.2);
    background: white;
    color: var(--red);
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-btn:hover {
    background: var(--red);
    color: white;
    border-color: var(--red);
}

.slider-dots {
    display: flex;
    gap: 8px;
}

.slider-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(193, 18, 31, 0.2);
    cursor: pointer;
    transition: var(--transition);
}

.slider-dot.active {
    background: var(--red);
    width: 24px;
    border-radius: 4px;
}


/* ==================== FORM SECTION ==================== */

.form-section {
    background: white;
}

.contact-info-cards {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.contact-info-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 18px;
    background: var(--peach);
    border-radius: 12px;
    border: 1px solid rgba(193, 18, 31, 0.08);
}

.contact-info-item i {
    font-size: 1.3rem;
    color: var(--red);
    flex-shrink: 0;
}

.contact-info-item strong {
    display: block;
    font-family: 'Poppins', sans-serif;
    font-size: 0.85rem;
    color: var(--dark);
    margin-bottom: 2px;
}

.contact-info-item span {
    font-size: 0.82rem;
    color: var(--gray);
}

.glass-form-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(30px);
    border: 1px solid rgba(193, 18, 31, 0.1);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-lg);
}

.form-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 28px;
    font-family: 'Poppins', sans-serif;
}

.form-title::after {
    content: '';
    display: block;
    width: 50px;
    height: 3px;
    background: var(--gradient-red);
    border-radius: 2px;
    margin-top: 8px;
}

.form-group label {
    display: block;
    font-family: 'Poppins', sans-serif;
    font-size: 0.83rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 8px;
}

.custom-input {
    border: 1.5px solid rgba(193, 18, 31, 0.15);
    border-radius: 10px;
    padding: 12px 16px;
    font-size: 0.9rem;
    font-family: 'Roboto', sans-serif;
    background: white;
    color: var(--dark);
    transition: var(--transition);
    width: 100%;
}

.custom-input:focus {
    border-color: var(--red);
    box-shadow: 0 0 0 3px rgba(193, 18, 31, 0.1);
    outline: none;
}

.custom-input::placeholder {
    color: #bbb;
}

textarea.custom-input {
    resize: none;
}

select.custom-input {
    cursor: pointer;
}

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


/* ==================== FAQ SECTION ==================== */

.faq-section {
    background: var(--peach);
}

.custom-accordion .accordion-item {
    background: white;
    border: 1px solid rgba(193, 18, 31, 0.08);
    border-radius: 12px !important;
    margin-bottom: 12px;
    overflow: hidden;
}

.custom-accordion .accordion-button {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--dark);
    background: white;
    border-radius: 12px !important;
    padding: 18px 24px;
    box-shadow: none !important;
}

.custom-accordion .accordion-button:not(.collapsed) {
    color: var(--red);
    background: rgba(193, 18, 31, 0.04);
}

.custom-accordion .accordion-button::after {
    filter: none;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23C1121F'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.custom-accordion .accordion-body {
    font-size: 0.92rem;
    color: var(--gray);
    line-height: 1.7;
    padding: 0 24px 20px;
}


/* ==================== FOOTER ==================== */

.footer-section {
    background: #1a0508;
}

.footer-top {
    padding: 70px 0 40px;
}

.footer-logo {
    height: 60px;
    margin-bottom: 18px;
}

.footer-desc {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.7;
    margin-bottom: 20px;
}

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

.footer-social a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--red);
    border-color: var(--red);
    color: white;
}

.footer-heading {
    font-family: 'Poppins', sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    color: white;
    margin-bottom: 18px;
}

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

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

.footer-links a {
    font-size: 0.86rem;
    color: rgba(255, 255, 255, 0.5);
    transition: var(--transition);
}

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

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-contact-item i {
    color: var(--red-soft);
    font-size: 1rem;
    flex-shrink: 0;
}

.footer-contact-item span {
    font-size: 0.86rem;
    color: rgba(255, 255, 255, 0.5);
}

.btn-whatsapp-footer {
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: white;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 0.85rem;
    padding: 10px 20px;
    border-radius: 50px;
    border: none;
    display: inline-flex;
    align-items: center;
    transition: var(--transition);
}

.btn-whatsapp-footer:hover {
    transform: translateY(-2px);
    color: white;
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.3);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding: 20px 0;
}

.footer-bottom p {
    font-size: 0.83rem;
    color: rgba(255, 255, 255, 0.35);
    margin: 0;
}


/* ==================== SCROLL TO TOP ==================== */

.scroll-top-btn {
    position: fixed;
    bottom: 90px;
    right: 24px;
    z-index: 500;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: var(--gradient-red);
    color: white;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(193, 18, 31, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    transition: var(--transition);
    opacity: 0;
    pointer-events: none;
    transform: translateY(20px);
}

.scroll-top-btn.visible {
    opacity: 1;
    pointer-events: all;
    transform: translateY(0);
}

.scroll-top-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(193, 18, 31, 0.5);
}


/* ==================== WHATSAPP FLOAT ==================== */

.whatsapp-float {
    position: fixed;
    bottom: 28px;
    right: 24px;
    z-index: 500;
    width: 58px;
    height: 58px;
    background: linear-gradient(135deg, #25D366, #128C7E);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    color: white;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
    transition: var(--transition);
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.6);
}

.whatsapp-tooltip {
    position: absolute;
    right: 70px;
    white-space: nowrap;
    background: #333;
    color: white;
    font-size: 0.8rem;
    font-family: 'Poppins', sans-serif;
    padding: 6px 14px;
    border-radius: 8px;
    opacity: 0;
    transition: var(--transition);
    pointer-events: none;
}

.whatsapp-tooltip::after {
    content: '';
    position: absolute;
    right: -6px;
    top: 50%;
    transform: translateY(-50%);
    border: 6px solid transparent;
    border-left-color: #333;
    border-right: none;
}

.whatsapp-float:hover .whatsapp-tooltip {
    opacity: 1;
}


/* ==================== SUCCESS MODAL ==================== */

.success-modal-content {
    border: none;
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.success-icon {
    font-size: 4rem;
    color: #25D366;
    animation: successBounce 0.6s ease-out;
}

@keyframes successBounce {
    0% {
        transform: scale(0);
    }
    60% {
        transform: scale(1.2);
    }
    100% {
        transform: scale(1);
    }
}

.success-modal-content h3 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    color: var(--dark);
}

.success-modal-content p {
    color: var(--gray);
    font-size: 0.95rem;
}


/* ==================== RESPONSIVE ==================== */

@media (max-width: 991px) {
    .review-card {
        min-width: calc(50% - 12px);
    }
    .hero-visual {
        padding: 20px 0 40px;
    }
    .hero-illustration {
        width: 320px;
        height: 320px;
    }
    .navbar-collapse {
        background: rgba(255, 248, 242, 0.98);
        padding: 20px;
        border-radius: 12px;
        margin-top: 12px;
    }
    .trust-badges {
        flex-wrap: wrap;
    }
    .badge-divider {
        display: none;
    }
    .about-exp-badge {
        right: 10px;
    }
}

@media (max-width: 767px) {
    .section-pad {
        padding: 60px 0;
    }
    .hero-section {
        padding-top: 20px;
    }
    .hero-headline {
        font-size: 1.9rem;
    }
    .hero-cta-group {
        display: flex;
        flex-direction: column;
        gap: 12px;
    }
    .hero-cta-group .btn {
        width: 100%;
        justify-content: center;
    }
    .trust-badges {
        gap: 14px;
        padding: 14px 16px;
    }
    .review-card {
        min-width: calc(100% - 0px);
    }
    .glass-form-card {
        padding: 24px 20px;
    }
    .stat-number {
        font-size: 2rem;
    }
    .hero-illustration {
        width: 260px;
        height: 260px;
    }
    .zodiac-float {
        font-size: 1.1rem;
    }
    .stats-section {
        padding: 40px 0;
    }
    .about-exp-badge {
        right: 10px;
    }
}

@media (max-width: 480px) {
    .trust-badges {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    .hero-visual {
        display: none;
    }
    .navbar-logo {
        height: 42px;
    }
}


/* ==================== RESPONSIVE REFINEMENTS ==================== */

html,
body {
    width: 100%;
    max-width: 100%;
}

body {
    min-width: 320px;
}

img,
svg,
video,
canvas {
    max-width: 100%;
    height: auto;
}

p,
h1,
h2,
h3,
h4,
h5,
a,
span,
button,
label,
input,
select,
textarea {
    overflow-wrap: break-word;
}

.container,
.container-fluid,
.row,
[class*="col-"],
.hero-content,
.service-card,
.why-card,
.review-card,
.glass-form-card,
.contact-info-item,
.footer-contact-item {
    min-width: 0;
}

.btn,
.btn-cta-nav,
.btn-hero-primary,
.btn-hero-secondary,
.btn-whatsapp,
.btn-outline-whatsapp,
.btn-service,
.btn-whatsapp-footer {
    max-width: 100%;
    white-space: normal;
    text-align: center;
}

.hero-section,
.stats-section,
.services-section,
.about-section,
.why-section,
.reviews-section,
.form-section,
.faq-section,
.footer-section {
    max-width: 100%;
    overflow-x: clip;
}

.hero-section .row.min-vh-100 {
    min-height: calc(100vh - 76px) !important;
}

.hero-cta-group {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 14px;
}

.hero-cta-group .btn {
    margin-right: 0 !important;
}

.about-logo-img {
    /* width: min(100%, 360px); */
    max-height: 100%;
}

.reviewer-info,
.contact-info-item div,
.footer-contact-item span {
    min-width: 0;
}

.custom-input,
.form-control,
.form-select {
    min-width: 0;
}

.accordion-button {
    align-items: flex-start;
    gap: 12px;
    line-height: 1.45;
}

.accordion-button::after {
    flex-shrink: 0;
    margin-top: 4px;
}

@media (max-width: 1199px) {
    .nav-link {
        padding: 8px 9px !important;
        font-size: 0.82rem;
    }
    .btn-cta-nav {
        padding: 10px 16px;
        font-size: 0.82rem;
    }
    .hero-illustration {
        width: 380px;
        height: 380px;
    }
    .ring-1 {
        width: 340px;
        height: 340px;
    }
    .ring-2 {
        width: 500px;
        height: 500px;
    }
    .ring-3 {
        width: 660px;
        height: 660px;
    }
    .review-card {
        padding: 24px;
    }
}

@media (max-width: 991px) {
    #mainNavbar,
    #mainNavbar.scrolled {
        padding: 8px 0;
    }
    .navbar>.container {
        align-items: center;
    }
    .navbar-collapse {
        max-height: calc(100vh - 76px);
        overflow-y: auto;
        box-shadow: var(--shadow-md);
    }
    .navbar-nav {
        gap: 2px !important;
        align-items: stretch;
        text-align: left;
    }
    .nav-link {
        padding: 10px 12px !important;
        font-size: 0.9rem;
    }
    .nav-link::after {
        display: none;
    }
    .btn-cta-nav {
        display: flex;
        justify-content: center;
        width: 100%;
        margin-top: 10px;
    }
    .hero-section {
        min-height: auto;
    }
    .hero-section .row.min-vh-100 {
        min-height: auto !important;
        padding: 72px 0 54px;
    }
    .hero-content {
        padding: 28px 0 10px;
    }
    .hero-subtext {
        max-width: 680px;
    }
    .hero-visual {
        justify-content: flex-start;
    }
    .trust-badges {
        width: 100%;
        max-width: 560px;
    }
    .stats-section {
        padding: 46px 0;
    }
    .about-image-wrap {
        max-width: 560px;
        margin: 0 auto;
    }
    .about-img-placeholder {
        height: clamp(300px, 58vw, 420px);
    }
    .glass-form-card {
        max-width: 760px;
        margin: 0 auto;
    }
    .footer-top {
        padding: 54px 0 34px;
    }
}

@media (max-width: 767px) {
    .section-pad {
        padding: 54px 0;
    }
    .section-header {
        margin-bottom: 32px !important;
    }
    .section-tag {
        font-size: 0.72rem;
        letter-spacing: 1.2px;
        padding: 6px 14px;
    }
    .section-title {
        font-size: clamp(1.55rem, 7vw, 2rem);
    }
    .section-sub,
    .about-desc {
        font-size: 0.92rem;
    }
    .hero-section .row.min-vh-100 {
        padding: 44px 0 42px;
    }
    .hero-content {
        text-align: center;
        padding-top: 16px;
    }
    .hero-badge {
        font-size: 0.72rem;
        padding: 8px 14px;
    }
    .hero-headline {
        font-size: clamp(1.8rem, 8vw, 2.35rem);
        line-height: 1.18;
    }
    .hero-subtext {
        margin-left: auto;
        padding: 12px;
        margin-right: auto;
        font-size: 0.95rem;
        line-height: 1.65;
    }
    .hero-cta-group {
        flex-direction: column;
        align-items: anchor-center;
        gap: 12px;
    }
    .hero-cta-group .btn,
    .form-btn-group .btn {
        width: 88%;
        justify-content: ;
    }
    .trust-badges {
        justify-content: center;
        margin: 0 auto;
    }
    .badge-item {
        flex: 1 1 140px;
        justify-content: center;
    }
    .hero-visual {
        justify-content: center;
        padding: 8px 0 12px;
    }
    .scroll-indicator {
        display: none;
    }
    .stat-card {
        padding: 6px 0;
    }
    .stat-icon {
        font-size: 1.5rem;
    }
    .stat-plus,
    .stat-suffix {
        font-size: 1.45rem;
    }
    .service-img-wrap {
        padding: 24px 22px 16px;
    }
    .service-body {
        padding: 18px 20px 22px;
    }
    .why-card {
        padding: 26px 22px;
    }
    .review-card {
        padding: 22px;
    }
    .review-header {
        align-items: flex-start;
    }
    .contact-info-item {
        align-items: flex-start;
    }
    .glass-form-card {
        border-radius: 18px;
    }
    .form-title {
        font-size: 1.3rem;
        margin-bottom: 22px;
    }
    .custom-accordion .accordion-button {
        padding: 16px 18px;
        font-size: 0.9rem;
    }
    .custom-accordion .accordion-body {
        padding: 0 18px 18px;
        font-size: 0.88rem;
    }
    .footer-top {
        padding: 46px 0 28px;
    }
    .footer-brand,
    .footer-heading,
    .footer-links,
    .footer-contact {
        text-align: center;
    }
    .footer-social,
    .footer-contact-item,
    .btn-whatsapp-footer {
        justify-content: center;
    }
}

@media (max-width: 575px) {
    .container {
        --bs-gutter-x: 1.25rem;
    }
    .navbar-logo {
        height: 40px;
    }
    .navbar-collapse {
        padding: 16px;
        border-radius: 10px;
    }
    .hero-section .row.min-vh-100 {
        padding-top: 32px;
    }
    .hero-badge {
        width: 79%;
        justify-content: center;
        border-radius: 14px;
        line-height: 1.35;
    }
    .btn-hero-primary,
    .btn-hero-secondary,
    .btn-whatsapp,
    .btn-outline-whatsapp {
        padding: 12px 18px;
        font-size: 0.9rem;
    }
    .trust-badges {
        flex-direction: row-reverse;
        align-items: stretch;
        gap: 27px;
        padding: 20px;
        text-align: left;
        margin: 1px;
    }
    .badge-item {
        flex: 1 1 auto;
        justify-content: flex-start;
    }
    .hero-visual {
        display: flex;
    }
    .hero-illustration {
        width: min(78vw, 250px);
        height: min(78vw, 250px);
    }
    .astro-circle-mid {
        inset: 22px;
    }
    .astro-circle-inner {
        inset: 48px;
    }
    .hero-center-image {
        width: 130px;
        height: 130px;
    }
    .hero-logo-glow {
        width: 112px;
        height: 112px;
        padding: 14px;
    }
    .rotating-border {
        inset: -10px;
    }
    .glow-ring {
        display: none;
    }
    .service-icon-bg {
        width: 68px;
        height: 68px;
        border-radius: 16px;
        font-size: 1.65rem;
    }
    .about-img-placeholder {
        height: clamp(250px, 76vw, 330px);
    }
    .about-om {
        font-size: 5.5rem;
    }
    .om-ring.r1 {
        width: 160px;
        height: 160px;
    }
    .om-ring.r2 {
        width: 230px;
        height: 230px;
    }
    .about-exp-badge {
        right: 12px;
        bottom: 12px;
        padding: 12px 14px;
    }
    .exp-num {
        font-size: 1.55rem;
    }
    .about-feature {
        padding: 12px;
        gap: 12px;
    }
    .review-card {
        min-width: 100%;
    }
    .slider-controls {
        gap: 14px;
        margin-top: 24px;
    }
    .slider-btn {
        width: 40px;
        height: 40px;
    }
    .glass-form-card {
        padding: 22px 16px;
    }
    .contact-info-item span,
    .footer-contact-item span {
        word-break: break-word;
    }
    .modal-body.p-5 {
        padding: 28px 18px !important;
    }
    .success-modal-content .btn {
        width: 100%;
        justify-content: center;
        margin: 0 0 10px !important;
    }
    .whatsapp-float {
        right: 16px;
        bottom: 18px;
        width: 52px;
        height: 52px;
        font-size: 1.4rem;
    }
    .scroll-top-btn {
        right: 16px;
        bottom: 78px;
        width: 42px;
        height: 42px;
    }
    .whatsapp-tooltip {
        display: none;
    }
}

@media (max-width: 380px) {
    .container {
        --bs-gutter-x: 1rem;
    }
    .hero-headline {
        font-size: 1.68rem;
    }
    .hero-subtext,
    .section-sub,
    .about-desc,
    .why-card p,
    .review-text,
    .footer-desc {
        font-size: 0.86rem;
    }
    .section-title {
        font-size: 1.45rem;
    }
    .hero-illustration {
        width: 230px;
        height: 230px;
    }
    .zodiac-float {
        font-size: 0.95rem;
    }
    .stat-number {
        font-size: 1.75rem;
    }
    .stat-label {
        font-size: 0.76rem;
    }
    .service-body h4,
    .why-card h4 {
        font-size: 0.98rem;
    }
    .contact-info-item,
    .about-feature {
        flex-direction: column;
    }
    .footer-bottom p {
        font-size: 0.76rem;
        text-align: center;
    }
}


/* ==================== REVIEWS RESPONSIVE POLISH ==================== */

.reviews-section {
    position: relative;
    background: radial-gradient(circle at 12% 12%, rgba(193, 18, 31, 0.08), transparent 32%), radial-gradient(circle at 88% 20%, rgba(250, 217, 204, 0.55), transparent 34%), var(--cream);
}

.reviews-slider-wrap {
    max-width: 1180px;
    margin: 0 auto;
    padding: 4px 2px 2px;
}

.reviews-track {
    align-items: stretch;
    gap: 24px;
    will-change: transform;
}

.review-card {
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 310px;
    padding: 30px;
    overflow: hidden;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(255, 248, 242, 0.92));
    border: 1px solid rgba(193, 18, 31, 0.12);
    border-radius: 22px;
    box-shadow: 0 14px 45px rgba(193, 18, 31, 0.1);
}

.review-card::before {
    content: '\201C';
    position: absolute;
    top: 10px;
    right: 22px;
    font-family: 'Playfair Display', serif;
    font-size: 5.6rem;
    line-height: 1;
    color: rgba(193, 18, 31, 0.08);
    pointer-events: none;
}

.review-card::after {
    content: '';
    position: absolute;
    inset: 0;
    border-top: 4px solid rgba(193, 18, 31, 0.72);
    pointer-events: none;
}

.review-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 55px rgba(193, 18, 31, 0.16);
}

.review-header {
    position: relative;
    z-index: 1;
    gap: 16px;
    padding-bottom: 16px;
    margin-bottom: 18px;
    border-bottom: 1px solid rgba(193, 18, 31, 0.08);
}

.reviewer-avatar {
    width: 58px;
    height: 58px;
    background: linear-gradient(white, white) padding-box, var(--gradient-red) border-box;
    border: 2px solid transparent;
    color: var(--red);
    box-shadow: 0 8px 22px rgba(193, 18, 31, 0.18);
}

.reviewer-info h5 {
    font-size: 1rem;
    line-height: 1.25;
}

.reviewer-info span {
    display: block;
    margin-bottom: 4px;
    line-height: 1.3;
}

.stars {
    display: inline-flex;
    align-items: center;
    padding: 3px 8px;
    background: rgba(245, 158, 11, 0.1);
    border-radius: 999px;
    color: #f59e0b;
    font-size: 0.82rem;
    letter-spacing: 1px;
}

.review-text {
    position: relative;
    z-index: 1;
    flex: 1;
    margin-bottom: 20px;
    color: #4d4d4d;
    font-size: 0.92rem;
    line-height: 1.78;
}

.review-service {
    position: relative;
    z-index: 1;
    align-self: flex-start;
    max-width: 100%;
    padding: 7px 14px;
    background: rgba(193, 18, 31, 0.09);
    border: 1px solid rgba(193, 18, 31, 0.12);
    color: var(--red);
    line-height: 1.25;
    white-space: normal;
}

.slider-controls {
    gap: 16px;
    margin-top: 34px;
}

.slider-btn {
    width: 46px;
    height: 46px;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 8px 22px rgba(193, 18, 31, 0.1);
}

.slider-btn:hover,
.slider-btn:focus-visible {
    background: var(--red);
    color: white;
    border-color: var(--red);
    transform: translateY(-2px);
}

.slider-dots {
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    max-width: min(58vw, 360px);
}

.slider-dot {
    width: 9px;
    height: 9px;
    border: 0;
}

.slider-dot.active {
    width: 28px;
}

@media (max-width: 1199px) {
    .review-card {
        min-height: 325px;
        padding: 26px;
    }
}

@media (max-width: 991px) {
    .reviews-slider-wrap {
        padding-inline: 1px;
    }
    .review-card {
        min-height: 300px;
    }
}

@media (max-width: 767px) {
    .reviews-section {
        background: radial-gradient(circle at 50% 0%, rgba(193, 18, 31, 0.08), transparent 36%), var(--cream);
    }
    .reviews-slider-wrap {
        overflow: visible;
        padding-bottom: 4px;
    }
    .review-card {
        min-height: auto;
        padding: 24px 22px;
        border-radius: 18px;
    }
    .review-card::before {
        top: 8px;
        right: 16px;
        font-size: 4.4rem;
    }
    .review-header {
        gap: 13px;
        margin-bottom: 16px;
        padding-bottom: 14px;
    }
    .reviewer-avatar {
        width: 52px;
        height: 52px;
        font-size: 1rem;
    }
    .reviewer-info h5 {
        font-size: 0.96rem;
    }
    .review-text {
        font-size: 0.9rem;
        line-height: 1.68;
    }
    .review-service {
        font-size: 0.72rem;
        padding: 6px 12px;
    }
    .slider-controls {
        margin-top: 24px;
    }
}

@media (max-width: 480px) {
    .reviews-track {
        gap: 24px;
    }
    .review-card {
        padding: 22px 18px;
        border-radius: 16px;
    }
    .review-header {
        align-items: center;
    }
    .reviewer-avatar {
        width: 48px;
        height: 48px;
    }
    .stars {
        font-size: 0.76rem;
        letter-spacing: 0.5px;
        padding-inline: 7px;
    }
    .slider-controls {
        gap: 12px;
    }
    .slider-btn {
        width: 40px;
        height: 40px;
        font-size: 0.82rem;
    }
    .slider-dots {
        max-width: 170px;
        gap: 7px;
    }
}

@media (max-width: 360px) {
    .review-card {
        padding: 20px 16px;
    }
    .review-header {
        gap: 11px;
    }
    .reviewer-avatar {
        width: 44px;
        height: 44px;
    }
    .reviewer-info h5 {
        font-size: 0.9rem;
    }
    .reviewer-info span,
    .review-text {
        font-size: 0.84rem;
    }
    .review-service {
        font-size: 0.68rem;
    }
}


/* ==================== CLIENT REVIEW BLOCKS ==================== */

.reviews-summary {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    max-width: 820px;
    margin: 0 auto 38px;
}

.reviews-summary-item {
    padding: 18px 20px;
    text-align: center;
    background: rgba(255, 255, 255, 0.78);
    border: 1px solid rgba(193, 18, 31, 0.1);
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
}

.reviews-summary-item strong {
    display: block;
    font-family: 'Poppins', sans-serif;
    font-size: 1.65rem;
    line-height: 1;
    color: var(--red);
}

.reviews-summary-item span {
    display: block;
    margin-top: 7px;
    font-family: 'Poppins', sans-serif;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--gray);
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.client-review-card {
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 100%;
    padding: 28px;
    overflow: hidden;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(255, 248, 242, 0.92));
    border: 1px solid rgba(193, 18, 31, 0.1);
    border-radius: 22px;
    box-shadow: 0 12px 40px rgba(193, 18, 31, 0.09);
    transition: var(--transition);
}

.client-review-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-red);
}

.client-review-card::after {
    content: '\f10e';
    position: absolute;
    right: 22px;
    bottom: 18px;
    font-family: 'Font Awesome 6 Free';
    font-size: 3rem;
    font-weight: 900;
    color: rgba(193, 18, 31, 0.06);
    pointer-events: none;
}

.client-review-card:hover {
    transform: translateY(-7px);
    border-color: rgba(193, 18, 31, 0.22);
    box-shadow: 0 20px 60px rgba(193, 18, 31, 0.15);
}

.featured-review {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(253, 237, 232, 0.92)), var(--white);
}

.client-review-top {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 14px;
    align-items: center;
    padding-bottom: 18px;
    margin-bottom: 18px;
    border-bottom: 1px solid rgba(193, 18, 31, 0.09);
}

.client-avatar {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-red);
    color: white;
    font-family: 'Poppins', sans-serif;
    font-size: 0.92rem;
    font-weight: 800;
    letter-spacing: 0.5px;
    box-shadow: 0 8px 22px rgba(193, 18, 31, 0.25);
    flex-shrink: 0;
}

.client-meta {
    min-width: 0;
}

.client-meta h5 {
    margin: 0 0 3px;
    font-size: 1rem;
    font-weight: 700;
    color: var(--dark);
    line-height: 1.25;
}

.client-meta span {
    display: block;
    font-size: 0.82rem;
    color: var(--gray);
}

.client-stars {
    grid-column: 1 / -1;
    display: inline-flex;
    width: fit-content;
    gap: 3px;
    padding: 5px 10px;
    background: rgba(245, 158, 11, 0.1);
    border: 1px solid rgba(245, 158, 11, 0.16);
    border-radius: 999px;
    color: #f59e0b;
    font-size: 0.76rem;
}

.client-review-card p {
    position: relative;
    z-index: 1;
    flex: 1;
    margin: 0 0 22px;
    color: #4f4f4f;
    font-size: 0.92rem;
    line-height: 1.72;
}

.client-review-footer {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    margin-top: auto;
}

.client-review-footer span {
    display: inline-flex;
    max-width: 100%;
    padding: 7px 13px;
    background: rgba(193, 18, 31, 0.08);
    border: 1px solid rgba(193, 18, 31, 0.12);
    border-radius: 999px;
    color: var(--red);
    font-family: 'Poppins', sans-serif;
    font-size: 0.74rem;
    font-weight: 700;
    line-height: 1.3;
}

.client-review-footer i {
    color: rgba(193, 18, 31, 0.22);
    font-size: 1.35rem;
    flex-shrink: 0;
}

@media (min-width: 992px) {
    .featured-review {
        grid-row: span 2;
    }
    .featured-review p {
        font-size: 1rem;
        line-height: 1.8;
    }
}

@media (max-width: 991px) {
    .reviews-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 20px;
    }
    .client-review-card {
        padding: 24px;
        border-radius: 18px;
    }
}

@media (max-width: 767px) {
    .reviews-summary {
        grid-template-columns: 1fr;
        gap: 12px;
        margin-bottom: 28px;
    }
    .reviews-summary-item {
        padding: 15px 18px;
    }
    .reviews-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }
    .client-review-card {
        padding: 22px 18px;
    }
    .client-review-card:hover {
        transform: none;
    }
    .client-review-top {
        gap: 12px;
        padding-bottom: 15px;
        margin-bottom: 15px;
    }
}

@media (max-width: 420px) {
    .reviews-summary-item strong {
        font-size: 1.45rem;
    }
    .client-avatar {
        width: 48px;
        height: 48px;
        font-size: 0.82rem;
    }
    .client-meta h5 {
        font-size: 0.95rem;
    }
    .client-review-card p {
        font-size: 0.88rem;
    }
    .client-review-footer {
        align-items: flex-start;
        flex-direction: column;
    }
    .client-review-footer i {
        display: none;
    }
}