/* ============================================================
   INFINITY CUSTOM FLOORING INC. - MAIN STYLESHEET
   Clean & Modern Theme - White/Light Gray + Blue Accents
   ============================================================ */

/* ==================== CSS VARIABLES ==================== */
:root {
    /* Primary Colors */
    --primary: #1a73e8;
    --primary-dark: #1557b0;
    --primary-light: #4a90e2;
    --primary-bg: #e8f0fe;

    /* Neutral Colors */
    --dark: #1a1a2e;
    --dark-alt: #16213e;
    --gray-900: #212529;
    --gray-800: #343a40;
    --gray-700: #495057;
    --gray-600: #6c757d;
    --gray-500: #adb5bd;
    --gray-400: #ced4da;
    --gray-300: #dee2e6;
    --gray-200: #e9ecef;
    --gray-100: #f8f9fa;
    --white: #ffffff;

    /* Accent */
    --accent: #ff6b35;
    --accent-dark: #e55a2b;
    --success: #28a745;

    /* Typography */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-heading: 'Playfair Display', Georgia, serif;

    /* Spacing */
    --section-padding: 100px 0;
    --section-padding-sm: 60px 0;
    --container-max: 1200px;

    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
    --shadow-md: 0 4px 20px rgba(0,0,0,0.08);
    --shadow-lg: 0 8px 40px rgba(0,0,0,0.12);
    --shadow-xl: 0 20px 60px rgba(0,0,0,0.15);

    /* Border Radius */
    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 16px;
    --radius-xl: 24px;

    /* Transitions */
    --transition: all 0.3s ease;
    --transition-slow: all 0.5s ease;
}

/* ==================== RESET & BASE ==================== */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: var(--font-primary);
    font-size: 16px;
    line-height: 1.7;
    color: var(--gray-700);
    background: var(--white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

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

a:hover {
    color: var(--primary-dark);
}

ul {
    list-style: none;
}

h1, h2, h3, h4, h5, h6 {
    color: var(--dark);
    line-height: 1.3;
    font-weight: 700;
}

/* ==================== UTILITY CLASSES ==================== */
.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 20px;
}

.text-center { text-align: center; }
.text-accent { color: var(--primary); }

.section {
    padding: var(--section-padding);
    position: relative;
}

.section-sm {
    padding: var(--section-padding-sm);
}

.section-label {
    display: inline-block;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--primary);
    background: var(--primary-bg);
    padding: 6px 18px;
    border-radius: 50px;
    margin-bottom: 16px;
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(28px, 4vw, 44px);
    font-weight: 800;
    margin-bottom: 18px;
    line-height: 1.2;
}

.section-desc {
    font-size: 17px;
    color: var(--gray-600);
    max-width: 620px;
    margin: 0 auto 50px;
    line-height: 1.8;
}

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

