/* ============================================
   CHAMBERS COUNTY CHOPPERS SALON
   Bold, Fun, Trendy Salon Website
   Color Palette: Cobalt Blue, Red, White, Teal
   ============================================ */

/* ===== CSS VARIABLES ===== */
:root {
    /* Primary — Bold Blue (from their logo/brand) */
    --blue: #1e56a0;
    --blue-light: #5b8fd4;
    --blue-dark: #133c73;
    --blue-glow: rgba(30, 86, 160, 0.12);
    --blue-vivid: #2979ff;
    
    /* Accent — Red (from their logo) */
    --red: #d32f2f;
    --red-light: #ef5350;
    --red-dark: #b71c1c;
    
    /* Teal — from their interior wall */
    --teal: #0097a7;
    --teal-light: #4dd0e1;
    --teal-dark: #006978;
    
    /* Neutrals */
    --black: #1a1a2e;
    --charcoal: #2d2d3f;
    --dark-gray: #3f3f5a;
    --gray: #6b6b8a;
    --light-gray: #b0b0c0;
    --silver: #e2e2ec;
    --off-white: #f4f5f9;
    --ice: #eef2f9;
    --white: #ffffff;
    
    /* Gradients */
    --gradient-blue: linear-gradient(135deg, var(--blue) 0%, var(--blue-vivid) 100%);
    --gradient-red: linear-gradient(135deg, var(--red) 0%, var(--red-light) 100%);
    --gradient-dark: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    
    /* Typography */
    --font-heading: 'Poppins', 'Helvetica Neue', sans-serif;
    --font-body: 'Montserrat', 'Helvetica Neue', sans-serif;
    --font-accent: 'Poppins', 'Helvetica Neue', sans-serif;
    
    /* Spacing */
    --section-padding: 100px 0;
    --container-width: 1200px;
    
    /* Transitions */
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    
    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
    --shadow-md: 0 8px 30px rgba(0,0,0,0.08);
    --shadow-lg: 0 20px 60px rgba(0,0,0,0.12);
    --shadow-xl: 0 30px 80px rgba(0,0,0,0.15);
    --shadow-blue: 0 10px 40px rgba(30, 86, 160, 0.35);
    --shadow-red: 0 10px 40px rgba(211, 47, 47, 0.25);
    
    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 50px;
}

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

html,
body {
    overflow-x: hidden;
    width: 100%;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-body);
    font-weight: 400;
    line-height: 1.7;
    color: var(--dark-gray);
    background-color: var(--white);
    position: relative;
}

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

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

ul {
    list-style: none;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
}

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

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--black);
    line-height: 1.2;
    font-weight: 700;
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
}

h3 {
    font-size: clamp(1.2rem, 2vw, 1.4rem);
}

em {
    font-style: normal;
    color: var(--blue);
}

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

.section-title {
    margin-bottom: 8px;
}

.section-header {
    text-align: center;
    max-width: 650px;
    margin: 0 auto 60px;
}

.section-desc {
    color: var(--gray);
    font-size: 1.05rem;
    margin-top: 16px;
    line-height: 1.8;
}

.title-line {
    width: 60px;
    height: 4px;
    background: var(--gradient-blue);
    border-radius: 2px;
    margin-top: 16px;
}

.title-line.center {
    margin-left: auto;
    margin-right: auto;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    border-radius: var(--radius-full);
    border: 2px solid transparent;
    cursor: pointer;
    transition: var(--transition);
    text-transform: uppercase;
    white-space: nowrap;
}

.btn i {
    font-size: 0.85rem;
}

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

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-blue);
    background: var(--blue-dark);
    border-color: var(--blue-dark);
}

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

.btn-red:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-red);
}

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

.btn-outline:hover {
    background: var(--white);
    color: var(--blue-dark);
    transform: translateY(-2px);
}

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

.btn-outline-light:hover {
    background: var(--white);
    color: var(--blue-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-lg {
    padding: 18px 40px;
    font-size: 1rem;
}

/* ===== PRELOADER ===== */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--black);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

#preloader.loaded {
    opacity: 0;
    visibility: hidden;
}

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

.scissors-loader {
    font-size: 2.5rem;
    color: var(--blue-vivid);
    margin-bottom: 20px;
    animation: snip 1.2s ease-in-out infinite;
}

@keyframes snip {
    0%, 100% { transform: rotate(0deg) scale(1); opacity: 1; }
    50% { transform: rotate(20deg) scale(1.1); opacity: 0.7; }
}

