/* ===================================
   NOOR Fitness — Main Stylesheet
   Layout: Bootstrap-style responsive containers (no Bootstrap CSS dependency)
   =================================== */

/* ========== CSS VARIABLES ========== */
:root {
    /* NOOR Fitness brand */
    --primary: #B2AC88;
    --primary-light: #C9C4A8;
    --primary-dark: #8F8A6F;
    --secondary: #1B3022;
    --secondary-light: #2a4a38;
    --secondary-dark: #132018;
    --accent: #FF6B35;
    --accent-light: #ff8f66;
    --accent-dark: #e55a2b;
    
    /* Neutrals (tinted for green brand) */
    --dark: #1B3022;
    --dark-light: #2d4a3a;
    --gray-900: #1B3022;
    --gray-800: #243d30;
    --gray-700: #3d5246;
    --gray-600: #5a6b62;
    --gray-500: #7a887f;
    --gray-400: #9ca8a1;
    --gray-300: #c5ccc7;
    --gray-200: #e0e5e1;
    --gray-100: #f0f3f1;
    --gray-50: #f8faf9;
    --white: #FFFFFF;
    
    /* Status Colors */
    --success: #2a7a4b;
    --error: #EF4444;
    --warning: #FF6B35;
    --info: #B2AC88;
    
    /* Typography */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-heading: 'Playfair Display', Georgia, serif;
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
    --spacing-2xl: 4rem;
    --spacing-3xl: 6rem;
    
    /* Border Radius */
    --radius-sm: 0.375rem;
    --radius-md: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;
    --radius-2xl: 1.5rem;
    --radius-full: 9999px;
    
    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    
    /* Transitions */
    --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-base: 300ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 500ms cubic-bezier(0.4, 0, 0.2, 1);
    
    /* Z-Index */
    --z-dropdown: 1000;
    --z-sticky: 1020;
    --z-fixed: 1030;
    --z-modal: 1040;
    --z-tooltip: 1050;

    /* Bootstrap-like container gutters & max-widths */
    --container-gutter-x: 0.75rem;
    --container-max-sm: 540px;
    --container-max-md: 720px;
    --container-max-lg: 960px;
    --container-max-xl: 1140px;
    --container-max-xxl: 1320px;

    --section-py: clamp(3.25rem, 6vw, 5.5rem);
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-primary);
    font-size: 1rem;
    line-height: 1.6;
    color: var(--gray-700);
    background-color: var(--gray-50);
    background-image:
        radial-gradient(ellipse 120% 80% at 100% -20%, rgba(178, 172, 136, 0.22) 0%, transparent 55%),
        radial-gradient(ellipse 90% 60% at 0% 50%, rgba(27, 48, 34, 0.06) 0%, transparent 45%),
        linear-gradient(180deg, var(--gray-50) 0%, var(--white) 35%, var(--gray-50) 100%);
    background-attachment: fixed;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

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

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

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
    transition: all var(--transition-base);
}

input,
textarea,
select {
    font-family: inherit;
    font-size: inherit;
    line-height: inherit;
}

ul {
    list-style: none;
}

/* ========== UTILITIES — Bootstrap-style containers ========== */
.container,
.container-fluid {
    width: 100%;
    margin-right: auto;
    margin-left: auto;
    padding-right: var(--container-gutter-x);
    padding-left: var(--container-gutter-x);
}

.container-fluid {
    max-width: none;
}

/* Responsive max-widths (aligns with Bootstrap 5 breakpoints) */
@media (min-width: 576px) {
    .container {
        max-width: var(--container-max-sm);
    }
    :root {
        --container-gutter-x: 0.75rem;
    }
}

@media (min-width: 768px) {
    .container {
        max-width: var(--container-max-md);
    }
    :root {
        --container-gutter-x: 1rem;
    }
}

@media (min-width: 992px) {
    .container {
        max-width: var(--container-max-lg);
    }
}

@media (min-width: 1200px) {
    .container {
        max-width: var(--container-max-xl);
    }
    :root {
        --container-gutter-x: 1.25rem;
    }
}

@media (min-width: 1400px) {
    .container {
        max-width: var(--container-max-xxl);
    }
}

.section-badge {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    background: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-light) 100%);
    color: var(--white);
    font-size: 0.8125rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    border-radius: var(--radius-full);
    margin-bottom: 1rem;
    box-shadow: 0 4px 14px rgba(27, 48, 34, 0.2);
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    line-height: 1.2;
    color: var(--dark);
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
    width: 100%;
}

.section-header .section-title::after {
    content: '';
    display: block;
    width: 4rem;
    height: 4px;
    margin: 1rem auto 0;
    border-radius: var(--radius-full);
    background: linear-gradient(90deg, var(--accent), var(--primary));
}

