/* =============================================
   KUNJZULA – Premium Luxury Swing Website CSS
   Palette:
     Navy:   #292D52
     Teal:   #42B599
     White:  #FFFFFF
     Light:  #F9F9F9
   ============================================= */

/* ===== CSS CUSTOM PROPERTIES ===== */
:root {
    --navy: #292D52;
    --navy-dark: #1e2140;
    --teal: #42B599;
    --teal-light: #5ecbb0;
    --teal-dark: #339980;
    --white: #ffffff;
    --light: #F9F9F9;
    --light-2: #f0f0f5;
    --text: #2c2c3e;
    --text-muted: #6b7080;
    --border: #e4e8ef;
    --shadow-sm: 0 2px 12px rgba(41, 45, 82, 0.08);
    --shadow-md: 0 6px 30px rgba(41, 45, 82, 0.14);
    --shadow-lg: 0 16px 56px rgba(41, 45, 82, 0.2);
    --radius: 14px;
    --radius-sm: 8px;
    --radius-pill: 50px;
    --transition: 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;
    font-size: 16px;
    overflow-x: clip;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--text);
    background: var(--white);
    line-height: 1.7;
    overflow-x: clip;
}

h1,
h2,
h3,
h4,
h5 {
    font-family: 'Poppins', serif;
    line-height: 1.25;
    color: var(--navy);
}

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

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    max-width: 1200px;
    width: 90%;
    margin: 0 auto;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: var(--radius-pill);
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.03em;
    cursor: pointer;
    border: none;
    transition: var(--transition);
    white-space: nowrap;
}

.btn-primary {
    background: var(--teal);
    color: var(--white);
    box-shadow: 0 6px 24px rgba(66, 181, 153, 0.35);
}

.btn-primary:hover {
    background: var(--teal-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(66, 181, 153, 0.45);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.6);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--white);
}

.btn-card {
    background: var(--navy);
    color: var(--white);
    font-size: 0.82rem;
    padding: 10px 20px;
}

.btn-card:hover {
    background: var(--teal);
    transform: translateY(-2px);
}

.btn-whatsapp {
    background: #25D366;
    color: var(--white);
    font-size: 0.82rem;
    padding: 10px 20px;
}

.btn-whatsapp:hover {
    background: #1ebe5a;
    transform: translateY(-2px);
}

.btn-form {
    background: var(--teal);
    color: var(--white);
    width: 100%;
    justify-content: center;
    padding: 16px;
    font-size: 0.95rem;
    box-shadow: 0 6px 24px rgba(66, 181, 153, 0.3);
}

.btn-form:hover {
    background: var(--teal-dark);
    box-shadow: 0 10px 30px rgba(66, 181, 153, 0.4);
}

/* ===== SECTION SHARED STYLES ===== */
.section-eyebrow {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--teal);
    margin-bottom: 10px;
}

.section-title {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    margin-bottom: 16px;
    color: var(--navy);
}

.section-desc {
    font-size: 1rem;
    color: var(--text-muted);
    max-width: 580px;
    margin: 0 auto;
    line-height: 1.8;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

/* ===== TOP BAR ===== */
.top-bar {
    background: var(--navy-dark);
    color: var(--white);
    padding: 9px 5%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.04em;
    gap: 12px;
    flex-wrap: wrap;
}

.top-tagline {
    color: rgba(255, 255, 255, 0.85);
    display: flex;
    align-items: center;
    gap: 8px;
}

.top-tagline i {
    color: var(--teal);
    font-size: 0.65rem;
}

.top-socials {
    display: flex;
    align-items: center;
    gap: 16px;
}

.top-socials a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    transition: var(--transition);
}

.top-socials a:hover {
    color: var(--teal);
    transform: scale(1.2);
}

/* ===== STICKY HEADER ===== */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    transition: var(--transition);
}

.site-header.scrolled {
    box-shadow: var(--shadow-md);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1px 5%;
    max-width: 1400px;
    height: 80px;
    margin: 0 auto;
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: default;
}

.logo-icon {
    width: 110px;
    height: 110px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

/* 
.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.logo-brand {
    font-family: 'Playfair Display', serif;
    font-size: 1.55rem;
    font-weight: 700;
    color: var(--navy);
    letter-spacing: -0.01em;
}

.logo-sub {
    font-size: 0.67rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--teal);
    font-weight: 600;
} *
/* Nav */
.main-nav {
    display: flex;
    align-items: center;
    gap: 6px;
}

.nav-link {
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--navy);
    padding: 8px 14px;
    border-radius: var(--radius-sm);
    position: relative;
    transition: var(--transition);
    letter-spacing: 0.02em;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 14px;
    right: 14px;
    height: 2px;
    background: var(--teal);
    border-radius: 2px;
    transform: scaleX(0);
    transition: var(--transition);
    transform-origin: center;
}

.nav-link:hover {
    color: var(--teal);
}

.nav-link:hover::after {
    transform: scaleX(1);
}

