/* =====================================================
   NORTH STAR WRAPS - Main Stylesheet
   Brand Colors: Lime Green (#7CB518) + Chrome/Silver
   ===================================================== */

/* ==================== CSS VARIABLES ==================== */
:root {
    /* Brand Colors */
    --primary: #7CB518;
    --primary-dark: #5a8a0f;
    --primary-light: #9ed93d;
    --primary-glow: rgba(124, 181, 24, 0.4);

    /* Chrome/Metallic */
    --chrome-light: #E8E8E8;
    --chrome: #C0C0C0;
    --chrome-dark: #808080;
    --chrome-gradient: linear-gradient(135deg, #E8E8E8 0%, #A8A8A8 50%, #C0C0C0 100%);

    /* Neutrals */
    --black: #0a0a0a;
    --dark: #1a1a1a;
    --dark-light: #2a2a2a;
    --gray-dark: #333333;
    --gray: #666666;
    --gray-light: #999999;
    --light: #f5f5f5;
    --white: #ffffff;

    /* Functional */
    --success: #28a745;
    --error: #dc3545;
    --warning: #ffc107;

    /* Typography */
    --font-heading: 'Orbitron', sans-serif;
    --font-subheading: 'Rajdhani', sans-serif;
    --font-body: 'Open Sans', sans-serif;

    /* Spacing */
    --section-padding: 100px;
    --container-width: 1200px;

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition: 0.3s ease;
    --transition-slow: 0.5s ease;

    /* Shadows */
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.1);
    --shadow: 0 4px 12px rgba(0,0,0,0.15);
    --shadow-lg: 0 8px 30px rgba(0,0,0,0.2);
    --shadow-glow: 0 0 30px var(--primary-glow);

    /* Border Radius */
    --radius-sm: 4px;
    --radius: 8px;
    --radius-lg: 16px;
    --radius-xl: 24px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--gray-dark);
    background-color: var(--white);
    overflow-x: hidden;
}

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

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

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

ul {
    list-style: none;
}

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

h1 { font-size: clamp(2.5rem, 5vw, 4rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }
h4 { font-size: clamp(1.25rem, 2vw, 1.5rem); }

.lead-text {
    font-size: 1.25rem;
    font-weight: 300;
    color: var(--gray);
    line-height: 1.8;
}

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

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

/* ==================== BUTTONS ==================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 28px;
    font-family: var(--font-subheading);
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 2px solid transparent;
    border-radius: var(--radius);
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
}

.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: var(--shadow-glow);
}

.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-light {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
}

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

.btn-lg {
    padding: 18px 36px;
    font-size: 1.1rem;
}

.btn-block {
    width: 100%;
}

.btn-instagram {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    color: var(--white);
    border: none;
}

.btn-instagram:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(225, 48, 108, 0.4);
    color: var(--white);
}

/* ==================== TOP BAR ==================== */
.top-bar {
    background: var(--dark);
    padding: 10px 0;
    font-size: 0.875rem;
}

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

.top-bar-left {
    display: flex;
    gap: 25px;
}

.top-bar-left a {
    color: var(--chrome-light);
    display: flex;
    align-items: center;
    gap: 8px;
}

.top-bar-left a:hover {
    color: var(--primary);
}

.top-bar-left i {
    color: var(--primary);
}

.top-bar-right {
    display: flex;
    gap: 15px;
}

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

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

/* ==================== HEADER & NAVIGATION ==================== */
.main-header {
    background: var(--dark);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-lg);
}

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

.logo img {
    height: 60px;
    width: auto;
}

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

.nav-menu a {
    font-family: var(--font-subheading);
    font-size: 1rem;
    font-weight: 600;
    color: var(--chrome-light);
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
}

.nav-menu a:hover {
    color: var(--primary);
}

.nav-menu a:not(.btn)::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: var(--transition);
}

.nav-menu a:not(.btn):hover::after,
.nav-menu a:not(.btn).active::after {
    width: 100%;
}

.nav-menu a.active {
    color: var(--primary);
}