.section-subtitle {
    font-size: 1.0625rem;
    color: var(--gray-600);
    max-width: 42rem;
    margin: 0 auto;
    line-height: 1.65;
}

.section-header {
    text-align: center;
    margin-bottom: clamp(2.5rem, 5vw, 3.5rem);
}

.gradient-text {
    background: linear-gradient(135deg, var(--accent-light), var(--primary-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ========== BUTTONS ========== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    line-height: 1;
    text-align: center;
    border-radius: var(--radius-lg);
    transition: all var(--transition-base);
    cursor: pointer;
    white-space: nowrap;
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 4px 16px rgba(255, 107, 53, 0.35);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(255, 107, 53, 0.45);
    filter: brightness(1.05);
}

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

.btn-secondary {
    background: var(--white);
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn-secondary:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(27, 48, 34, 0.3);
}

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

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

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

.btn-block {
    width: 100%;
}

.btn .icon {
    width: 20px;
    height: 20px;
}

/* ========== HEADER ========== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.88);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(27, 48, 34, 0.08);
    box-shadow: 0 1px 0 rgba(255, 255, 255, 0.8) inset, 0 4px 24px rgba(27, 48, 34, 0.06);
    z-index: var(--z-fixed);
    transition: background var(--transition-base), box-shadow var(--transition-base), border-color var(--transition-base);
}

.header.is-scrolled {
    background: rgba(255, 255, 255, 0.97);
    box-shadow: 0 8px 32px rgba(27, 48, 34, 0.1);
    border-bottom-color: rgba(27, 48, 34, 0.06);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
}

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

.nav-list {
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

.nav-link {
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--gray-700);
    position: relative;
}

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

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

.nav-link:hover::after {
    width: 100%;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 0.5rem;
}

.mobile-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background: var(--primary);
    border-radius: 2px;
    transition: all var(--transition-base);
}

/* ========== TRUST BAR ========== */
.trust-bar {
    background: linear-gradient(135deg, var(--secondary-dark) 0%, var(--secondary) 45%, var(--secondary-light) 100%);
    padding: 2.25rem 0;
    margin-top: -2.75rem;
    border-radius: var(--radius-2xl) var(--radius-2xl) 0 0;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 -4px 40px rgba(27, 48, 34, 0.35), 0 12px 40px rgba(0, 0, 0, 0.15);
    position: relative;
    z-index: 10;
}

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

.trust-icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    color: var(--accent-light);
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.2));
}

.trust-text strong {
    display: block;
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.2rem;
}

.trust-text span {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.75);
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem 1.25rem;
    border-right: 1px solid rgba(255, 255, 255, 0.15);
}

.trust-item:last-child {
    border-right: none;
}

/* ========== HERO SECTION ========== */
.hero {
    position: relative;
    z-index: 1;
    min-height: 100vh;
    min-height: 100dvh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--secondary-dark), var(--secondary));
    background-image: url('../images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    padding: clamp(6rem, 12vw, 8rem) 0 clamp(5rem, 10vw, 6.5rem);
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(27, 48, 34, 0.72), rgba(178, 172, 136, 0.18));
    z-index: 1;
}

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

.hero-badge {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-full);
    color: var(--white);
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 2rem;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 7vw, 4.5rem);
    font-weight: 900;
    line-height: 1.1;
    color: var(--white);
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: clamp(1.125rem, 2.5vw, 1.375rem);
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 3rem;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
}

.hero-scroll {
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.4rem;
    color: var(--white);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-decoration: none;
    z-index: 10;
    cursor: pointer;
    padding: 0.875rem 1.75rem;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 2px solid rgba(255, 255, 255, 0.55);
    border-radius: var(--radius-full);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25), 0 0 0 0 rgba(255, 255, 255, 0.4);
    animation: scrollBounce 2.2s ease-in-out infinite;
    transition: background 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.hero-scroll:hover {
    background: rgba(255, 255, 255, 0.28);
    border-color: rgba(255, 255, 255, 0.9);
    box-shadow: 0 6px 28px rgba(0, 0, 0, 0.3), 0 0 0 6px rgba(255, 255, 255, 0.15);
    color: var(--white);
}

.hero-scroll svg {
    display: block;
}

@keyframes scrollBounce {
    0%, 100% {
        transform: translateX(-50%) translateY(0);
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25), 0 0 0 0 rgba(255, 255, 255, 0.4);
    }
    50% {
        transform: translateX(-50%) translateY(8px);
        box-shadow: 0 8px 28px rgba(0, 0, 0, 0.3), 0 0 0 8px rgba(255, 255, 255, 0.08);
    }
}

