/* ================================================
   PAW PUPPY GROOMING - DESIGN SYSTEM
   ================================================ */

:root {
    /* Primary Palette - Warm, inviting tones */
    --primary: #E88D4F;
    --primary-dark: #D47839;
    --primary-light: #F4A76C;
    --primary-glow: rgba(232, 141, 79, 0.3);

    /* Secondary - Deep, rich accent */
    --secondary: #2D4A3E;
    --secondary-dark: #1E322B;
    --secondary-light: #3D6454;

    /* Neutrals */
    --white: #FFFFFF;
    --off-white: #FAF8F5;
    --cream: #F5F0EB;
    --gray-100: #F0EDE8;
    --gray-200: #E0DCD5;
    --gray-300: #C4BFB7;
    --gray-400: #9E9890;
    --gray-500: #7A746C;
    --gray-600: #5A5550;
    --gray-700: #3D3935;
    --gray-800: #2A2724;
    --gray-900: #1A1816;

    /* Glass Effect Tokens */
    --glass-bg: rgba(255, 255, 255, 0.7);
    --glass-border: rgba(255, 255, 255, 0.4);
    --glass-blur: 20px;
    --glass-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.07);

    /* Typography */
    --font-primary: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-display: 'Playfair Display', Georgia, serif;

    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
    --shadow-md: 0 10px 30px rgba(0,0,0,0.08);
    --shadow-lg: 0 16px 48px rgba(0,0,0,0.12);
    --shadow-xl: 0 24px 64px rgba(0,0,0,0.16);
    --shadow-glow: 0 0 40px var(--primary-glow);

    /* Borders */
    --radius-sm: 12px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    --radius-full: 100px;

    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #E88D4F 0%, #D47839 50%, #C06525 100%);
    --gradient-warm: linear-gradient(135deg, #E88D4F 0%, #E8A4B8 100%);
    --gradient-hero: linear-gradient(135deg, rgba(45, 74, 62, 0.2) 0%, rgba(26, 24, 22, 0.15) 100%);
    --gradient-glass: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0.05) 100%);

    /* Transitions */
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-base: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-spring: 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);

    /* Sizes */
    --container-max: 1200px;
    --container-padding: 1.5rem;
}

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

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

html {
    font-size: 16px;
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-primary);
    color: var(--gray-800);
    background-color: var(--off-white);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

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

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

ul {
    list-style: none;
}

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

/* ================================================
   UTILITIES
   ================================================ */

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

.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(var(--glass-blur));
    -webkit-backdrop-filter: blur(var(--glass-blur));
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    box-shadow: var(--glass-shadow);
}

/* ================================================
   BUTTONS
   ================================================ */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 2rem;
    border-radius: var(--radius-full);
    font-family: var(--font-primary);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all var(--transition-base);
    white-space: nowrap;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(232, 141, 79, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(232, 141, 79, 0.5);
}

.btn-primary:active {
    transform: translateY(0);
}

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

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

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

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

.btn-lg {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
}

.btn-sm {
    padding: 0.625rem 1.5rem;
    font-size: 0.875rem;
}

/* ================================================
   TOP BAR
   ================================================ */

.top-bar {
    background: var(--secondary-dark);
    color: rgba(255, 255, 255, 0.9);
    padding: 0.5rem 0;
    font-size: 0.85rem;
}

.top-bar-inner {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-padding);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.top-bar-link {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    color: rgba(255, 255, 255, 0.9);
    transition: color var(--transition-fast);
}

.top-bar-link:hover {
    color: var(--primary-light);
}

/* ================================================
   NAVIGATION
   ================================================ */

.navbar {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--glass-bg);
    backdrop-filter: blur(var(--glass-blur));
    -webkit-backdrop-filter: blur(var(--glass-blur));
    border-bottom: 1px solid var(--glass-border);
    transition: all var(--transition-base);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.9);
    box-shadow: var(--shadow-md);
    height: 64px;
}

.navbar.scrolled .nav-inner {
    height: 64px;
}

.nav-inner {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-padding);
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.4rem;
    font-weight: 700;
}