/* Hamburger */
.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 26px;
    height: 19px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
}

.menu-toggle span {
    width: 100%;
    height: 2px;
    background: var(--navy);
    border-radius: 2px;
    transition: var(--transition);
}

.menu-toggle.active span:nth-child(1) {
    transform: translateY(8.5px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.menu-toggle.active span:nth-child(3) {
    transform: translateY(-8.5px) rotate(-45deg);
}

/* ===== HERO SECTION ===== */
.hero {
    position: relative;
    min-height: 92vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    background: linear-gradient(135deg, #1a1e3d 0%, var(--navy) 40%, #2a4f6a 70%, #1d4040 100%);
    padding: 100px 5% 80px;
}

.hero-bg-overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 70% 60% at 50% 0%, rgba(66, 181, 153, 0.18) 0%, transparent 65%),
        radial-gradient(ellipse 50% 40% at 80% 80%, rgba(66, 181, 153, 0.08) 0%, transparent 60%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 780px;
    animation: fadeInUp 0.8s ease both;
}

.hero-eyebrow {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--teal);
    background: rgba(66, 181, 153, 0.12);
    border: 1px solid rgba(66, 181, 153, 0.3);
    padding: 6px 18px;
    border-radius: var(--radius-pill);
    margin-bottom: 24px;
}

.hero-title {
    font-size: clamp(2.6rem, 7vw, 5rem);
    color: var(--white);
    margin-bottom: 24px;
    font-weight: 700;
    line-height: 1.1;
}

.hero-title em {
    font-style: italic;
    color: var(--teal);
}

.hero-desc {
    font-size: clamp(1rem, 1.5vw, 1.15rem);
    color: rgba(255, 255, 255, 0.72);
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
}

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

.hero-scroll-indicator {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    color: rgba(255, 255, 255, 0.45);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    animation: bounce 2s ease-in-out infinite;
    z-index: 2;
}

/* Decorative Blobs */
.hero-deco {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    opacity: 0.12;
}

.hero-deco-1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, var(--teal), transparent 70%);
    top: -200px;
    left: -150px;
}

.hero-deco-2 {
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, #8b9fff, transparent 70%);
    bottom: -100px;
    right: -80px;
}

.hero-deco-3 {
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, var(--teal), transparent 70%);
    top: 40%;
    right: 8%;
    opacity: 0.07;
}

/* ===== STATS BAR ===== */
.stats-bar {
    background: var(--navy);
    padding: 26px 5%;
}

.stats-inner {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-around;
    gap: 20px;
    flex-wrap: wrap;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.stat-number {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--teal);
    line-height: 1;
}

.stat-label {
    font-size: 0.7rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.6);
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.stat-divider {
    width: 1px;
    height: 50px;
    background: rgba(255, 255, 255, 0.15);
}

/* ===== PRODUCTS SECTION ===== */
.products-section {
    padding: 60px 0;
    background: var(--light);
}

/* Filter Tabs */
.filter-tabs {
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 50px;
}

.filter-btn {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    padding: 10px 22px;
    border-radius: var(--radius-pill);
    cursor: pointer;
    border: 2px solid var(--border);
    background: var(--white);
    color: var(--text-muted);
    transition: var(--transition);
    letter-spacing: 0.02em;
}

.filter-btn:hover {
    border-color: var(--teal);
    color: var(--teal);
}

.filter-btn.active {
    background: var(--teal);
    border-color: var(--teal);
    color: var(--white);
    box-shadow: 0 4px 16px rgba(66, 181, 153, 0.3);
}

/* Product Grid */
.product-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

/* Product Cards */
.product-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    animation: fadeInUp 0.5s ease both;
    border: 1px solid transparent;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(66, 181, 153, 0.2);
}

.product-card.hidden {
    display: none;
}

/* Card Image Area */
.card-img-wrap {
    position: relative;
    overflow: hidden;
}

.card-img {
    height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: var(--transition);
}

.product-card:hover .card-img {
    transform: scale(1.04);
}

.card-img-icon {
    font-size: 3rem;
    color: rgba(255, 255, 255, 0.7);
    position: relative;
    z-index: 1;
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.2));
    transition: var(--transition);
}

.product-card:hover .card-img-icon {
    transform: scale(1.1);
}

/* Different gradient themes for each product image */
.indoor-1,
.indoor-2,
.indoor-3,
.indoor-4,
.indoor-5,
.indoor-6,
.indoor-7,
.indoor-8,
.indoor-9,
.indoor-10 {
    background: rgb(222, 231, 255);
}

/* .outdoor-1 {
    background: linear-gradient(135deg, #1a4a2e 0%, #42b569 100%);
}

.outdoor-2 {
    background: linear-gradient(135deg, #3d4a1a 0%, #b5a242 100%);
}

.outdoor-3 {
    background: linear-gradient(135deg, #1a4a3e 0%, #42B599 100%);
} */