.nav-cta {
    margin-left: 15px;
}

/* Mobile Navigation */
.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
}

.hamburger {
    display: block;
    width: 25px;
    height: 3px;
    background: var(--chrome-light);
    position: relative;
    transition: var(--transition);
}

.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: var(--chrome-light);
    transition: var(--transition);
}

.hamburger::before { top: -8px; }
.hamburger::after { top: 8px; }

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

.hero-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--dark) 0%, var(--black) 100%);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(124,181,24,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.5;
}

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

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 40px 20px;
}

.hero-title {
    margin-bottom: 25px;
}

.hero-title-line {
    display: block;
    color: var(--white);
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    text-transform: uppercase;
}

.hero-title-accent {
    display: block;
    color: var(--primary);
    font-size: clamp(2rem, 5vw, 3.5rem);
    text-transform: uppercase;
    text-shadow: 0 0 40px var(--primary-glow);
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: var(--chrome-light);
    max-width: 600px;
    margin: 0 auto 40px;
    line-height: 1.8;
}

.hero-cta {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 60px;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
}

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

.stat-number {
    display: block;
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary);
    line-height: 1;
}

.stat-label {
    font-family: var(--font-subheading);
    font-size: 0.875rem;
    color: var(--chrome-light);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.scroll-indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: var(--chrome-light);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    animation: bounce 2s infinite;
}

.scroll-indicator i {
    font-size: 1.5rem;
    color: var(--primary);
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(10px); }
    60% { transform: translateY(5px); }
}

/* ==================== SECTION HEADERS ==================== */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-tag {
    display: inline-block;
    font-family: var(--font-subheading);
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 15px;
    padding: 8px 20px;
    background: rgba(124, 181, 24, 0.1);
    border-radius: 30px;
}

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

.section-subtitle {
    font-size: 1.125rem;
    color: var(--gray);
    max-width: 600px;
    margin: 0 auto;
}

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

/* ==================== SERVICES PREVIEW ==================== */
.services-preview {
    background: var(--light);
}

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

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

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

.service-card-inner {
    padding: 40px 30px;
    text-align: center;
}

.service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.service-icon i {
    font-size: 2rem;
    color: var(--white);
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: var(--shadow-glow);
}

.service-card h3 {
    font-family: var(--font-subheading);
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.service-card p {
    color: var(--gray);
    margin-bottom: 20px;
}

.service-price {
    display: inline-block;
    font-family: var(--font-subheading);
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 20px;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-subheading);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--dark);
}

.service-link:hover {
    color: var(--primary);
    gap: 12px;
}

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

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

.why-us-content .section-tag {
    margin-bottom: 20px;
}

.why-us-content .section-title {
    text-align: left;
    margin-bottom: 20px;
}

.section-text {
    color: var(--gray);
    margin-bottom: 40px;
}

.features-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.feature-item {
    display: flex;
    gap: 20px;
}