/* ========== SERVICES SECTION ========== */
.services {
    padding: var(--section-py) 0;
    padding-top: calc(var(--section-py) + 0.5rem);
    background: var(--white);
    position: relative;
    z-index: 2;
    border-top: 1px solid var(--gray-200);
    box-shadow: 0 -20px 50px rgba(27, 48, 34, 0.04);
}

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

.service-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-sm);
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 48px rgba(27, 48, 34, 0.12), 0 0 0 1px rgba(178, 172, 136, 0.35);
    border-color: rgba(178, 172, 136, 0.5);
}

/* ---- Image panel ---- */
.service-card-image {
    position: relative;
    width: 100%;
    aspect-ratio: 3 / 2;
    overflow: hidden;
    flex-shrink: 0;
}

.service-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.5s ease;
    display: block;
}

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

/* gradient scrim so icon always readable */
.service-card-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(27,48,34,0.25) 0%, rgba(27,48,34,0.65) 100%);
    transition: opacity 0.35s ease;
}

.service-card:hover .service-card-image::after {
    opacity: 0.75;
}

/* floating icon badge */
.service-card-icon {
    position: absolute;
    bottom: -22px;
    left: 1.5rem;
    z-index: 2;
    width: 52px;
    height: 52px;
    background: linear-gradient(135deg, var(--primary-light), var(--primary));
    color: var(--white);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 20px rgba(27, 48, 34, 0.35);
    border: 3px solid var(--white);
    transition: background 0.3s ease, transform 0.3s ease;
}

.service-card:hover .service-card-icon {
    background: linear-gradient(135deg, var(--secondary-dark), var(--secondary));
    transform: rotate(-6deg) scale(1.08);
}

/* ---- Text body ---- */
.service-card-body {
    padding: 2rem 1.75rem 1.75rem;
    padding-top: 2.25rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.service-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 0.65rem;
    line-height: 1.3;
}

.service-description {
    color: var(--gray-600);
    margin-bottom: 1.25rem;
    line-height: 1.7;
    font-size: 0.9375rem;
}

.service-features {
    list-style: none;
    margin-bottom: 1.5rem;
    flex: 1;
}

.service-features li {
    position: relative;
    padding-left: 1.6rem;
    margin-bottom: 0.6rem;
    color: var(--gray-700);
    font-size: 0.9rem;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--secondary);
    font-weight: 700;
}

/* ---- CTA link ---- */
.service-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary);
    text-decoration: none;
    padding: 0.6rem 0;
    border-top: 1px solid var(--gray-200);
    margin-top: auto;
    transition: color 0.2s ease, gap 0.2s ease;
}

.service-cta:hover {
    color: var(--secondary-dark);
    gap: 0.6rem;
}

/* ========== WHY US SECTION ========== */
.why-us {
    padding: var(--section-py) 0;
    background: linear-gradient(180deg, var(--gray-50) 0%, var(--white) 50%, var(--gray-50) 100%);
    position: relative;
}

.why-us::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 70% 50% at 80% 20%, rgba(255, 107, 53, 0.06) 0%, transparent 55%);
    pointer-events: none;
}

.why-us .container {
    position: relative;
    z-index: 1;
}

.why-us-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 1fr));
    gap: clamp(2rem, 4vw, 4rem);
    align-items: center;
}

.why-us-intro {
    font-size: 1.125rem;
    color: var(--gray-600);
    margin-bottom: 2.5rem;
    line-height: 1.7;
}

.features-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.feature-item {
    display: flex;
    gap: 1.5rem;
}

.feature-icon {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-light) 100%);
    color: var(--primary-light);
    border-radius: var(--radius-lg);
    box-shadow: 0 6px 16px rgba(27, 48, 34, 0.2);
}

.feature-text h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 0.5rem;
}

.feature-text p {
    color: var(--gray-600);
    line-height: 1.6;
}

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

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

.stats-badge {
    position: absolute;
    bottom: 2rem;
    left: 2rem;
    display: flex;
    gap: 2rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
}

.stat h3 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 0.5rem;
}

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

/* ========== REVIEWS SECTION ========== */
.reviews {
    padding: var(--section-py) 0;
    background: linear-gradient(180deg, var(--white) 0%, var(--gray-50) 100%);
}

.reviewsSwiper {
    padding: 2rem 0 4rem;
}

.reviewsSwiper .swiper-slide {
    height: auto;
    display: flex;
}

.review-card {
    padding: 2.5rem;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    width: 100%;
    min-height: 400px;
    display: flex;
    flex-direction: column;
    transition: box-shadow var(--transition-base), border-color var(--transition-base);
}

.review-card:hover {
    box-shadow: 0 16px 40px rgba(27, 48, 34, 0.1);
    border-color: rgba(178, 172, 136, 0.45);
}