.outdoor-1,
.outdoor-2,
.outdoor-3,
.outdoor-4,
.outdoor-5,
.outdoor-6,
.outdoor-7,
.outdoor-8,
.outdoor-9,
.outdoor-10,
.outdoor-11,
.outdoor-12,
.outdoor-13,
.outdoor-14,
.outdoor-15,
.outdoor-16,
.outdoor-17,
.outdoor-18,
.outdoor-19,
.outdoor-20,
.outdoor-21,
.outdoor-22,
.outdoor-23,
.outdoor-24,
.outdoor-25,
.outdoor-26,
.outdoor-27,
.outdoor-28 {
    background: #defff7;
}

/* 
.outdoor-23 {
    background: linear-gradient(135deg, #6a994e 0%, #f2e8cf 100%);
}

.outdoor-24 {
    background: linear-gradient(135deg, #386641 0%, #b7e4c7 100%);
}

.outdoor-25 {
    background: linear-gradient(135deg, #2f3e46 0%, #cad2c5 100%);
}

.outdoor-26 {
    background: linear-gradient(135deg, #3c6e71 0%, #d9ed92 100%);
}

.outdoor-27 {
    background: linear-gradient(135deg, #1b4332 0%, #d8f3dc 100%);
}

.outdoor-28 {
    background: linear-gradient(135deg, #31572c 0%, #ecf39e 100%);
}

.outdoor-29 {
    background: linear-gradient(135deg, #2b9348 0%, #fefae0 100%);
}

.outdoor-30 {
    background: linear-gradient(135deg, #004225 0%, #b5e48c 100%);
} */

.khatla-1,
.khatla-2,
.khatla-3,
.khatla-4,
.khatla-5,
.khatla-6,
.khatla-7,
.khatla-8,
.khatla-9,
.khatla-10,
.khatla-11,
.khatla-12,
.khatla-13,
.khatla-14,
.khatla-15,
.khatla-16,
.khatla-17 {
    background: #fff1df;
}

.slider-1,
.slider-2,
.slider-3 {
    background: linear-gradient(135deg, #2d1a4a 0%, #7842b5 100%);
}

/* Card Badge */
.card-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    background: rgba(255, 255, 255, 0.92);
    color: var(--navy);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: var(--radius-pill);
    z-index: 2;
    backdrop-filter: blur(4px);
}

/* Card Body */
.card-body {
    padding: 22px 22px 24px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.card-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 8px;
}

.card-desc {
    font-size: 0.83rem;
    color: var(--text-muted);
    margin-bottom: 14px;
    flex: 1;
    line-height: 1.65;
}

.card-features {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 18px;
}

.card-features span {
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--teal-dark);
    background: rgba(66, 181, 153, 0.1);
    border: 1px solid rgba(66, 181, 153, 0.2);
    padding: 3px 10px;
    border-radius: var(--radius-pill);
    display: flex;
    align-items: center;
    gap: 5px;
}

.card-features span i {
    font-size: 0.6rem;
}

.card-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

/* ===== ABOUT SECTION ===== */
.about-section {
    padding: 100px 0;
    background: var(--white);
}

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

.about-visual {
    position: relative;
}

.about-visual-box {
    background: rgb(236, 255, 248);
    border-radius: 24px;
    height: 480px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.about-visual-box::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 60% at 30% 20%, rgba(66, 181, 153, 0.2), transparent 60%),
        radial-gradient(ellipse 60% 40% at 70% 80%, rgba(255, 255, 255, 0.05), transparent 50%);
}

.about-icon-wrap {
    font-size: 6rem;
    color: rgba(255, 255, 255, 0.15);
    z-index: 1;
}

.about-badge-1,
.about-badge-2 {
    position: absolute;
    background: var(--white);
    border-radius: var(--radius);
    padding: 12px 18px;
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    font-size: 0.85rem;
    color: var(--navy);
    z-index: 2;
}

.about-badge-1 {
    top: 30px;
    right: -15px;
}

.about-badge-1 i {
    color: var(--teal);
}

.about-badge-2 {
    bottom: 40px;
    left: -15px;
}

.about-badge-2 i {
    color: #e05c7e;
}

.about-content .section-title {
    text-align: left;
}

.about-content .section-eyebrow {
    margin-bottom: 8px;
}

.about-text {
    font-size: 0.97rem;
    color: var(--text-muted);
    margin-bottom: 18px;
    line-height: 1.85;
}

.about-text strong {
    color: var(--navy);
    font-weight: 700;
}

.about-values {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin: 28px 0;
}

.value-pill {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    background: rgba(66, 181, 153, 0.08);
    border: 1.5px solid rgba(66, 181, 153, 0.25);
    border-radius: var(--radius-pill);
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--teal-dark);
}

/* ===== TESTIMONIALS ===== */
.testimonials-section {
    padding: 100px 0;
    background: var(--light);
}

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

.testimonial-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 32px 28px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
    transition: var(--transition);
    position: relative;
}

.testimonial-card::before {
    content: '"';
    font-family: 'Playfair Display', serif;
    font-size: 6rem;
    color: var(--teal);
    opacity: 0.12;
    position: absolute;
    top: 10px;
    right: 20px;
    line-height: 1;
}