.preloader-text {
    display: block;
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: var(--white);
    letter-spacing: 4px;
    text-transform: uppercase;
    font-weight: 700;
    opacity: 0.9;
    margin-bottom: 24px;
}

.preloader-bar {
    width: 200px;
    height: 4px;
    background: rgba(255,255,255,0.1);
    border-radius: 4px;
    overflow: hidden;
    margin: 0 auto;
}

.preloader-bar-fill {
    width: 0%;
    height: 100%;
    background: var(--gradient-blue);
    border-radius: 4px;
    animation: loadBar 1.8s ease-in-out forwards;
}

@keyframes loadBar {
    0% { width: 0%; }
    30% { width: 40%; }
    60% { width: 70%; }
    100% { width: 100%; }
}

/* ===== NAVIGATION ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    transition: var(--transition-slow);
    background: transparent;
}

.navbar.scrolled {
    background: rgba(26, 26, 46, 0.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 12px 0;
    box-shadow: 0 4px 30px rgba(0,0,0,0.2);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--white);
    letter-spacing: 0.5px;
}

.logo-sub {
    font-family: var(--font-body);
    font-size: 0.6rem;
    font-weight: 700;
    color: var(--blue-light);
    letter-spacing: 5px;
    text-transform: uppercase;
    margin-top: 2px;
}

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

.nav-link {
    font-size: 0.82rem;
    font-weight: 600;
    color: rgba(255,255,255,0.85);
    padding: 8px 14px;
    border-radius: var(--radius-full);
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: var(--transition);
}

.nav-link:hover,
.nav-link.active {
    color: var(--white);
    background: rgba(255,255,255,0.1);
}

.nav-cta {
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--white);
    padding: 10px 24px;
    background: var(--gradient-red);
    border-radius: var(--radius-full);
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-left: 8px;
}

.nav-cta:hover {
    transform: translateY(-1px);
    box-shadow: var(--shadow-red);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.nav-phone {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--white);
    font-size: 0.85rem;
    font-weight: 600;
}

.nav-phone i {
    color: var(--blue-light);
}

.nav-phone:hover {
    color: var(--blue-light);
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    z-index: 1001;
}

.hamburger .bar {
    width: 26px;
    height: 3px;
    background: var(--white);
    border-radius: 3px;
    transition: var(--transition);
}

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

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

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

/* ===== HERO SECTION ===== */
.hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: var(--black);
}

.hero-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 70% 60% at 50% 50%, rgba(30, 86, 160, 0.12) 0%, transparent 70%),
        linear-gradient(160deg, #16213e 0%, #1a1a2e 40%, #0f3460 100%);
    z-index: 0;
}

/* Diagonal stripe accents — contained within hero overflow:hidden */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: repeating-linear-gradient(
        -45deg,
        transparent,
        transparent 80px,
        rgba(30, 86, 160, 0.04) 80px,
        rgba(30, 86, 160, 0.04) 82px
    );
    z-index: 1;
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 80px,
        rgba(211, 47, 47, 0.03) 80px,
        rgba(211, 47, 47, 0.03) 82px
    );
    z-index: 1;
    pointer-events: none;
}

.hero-bottom-fade {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 120px;
    background: linear-gradient(to bottom, transparent, var(--black));
    z-index: 1;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 0 24px;
    max-width: 900px;
}

/* Scissors ornament */
.hero-ornament-top {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 28px;
}

.ornament-line {
    display: block;
    width: 50px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--blue-light), transparent);
}

.hero-ornament-top i {
    color: var(--blue-light);
    font-size: 1.2rem;
    opacity: 0.7;
}

.hero-title-line {
    display: block;
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 6.5vw, 4.8rem);
    font-weight: 900;
    color: var(--white);
    letter-spacing: -1px;
    line-height: 1.05;
    text-transform: uppercase;
}

.hero-title-accent {
    display: block;
    font-family: var(--font-heading);
    font-size: clamp(1.6rem, 4vw, 2.8rem);
    font-weight: 700;
    color: var(--blue-light);
    letter-spacing: 8px;
    text-transform: uppercase;
    margin-top: 4px;
}

/* Decorative divider */
.hero-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin: 24px 0 20px;
}

.divider-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--blue);
    opacity: 0.5;
}

.divider-dot:nth-child(2) {
    width: 8px;
    height: 8px;
    background: var(--red);
    opacity: 0.7;
}