.logo-paw {
    font-size: 1.8rem;
    animation: pawBounce 2s ease-in-out infinite;
}

@keyframes pawBounce {
    0%, 100% { transform: rotate(0deg); }
    25% { transform: rotate(-8deg); }
    75% { transform: rotate(8deg); }
}

.logo-text {
    color: var(--secondary-dark);
    font-family: var(--font-primary);
}

.logo-accent {
    color: var(--primary);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.nav-link {
    padding: 0.5rem 1rem;
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--gray-600);
    border-radius: var(--radius-full);
    transition: all var(--transition-fast);
}

.nav-link:hover {
    color: var(--primary);
    background: rgba(232, 141, 79, 0.08);
}

.nav-link--cta {
    background: var(--gradient-primary);
    color: var(--white) !important;
    padding: 0.625rem 1.5rem;
    box-shadow: 0 2px 10px rgba(232, 141, 79, 0.3);
}

.nav-link--cta:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(232, 141, 79, 0.4);
    background: var(--gradient-primary) !important;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
}

.nav-toggle span {
    width: 26px;
    height: 2.5px;
    background: var(--gray-700);
    border-radius: 2px;
    transition: all var(--transition-base);
}

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

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

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

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

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

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

.hero-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 22%; /* Perfectly centers the dogs' faces */
}

.hero-overlay {
    display: none; /* Removed as per user request to keep image original */
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: var(--white);
    padding: 2rem var(--container-padding);
    max-width: 800px;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.6); /* High visibility shadow for raw images */
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 0.5rem 1.25rem;
    border-radius: var(--radius-full);
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    animation: fadeInDown 0.8s ease-out;
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 1.25rem;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.hero-title .text-gradient {
    background: var(--gradient-warm);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.2rem);
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 3rem;
    animation: fadeInUp 0.8s ease-out 0.6s both;
}

.hero-buttons .btn-outline {
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.4);
}

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

.hero-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease-out 0.8s both;
}

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

.hero-stat-number {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.hero-stat-label {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.65);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

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

.hero-scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
    animation: scrollBounce 2s ease-in-out infinite;
}

.scroll-arrow {
    width: 24px;
    height: 24px;
    border-right: 2px solid rgba(255, 255, 255, 0.5);
    border-bottom: 2px solid rgba(255, 255, 255, 0.5);
    transform: rotate(45deg);
}

@keyframes scrollBounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(10px); }
}

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

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3.5rem;
}

.section-tag {
    display: inline-block;
    background: rgba(232, 141, 79, 0.1);
    color: var(--primary);
    padding: 0.4rem 1.2rem;
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--gray-900);
    line-height: 1.2;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--gray-500);
    line-height: 1.7;
}

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

.services {
    padding: 6rem 0;
    background: var(--off-white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.service-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-spring);
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.service-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-light);
}

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

.service-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

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

.service-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.3) 0%, transparent 60%);
}

.service-card-body {
    padding: 1.5rem;
}

.service-icon {
    font-size: 2rem;
    margin-bottom: 0.75rem;
}

.service-card-body h3 {
    font-family: var(--font-display);
    font-size: 1.35rem;
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 0.75rem;
}

.service-card-body p {
    font-size: 0.95rem;
    color: var(--gray-500);
    line-height: 1.6;
}

.services-cta {
    text-align: center;
}

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

.about {
    padding: 6rem 0;
    background: var(--cream);
}

/* ================================================
   GALLERY SECTION
   ================================================ */

.gallery {
    padding: 6rem 0;
    background: var(--gray-900);
}

.gallery .section-tag {
    background: rgba(232, 141, 79, 0.2);
}

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

.gallery .section-subtitle {
    color: rgba(255, 255, 255, 0.6);
}

.gallery {
    padding: 3rem 0;
    background: var(--off-white);
    overflow: hidden;
}