/* ==================== BUTTONS ==================== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    font-size: 15px;
    font-weight: 600;
    border-radius: var(--radius-sm);
    border: 2px solid transparent;
    cursor: pointer;
    transition: var(--transition);
    font-family: var(--font-primary);
    text-align: center;
    white-space: nowrap;
}

.btn i {
    font-size: 14px;
    transition: transform 0.3s ease;
}

.btn:hover i {
    transform: translateX(4px);
}

.btn-primary {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

.btn-primary:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(26, 115, 232, 0.35);
}

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

.btn-outline:hover {
    background: var(--white);
    color: var(--dark);
    border-color: var(--white);
}

.btn-outline-light {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
}

.btn-outline-light:hover {
    background: var(--white);
    color: var(--primary);
    border-color: var(--white);
}

.btn-white {
    background: var(--white);
    color: var(--primary);
    border-color: var(--white);
}

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

.btn-lg {
    padding: 16px 38px;
    font-size: 16px;
}

.btn-sm {
    padding: 10px 22px;
    font-size: 13px;
}

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

.btn-nav {
    background: var(--primary);
    color: var(--white) !important;
    padding: 10px 24px !important;
    border-radius: var(--radius-sm) !important;
}

.btn-nav:hover {
    background: var(--primary-dark);
    color: var(--white) !important;
    transform: translateY(-2px);
}

/* ==================== HEADER ==================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: var(--transition);
}

.header-top {
    background: var(--dark);
    color: var(--gray-400);
    font-size: 13px;
    padding: 8px 0;
    transition: var(--transition);
}

.header-top-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-top-left {
    display: flex;
    align-items: center;
    gap: 8px;
}

.top-contact {
    color: var(--gray-400);
    display: flex;
    align-items: center;
    gap: 6px;
}

.top-contact:hover {
    color: var(--white);
}

.top-contact i {
    color: var(--primary-light);
    font-size: 11px;
}

.top-divider {
    color: var(--gray-600);
}

.top-hours {
    display: flex;
    align-items: center;
    gap: 6px;
}

.top-hours i {
    color: var(--primary-light);
    font-size: 11px;
}

.header-top-right a {
    color: var(--gray-400);
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: var(--transition);
}

.header-top-right a:hover {
    color: var(--white);
    background: var(--primary);
}

.navbar {
    background: var(--white);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 0;
}

.logo {
    display: flex;
    align-items: center;
    color: var(--dark);
}

.logo:hover {
    color: var(--dark);
}

.logo-img {
    height: 56px;
    width: auto;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 6px;
}

.nav-link {
    padding: 8px 16px;
    font-size: 14px;
    font-weight: 500;
    color: var(--gray-700);
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.hamburger span {
    width: 26px;
    height: 2.5px;
    background: var(--dark);
    border-radius: 2px;
    transition: var(--transition);
}

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

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

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

/* Header Scrolled State */
.header.scrolled .header-top {
    margin-top: -50px;
}

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