.testimonial-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
    border-color: rgba(66, 181, 153, 0.25);
}

.test-stars {
    display: flex;
    gap: 3px;
    margin-bottom: 16px;
    color: #f5a623;
    font-size: 0.85rem;
}

.test-text {
    font-size: 0.92rem;
    color: var(--text-muted);
    line-height: 1.75;
    margin-bottom: 24px;
    font-style: italic;
}

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

.test-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--navy), var(--teal));
    color: white;
    font-weight: 700;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.test-author strong {
    display: block;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--navy);
}

.test-author span {
    font-size: 0.75rem;
    color: var(--text-muted);
}

/* ===== CONTACT SECTION ===== */
.contact-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 50%, #2a5050 100%);
    position: relative;
    overflow: hidden;
}

.contact-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 60% 50% at 0% 50%, rgba(66, 181, 153, 0.12) 0%, transparent 60%),
        radial-gradient(ellipse 50% 40% at 100% 50%, rgba(66, 181, 153, 0.08) 0%, transparent 60%);
    pointer-events: none;
}

.contact-inner {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 70px;
    align-items: start;
    position: relative;
    z-index: 1;
}

.contact-desc {
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.97rem;
    line-height: 1.85;
    margin-bottom: 0;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 34px;
}

.contact-detail-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.contact-icon {
    width: 44px;
    height: 44px;
    background: rgba(66, 181, 153, 0.15);
    border: 1px solid rgba(66, 181, 153, 0.3);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--teal);
    font-size: 1.1rem;
    flex-shrink: 0;
}

.contact-detail-item strong {
    display: block;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 2px;
}

.contact-detail-item a,
.contact-detail-item span {
    color: rgba(255, 255, 255, 0.88);
    font-size: 0.95rem;
    font-weight: 500;
    transition: var(--transition);
}

.contact-detail-item a:hover {
    color: var(--teal);
}

/* Override colours inside the white card */
.contact-details-card .contact-detail-item strong {
    color: var(--text-muted);
}

.contact-details-card .contact-detail-item a,
.contact-details-card .contact-detail-item span {
    color: var(--navy);
    font-weight: 600;
}

.contact-details-card .contact-detail-item a:hover {
    color: var(--teal-dark);
}

.contact-details-card .contact-socials {
    margin-top: 8px;
}

.contact-socials {
    display: flex;
    gap: 12px;
}

.social-btn {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--teal);
    border: 1px solid rgba(66, 181, 153, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgb(255, 255, 255);
    font-size: 0.95rem;
    transition: var(--transition);
}

.social-btn:hover {
    background: var(--teal);
    border-color: var(--teal);
    color: white;
    transform: translateY(-3px);
}

/* Contact Details Card (right column) */
.contact-form-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
}


.contact-details-card {
    background: var(--white);
    border-radius: 20px;
    padding: 44px 40px;
    box-shadow: var(--shadow-lg);
    width: 100%;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-group {
    margin-bottom: 18px;
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--navy);
    margin-bottom: 7px;
}

.form-group input,
.form-group select,
.form-group textarea {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    padding: 12px 16px;
    border-radius: var(--radius-sm);
    border: 1.5px solid var(--border);
    outline: none;
    color: var(--text);
    background: var(--light);
    transition: var(--transition);
    resize: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #bbb;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--teal);
    background: white;
    box-shadow: 0 0 0 4px rgba(66, 181, 153, 0.12);
}

.form-success {
    display: none;
    background: rgba(66, 181, 153, 0.1);
    border: 1.5px solid rgba(66, 181, 153, 0.3);
    border-radius: var(--radius-sm);
    padding: 18px;
    text-align: center;
    color: var(--teal-dark);
    font-size: 0.92rem;
    font-weight: 500;
    gap: 10px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    margin-top: 16px;
}

.form-success i {
    font-size: 2rem;
    margin-bottom: 6px;
}

.form-success.show {
    display: flex;
}

/* ===== FOOTER ===== */
.site-footer {
    background: var(--navy-dark);
    color: var(--white);
    padding: 70px 0 0;
}

.footer-inner {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 50px;
    padding-bottom: 50px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

.footer-tagline {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.8;
    margin-bottom: 24px;
}

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

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

.footer-socials a:hover {
    background: var(--teal);
    border-color: var(--teal);
    color: white;
    transform: translateY(-3px);
}

.footer-links h4,
.footer-contact h4 {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.45);
    margin-bottom: 20px;
    font-family: 'Montserrat', sans-serif;
}

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

.footer-links ul li a {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.65);
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.footer-links ul li a:hover {
    color: var(--teal);
    padding-left: 4px;
}

.footer-contact p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.65);
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 12px;
    line-height: 1.5;
}

.footer-contact p i {
    color: var(--teal);
    margin-top: 3px;
    flex-shrink: 0;
    font-size: 0.9rem;
}

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

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