.review-stars {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    flex-shrink: 0;
}

.review-text {
    font-size: 1.0625rem;
    line-height: 1.75;
    color: var(--gray-700);
    margin-bottom: 1.5rem;
    font-style: italic;
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 10;
    line-clamp: 10;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: auto;
}

.review-author img {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    object-fit: cover;
}

.author-info h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 0.25rem;
}

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

.swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: var(--gray-400);
    opacity: 1;
}

.swiper-pagination-bullet-active {
    background: var(--primary);
    width: 32px;
    border-radius: 6px;
}

.google-reviews-cta {
    text-align: center;
    margin-top: 3rem;
}

.google-reviews-cta p {
    font-size: 1.125rem;
    color: var(--gray-700);
    margin-bottom: 1.5rem;
}

/* ========== SERVICE AREAS ========== */
.service-areas {
    padding: var(--section-py) 0;
    background: linear-gradient(145deg, var(--secondary) 0%, var(--secondary-light) 55%, var(--primary-dark) 100%);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.service-areas::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 10% 90%, rgba(255, 107, 53, 0.15) 0%, transparent 45%);
    pointer-events: none;
}

.service-areas .container {
    position: relative;
    z-index: 1;
}

.service-areas .section-badge {
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
}

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

.service-areas .section-subtitle {
    color: rgba(255, 255, 255, 0.9);
}

.service-areas .section-header .section-title::after {
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.5), var(--accent-light));
}

.areas-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 2rem;
}

.area-tag {
    padding: 0.75rem 1.5rem;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-full);
    font-size: 0.9375rem;
    font-weight: 500;
    transition: all var(--transition-base);
}

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

.areas-note {
    text-align: center;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
}

.areas-note a {
    color: var(--accent);
    font-weight: 600;
    text-decoration: underline;
}

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

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 1fr));
    gap: clamp(2rem, 4vw, 4rem);
}

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

.contact-intro {
    font-size: 1.125rem;
    color: var(--gray-600);
    margin-bottom: 2.5rem;
    line-height: 1.7;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-method {
    display: flex;
    gap: 1.5rem;
}

.contact-icon {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--primary-light), var(--primary));
    color: var(--white);
    border-radius: var(--radius-lg);
}

.contact-details h4 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 0.5rem;
}

.contact-details p,
.contact-details a {
    color: var(--gray-600);
    line-height: 1.6;
}

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

/* ========== CONTACT FORM ========== */
.contact-form-wrapper {
    padding: clamp(1.75rem, 4vw, 3rem);
    background: linear-gradient(165deg, var(--gray-50) 0%, var(--white) 100%);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-xl), 0 0 0 1px rgba(255, 255, 255, 0.8) inset;
}

.contact-form h3 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 2rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--gray-700);
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.875rem 1.25rem;
    font-size: 1rem;
    color: var(--dark);
    background: var(--white);
    border: 2px solid var(--gray-300);
    border-radius: var(--radius-lg);
    transition: all var(--transition-base);
}

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

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

.captcha-group input {
    max-width: 150px;
}

.form-message {
    margin-top: 1rem;
    padding: 1rem;
    border-radius: var(--radius-lg);
    font-size: 0.9375rem;
    font-weight: 500;
}

.form-message.success {
    background: #D1FAE5;
    color: #065F46;
    border: 1px solid #6EE7B7;
}

.form-message.error {
    background: #FEE2E2;
    color: #991B1B;
    border: 1px solid #FCA5A5;
}

.spinner {
    animation: spin 1s linear infinite;
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

/* ========== FOOTER ========== */
.footer {
    padding: clamp(3rem, 6vw, 4rem) 0 2rem;
    background: linear-gradient(180deg, var(--secondary-dark) 0%, var(--dark) 40%, #0f1a14 100%);
    color: var(--gray-400);
    border-top: 1px solid rgba(178, 172, 136, 0.12);
}

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

.footer-logo img {
    height: 50px;
    margin-bottom: 1.5rem;
}

.footer-desc {
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.footer-rating .stars {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.footer-rating p {
    font-size: 0.875rem;
}

.footer-col h4 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1.5rem;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

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

.footer-contact li {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.footer-contact svg {
    flex-shrink: 0;
    margin-top: 0.25rem;
    color: var(--primary-light);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--gray-800);
}

.footer-bottom p {
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.footer-credit {
    color: var(--gray-500);
}

/* ========== BACK TO TOP BUTTON ========== */
.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: var(--white);
    border-radius: 50%;
    box-shadow: var(--shadow-xl);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all var(--transition-base);
    z-index: var(--z-fixed);
}

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

.back-to-top:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-2xl);
}