/* ==================== HERO SECTION ==================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-slider {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.hero-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.5s ease;
}

.hero-slide.active {
    opacity: 1;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.85) 0%, rgba(22, 33, 62, 0.7) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    color: var(--white);
    padding-top: 120px;
}

.hero-badge {
    display: inline-block;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    padding: 8px 24px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 24px;
    animation: fadeInDown 0.8s ease;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(40px, 6vw, 72px);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 24px;
    color: var(--white);
}

.hero-title-line {
    display: block;
}

.hero-title-accent {
    color: var(--primary-light);
}

.hero-subtitle {
    font-size: clamp(16px, 2vw, 20px);
    color: rgba(255,255,255,0.8);
    max-width: 600px;
    margin-bottom: 36px;
    line-height: 1.7;
    animation: fadeInUp 0.8s ease 0.2s both;
}

.hero-cta {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 60px;
    animation: fadeInUp 0.8s ease 0.4s both;
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: 40px;
    padding-top: 40px;
    border-top: 1px solid rgba(255,255,255,0.15);
    animation: fadeInUp 0.8s ease 0.6s both;
}

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

.hero-stat-number {
    font-size: 36px;
    font-weight: 800;
    color: var(--white);
    display: inline;
}

.hero-stat-plus,
.hero-stat-percent {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-light);
}

.hero-stat-label {
    display: block;
    font-size: 13px;
    color: rgba(255,255,255,0.6);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 4px;
}

.hero-stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(255,255,255,0.2);
}

/* Scroll indicator */
.hero-scroll {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.mouse {
    width: 26px;
    height: 40px;
    border: 2px solid rgba(255,255,255,0.5);
    border-radius: 13px;
    display: flex;
    justify-content: center;
    padding-top: 8px;
}

.mouse-wheel {
    width: 3px;
    height: 8px;
    background: var(--white);
    border-radius: 2px;
    animation: scrollWheel 2s ease infinite;
}

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

/* ==================== ABOUT SECTION ==================== */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-images {
    position: relative;
}

.about-img-main {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.about-img-main img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.about-img-accent {
    position: absolute;
    bottom: -30px;
    right: -30px;
    width: 200px;
    height: 200px;
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 6px solid var(--white);
    box-shadow: var(--shadow-lg);
}

.about-img-accent img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-experience-badge {
    position: absolute;
    top: 30px;
    left: -20px;
    background: var(--primary);
    color: var(--white);
    padding: 20px;
    border-radius: var(--radius-md);
    text-align: center;
    box-shadow: var(--shadow-lg);
}

.badge-number {
    display: block;
    font-size: 36px;
    font-weight: 900;
    line-height: 1;
}

.badge-text {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.9;
    line-height: 1.4;
}

.about-lead {
    font-size: 18px;
    color: var(--gray-800);
    font-weight: 500;
    margin-bottom: 16px;
}

.about-content p {
    margin-bottom: 24px;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin: 30px 0;
}

.about-feature {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.about-feature-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    background: var(--primary-bg);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 18px;
}

.about-feature h4 {
    font-size: 16px;
    margin-bottom: 4px;
}

.about-feature p {
    font-size: 14px;
    color: var(--gray-600);
    margin-bottom: 0;
}

/* ==================== SERVICES SECTION ==================== */
.services {
    background: var(--gray-100);
}

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

.service-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

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

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

.service-card:hover .service-img img {
    transform: scale(1.08);
}

.service-img-overlay {
    position: absolute;
    inset: 0;
    background: rgba(26, 115, 232, 0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.service-card:hover .service-img-overlay {
    opacity: 1;
}

.service-body {
    padding: 28px;
}

.service-icon {
    width: 56px;
    height: 56px;
    background: var(--primary-bg);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 22px;
    margin-bottom: 18px;
    margin-top: -48px;
    position: relative;
    z-index: 2;
    box-shadow: var(--shadow-sm);
}

.service-body h3 {
    font-size: 20px;
    margin-bottom: 12px;
}

.service-body > p {
    font-size: 14px;
    color: var(--gray-600);
    margin-bottom: 16px;
    line-height: 1.7;
}

.service-features {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 20px;
}

.service-features li {
    font-size: 13px;
    color: var(--gray-700);
    display: flex;
    align-items: center;
    gap: 8px;
}

.service-features li i {
    color: var(--success);
    font-size: 11px;
}

.service-link {
    font-size: 14px;
    font-weight: 600;
    color: var(--primary);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.service-link:hover {
    gap: 12px;
}

.service-link i {
    font-size: 12px;
    transition: var(--transition);
}

/* ==================== CTA BANNER ==================== */
.cta-banner {
    position: relative;
    padding: 100px 0;
    overflow: hidden;
}

.cta-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.cta-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(26, 115, 232, 0.9) 0%, rgba(22, 33, 62, 0.9) 100%);
}

.cta-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--white);
}

.cta-content h2 {
    font-family: var(--font-heading);
    font-size: clamp(28px, 4vw, 42px);
    color: var(--white);
    margin-bottom: 18px;
}

.cta-content p {
    font-size: 18px;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto 36px;
}

.cta-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ==================== GALLERY SECTION ==================== */
.gallery-filters {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.gallery-filter {
    padding: 10px 24px;
    font-size: 14px;
    font-weight: 500;
    background: var(--white);
    border: 2px solid var(--gray-300);
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition);
    font-family: var(--font-primary);
    color: var(--gray-700);
}

.gallery-filter:hover,
.gallery-filter.active {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--white);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.gallery-item {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    aspect-ratio: 1;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(26, 26, 46, 0.9) 0%, transparent 60%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 24px;
    opacity: 0;
    transition: var(--transition);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-category {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--primary-light);
    margin-bottom: 4px;
}

.gallery-overlay h4 {
    color: var(--white);
    font-size: 16px;
}

.gallery-item.hidden {
    display: none;
}

/* ==================== PROCESS SECTION ==================== */
.process {
    background: var(--gray-100);
}

.process-grid {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 0;
}

.process-step {
    text-align: center;
    padding: 40px 30px;
    position: relative;
    flex: 1;
    max-width: 280px;
}

.process-number {
    font-size: 48px;
    font-weight: 900;
    color: var(--primary-bg);
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 0;
    line-height: 1;
}

.process-icon {
    width: 72px;
    height: 72px;
    background: var(--white);
    border: 3px solid var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--primary);
    font-size: 24px;
    position: relative;
    z-index: 1;
    transition: var(--transition);
}