.footer-bottom {
    padding: 20px 5%;
    text-align: center;
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.35);
}

/* ===== FLOATING WHATSAPP ===== */
.whatsapp-float {
    position: fixed;
    bottom: 28px;
    right: 28px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.65rem;
    z-index: 999;
    box-shadow: 0 4px 24px rgba(37, 211, 102, 0.45);
    transition: var(--transition);
}

.whatsapp-float:hover {
    transform: scale(1.12);
    box-shadow: 0 6px 32px rgba(37, 211, 102, 0.6);
}

.whatsapp-tooltip {
    position: absolute;
    right: 70px;
    background: var(--navy);
    color: white;
    font-size: 0.78rem;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: var(--radius-pill);
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition);
    font-family: 'Montserrat', sans-serif;
}

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

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

/* ===== MODAL ===== */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(15, 18, 40, 0.75);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    backdrop-filter: blur(4px);
}

.modal-overlay.open {
    opacity: 1;
    pointer-events: all;
}

.modal-box {
    background: var(--white);
    border-radius: 20px;
    max-width: 820px;
    width: 100%;
    overflow: hidden;
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.3);
    transform: translateY(30px) scale(0.97);
    transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.3s ease;
    position: relative;
    max-height: 90vh;
    overflow-y: auto;
}

.modal-overlay.open .modal-box {
    transform: translateY(0) scale(1);
}

.modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: none;
    background: rgba(41, 45, 82, 0.08);
    color: var(--navy);
    font-size: 0.95rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: var(--transition);
}

.modal-close:hover {
    background: var(--navy);
    color: white;
}

.modal-content-inner {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
}

.modal-img-area {
    min-height: 380px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 5rem;
    color: rgba(255, 255, 255, 0.7);
}

.modal-details {
    padding: 40px 36px 40px 28px;
}

.modal-category {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--teal);
    margin-bottom: 8px;
}

.modal-title {
    font-size: 1.6rem;
    color: var(--navy);
    margin-bottom: 12px;
}

.modal-stars {
    color: #f5a623;
    font-size: 0.85rem;
    margin-bottom: 16px;
}

.modal-desc {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 24px;
}

.modal-specs {
    background: var(--light);
    border-radius: var(--radius-sm);
    overflow: hidden;
    margin-bottom: 24px;
}

.spec-row {
    display: flex;
    justify-content: space-between;
    padding: 10px 16px;
    font-size: 0.82rem;
    border-bottom: 1px solid var(--border);
}

.spec-row:last-child {
    border-bottom: none;
}

.spec-row span:first-child {
    font-weight: 700;
    color: var(--navy);
}

.spec-row span:last-child {
    color: var(--text-muted);
}

.modal-cta {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

/* ===== BACK TO TOP ===== */
.back-to-top {
    position: fixed;
    bottom: 100px;
    right: 28px;
    width: 44px;
    height: 44px;
    background: var(--navy);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    z-index: 998;
    box-shadow: var(--shadow-md);
    opacity: 0;
    transform: translateY(16px);
    transition: var(--transition);
    pointer-events: none;
}

.back-to-top.show {
    opacity: 1;
    transform: translateY(0);
    pointer-events: all;
}

.back-to-top:hover {
    background: var(--teal);
    transform: translateY(-3px);
}

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

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

@keyframes bounce {

    0%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    50% {
        transform: translateX(-50%) translateY(8px);
    }
}

.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.5s ease-in-out, transform 0.5s ease-in-out;
}

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

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

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

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

    .about-visual {
        max-width: 500px;
        margin: 0 auto;
        width: 100%;
    }

    .about-visual-box {
        height: 350px;
    }

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

    .modal-content-inner {
        grid-template-columns: 1fr;
    }

    .modal-img-area {
        min-height: 200px;
    }
}

@media (max-width: 768px) {
    .top-tagline {
        display: none;
    }

    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        align-items: flex-start;
        padding: 90px 30px 30px;
        box-shadow: -10px 0 40px rgba(0, 0, 0, 0.15);
        transition: right 0.35s ease;
        gap: 4px;
        z-index: 999;
        text-align: center;
    }

    .main-nav.open {
        right: 0;
    }

    .nav-link {
        font-size: 1rem;
        width: 100%;
        padding: 12px 16px;
    }

    .menu-toggle {
        display: flex;
        z-index: 1001;
    }

    .product-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

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

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

    .stat-divider {
        display: none;
    }

    .stats-inner {
        gap: 24px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

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

    .hero-title {
        font-size: 2.4rem;
    }

    .about-badge-1 {
        right: 0;
    }

    .about-badge-2 {
        left: 0;
    }
}

@media (max-width: 480px) {
    .filter-tabs {
        gap: 8px;
    }

    .filter-btn {
        font-size: 0.78rem;
        padding: 8px 14px;
    }

    .card-actions {
        flex-direction: column;
    }

    .card-actions .btn {
        width: 100%;
        justify-content: center;
    }

    .hero-cta-group {
        flex-direction: column;
        align-items: center;
    }
}