.hero-subtitle {
    font-size: clamp(0.85rem, 1.8vw, 1.05rem);
    color: rgba(255,255,255,0.5);
    letter-spacing: 4px;
    text-transform: uppercase;
    font-weight: 500;
    margin-bottom: 20px;
}

.hero-walkins {
    display: inline-block;
    padding: 8px 24px;
    background: var(--gradient-red);
    color: var(--white);
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    border-radius: var(--radius-full);
    margin-bottom: 24px;
}

.hero-rating {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    margin-bottom: 36px;
}

.hero-stars {
    display: flex;
    gap: 4px;
    color: #ffc107;
    font-size: 1rem;
}

.hero-rating-text {
    font-size: 0.8rem;
    font-weight: 600;
    color: rgba(255,255,255,0.45);
    letter-spacing: 2px;
    text-transform: uppercase;
}

.hero-ctas {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

/* ===== TRUST BAR ===== */
.trust-bar {
    background: var(--blue);
    padding: 36px 0;
    position: relative;
    z-index: 5;
}

.trust-items {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 16px;
    justify-content: center;
}

.trust-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255,255,255,0.15);
    color: var(--white);
    font-size: 1.1rem;
    flex-shrink: 0;
}

.trust-number {
    display: block;
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1;
}

.trust-label {
    display: block;
    font-size: 0.7rem;
    color: rgba(255,255,255,0.7);
    letter-spacing: 1px;
    text-transform: uppercase;
    font-weight: 500;
    margin-top: 4px;
}

/* ===== ABOUT SECTION ===== */
.about {
    background: var(--ice);
    overflow: hidden;
}

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

.about-images {
    position: relative;
    overflow: visible;
    margin: 20px;
}

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

.about-img-main img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.about-img-main:hover img {
    transform: scale(1.03);
}

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

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

.about-experience-badge {
    position: absolute;
    top: -20px;
    left: -20px;
    width: 110px;
    height: 110px;
    background: var(--gradient-blue);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-blue);
}

.exp-number {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1;
}

.exp-text {
    font-size: 0.65rem;
    color: rgba(255,255,255,0.9);
    text-transform: uppercase;
    letter-spacing: 1px;
    text-align: center;
    line-height: 1.3;
    margin-top: 2px;
    font-weight: 600;
}

.about-content .section-title {
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
}

.about-lead {
    font-size: 1.1rem;
    color: var(--charcoal);
    font-weight: 500;
    margin-bottom: 16px;
    margin-top: 20px;
}

.about-content p {
    margin-bottom: 16px;
    color: var(--gray);
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin: 28px 0 32px;
}

.about-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--charcoal);
}

.about-feature i {
    color: var(--blue);
    font-size: 1rem;
}

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

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

.service-card {
    padding: 40px 30px;
    background: var(--white);
    border-radius: var(--radius-lg);
    text-align: center;
    transition: var(--transition);
    border: 2px solid var(--silver);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-blue);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--blue-light);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-md);
    background: var(--blue-glow);
    color: var(--blue);
    font-size: 1.5rem;
    transition: var(--transition);
}

.service-card:hover .service-icon {
    background: var(--gradient-blue);
    color: var(--white);
    transform: scale(1.1) rotate(-5deg);
    border-radius: 50%;
}

.service-card h3 {
    font-size: 1.2rem;
    margin-bottom: 12px;
    font-weight: 700;
}

.service-card p {
    font-size: 0.9rem;
    color: var(--gray);
    line-height: 1.7;
}

.services-cta {
    text-align: center;
    margin-top: 50px;
}

.services-cta p {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--charcoal);
    margin-bottom: 20px;
}

/* ===== PARALLAX DIVIDER ===== */
.parallax-divider {
    position: relative;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
    background-color: var(--blue-dark);
}

.parallax-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(26,26,46,0.85) 0%, rgba(15,52,96,0.8) 100%);
}

.parallax-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 0 24px;
}

.parallax-content h2 {
    font-size: clamp(1.8rem, 4vw, 3rem);
    color: var(--white);
    margin-bottom: 12px;
    font-weight: 800;
}

.parallax-content p {
    color: rgba(255,255,255,0.7);
    font-size: 1.1rem;
    margin-bottom: 28px;
    letter-spacing: 1px;
}

/* ===== GALLERY SECTION ===== */
.gallery {
    background: var(--ice);
}

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

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

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

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(30,86,160,0.9) 0%, transparent 60%);
    opacity: 0;
    transition: var(--transition);
    display: flex;
    align-items: flex-end;
    padding: 20px;
}