.process-step:hover .process-icon {
    background: var(--primary);
    color: var(--white);
}

.process-step h3 {
    font-size: 18px;
    margin-bottom: 12px;
}

.process-step p {
    font-size: 14px;
    color: var(--gray-600);
    line-height: 1.7;
}

.process-connector {
    width: 60px;
    height: 2px;
    background: var(--gray-300);
    margin-top: 80px;
    flex-shrink: 0;
    position: relative;
}

.process-connector::after {
    content: '';
    position: absolute;
    right: -4px;
    top: -3px;
    width: 8px;
    height: 8px;
    border-right: 2px solid var(--primary);
    border-top: 2px solid var(--primary);
    transform: rotate(45deg);
}

/* ==================== COUNTERS SECTION ==================== */
.counters {
    position: relative;
    padding: 80px 0;
    overflow: hidden;
}

.counters-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.counters-overlay {
    position: absolute;
    inset: 0;
    background: rgba(26, 26, 46, 0.88);
}

.counters-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.counter-item {
    text-align: center;
    color: var(--white);
}

.counter-icon {
    font-size: 36px;
    color: var(--primary-light);
    margin-bottom: 12px;
}

.counter-number {
    font-size: 48px;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 8px;
}

.counter-label {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    opacity: 0.7;
}

/* ==================== TESTIMONIALS SECTION ==================== */
/* ══════════════════════════════════════════════
   REVIEWS SECTION
══════════════════════════════════════════════ */
.reviews-section {
    background: #f8faff;
}

/* Three-column layout */
.reviews-layout {
    display: grid;
    grid-template-columns: 1fr 340px 1fr;
    gap: 2rem;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto;
}

/* ── Left trust panel ── */
.reviews-trust-panel {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.reviews-trust-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background: #fff;
    border-radius: 12px;
    padding: 1.1rem 1.25rem;
    box-shadow: 0 2px 12px rgba(26,115,232,0.06);
    border: 1px solid #e8eef8;
}

.reviews-trust-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #1a73e8, #1557b0);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1rem;
    flex-shrink: 0;
}

.reviews-trust-item strong {
    display: block;
    color: #1a1a2e;
    font-size: 0.95rem;
    margin-bottom: 0.2rem;
}

.reviews-trust-item span {
    display: block;
    color: #666;
    font-size: 0.82rem;
    line-height: 1.5;
}

/* ── Center Facebook card ── */
.reviews-fb-card {
    background: linear-gradient(160deg, #1877f2 0%, #0d5fcc 100%);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    text-align: center;
    color: #fff;
    box-shadow: 0 12px 40px rgba(24,119,242,0.35);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.reviews-fb-logo {
    font-size: 3.5rem;
    line-height: 1;
    opacity: 0.95;
}

.reviews-stars {
    display: flex;
    gap: 0.3rem;
    color: #FFD700;
    font-size: 1.3rem;
}

.reviews-fb-card h3 {
    font-size: 1.35rem;
    font-weight: 700;
    line-height: 1.35;
    color: #fff;
    margin: 0;
}

.reviews-fb-card p {
    font-size: 0.9rem;
    opacity: 0.88;
    line-height: 1.6;
    margin: 0;
}

.btn-fb {
    background: #fff;
    color: #1877f2 !important;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    border-radius: 50px;
    padding: 0.8rem 1.6rem;
    font-size: 0.95rem;
    text-decoration: none;
    transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 4px 16px rgba(0,0,0,0.15);
    width: 100%;
    justify-content: center;
}

.btn-fb:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.2);
}

.reviews-fb-note {
    font-size: 0.75rem;
    opacity: 0.65;
    margin-top: -0.4rem;
}

/* ── Right stats panel ── */
.reviews-stats-panel {
    background: #fff;
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow: 0 2px 20px rgba(26,115,232,0.07);
    border: 1px solid #e8eef8;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
}