/* =============================================
   WELCOME POSTER / SPLASH SCREEN
   ============================================= */

/* Overlay backdrop */
.splash-overlay {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(0, 0, 0, 0.82);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    animation: splashFadeIn 0.5s ease both;
    transition: opacity 0.45s ease, visibility 0.45s ease;
}

.splash-overlay.hiding {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}


/* Top gold/teal band */
.splash-top-band {
    background: linear-gradient(90deg, #42B599, #2a9b80, #42B599);
    background-size: 200% 100%;
    animation: shimmer 3s linear infinite;
    padding: 10px 24px;
    text-align: center;
}

.splash-band-text {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.70rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgb(241, 241, 241);
}

/* Close button */
.splash-close-btn {
    position: absolute;
    top: 52px;
    right: 18px;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: rgba(0, 0, 0, 0.75);
    font-size: 0.95rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    z-index: 10;
    backdrop-filter: blur(4px);
}

.splash-close-btn:hover {
    background: rgba(0, 0, 0, 0.3);
    border-color: var(--teal);
    color: var(--white);
    transform: scale(1.1) rotate(90deg);
}

/* Logo area */
.splash-logo-area {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px 24px 8px;
}

.splash-poster {
    position: relative;
    background: #ffffff;
    border-radius: 24px;
    max-width: 520px;
    width: 100%;
    overflow: hidden;
    overflow-y: auto;
    max-height: 92vh;
    /* box-shadow: 0 32px 80px rgba(0, 0, 0, 0.6), 0 0 0 1px rgba(66, 181, 153, 0.25); */
    animation: splashPosterIn 0.55s cubic-bezier(0.34, 1.56, 0.64, 1) both;
    animation-delay: 0.1s;
    scrollbar-width: none;
}

.splash-poster::-webkit-scrollbar {
    display: none;
}

.splash-logo-img {
    width: 150px;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 4px 16px rgba(66, 181, 153, 0.4));
    animation: logoFloat 3.5s ease-in-out infinite;
}

/* Featured product image in splash */
.splash-product-img-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 0 24px 16px;
}

.splash-product-img-frame {
    position: relative;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(66, 181, 153, 0.15), rgba(41, 45, 82, 0.4));
    border: 2px solid rgba(66, 181, 153, 0.35);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    box-shadow: 0 0 0 6px rgba(66, 181, 153, 0.1), 0 16px 40px rgba(0, 0, 0, 0.4);
    animation: logoFloat 4s ease-in-out infinite;
}

.splash-product-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 8px 20px rgba(0, 0, 0, 0.5));
    display: block;
    margin: 0 auto;
    max-width: 100%;
}

.splash-product-img-glow {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: radial-gradient(circle at 50% 120%, rgba(66, 181, 153, 0.25) 0%, transparent 65%);
    pointer-events: none;
}

.splash-product-label {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.67rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(66, 181, 153, 0.75);
}

/* Decorative divider */
.splash-divider {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 0 40px;
    margin-bottom: 16px;
}

.splash-divider-line {
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0, 0, 0, 0.5), transparent);
}

.splash-divider-gem {
    color: var(--teal);
    font-size: 0.8rem;
    opacity: 0.8;
}

/* Headline area */
.splash-headline {
    text-align: center;
    padding: 0 32px 20px;
}

.splash-eyebrow {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--teal);
    margin-bottom: 6px;
}

.splash-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.2rem, 6vw, 3rem);
    font-weight: 700;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 10px;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.splash-subtitle {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.6);
    letter-spacing: 0.04em;
    font-style: italic;
}

/* Feature badges row */
.splash-badges {
    display: flex;
    justify-content: center;
    gap: 10px;
    padding: 0 24px 24px;
    flex-wrap: wrap;
}

.splash-badge {
    display: flex;
    align-items: center;
    gap: 6px;
    background: rgba(66, 181, 153, 0.12);
    border: 1px solid rgba(66, 181, 153, 0.25);
    border-radius: 50px;
    padding: 6px 14px;
    color: rgba(255, 255, 255, 0.85);
    font-family: 'Montserrat', sans-serif;
    font-size: 0.72rem;
    font-weight: 600;
    white-space: nowrap;
    transition: var(--transition);
}

.splash-badge i {
    color: var(--teal);
    font-size: 0.75rem;
}

.splash-badge:hover {
    background: rgba(66, 181, 153, 0.2);
    border-color: var(--teal);
    transform: translateY(-2px);
}

/* CTA area */
.splash-cta-area {
    text-align: center;
    padding: 0 32px 24px;
}

.splash-cta-text {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.92rem;
    color: rgba(0, 0, 0, 0.5);
    font-weight: 700;
    margin-bottom: 16px;
    line-height: 1.6;
}

.splash-enter-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--teal), #2a9b80);
    color: #ffffff;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    padding: 14px 36px;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 8px 28px rgba(66, 181, 153, 0.4);
}