.gallery-ticker-container {
    display: flex;
    overflow: hidden;
    user-select: none;
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.gallery-ticker {
    display: flex;
    gap: 1rem;
    padding: 1rem 0;
    animation: scroll-gallery 40s linear infinite;
    width: max-content;
}

.gallery-ticker:hover {
    animation-play-state: paused;
}

.gallery-item {
    flex: 0 0 300px;
    height: 380px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.gallery-item:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: var(--shadow-lg);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@keyframes scroll-gallery {
    0% {
        transform: translateX(0);
    }
    100% {
        /* Total width of one set: (300px + 1rem) * 4 images */
        transform: translateX(calc(-300px * 4 - 1rem * 4));
    }
}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 10000;
    background: rgba(0, 0, 0, 0.95);
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.lightbox.active {
    display: flex;
}

.lightbox-img {
    max-width: 90%;
    max-height: 85vh;
    object-fit: contain;
    border-radius: var(--radius-md);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.lightbox-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: none;
    border: none;
    color: var(--white);
    font-size: 2.5rem;
    cursor: pointer;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background var(--transition-fast);
    z-index: 10001;
}

.lightbox-close:hover {
    background: rgba(255, 255, 255, 0.1);
}

.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: var(--white);
    font-size: 3rem;
    cursor: pointer;
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background var(--transition-fast);
}

.lightbox-prev {
    left: 1.5rem;
}

.lightbox-next {
    right: 1.5rem;
}

.lightbox-prev:hover,
.lightbox-next:hover {
    background: rgba(255, 255, 255, 0.2);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    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: 400px;
    object-fit: cover;
}

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

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

.about-badge-float {
    position: absolute;
    top: -1.5rem;
    left: -1.5rem;
    background: var(--gradient-primary);
    color: var(--white);
    padding: 1.25rem;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-glow);
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.about-badge-number {
    display: block;
    font-size: 2rem;
    margin-bottom: 0.25rem;
}

.about-badge-text {
    font-size: 0.8rem;
    font-weight: 600;
    line-height: 1.3;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.about-content .section-tag {
    display: inline-block;
    margin-bottom: 1rem;
}

.about-content .section-title {
    text-align: left;
    margin-bottom: 1.5rem;
}

.about-text {
    font-size: 1.05rem;
    color: var(--gray-600);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.about-features {
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.about-feature {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.about-feature-icon {
    font-size: 1.5rem;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(232, 141, 79, 0.1);
    border-radius: var(--radius-md);
    flex-shrink: 0;
}

.about-feature h4 {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--gray-800);
    margin-bottom: 0.25rem;
}

.about-feature p {
    font-size: 0.9rem;
    color: var(--gray-500);
}

/* ================================================
   HOURS & LOCATION
   ================================================ */

.hours-section {
    padding: 6rem 0;
    background: var(--secondary-dark);
    color: var(--white);
}

.hours-section .section-tag {
    background: rgba(232, 141, 79, 0.2);
}

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

.hours-section .section-subtitle {
    color: rgba(255, 255, 255, 0.65);
}

.hours-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.hours-card {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 2rem;
}

.hours-card h3 {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--primary-light);
}

.hours-card h3 svg {
    stroke: var(--primary-light);
}

.hours-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.hours-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    transition: all var(--transition-fast);
}

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

.hours-row:hover {
    background: rgba(255, 255, 255, 0.03);
    padding-left: 0.5rem;
    padding-right: 0.5rem;
    border-radius: var(--radius-sm);
}

.hours-row.highlight {
    background: rgba(232, 141, 79, 0.1);
    padding-left: 0.75rem;
    padding-right: 0.75rem;
    border-radius: var(--radius-sm);
    border-bottom: none;
}

.hours-day {
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
}

.hours-time {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
}

.location-info {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.location-name {
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--white);
    margin-bottom: 0.25rem;
}

.location-info p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

.location-map {
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

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

.reviews {
    padding: 6rem 0;
    background: var(--off-white);
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.review-card {
    padding: 2.5rem;
    background: var(--glass-bg);
    backdrop-filter: blur(var(--glass-blur));
    -webkit-backdrop-filter: blur(var(--glass-blur));
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    box-shadow: var(--glass-shadow);
    transition: all var(--transition-spring);
}

.review-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: var(--shadow-xl);
    background: var(--white);
}

.review-stars {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    letter-spacing: 2px;
}

.review-text {
    font-size: 1.05rem;
    color: var(--gray-600);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-style: italic;
}

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

.review-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--gradient-primary);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
}

.review-name {
    display: block;
    font-weight: 600;
    color: var(--gray-800);
    font-size: 0.95rem;
}

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

/* ================================================
   CTA SECTION
   ================================================ */

.cta-section {
    position: relative;
    padding: 8rem 0;
    overflow: hidden;
}

.cta-bg {
    position: absolute;
    inset: 0;
}

.cta-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cta-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(45, 74, 62, 0.93) 0%, rgba(30, 50, 43, 0.95) 100%);
}