.gallery-overlay span {
    font-family: var(--font-heading);
    font-size: 1rem;
    color: var(--white);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transform: translateY(10px);
    transition: transform 0.3s ease;
}

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

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

.gallery-item:hover .gallery-overlay span {
    transform: translateY(0);
}

/* ===== REVIEWS SECTION ===== */
.reviews {
    background: var(--white);
}

.reviews-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

.review-stat-card {
    text-align: center;
    padding: 32px 24px;
    background: var(--ice);
    border-radius: var(--radius-lg);
    transition: var(--transition);
    border: 2px solid transparent;
}

.review-stat-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--blue-glow);
}

.stat-stars {
    color: #ffc107;
    font-size: 1.2rem;
    margin-bottom: 12px;
    display: flex;
    justify-content: center;
    gap: 4px;
}

.stat-icon {
    font-size: 1.8rem;
    color: var(--blue);
    margin-bottom: 12px;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--black);
    line-height: 1;
}

.stat-label {
    font-size: 0.85rem;
    color: var(--gray);
    margin-top: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.reviews-carousel {
    position: relative;
    max-width: 700px;
    margin: 0 auto;
    min-height: 280px;
}

.review-card {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    text-align: center;
    padding: 40px;
    background: var(--ice);
    border-radius: var(--radius-lg);
    border: 2px solid var(--silver);
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.5s ease;
    pointer-events: none;
}

.review-card.active {
    opacity: 1;
    transform: translateX(0);
    pointer-events: auto;
    position: relative;
}

.review-stars {
    color: #ffc107;
    font-size: 1rem;
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
    gap: 4px;
}

.review-text {
    font-size: 1.15rem;
    font-weight: 500;
    color: var(--charcoal);
    line-height: 1.8;
    margin-bottom: 24px;
}

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

.review-avatar {
    font-size: 2.5rem;
    color: var(--blue);
}

.review-name {
    display: block;
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--black);
}

.review-source {
    font-size: 0.8rem;
    color: var(--gray);
}

.review-source i {
    margin-right: 4px;
}

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

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

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

/* ===== WHY CHOOSE US ===== */
.why-us {
    background: var(--black);
    position: relative;
    overflow: hidden;
}

.why-us::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(30,86,160,0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.why-us .section-tag {
    color: var(--red-light);
}

.why-us .section-title {
    color: var(--white);
}

.why-us .section-title em {
    color: var(--blue-light);
}

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

.why-card {
    text-align: center;
    padding: 40px 24px;
    border-radius: var(--radius-lg);
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    transition: var(--transition);
}

.why-card:hover {
    background: rgba(255,255,255,0.06);
    border-color: rgba(30,86,160,0.4);
    transform: translateY(-6px);
}

.why-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-md);
    background: rgba(30,86,160,0.15);
    color: var(--blue-light);
    font-size: 1.5rem;
    transition: var(--transition);
}

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

.why-card h3 {
    color: var(--white);
    font-size: 1.15rem;
    margin-bottom: 12px;
    font-weight: 700;
}

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

/* ===== HOURS & LOCATION ===== */
.hours {
    background: var(--ice);
}

.hours-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.hours-content .section-title {
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
}

.hours-table {
    margin: 30px 0;
}

.hours-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 0;
    border-bottom: 1px solid var(--silver);
}

.hours-row .day {
    font-weight: 700;
    color: var(--charcoal);
    font-size: 0.95rem;
}

.hours-row .time {
    color: var(--gray);
    font-size: 0.95rem;
    font-weight: 500;
}

.hours-row.highlight {
    background: var(--blue-glow);
    padding: 14px 16px;
    border-radius: var(--radius-sm);
    border-bottom: none;
    margin: 4px -16px;
}

.hours-row.highlight .day {
    color: var(--blue-dark);
}

.hours-row.highlight .time {
    color: var(--blue);
    font-weight: 700;
}

.hours-row.highlight .time i {
    margin-left: 6px;
    font-size: 0.85rem;
}

.hours-row.closed .time {
    color: var(--light-gray);
    font-style: italic;
}

.hours-note {
    background: var(--blue-glow);
    padding: 12px 20px;
    border-radius: var(--radius-sm);
    font-size: 0.85rem;
    color: var(--blue-dark);
    font-weight: 600;
    margin-bottom: 30px;
}