.splash-enter-btn:hover {
    background: linear-gradient(135deg, #5ecbb0, var(--teal));
    transform: translateY(-3px);
    box-shadow: 0 14px 36px rgba(66, 181, 153, 0.55);

}

/* Bottom band */
.splash-bottom-band {
    background: #5ecbb0;
    border-top: 1px solid rgba(66, 181, 153, 0.2);
    padding: 10px 24px;
    text-align: center;

}

/* Floating orbs */
.splash-orb {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    filter: blur(40px);
    opacity: 0.18;
}

.splash-orb-1 {
    width: 220px;
    height: 220px;
    background: var(--teal);
    top: -60px;
    left: -60px;
    animation: orbFloat1 6s ease-in-out infinite;
}

.splash-orb-2 {
    width: 160px;
    height: 160px;
    background: #8b9fff;
    bottom: 60px;
    right: -40px;
    animation: orbFloat2 8s ease-in-out infinite;
}

.splash-orb-3 {
    width: 100px;
    height: 100px;
    background: var(--teal);
    bottom: 30px;
    left: 30px;
    animation: orbFloat1 5s ease-in-out infinite reverse;
    opacity: 0.1;
}

/* ---- Keyframe Animations ---- */
@keyframes splashFadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes splashPosterIn {
    from {
        opacity: 0;
        transform: scale(0.85) translateY(30px);
    }

    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

@keyframes shimmer {
    0% {
        background-position: 0% 50%;
    }

    100% {
        background-position: 200% 50%;
    }
}

@keyframes logoFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }
}

@keyframes orbFloat1 {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    50% {
        transform: translate(20px, 15px) scale(1.08);
    }
}

@keyframes orbFloat2 {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    50% {
        transform: translate(-15px, 20px) scale(1.05);
    }
}

/* Mobile responsive */
@media (max-width: 480px) {
    .splash-poster {
        border-radius: 18px;
    }

    .splash-title {
        font-size: 2rem;
    }

    .splash-badges {
        gap: 8px;
    }

    .splash-badge {
        font-size: 0.67rem;
        padding: 5px 10px;
    }

    .splash-enter-btn {
        padding: 12px 28px;
        font-size: 0.85rem;
    }
}

/* ===== GOOGLE REVIEW CAROUSEL ===== */
.testimonials-section {
    padding: 100px 0;
    background: var(--light);
}

/* Top bar with "Write a Review" */
.reviews-top-bar {
    display: flex;
    justify-content: center;
    margin-bottom: 24px;
}

.btn-write-review {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #1a73e8;
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 0.88rem;
    padding: 12px 24px;
    border-radius: var(--radius-pill);
    letter-spacing: 0.02em;
    transition: var(--transition);
    box-shadow: 0 4px 18px rgba(26, 115, 232, 0.3);
}

.btn-write-review:hover {
    background: #1557b0;
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(26, 115, 232, 0.4);
    color: #fff;
}

/* Google Business Summary Bar */
.google-summary-bar {
    display: flex;
    align-items: center;
    gap: 20px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 18px 28px;
    margin-bottom: 40px;
    box-shadow: var(--shadow-sm);
    max-width: 480px;
}

.gsb-maps-img {
    width: 52px;
    height: 52px;
    object-fit: contain;
    border-radius: 10px;
}

.gsb-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.gsb-name {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    color: var(--navy);
}

.gsb-stars {
    display: flex;
    gap: 3px;
    color: #FBBC05;
    font-size: 1rem;
}

.gsb-count {
    font-size: 0.78rem;
    color: var(--text-muted);
    font-weight: 500;
}

/* Carousel wrapper */
.reviews-carousel-wrap {
    display: flex;
    align-items: center;
    gap: 16px;
    position: relative;
}

/* Viewport — clips everything outside */
.reviews-carousel {
    overflow: hidden;
    flex: 1;
    border-radius: var(--radius);
    /* give it a fixed height so the box stays uniform */
    min-height: 260px;
}

/* Track — width: 100% anchors it to the carousel viewport.
   This makes translateX(-100%) = exactly one card width. */
.reviews-track {
    display: flex;
    flex-wrap: nowrap;
    width: 100%;
    /* KEY: anchors own width to carousel, so % translate = one card */
    transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}

/* Each review card — 100% of track = 100% of carousel viewport */
.testimonial-card.google-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 26px;
    box-shadow: var(--shadow-sm);
    min-width: 100%;
    /* 100% of track = one full carousel width */
    width: 100%;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
    box-sizing: border-box;
}

/* Reviewer header row */
.gc-header {
    display: flex;
    align-items: center;
    gap: 14px;
}

.gc-avatar {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
    color: #fff;
    flex-shrink: 0;
    font-family: 'Poppins', sans-serif;
}