.feature-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: rgba(124, 181, 24, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon i {
    font-size: 1.25rem;
    color: var(--primary);
}

.feature-content h4 {
    font-family: var(--font-subheading);
    font-size: 1.125rem;
    margin-bottom: 5px;
}

.feature-content p {
    font-size: 0.9375rem;
    color: var(--gray);
}

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

.image-wrapper {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.image-placeholder {
    aspect-ratio: 4/3;
    background: linear-gradient(135deg, var(--dark) 0%, var(--gray-dark) 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.image-placeholder i {
    font-size: 4rem;
    color: var(--primary);
    opacity: 0.5;
}

.image-placeholder span {
    color: var(--chrome-light);
    font-family: var(--font-subheading);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.floating-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--primary);
    color: var(--white);
    padding: 25px;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-lg);
}

.badge-number {
    display: block;
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1;
}

.badge-text {
    font-family: var(--font-subheading);
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ==================== PROCESS SECTION ==================== */
.process-section {
    background: var(--dark);
    color: var(--white);
}

.process-section .section-tag {
    background: rgba(124, 181, 24, 0.2);
}

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

.process-section .section-subtitle {
    color: var(--chrome-light);
}

.process-timeline {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    position: relative;
}

.process-timeline::before {
    content: '';
    position: absolute;
    top: 35px;
    left: 50px;
    right: 50px;
    height: 2px;
    background: linear-gradient(90deg, var(--primary), var(--primary-light));
    z-index: 0;
}

.process-step {
    flex: 1;
    text-align: center;
    position: relative;
    z-index: 1;
}

.step-number {
    width: 70px;
    height: 70px;
    margin: 0 auto 25px;
    background: var(--dark-light);
    border: 3px solid var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    transition: var(--transition);
}

.process-step:hover .step-number {
    background: var(--primary);
    color: var(--white);
    box-shadow: var(--shadow-glow);
}

.step-content h3 {
    font-family: var(--font-subheading);
    font-size: 1.25rem;
    color: var(--white);
    margin-bottom: 10px;
}

.step-content p {
    font-size: 0.9375rem;
    color: var(--chrome-light);
}

/* ==================== GALLERY PREVIEW ==================== */
.gallery-preview {
    background: var(--light);
}

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

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

.gallery-item-lg {
    grid-column: span 2;
    grid-row: span 2;
}

.gallery-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--gray-dark) 0%, var(--dark) 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.gallery-placeholder i {
    font-size: 2.5rem;
    color: var(--primary);
    opacity: 0.5;
}

.gallery-placeholder span {
    color: var(--chrome-light);
    font-size: 0.875rem;
}

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

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

.gallery-tag {
    display: inline-block;
    font-size: 0.75rem;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 5px;
}

.gallery-overlay h4 {
    color: var(--white);
    font-family: var(--font-subheading);
    font-size: 1.25rem;
    margin-bottom: 5px;
}

.gallery-overlay p {
    color: var(--chrome-light);
    font-size: 0.875rem;
}

/* ==================== TESTIMONIALS ==================== */
.testimonials {
    background: var(--white);
}

.testimonials-slider {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background: var(--light);
    padding: 40px;
    border-radius: var(--radius-lg);
    position: relative;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 20px;
    right: 30px;
    font-family: Georgia, serif;
    font-size: 6rem;
    color: var(--primary);
    opacity: 0.1;
    line-height: 1;
}

.testimonial-stars {
    display: flex;
    gap: 5px;
    margin-bottom: 20px;
}

.testimonial-stars i {
    color: #FFD700;
    font-size: 1rem;
}

.testimonial-text {
    font-size: 1.0625rem;
    font-style: italic;
    color: var(--gray-dark);
    margin-bottom: 25px;
    line-height: 1.8;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.author-avatar i {
    color: var(--white);
    font-size: 1.25rem;
}

.author-info strong {
    display: block;
    font-family: var(--font-subheading);
    color: var(--dark);
}

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

/* ==================== CTA SECTION ==================== */
.cta-section {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="2" cy="2" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
}

.cta-content {
    position: relative;
    z-index: 1;
    text-align: center;
}

.cta-content h2 {
    color: var(--white);
    margin-bottom: 15px;
}

.cta-content p {
    color: rgba(255,255,255,0.9);
    font-size: 1.25rem;
    margin-bottom: 30px;
}

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

/* ==================== PAGE HERO ==================== */
.page-hero {
    background: linear-gradient(135deg, var(--dark) 0%, var(--black) 100%);
    padding: 120px 0 80px;
    text-align: center;
}

.page-hero h1 {
    color: var(--white);
    margin-bottom: 15px;
}

.page-hero p {
    color: var(--chrome-light);
    font-size: 1.25rem;
    margin-bottom: 20px;
}

.breadcrumb {
    display: flex;
    justify-content: center;
    gap: 10px;
    font-size: 0.875rem;
}

.breadcrumb a {
    color: var(--chrome-light);
}

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

.breadcrumb span {
    color: var(--gray);
}

/* ==================== SERVICES DETAIL PAGE ==================== */
.services-intro {
    padding: 60px 0 0;
}

.intro-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.services-detail {
    padding-top: 40px;
}

.service-detail-card {
    margin-bottom: 80px;
    scroll-margin-top: 100px;
}

.service-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.service-detail-grid.reverse {
    direction: rtl;
}

.service-detail-grid.reverse > * {
    direction: ltr;
}

.service-detail-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.image-placeholder-large {
    aspect-ratio: 4/3;
    background: linear-gradient(135deg, var(--dark-light) 0%, var(--dark) 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.image-placeholder-large i {
    font-size: 5rem;
    color: var(--primary);
    opacity: 0.4;
}

.service-detail-content {
    padding: 20px 0;
}

.service-detail-icon {
    width: 60px;
    height: 60px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.service-detail-icon i {
    font-size: 1.5rem;
    color: var(--white);
}

.service-detail-content h2 {
    margin-bottom: 20px;
}

.service-description {
    color: var(--gray);
    margin-bottom: 25px;
    line-height: 1.8;
}

.service-features h4 {
    font-family: var(--font-subheading);
    font-size: 1rem;
    margin-bottom: 15px;
    color: var(--dark);
}

.service-features ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 25px;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--gray-dark);
}

.service-features li i {
    color: var(--primary);
    font-size: 0.875rem;
}

.service-detail-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 25px;
    border-top: 1px solid var(--chrome);
}

.price-tag {
    display: flex;
    flex-direction: column;
}

.price-label {
    font-size: 0.75rem;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.price-value {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--primary);
}

/* Materials Section */
.materials-section {
    background: var(--light);
}

.finishes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 25px;
    margin-bottom: 60px;
}

.finish-card {
    background: var(--white);
    padding: 25px;
    border-radius: var(--radius);
    text-align: center;
    transition: var(--transition);
}

.finish-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.finish-preview {
    width: 80px;
    height: 80px;
    margin: 0 auto 15px;
    border-radius: 50%;
    background: var(--chrome-gradient);
}

.finish-gloss { background: linear-gradient(135deg, #fff 0%, #ccc 50%, #fff 100%); }
.finish-matte { background: #666; }
.finish-satin { background: linear-gradient(135deg, #888 0%, #aaa 100%); }
.finish-metallic { background: linear-gradient(135deg, #c0c0c0 0%, #e8e8e8 25%, #a0a0a0 50%, #d0d0d0 100%); }
.finish-chrome { background: linear-gradient(135deg, #fff 0%, #888 50%, #fff 100%); }
.finish-carbon-fiber {
    background: repeating-linear-gradient(45deg, #333 0px, #333 2px, #555 2px, #555 4px);
}
.finish-brushed-metal {
    background: repeating-linear-gradient(90deg, #aaa 0px, #ccc 1px, #aaa 2px);
}
.finish-color-shift {
    background: linear-gradient(135deg, #8B5CF6 0%, #06B6D4 50%, #10B981 100%);
}

.finish-card h4 {
    font-family: var(--font-subheading);
    font-size: 1rem;
    margin-bottom: 5px;
}

.finish-card p {
    font-size: 0.875rem;
    color: var(--gray);
}

.brands-showcase {
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid var(--chrome);
}

.brands-showcase h3 {
    font-family: var(--font-subheading);
    font-size: 1.125rem;
    margin-bottom: 30px;
    color: var(--gray);
}

.brand-logos {
    display: flex;
    justify-content: center;
    gap: 50px;
    flex-wrap: wrap;
}

.brand-logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--chrome-dark);
    opacity: 0.6;
    transition: var(--transition);
}

.brand-logo:hover {
    opacity: 1;
    color: var(--primary);
}

/* FAQ Section */
.faq-section {
    background: var(--white);
}

.faq-grid {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid var(--chrome);
}

.faq-question {
    width: 100%;
    padding: 25px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
}

.faq-question span {
    font-family: var(--font-subheading);
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--dark);
    transition: var(--transition);
}

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

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

.faq-item.active .faq-question i {
    transform: rotate(45deg);
}

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

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

.faq-answer p {
    padding-bottom: 25px;
    color: var(--gray);
    line-height: 1.8;
}

/* ==================== GALLERY PAGE ==================== */
.gallery-filters {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 50px;
}

.filter-btn {
    padding: 12px 24px;
    font-family: var(--font-subheading);
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--gray);
    background: var(--light);
    border: 2px solid transparent;
    border-radius: 30px;
    cursor: pointer;
    transition: var(--transition);
}

.filter-btn:hover,
.filter-btn.active {
    color: var(--primary);
    border-color: var(--primary);
    background: rgba(124, 181, 24, 0.1);
}

.gallery-masonry {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 25px;
}

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

.gallery-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

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

.gallery-card-image {
    position: relative;
    aspect-ratio: 4/3;
    overflow: hidden;
}

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

.gallery-card:hover .gallery-card-image img {
    transform: scale(1.05);
}

.gallery-placeholder-card {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--dark-light) 0%, var(--dark) 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.gallery-placeholder-card i {
    font-size: 3rem;
    color: var(--primary);
    opacity: 0.4;
}

.gallery-card-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

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

.gallery-zoom {
    width: 50px;
    height: 50px;
    background: var(--primary);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: scale(0);
    transition: var(--transition);
}

.gallery-card:hover .gallery-zoom {
    transform: scale(1);
}

.gallery-zoom i {
    color: var(--white);
    font-size: 1.25rem;
}

.gallery-card-content {
    padding: 20px;
}

.gallery-card-category {
    font-size: 0.75rem;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.gallery-card-content h3 {
    font-family: var(--font-subheading);
    font-size: 1.25rem;
    margin: 8px 0;
}

.gallery-card-content p {
    color: var(--gray);
    font-size: 0.9375rem;
    margin-bottom: 10px;
}

.gallery-card-color {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8125rem;
    color: var(--gray-light);
}

.gallery-card-color i {
    color: var(--primary);
}

.gallery-load-more {
    text-align: center;
    margin-top: 50px;
}

.gallery-count {
    color: var(--gray);
    font-size: 0.875rem;
}

/* Before/After Section */
.before-after-section {
    background: var(--light);
}

.before-after-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
}

.before-after-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.before-after-slider {
    position: relative;
    aspect-ratio: 16/10;
    overflow: hidden;
}

.before-side,
.after-side {
    position: absolute;
    inset: 0;
}

.ba-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #555 0%, #333 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.ba-placeholder i {
    font-size: 3rem;
    color: var(--chrome-light);
    opacity: 0.5;
}

.ba-placeholder span {
    color: var(--chrome-light);
    font-family: var(--font-subheading);
    text-transform: uppercase;
}

.ba-placeholder.after {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
}

.ba-label {
    position: absolute;
    top: 15px;
    padding: 5px 15px;
    background: rgba(0,0,0,0.7);
    color: var(--white);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 20px;
}

.before-side .ba-label { left: 15px; }
.after-side .ba-label { right: 15px; }

.ba-slider-handle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 50px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: ew-resize;
    box-shadow: var(--shadow);
    z-index: 10;
}

.ba-slider-handle i {
    color: var(--primary);
}

.before-after-info {
    padding: 20px 25px;
}

.before-after-info h4 {
    font-family: var(--font-subheading);
    margin-bottom: 5px;
}

.before-after-info p {
    color: var(--gray);
    font-size: 0.9375rem;
}

/* Social Section */
.social-section {
    background: var(--white);
    padding: 60px 0;
}

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

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

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

.lightbox-close,
.lightbox-prev,
.lightbox-next {
    position: absolute;
    background: none;
    border: none;
    color: var(--white);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 15px;
    transition: var(--transition);
}

.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
    color: var(--primary);
}

.lightbox-close { top: 20px; right: 20px; }
.lightbox-prev { left: 20px; top: 50%; transform: translateY(-50%); }
.lightbox-next { right: 20px; top: 50%; transform: translateY(-50%); }

.lightbox-content {
    max-width: 900px;
    text-align: center;
}

.lightbox-image {
    margin-bottom: 20px;
}

.lightbox-image img {
    max-width: 90vw;
    max-height: 70vh;
    object-fit: contain;
    border-radius: var(--radius);
}

.lightbox-placeholder {
    width: 800px;
    max-width: 90vw;
    aspect-ratio: 16/10;
}

.lightbox-info h3 {
    color: var(--white);
    margin-bottom: 10px;
}

.lightbox-info p {
    color: var(--chrome-light);
}

/* ==================== CONTACT PAGE ==================== */
.contact-section {
    padding-top: 60px;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 60px;
}

.form-header {
    margin-bottom: 30px;
}

.form-header h2 {
    margin-bottom: 10px;
}

.form-header p {
    color: var(--gray);
}

/* Alerts */
.alert {
    display: flex;
    gap: 15px;
    padding: 20px;
    border-radius: var(--radius);
    margin-bottom: 25px;
}

.alert i {
    font-size: 1.5rem;
}

.alert-success {
    background: rgba(40, 167, 69, 0.1);
    border: 1px solid var(--success);
}

.alert-success i {
    color: var(--success);
}

.alert-error {
    background: rgba(220, 53, 69, 0.1);
    border: 1px solid var(--error);
}

.alert-error i {
    color: var(--error);
}

.alert strong {
    display: block;
    margin-bottom: 5px;
}

.alert p {
    margin: 0;
    font-size: 0.9375rem;
}

/* Form Styles */
.contact-form {
    background: var(--light);
    padding: 40px;
    border-radius: var(--radius-lg);
}

.form-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 0;
}

.form-group label {
    display: block;
    font-family: var(--font-subheading);
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 8px;
}

.required {
    color: var(--error);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--dark);
    background: var(--white);
    border: 2px solid var(--chrome);
    border-radius: var(--radius);
    transition: var(--transition);
}

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

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

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

.contact-form .btn {
    margin-top: 10px;
}

.form-disclaimer {
    text-align: center;
    margin-top: 20px;
    font-size: 0.8125rem;
    color: var(--gray);
}

.form-disclaimer i {
    color: var(--primary);
    margin-right: 5px;
}

/* Contact Info Sidebar */
.contact-info-wrapper {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact-info-card {
    background: var(--light);
    padding: 30px;
    border-radius: var(--radius-lg);
}

.contact-info-card h3 {
    font-family: var(--font-subheading);
    font-size: 1.25rem;
    margin-bottom: 20px;
}

.contact-info-card p {
    color: var(--gray);
    font-size: 0.9375rem;
}

.contact-info-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-info-item {
    display: flex;
    gap: 15px;
}

.contact-info-icon {
    width: 45px;
    height: 45px;
    flex-shrink: 0;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-info-icon i {
    color: var(--white);
}

.contact-info-content {
    display: flex;
    flex-direction: column;
}

.contact-info-label {
    font-size: 0.75rem;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-info-content a,
.contact-info-content span {
    color: var(--dark);
    font-weight: 500;
}

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

/* Hours List */
.hours-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.hours-item {
    display: flex;
    justify-content: space-between;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--chrome);
}

.hours-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.hours-day {
    font-weight: 500;
    color: var(--dark);
}

.hours-time {
    color: var(--gray);
}

.hours-item.closed .hours-time {
    color: var(--error);
}

/* Contact Social */
.contact-social {
    display: flex;
    gap: 12px;
    margin-top: 15px;
}

.social-btn {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--white);
    font-size: 1.25rem;
    transition: var(--transition);
}

.social-btn.facebook { background: #1877F2; }
.social-btn.instagram { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }
.social-btn.tiktok { background: #000; }

.social-btn:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow);
    color: var(--white);
}

/* Highlight Card */
.contact-info-card.highlight {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
    text-align: center;
}

.contact-info-card.highlight h3 {
    color: var(--white);
}

.contact-info-card.highlight p {
    color: rgba(255,255,255,0.9);
}

.promise-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 15px;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.promise-icon i {
    font-size: 1.5rem;
    color: var(--white);
}

/* Map Section */
.map-section {
    padding: 0 0 80px;
}

.map-wrapper {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.map-placeholder {
    aspect-ratio: 21/9;
    background: linear-gradient(135deg, var(--dark-light) 0%, var(--dark) 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.map-placeholder i {
    font-size: 4rem;
    color: var(--primary);
    opacity: 0.5;
}

.map-placeholder h3 {
    color: var(--white);
    margin-bottom: 5px;
}

.map-placeholder p {
    color: var(--chrome-light);
    margin-bottom: 10px;
}

/* ==================== ABOUT PAGE ==================== */
.about-story {
    padding-bottom: 60px;
}

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

.story-content .section-tag {
    margin-bottom: 15px;
}

.story-content h2 {
    margin-bottom: 25px;
}

.story-content p {
    color: var(--gray);
    margin-bottom: 20px;
    line-height: 1.8;
}

.story-image {
    position: relative;
}

.story-placeholder {
    aspect-ratio: 4/3;
}

.story-badge {
    position: absolute;
    bottom: -15px;
    left: -15px;
    background: var(--primary);
    color: var(--white);
    padding: 20px 25px;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-lg);
}

.story-badge .badge-year {
    display: block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.8;
}

.story-badge .badge-number {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
}

/* Values Section */
.about-values {
    background: var(--light);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.value-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: var(--radius-lg);
    text-align: center;
    transition: var(--transition);
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.value-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: rgba(124, 181, 24, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.value-icon i {
    font-size: 2rem;
    color: var(--primary);
}

.value-card:hover .value-icon {
    background: var(--primary);
}

.value-card:hover .value-icon i {
    color: var(--white);
}

.value-card h3 {
    font-family: var(--font-subheading);
    font-size: 1.25rem;
    margin-bottom: 15px;
}

.value-card p {
    color: var(--gray);
    font-size: 0.9375rem;
}

/* Stats Section */
.about-stats {
    background: var(--dark);
    padding: 80px 0;
}

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

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

.stat-card .stat-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: rgba(124, 181, 24, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.stat-card .stat-icon i {
    font-size: 1.75rem;
    color: var(--primary);
}

.stat-card .stat-number {
    display: block;
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 10px;
}

.stat-card .stat-label {
    font-family: var(--font-subheading);
    font-size: 0.875rem;
    color: var(--chrome-light);
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Team Section */
.about-team {
    background: var(--white);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.team-card {
    background: var(--light);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition);
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.team-image {
    aspect-ratio: 1;
    overflow: hidden;
}

.team-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--dark-light) 0%, var(--dark) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.team-placeholder i {
    font-size: 4rem;
    color: var(--chrome);
    opacity: 0.5;
}

.team-info {
    padding: 25px;
}

.team-info h4 {
    font-family: var(--font-subheading);
    font-size: 1.25rem;
    margin-bottom: 5px;
}

.team-role {
    display: block;
    font-size: 0.875rem;
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 10px;
}

.team-info p {
    font-size: 0.9375rem;
    color: var(--gray);
}

/* Certifications Section */
.about-certifications {
    background: var(--light);
}

.certifications-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

.cert-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: var(--radius-lg);
    text-align: center;
    transition: var(--transition);
}

.cert-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.cert-logo {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: var(--chrome-dark);
    margin-bottom: 15px;
}

.cert-card span {
    font-size: 0.875rem;
    color: var(--gray);
}

/* Facility Section */
.about-facility {
    background: var(--white);
}

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

.facility-content .section-tag {
    margin-bottom: 15px;
}

.facility-content h2 {
    margin-bottom: 20px;
}

.facility-content > p {
    color: var(--gray);
    margin-bottom: 30px;
    line-height: 1.8;
}

.facility-features {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.facility-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--gray-dark);
}

.facility-features li i {
    color: var(--primary);
}

.facility-image-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.facility-placeholder {
    aspect-ratio: 1;
    background: linear-gradient(135deg, var(--dark-light) 0%, var(--dark) 100%);
    border-radius: var(--radius-lg);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.facility-placeholder i {
    font-size: 2.5rem;
    color: var(--primary);
    opacity: 0.5;
}

.facility-placeholder span {
    color: var(--chrome-light);
    font-size: 0.875rem;
}

/* ==================== FOOTER ==================== */
.main-footer {
    background: var(--dark);
    color: var(--chrome-light);
}

.footer-top {
    padding: 80px 0 60px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
    gap: 50px;
}

.footer-logo {
    height: 50px;
    margin-bottom: 15px;
}

.footer-tagline {
    font-family: var(--font-subheading);
    font-size: 1rem;
    color: var(--primary);
    margin-bottom: 15px;
}

.footer-description {
    font-size: 0.9375rem;
    line-height: 1.7;
    margin-bottom: 20px;
}

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

.footer-social a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--dark-light);
    border-radius: 50%;
    color: var(--chrome-light);
    transition: var(--transition);
}

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

.footer-section h4 {
    font-family: var(--font-subheading);
    font-size: 1.125rem;
    color: var(--white);
    margin-bottom: 25px;
    position: relative;
}

.footer-section h4::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--primary);
}

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

.footer-links a {
    color: var(--chrome-light);
    font-size: 0.9375rem;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--primary);
    padding-left: 5px;
}

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

.footer-contact li {
    display: flex;
    gap: 12px;
    font-size: 0.9375rem;
}

.footer-contact i {
    color: var(--primary);
    width: 20px;
}

.footer-contact a {
    color: var(--chrome-light);
}

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

.footer-hours {
    margin-top: 25px;
}

.footer-hours h5 {
    font-family: var(--font-subheading);
    font-size: 0.875rem;
    color: var(--white);
    margin-bottom: 10px;
}

.footer-hours p {
    font-size: 0.875rem;
    margin-bottom: 5px;
}

.footer-bottom {
    background: var(--black);
    padding: 25px 0;
}

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

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

.footer-credit i {
    color: var(--error);
}

/* ==================== BACK TO TOP ==================== */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary);
    color: var(--white);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 999;
    box-shadow: var(--shadow);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

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

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

    .service-detail-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .service-detail-grid.reverse {
        direction: ltr;
    }

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

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

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

    .process-timeline {
        flex-direction: column;
        gap: 30px;
    }

    .process-timeline::before {
        display: none;
    }

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

    .gallery-item-lg {
        grid-column: span 2;
    }
}

@media (max-width: 768px) {
    section {
        padding: 60px 0;
    }

    .top-bar-left {
        display: none;
    }

    .nav-toggle {
        display: block;
        z-index: 1001;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 300px;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 30px;
        transition: var(--transition-slow);
        box-shadow: var(--shadow-lg);
    }

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

    .nav-menu a {
        font-size: 1.25rem;
    }

    .nav-cta {
        margin-left: 0;
    }

    .hero-stats {
        gap: 30px;
    }

    .stat-number {
        font-size: 2rem;
    }

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

    .gallery-item-lg {
        grid-column: span 1;
    }

    .before-after-grid {
        grid-template-columns: 1fr;
    }

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

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

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

    .contact-form {
        padding: 25px;
    }

    .floating-badge,
    .story-badge {
        position: relative;
        bottom: auto;
        right: auto;
        left: auto;
        margin-top: 20px;
        display: inline-block;
    }
}

@media (max-width: 480px) {
    .hero-cta {
        flex-direction: column;
    }

    .cta-buttons {
        flex-direction: column;
        width: 100%;
    }

    .cta-buttons .btn {
        width: 100%;
    }

    .gallery-filters {
        gap: 10px;
    }

    .filter-btn {
        padding: 10px 18px;
        font-size: 0.75rem;
    }

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

    .facility-image-grid {
        grid-template-columns: 1fr;
    }
}

/* ==================== ANIMATIONS ==================== */
[data-aos] {
    pointer-events: auto !important;
}