.hours-note i {
    margin-right: 8px;
}

.location-info {
    margin-bottom: 28px;
}

.location-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 16px;
    font-size: 0.95rem;
}

.location-item i {
    color: var(--blue);
    font-size: 1.1rem;
    margin-top: 3px;
    width: 16px;
    text-align: center;
}

.location-item a {
    color: var(--charcoal);
    font-weight: 500;
}

.location-item a:hover {
    color: var(--blue);
}

.hours-map {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    min-height: 500px;
    background: var(--silver);
}

.hours-map iframe {
    display: block;
}

/* ===== CTA SECTION ===== */
.cta-section {
    position: relative;
    padding: 120px 0;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-color: var(--blue-dark);
}

.cta-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(26,26,46,0.9) 0%, rgba(30,86,160,0.6) 100%);
}

.cta-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    padding: 0 24px;
}

.cta-content h2 {
    color: var(--white);
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 16px;
    font-weight: 800;
}

.cta-content em {
    color: var(--blue-light);
}

.cta-content p {
    color: rgba(255,255,255,0.8);
    font-size: 1.1rem;
    margin-bottom: 36px;
}

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

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

.contact-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.contact-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 40px 24px;
    background: var(--ice);
    border-radius: var(--radius-lg);
    transition: var(--transition);
    border: 2px solid transparent;
}

.contact-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: var(--blue-light);
}

.contact-icon {
    width: 65px;
    height: 65px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-md);
    background: var(--blue-glow);
    color: var(--blue);
    font-size: 1.4rem;
    margin-bottom: 20px;
    transition: var(--transition);
}

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

.contact-card h3 {
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.contact-card p {
    color: var(--gray);
    font-size: 0.9rem;
    margin-bottom: 16px;
    line-height: 1.6;
}

.contact-action {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--blue);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: auto;
}

.contact-action i {
    transition: transform 0.3s ease;
    margin-left: 4px;
}

.contact-card:hover .contact-action i {
    transform: translateX(4px);
}

/* ===== FOOTER ===== */
.footer {
    background: var(--black);
    padding: 80px 0 0;
    color: var(--light-gray);
}

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

.footer-logo {
    display: inline-flex;
    flex-direction: column;
    line-height: 1;
    margin-bottom: 20px;
}

.footer-logo .logo-text {
    font-size: 1.2rem;
}

.footer-brand p {
    font-size: 0.9rem;
    line-height: 1.7;
    color: var(--gray);
    margin-bottom: 24px;
}

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

.footer-social a {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-sm);
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    color: var(--light-gray);
    font-size: 1rem;
    transition: var(--transition);
}

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

.footer h4 {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 24px;
    letter-spacing: 0.5px;
}

.footer-links ul li,
.footer-services ul li,
.footer-contact ul li {
    margin-bottom: 12px;
}

.footer-links a,
.footer-contact a {
    font-size: 0.9rem;
    color: var(--gray);
    transition: var(--transition);
}

.footer-links a:hover,
.footer-contact a:hover {
    color: var(--blue-light);
    padding-left: 4px;
}

.footer-services li {
    font-size: 0.9rem;
    color: var(--gray);
}

.footer-contact li {
    font-size: 0.9rem;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.footer-contact li i {
    color: var(--blue-light);
    font-size: 0.85rem;
    margin-top: 4px;
    width: 14px;
    text-align: center;
}

.footer-bottom {
    padding: 28px 0;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.82rem;
    color: var(--gray);
}

.footer-location {
    margin-top: 4px;
    font-size: 0.78rem !important;
    color: rgba(255,255,255,0.3) !important;
}

/* ===== BACK TO TOP ===== */
.back-to-top {
    position: fixed;
    bottom: 100px;
    right: 24px;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-sm);
    background: var(--gradient-blue);
    color: var(--white);
    font-size: 1rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: var(--transition);
    z-index: 99;
    box-shadow: var(--shadow-blue);
}

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

.back-to-top:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 50px rgba(30, 86, 160, 0.5);
}

/* ===== MOBILE BOTTOM BAR ===== */
.mobile-bottom-bar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--black);
    z-index: 998;
    padding: 10px 0;
    padding-bottom: max(10px, env(safe-area-inset-bottom));
    box-shadow: 0 -4px 20px rgba(0,0,0,0.3);
}

.mobile-bottom-bar {
    display: none;
    grid-template-columns: repeat(3, 1fr);
}

.mobile-bar-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    padding: 8px;
    color: var(--light-gray);
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
}