.reviews-stat-item {
    text-align: center;
    padding: 1.25rem 1rem;
    width: 100%;
}

.reviews-stat-number {
    font-size: 2.2rem;
    font-weight: 900;
    color: #1a73e8;
    line-height: 1;
    font-family: 'Inter', sans-serif;
}

.reviews-stat-number span {
    font-size: 1.3rem;
    color: #1557b0;
}

.reviews-stat-label {
    font-size: 0.82rem;
    color: #666;
    margin-top: 0.3rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.reviews-stat-divider {
    width: 60%;
    height: 1px;
    background: #e8eef8;
}

/* ── Responsive ── */
@media (max-width: 960px) {
    .reviews-layout {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto auto;
    }
    .reviews-fb-card {
        grid-column: 1 / -1;
        order: -1;
    }
}

@media (max-width: 600px) {
    .reviews-layout {
        grid-template-columns: 1fr;
    }
    .reviews-stats-panel {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
    }
    .reviews-stat-item { width: 45%; }
    .reviews-stat-divider { display: none; }
}

/* ── Legacy testimonials slider (kept for reference) ── */
.testimonials-slider {
    max-width: 700px;
    margin: 0 auto;
    position: relative;
}

.testimonial-track {
    overflow: hidden;
    position: relative;
}

.testimonial-card {
    display: none;
    text-align: center;
    padding: 40px;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.testimonial-card.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

.testimonial-stars {
    color: #fbbf24;
    font-size: 18px;
    margin-bottom: 20px;
    display: flex;
    gap: 4px;
    justify-content: center;
}

.testimonial-text {
    font-size: 17px;
    font-style: italic;
    color: var(--gray-700);
    line-height: 1.8;
    margin-bottom: 24px;
    border: none;
    padding: 0;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 14px;
    justify-content: center;
}

.testimonial-avatar {
    font-size: 42px;
    color: var(--gray-400);
}

.testimonial-name {
    font-weight: 700;
    color: var(--dark);
    font-size: 16px;
}

.testimonial-role {
    font-size: 13px;
    color: var(--gray-600);
}

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

.testimonial-prev,
.testimonial-next {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 2px solid var(--gray-300);
    background: var(--white);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-700);
    transition: var(--transition);
    font-size: 14px;
}

.testimonial-prev:hover,
.testimonial-next:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--white);
}

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

.testimonial-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--gray-300);
    cursor: pointer;
    transition: var(--transition);
    border: none;
}

.testimonial-dot.active {
    background: var(--primary);
    width: 30px;
    border-radius: 5px;
}

/* ==================== WHY CHOOSE US ==================== */
.why-us {
    background: var(--white);
}

.why-us-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.why-us-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-top: 30px;
}

.why-us-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.why-us-item-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    background: var(--primary-bg);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 18px;
}

.why-us-item h4 {
    font-size: 16px;
    margin-bottom: 4px;
}

.why-us-item p {
    font-size: 14px;
    color: var(--gray-600);
}

.why-us-image {
    position: relative;
}

.why-us-image img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    width: 100%;
    height: 550px;
    object-fit: cover;
}

.why-us-badge {
    position: absolute;
    bottom: 30px;
    left: -20px;
    background: var(--primary);
    color: var(--white);
    padding: 20px 24px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: var(--shadow-lg);
}

.why-us-badge-icon {
    font-size: 28px;
    color: #fbbf24;
}

.why-us-badge span {
    font-size: 14px;
    font-weight: 700;
    line-height: 1.3;
}

/* ==================== SERVICE AREAS ==================== */
.service-areas {
    background: var(--gray-100);
}

.areas-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
}

.area-tag {
    background: var(--white);
    padding: 10px 22px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
    color: var(--gray-700);
    box-shadow: var(--shadow-sm);
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}

.area-tag i {
    color: var(--primary);
    font-size: 12px;
}

.area-tag:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-2px);
}

.area-tag:hover i {
    color: var(--white);
}

/* ==================== CONTACT SECTION ==================== */
.contact {
    background: var(--white);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 50px;
    align-items: start;
}