.cta-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: var(--white);
    max-width: 650px;
    margin: 0 auto;
}

.cta-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.25rem;
}

.cta-text {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    margin-bottom: 2.5rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

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

.footer {
    background: var(--gray-900);
    color: rgba(255, 255, 255, 0.7);
    padding: 4rem 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.footer-logo .logo-text {
    color: var(--white);
}

.footer-tagline {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    color: rgba(255, 255, 255, 0.5);
}

.footer-social {
    display: flex;
    gap: 0.75rem;
}

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

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

.footer-links h4,
.footer-contact-info h4 {
    color: var(--white);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1.25rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.85rem;
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

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

.footer-links a:hover {
    color: var(--primary-light);
    padding-left: 0.5rem;
}

.footer-contact-info ul {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-contact-info li {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.5);
}

.footer-contact-info li svg {
    stroke: var(--primary-light);
    flex-shrink: 0;
    margin-top: 3px;
}

.footer-contact-info a {
    color: rgba(255, 255, 255, 0.5);
}

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

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.35);
}

.footer-credit {
    color: rgba(255, 255, 255, 0.4);
}

.footer-bottom-link {
    color: rgba(255, 255, 255, 0.5);
    transition: color var(--transition-fast);
}

.footer-bottom-link:hover {
    color: var(--primary-light);
}

.footer-divider {
    margin: 0 0.25rem;
    color: rgba(255, 255, 255, 0.25);
}

/* ================================================
   MOBILE CALL BUTTON (FLOATING)
   ================================================ */

.mobile-call-btn {
    display: none;
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    z-index: 999;
    background: var(--gradient-primary);
    color: var(--white);
    padding: 1rem 1.5rem;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 0.95rem;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 8px 30px rgba(232, 141, 79, 0.5);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { box-shadow: 0 8px 30px rgba(232, 141, 79, 0.5); }
    50% { box-shadow: 0 8px 40px rgba(232, 141, 79, 0.7); }
}

/* ================================================
   ANIMATIONS
   ================================================ */

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

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

/* Scroll animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

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

.fade-in-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.fade-in-right {
    opacity: 0;
    transform: translateX(40px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in-right.visible {
    opacity: 1;
    transform: translateX(0);
}

/* ================================================
   RESPONSIVE - TABLET
   ================================================ */

@media (max-width: 1024px) {
    .about-grid {
        gap: 3rem;
    }

    .about-img-accent {
        width: 160px;
        height: 160px;
        bottom: -1rem;
        right: -1rem;
    }

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

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

/* ================================================
   RESPONSIVE - MOBILE FIRST OVERHAUL
   ================================================ */

@media (max-width: 991px) {
    .container { padding: 0 1.5rem; }
    
    .nav-inner { padding: 0.75rem 1.5rem; }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 85%;
        max-width: 320px;
        height: 100dvh;
        background: #ffffff;
        flex-direction: column;
        align-items: flex-start;
        padding: 5rem 2rem 2rem;
        box-shadow: -10px 0 40px rgba(0,0,0,0.1);
        transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
        z-index: 1000;
        backdrop-filter: blur(10px);
    }

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

    .nav-link {
        font-size: 1.15rem;
        font-weight: 600;
        width: 100%;
        padding: 1.25rem 0;
        border-bottom: 1px solid rgba(0,0,0,0.05);
        color: var(--secondary-dark);
    }

    .nav-link--cta {
        margin-top: 1.5rem;
        width: 100%;
        text-align: center;
        background: var(--primary);
        color: var(--white) !important;
        border-radius: var(--radius-md);
        padding: 1rem !important;
    }

    /* Hero */
    .hero { min-height: 85vh; padding-top: 60px; }
    .hero-content { padding: 1rem; text-align: center; }
    .hero-title { font-size: 2.5rem; line-height: 1.1; margin-bottom: 1.5rem; }
    .hero-subtitle { font-size: 1.1rem; margin-bottom: 2.5rem; }
    .hero-stats { gap: 1rem; flex-wrap: wrap; justify-content: center; background: rgba(255, 255, 255, 0.95); padding: 1.5rem; border-radius: var(--radius-lg); box-shadow: var(--shadow-md); }
    .hero-stat { flex: 1 1 100px; }
    .hero-stat-divider { display: none; }

    /* Sections */
    .services, .about, .hours-section, .reviews, .gallery { padding: 4rem 0; }
    .section-title { font-size: 2rem; }

    /* Layout Stacking */
    .services-grid, .about-grid, .hours-grid, .footer-grid { grid-template-columns: 1fr !important; gap: 3rem; }
    
    .about-img-main img { height: 320px; }
    .location-map iframe { height: 220px; }
    .footer-brand, .footer-links, .footer-contact-info { align-items: center; text-align: center; }
    .footer-social { justify-content: center; }
    .footer-bottom { flex-direction: column; gap: 1.25rem; text-align: center; }

    /* Floating CTA */
    .footer { padding-bottom: 8rem; }
}

@media (max-width: 480px) {
    .top-bar-inner { flex-direction: column; gap: 0.75rem; padding: 0.75rem; }
    .hero-title { font-size: 2.2rem; }
    .hero-buttons { flex-direction: column; width: 100%; gap: 1rem; }
    .hero-buttons .btn { width: 100%; justify-content: center; }
}

/* ================================================
   SETMORE-INSPIRED DESIGNER BOOKING MODAL
   ================================================ */

.booking-modal {
    position: fixed;
    inset: 0;
    z-index: 3000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.booking-modal.active { display: flex; }

.modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
}

.designer-modal {
    position: relative;
    width: 100%;
    max-width: 1000px;
    height: 650px;
    background: #1a1a1a; /* Dark Theme */
    color: #ffffff;
    border-radius: var(--radius-lg);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0,0,0,0.5);
    animation: modalSlideUp 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.modal-header {
    padding: 1.25rem 2rem;
    background: #222;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-title-group { display: flex; align-items: center; gap: 1rem; }
.modal-mini-logo { width: 28px; height: 28px; border-radius: 50%; border: 1px solid var(--primary); }
.modal-header-text { font-weight: 700; letter-spacing: -0.02em; font-size: 1.1rem; }

.modal-close {
    width: 32px;
    height: 32px;
    background: rgba(255, 255, 255, 0.05);
    border: none;
    border-radius: 50%;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    cursor: pointer;
    transition: all 0.2s ease;
}

.modal-close:hover { background: rgba(255, 255, 255, 0.2); }

.modal-body-grid { flex: 1; display: grid; grid-template-columns: 320px 1fr; overflow: hidden; }

/* Sidebar */
.modal-sidebar {
    background: #222;
    padding: 2.5rem;
    border-right: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.biz-avatar { width: 56px; height: 56px; background: var(--gradient-primary); border-radius: 14px; display: flex; align-items: center; justify-content: center; font-size: 1.75rem; margin-bottom: 1rem; }
.biz-name { font-size: 1.4rem; font-weight: 800; margin-bottom: 0.5rem; }
.biz-rating { display: flex; align-items: center; gap: 0.5rem; margin-bottom: 1rem; font-size: 0.85rem; color: #aaa; }
.biz-location { font-size: 0.8rem; color: #888; display: flex; align-items: start; gap: 0.5rem; text-align: left; }

.booking-steps-nav { display: flex; flex-direction: column; gap: 0.75rem; }
.step-link { padding: 0.75rem 1rem; border-radius: var(--radius-sm); font-size: 0.9rem; color: #666; transition: all 0.2s ease; }
.step-link.active { background: rgba(255, 255, 255, 0.05); color: #fff; font-weight: 600; }

/* Main Section */
.modal-main { padding: 3rem; overflow-y: auto; background: #1a1a1a; display: flex; flex-direction: column; }
.main-step-title { font-size: 1.75rem; font-weight: 700; margin-bottom: 2rem; letter-spacing: -0.02em; }

.booking-step { display: none; height: 100%; flex-direction: column; }
.booking-step.active { display: flex; animation: fadeIn 0.4s ease; }

/* Accordion */
.service-accordion { display: flex; flex-direction: column; gap: 1rem; }
.accordion-item { background: #222; border-radius: var(--radius-md); border: 1px solid rgba(255, 255, 255, 0.03); overflow: hidden; }
.accordion-header { padding: 1.25rem 1.5rem; cursor: pointer; display: flex; justify-content: space-between; align-items: center; font-weight: 600; }
.accordion-header.active { background: rgba(255, 255, 255, 0.02); }
.accordion-header svg { transition: transform 0.3s ease; opacity: 0.5; }
.accordion-header.active svg { transform: rotate(180deg); }
.accordion-content { display: none; padding: 1.5rem; border-top: 1px solid rgba(255, 255, 255, 0.03); flex-direction: column; gap: 1rem; }
.accordion-header.active + .accordion-content { display: flex; }

.service-selector { padding: 1.25rem; border-radius: var(--radius-sm); background: rgba(255, 255, 255, 0.02); border: 2px solid transparent; cursor: pointer; display: flex; align-items: start; gap: 1.25rem; transition: all 0.2s ease; text-align: left; }
.service-selector:hover { background: rgba(255, 255, 255, 0.05); }
.service-selector input { width: 20px; height: 20px; accent-color: var(--primary); margin-top: 3px; }
.service-selector input:checked + .selector-info { opacity: 1; }
.selector-name { display: block; font-weight: 700; color: #fff; margin-bottom: 0.25rem; }
.selector-desc { display: block; font-size: 0.85rem; color: #888; }

/* Form */
.form-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
.form-group-designer { display: flex; flex-direction: column; gap: 0.75rem; text-align: left; }
.form-group-designer label { font-size: 0.85rem; font-weight: 700; color: #666; text-transform: uppercase; letter-spacing: 0.05em; }
.form-group-designer input, .form-group-designer select { background: #222; border: 1px solid rgba(255, 255, 255, 0.08); color: #fff; padding: 1rem; border-radius: var(--radius-sm); font-size: 1rem; }
.form-group-designer input:focus { border-color: var(--primary); outline: none; }
.full-width { grid-column: span 2; }

.main-footer { margin-top: auto; padding-top: 3rem; display: flex; gap: 1rem; justify-content: flex-end; }
.btn-designer-primary { background: var(--gradient-primary); color: #fff; border: none; padding: 1.1rem 2.75rem; border-radius: var(--radius-md); font-weight: 700; cursor: pointer; box-shadow: 0 10px 20px rgba(232, 141, 79, 0.2); }
.btn-designer-outline { background: transparent; color: #fff; border: 1px solid rgba(255, 255, 255, 0.15); padding: 1.1rem 2.75rem; border-radius: var(--radius-md); font-weight: 600; cursor: pointer; }

/* Success */
.designer-success { text-align: center; padding: 2rem 0; }
.success-icon-wrap { width: 80px; height: 80px; background: #28a745; border-radius: 50%; margin: 0 auto 2.5rem; display: flex; align-items: center; justify-content: center; font-size: 2.5rem; animation: pop 0.5s cubic-bezier(0.16, 1, 0.3, 1); }
@keyframes pop { from { scale: 0; } to { scale: 1; } }

/* Mobile Modal */
@media (max-width: 900px) {
    .booking-modal { padding: 0; }
    .designer-modal { max-width: 100%; height: 100dvh; border-radius: 0; }
    .modal-body-grid { grid-template-columns: 1fr; }
    .modal-sidebar { display: none; }
    .modal-main { padding: 2.5rem 1.5rem; }
    .main-step-title { font-size: 1.5rem; }
}