.mobile-bar-item i {
    font-size: 1.2rem;
}

.mobile-bar-item.book {
    color: var(--red-light);
}

.mobile-bar-item:hover {
    color: var(--white);
}

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

@media (max-width: 1024px) {
    .nav-menu { display: none; }
    .hamburger { display: flex; }

    .nav-menu.open {
        display: flex;
        flex-direction: column;
        position: fixed;
        top: 0;
        right: 0;
        width: 320px;
        height: 100vh;
        background: var(--black);
        padding: 100px 40px 40px;
        gap: 0;
        z-index: 999;
        box-shadow: -10px 0 40px rgba(0,0,0,0.3);
        animation: slideIn 0.3s ease;
    }

    @keyframes slideIn {
        from { transform: translateX(100%); }
        to { transform: translateX(0); }
    }

    .nav-menu.open .nav-link {
        display: block;
        padding: 14px 0;
        font-size: 1rem;
        border-bottom: 1px solid rgba(255,255,255,0.06);
        border-radius: 0;
        background: none;
    }

    .nav-menu.open .nav-link:hover,
    .nav-menu.open .nav-link.active {
        background: none;
        color: var(--blue-light);
    }

    .nav-menu.open .nav-cta {
        display: block;
        text-align: center;
        margin: 20px 0 0;
        padding: 14px 24px;
    }

    .nav-phone span { display: none; }
    .about-grid { gap: 50px; }
    .why-grid { grid-template-columns: repeat(2, 1fr); }
    .contact-cards { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    :root { --section-padding: 70px 0; }
    .trust-items { grid-template-columns: repeat(2, 1fr); }
    .about-grid { grid-template-columns: 1fr; gap: 40px; }
    .about-img-accent { right: 0; bottom: -20px; width: 180px; }
    .about-img-accent img { height: 220px; }
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
    .reviews-stats { grid-template-columns: 1fr; max-width: 400px; margin-left: auto; margin-right: auto; }
    .hours-grid { grid-template-columns: 1fr; gap: 40px; }
    .hours-map { min-height: 350px; }
    .mobile-bottom-bar { display: grid; }
    .back-to-top { bottom: 80px; }
    .footer-grid { grid-template-columns: 1fr; gap: 40px; }
    .footer-bottom { padding-bottom: 80px; }
    .parallax-divider, .cta-section { background-attachment: scroll; }
}

@media (max-width: 480px) {
    :root { --section-padding: 60px 0; }
    .container { padding: 0 16px; }
    .hero { min-height: 600px; }
    .hero-title-line { font-size: 2.2rem; }
    .hero-title-accent { font-size: 1.3rem; letter-spacing: 5px; }
    .ornament-line { width: 30px; }
    .hero-ctas { flex-direction: column; align-items: center; }
    .hero-ctas .btn { width: 100%; justify-content: center; }
    .trust-items { grid-template-columns: 1fr 1fr; gap: 20px; }
    .trust-item { flex-direction: column; text-align: center; gap: 10px; }
    .about-experience-badge { width: 90px; height: 90px; top: -15px; left: -10px; }
    .exp-number { font-size: 1.6rem; }
    .about-features { grid-template-columns: 1fr; }
    .services-grid { grid-template-columns: 1fr; }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    .review-card { padding: 24px 20px; }
    .review-text { font-size: 1.05rem; }
    .why-grid { grid-template-columns: 1fr; }
    .contact-cards { grid-template-columns: 1fr; }
    .cta-buttons { flex-direction: column; align-items: center; }
    .cta-buttons .btn { width: 100%; justify-content: center; }
}

@supports (-webkit-touch-callout: none) {
    .parallax-divider, .cta-section { background-attachment: scroll; }
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
    html { scroll-behavior: auto; }
}

@media print {
    .navbar, .back-to-top, .mobile-bottom-bar, #preloader { display: none !important; }
    .hero { height: auto; min-height: auto; padding: 40px 0; }
    section { break-inside: avoid; }
}

/* ===== IMAGE PLACEHOLDER FALLBACK ===== */
.gallery-item img,
.about-img-main img,
.about-img-accent img {
    background: linear-gradient(135deg, var(--blue-glow) 0%, var(--ice) 100%);
}

/* ===== SELECTION COLOR ===== */
::selection {
    background: var(--blue);
    color: var(--white);
}

::-moz-selection {
    background: var(--blue);
    color: var(--white);
}