.contact-info-card {
    background: var(--dark);
    color: var(--white);
    padding: 40px;
    border-radius: var(--radius-lg);
    height: 100%;
}

.contact-info-card h3 {
    color: var(--white);
    font-size: 22px;
    margin-bottom: 12px;
}

.contact-info-card > p {
    color: rgba(255,255,255,0.7);
    font-size: 14px;
    margin-bottom: 30px;
}

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

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

.contact-detail-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    background: rgba(255,255,255,0.1);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-light);
    font-size: 16px;
}

.contact-detail-label {
    display: block;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255,255,255,0.5);
    margin-bottom: 2px;
}

.contact-detail a,
.contact-detail span {
    color: var(--white);
    font-size: 15px;
    display: block;
}

.contact-detail a:hover {
    color: var(--primary-light);
}

.contact-social {
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.social-link {
    width: 44px;
    height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    color: var(--white);
    font-size: 16px;
    transition: var(--transition);
}

.social-link:hover {
    background: var(--primary);
    color: var(--white);
}

/* Contact Form */
.contact-form {
    background: var(--white);
    padding: 40px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

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

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

.form-group.full-width {
    margin-bottom: 20px;
}

.form-group label {
    font-size: 13px;
    font-weight: 600;
    color: var(--gray-800);
    margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 16px;
    border: 2px solid var(--gray-300);
    border-radius: var(--radius-sm);
    font-size: 15px;
    font-family: var(--font-primary);
    color: var(--gray-800);
    transition: var(--transition);
    background: var(--white);
    width: 100%;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(26, 115, 232, 0.15);
}

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

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-disclaimer {
    text-align: center;
    font-size: 12px;
    color: var(--gray-500);
    margin-top: 16px;
}

/* Honeypot field — visually hidden but NOT display:none (bots skip those) */
.hp-field {
    position: absolute;
    left: -9999px;
    top: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
}

/* ==================== FAQ SECTION ==================== */
.faq {
    background: var(--white);
}

.faq-grid {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: var(--transition);
}

.faq-item.active {
    border-color: var(--primary);
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 24px;
    background: var(--white);
    border: none;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    color: var(--dark);
    font-family: var(--font-primary);
    text-align: left;
    transition: var(--transition);
    gap: 16px;
}

.faq-question:hover {
    color: var(--primary);
}

.faq-question i {
    font-size: 12px;
    color: var(--gray-500);
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
    color: var(--primary);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 300px;
}

.faq-answer p {
    padding: 0 24px 18px;
    font-size: 15px;
    color: var(--gray-600);
    line-height: 1.8;
}

/* ==================== FOOTER ==================== */
.footer {
    background: var(--dark);
    color: var(--gray-400);
    padding-top: 80px;
}

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

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

.footer-logo-img {
    height: 50px;
    width: auto;
    filter: brightness(0) invert(1);
}

.footer-about p {
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 20px;
}

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

.footer-social a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.08);
    border-radius: 50%;
    color: var(--gray-400);
    transition: var(--transition);
}

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

.footer-links h4,
.footer-services h4,
.footer-contact h4 {
    color: var(--white);
    font-size: 16px;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 12px;
}

.footer-links h4::after,
.footer-services h4::after,
.footer-contact h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--primary);
}

.footer-links li,
.footer-services li {
    margin-bottom: 10px;
}

.footer-links a,
.footer-services a {
    color: var(--gray-400);
    font-size: 14px;
    transition: var(--transition);
}

.footer-links a:hover,
.footer-services a:hover {
    color: var(--white);
    padding-left: 4px;
}

.footer-contact li {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    margin-bottom: 14px;
    font-size: 14px;
}

.footer-contact li i {
    color: var(--primary-light);
    margin-top: 3px;
    width: 16px;
}

.footer-contact li a {
    color: var(--gray-400);
}

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

.footer-bottom {
    padding: 20px 0;
}

.footer-bottom-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    font-size: 13px;
}

.footer-bottom-links {
    display: flex;
    gap: 20px;
}