.gc-meta {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.gc-name {
    font-size: 0.95rem;
    color: var(--navy);
    font-family: 'Poppins', sans-serif;
    display: flex;
    align-items: center;
    gap: 6px;
}

.gc-verified {
    color: #1a73e8;
    font-size: 0.8rem;
}

.gc-date {
    font-size: 0.78rem;
    color: var(--text-muted);
}

/* Google G logo */
.gc-google-logo {
    display: flex;
    align-items: center;
}

/* Stars */
.gc-stars {
    display: flex;
    gap: 3px;
    color: #FBBC05;
    font-size: 1.05rem;
}

/* Review text */
.gc-text {
    font-size: 0.92rem;
    color: var(--text);
    line-height: 1.75;
    flex: 1;
    font-style: italic;
}

/* Occupation tag */
.gc-occupation {
    font-size: 0.78rem;
    color: var(--text-muted);
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

/* Navigation arrows */
.review-nav-btn {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    border: 2px solid var(--border);
    background: #fff;
    color: var(--navy);
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.review-nav-btn:hover {
    background: var(--teal);
    border-color: var(--teal);
    color: #fff;
    box-shadow: 0 4px 18px rgba(66, 181, 153, 0.35);
}

.review-nav-btn:disabled {
    opacity: 0.35;
    cursor: not-allowed;
}

.review-nav-btn:disabled:hover {
    background: #fff;
    border-color: var(--border);
    color: var(--navy);
    box-shadow: var(--shadow-sm);
}

/* Dot indicators */
.review-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 28px;
}

.review-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--border);
    cursor: pointer;
    transition: var(--transition);
    border: none;
    padding: 0;
}

.review-dot.active {
    background: var(--teal);
    transform: scale(1.35);
}



/* HIDE ICONS ON DESKTOP */
/* .nav-link i {
    display: none;
} */
.nav-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

/* SHOW ICONS ONLY ON MOBILE */
@media (max-width: 768px) {

    .nav-link {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 14px;
        font-size: 2rem;
    }

    .nav-link i {
        display: inline-block;
        font-size: 1.6rem;
        color: var(--navy);
    }
}












/* =============================================
   MOBILE RESPONSIVE STYLES
   ============================================= */
@media (max-width: 992px) {

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

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

    .footer-inner {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .hero-title {
        font-size: clamp(2.2rem, 5vw, 4rem);
    }

    .stats-inner {
        justify-content: center;
        gap: 30px;
    }
}

@media (max-width: 768px) {

    /* Header & Navigation */
    .menu-toggle {
        display: flex;
        z-index: 1001;
    }

    .main-nav {
        position: fixed;
        top: 0;
        right: 0;
        transform: translateX(100%);
        width: 100%;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 30px;
        transition: transform 0.4s ease;
        z-index: 1000;
        box-shadow: -5px 0 30px rgba(0, 0, 0, 0.1);
        overscroll-behavior: contain;
    }

    .main-nav.open {
        transform: translateX(0);
    }

    .nav-link {
        font-size: 1.5rem;
    }

    /* Grids & Layouts */
    .product-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .footer-inner {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-brand,
    .footer-links,
    .footer-contact {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .footer-socials {
        justify-content: center;
    }

    .hero {
        padding: 120px 5% 60px;
    }

    .products-section,
    .about-section,
    .testimonials-section,
    .contact-section {
        padding: 60px 0;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .about-visual-box {
        height: 350px;
    }

    .stat-divider {
        display: none;
    }

    .stats-inner {
        /* flex-direction: column; */
        gap: 20px;
        margin: 0 auto;
        display: flex;
        align-items: center;
        justify-content: space-around;
        gap: 20px;
        flex-wrap: wrap;
    }

    .contact-details-card {
        padding: 30px 20px;
    }

    /* Modal responsiveness */
    .modal-box {
        width: 95%;
        max-height: 90vh;
        overflow-y: auto;
        margin: 0;
    }

    .modal-content-inner {
        grid-template-columns: 1fr;
    }

    .modal-img-area {
        height: 250px;
        min-height: 250px;
    }

    .modal-details {
        padding: 24px 20px;
    }
}

@media (max-width: 600px) {
    .reviews-top-bar {
        justify-content: center;
    }

    .google-summary-bar {
        max-width: 100%;
    }

    .review-nav-btn {
        width: 38px;
        height: 38px;
        font-size: 0.85rem;
    }

    .testimonial-card.google-card {
        padding: 20px;
    }

    .top-bar {
        justify-content: center;
        flex-direction: column;
        text-align: center;
        gap: 8px;
    }

    .filter-tabs {
        gap: 8px;
    }

    .filter-btn {
        padding: 8px 16px;
        font-size: 0.8rem;
    }

    .contact-details-card {
        padding: 30px 10px;
    }

    .card-img {
        height: 250px;
    }

    .card-actions {
        flex-direction: column;
    }

    .card-actions .btn {
        width: 100%;
        justify-content: center;
    }
}






@media (max-width: 350px) {

    .contact-details-card {
        padding: 30px 20px;
        margin-left: -10px;

    }

    .contact-detail-item a,
    .contact-detail-item span {
        font-size: 0.75rem;
    }
}