.footer-bottom-links a {
    font-size: 13px;
    color: var(--gray-400);
}

.footer-bottom-links a:hover {
    color: var(--white);
}

/* ==================== FLOATING CTA ==================== */
.floating-cta {
    position: fixed;
    bottom: 30px;
    left: 30px;
    z-index: 999;
}

.floating-phone {
    width: 56px;
    height: 56px;
    background: var(--success);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 22px;
    box-shadow: 0 4px 20px rgba(40, 167, 69, 0.4);
    transition: var(--transition);
    animation: pulse 2s ease infinite;
}

.floating-phone:hover {
    background: #218838;
    color: var(--white);
    transform: scale(1.1);
}

@keyframes pulse {
    0%, 100% { box-shadow: 0 4px 20px rgba(40, 167, 69, 0.4); }
    50% { box-shadow: 0 4px 30px rgba(40, 167, 69, 0.6), 0 0 0 12px rgba(40, 167, 69, 0.15); }
}

/* ==================== BACK TO TOP ==================== */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 48px;
    height: 48px;
    background: var(--primary);
    color: var(--white);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    z-index: 999;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: var(--primary-dark);
    transform: translateY(-4px);
}

/* ==================== ANIMATIONS ==================== */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

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

@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-30px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Scroll Animations */
[data-animate] {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

[data-animate="fade-right"] {
    transform: translateX(-40px);
}

[data-animate="fade-left"] {
    transform: translateX(40px);
}

[data-animate].animated {
    opacity: 1;
    transform: translate(0, 0);
}

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

/* Tablets */
@media (max-width: 1024px) {
    .about-grid,
    .why-us-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .about-images {
        max-width: 500px;
        margin: 0 auto;
    }

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

    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }

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

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

    .process-grid {
        flex-wrap: wrap;
        gap: 20px;
        justify-content: center;
    }

    .process-connector {
        display: none;
    }

    .process-step {
        flex: 0 1 calc(50% - 20px);
    }
}

/* Mobile */
@media (max-width: 768px) {
    .header-top {
        display: none;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 320px;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        align-items: flex-start;
        padding: 80px 30px 30px;
        box-shadow: var(--shadow-xl);
        transition: right 0.4s ease;
        z-index: 1001;
        gap: 0;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-link {
        width: 100%;
        padding: 14px 0;
        font-size: 16px;
        border-bottom: 1px solid var(--gray-200);
    }

    .btn-nav {
        width: 100%;
        text-align: center;
        margin-top: 16px;
        justify-content: center;
    }

    .hamburger {
        display: flex;
        z-index: 1002;
    }

    .hero-content {
        padding-top: 100px;
    }

    .hero-stats {
        flex-direction: column;
        gap: 20px;
    }

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

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

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

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

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

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

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

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

    .footer-bottom-inner {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }

    .process-step {
        flex: 0 1 100%;
    }

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

    .areas-grid {
        gap: 8px;
    }

    .area-tag {
        padding: 8px 16px;
        font-size: 13px;
    }

    .section {
        padding: 60px 0;
    }

    .section-title {
        font-size: 28px;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .hero-title {
        font-size: 32px;
    }

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

    .gallery-filters {
        gap: 6px;
    }

    .gallery-filter {
        padding: 8px 16px;
        font-size: 12px;
    }

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

    .counter-number {
        font-size: 36px;
    }

    .about-img-accent {
        width: 150px;
        height: 150px;
        right: -10px;
        bottom: -20px;
    }

    .about-experience-badge {
        left: -10px;
    }

    .contact-form {
        padding: 24px;
    }

    .contact-info-card {
        padding: 30px;
    }
}

/* Mobile Nav Overlay */
.nav-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.nav-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* ==================== PRINT STYLES ==================== */
@media print {
    .header,
    .hero-slider,
    .floating-cta,
    .back-to-top,
    .hero-scroll {
        display: none;
    }

    body {
        font-size: 12pt;
        color: #000;
    }

    .section {
        padding: 20px 0;
    }
}