/* ============================================
   CSS VARIABLES - Design Tokens (2025 Modern)
   ============================================ */
:root {
    /* 2025 Soothing & Multi-tonal Color Palette */
    --color-primary: #2C5F8D;        /* Muted deep blue */
    --color-primary-dark: #1A3A52;   /* Rich navy */
    --color-primary-light: #5A8AB5;  /* Soft sky blue */
    --color-secondary: #2A2A2A;      /* Warm charcoal */
    --color-secondary-light: #4A4A4A; /* Medium gray */
    --color-accent: #D4845C;         /* Warm terracotta */
    --color-accent-light: #E8B4A0;   /* Soft peach */
    
    /* Neutrals - Warmer tones */
    --color-white: #FEFDFB;          /* Warm white */
    --color-black: #1C1C1E;          /* Soft black */
    --color-cream: #F7F5F2;          /* Warm cream */
    --color-sand: #EDE8E2;           /* Soft sand */
    --color-gray-100: #F9F8F6;
    --color-gray-200: #EEEBE6;
    --color-gray-300: #D8D5CF;
    --color-gray-400: #B8B5AF;
    --color-gray-500: #999693;
    --color-gray-600: #6E6B66;
    --color-gray-700: #4A4845;
    --color-gray-800: #2E2C2A;
    --color-gray-900: #1C1C1E;
    
    /* Semantic Colors - Muted */
    --color-success: #6B9B7F;
    --color-danger: #C97064;
    --color-warning: #D4A574;
    --color-info: #5A8AB5;
    
    /* Typography - Bold & Clean */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-heading: 'DM Sans', 'Inter', sans-serif;  /* Modern clean sans-serif */
    --font-accent: 'DM Sans', 'Inter', sans-serif;
    
    --font-size-xs: 0.8125rem;    /* 13px */
    --font-size-sm: 0.9375rem;    /* 15px */
    --font-size-base: 1.0625rem;  /* 17px - More readable */
    --font-size-lg: 1.25rem;      /* 20px */
    --font-size-xl: 1.5rem;       /* 24px */
    --font-size-2xl: 1.875rem;    /* 30px */
    --font-size-3xl: 2.5rem;      /* 40px - Bolder */
    --font-size-4xl: 3.5rem;      /* 56px - Hero sizes */
    --font-size-5xl: 4.5rem;      /* 72px - Extra bold */
    --font-size-6xl: 6rem;        /* 96px - Statement */
    
    --font-weight-light: 300;
    --font-weight-normal: 400;
    --font-weight-medium: 500;
    --font-weight-semibold: 600;
    --font-weight-bold: 700;
    
    --line-height-tight: 1.25;
    --line-height-normal: 1.5;
    --line-height-relaxed: 1.75;
    
    /* Spacing - More generous for 2025 */
    --space-xs: 0.5rem;     /* 8px */
    --space-sm: 0.75rem;    /* 12px */
    --space-md: 1.25rem;    /* 20px */
    --space-lg: 2rem;       /* 32px */
    --space-xl: 3rem;       /* 48px */
    --space-2xl: 4rem;      /* 64px */
    --space-3xl: 6rem;      /* 96px */
    --space-4xl: 8rem;      /* 128px */
    --space-5xl: 12rem;     /* 192px */
    
    /* Border Radius - Simplified */
    --radius-sm: 5px;       /* Small radius */
    --radius-md: 5px;       /* Medium radius */
    --radius-lg: 10px;      /* Large radius */
    --radius-xl: 10px;      /* Extra large radius */
    --radius-2xl: 10px;     /* 2X large radius */
    --radius-blob: 60% 40% 30% 70% / 60% 30% 70% 40%; /* Organic blob shape */
    --radius-full: 9999px;  /* Fully rounded (circles, pills) */
    
    /* Shadows - Softer, warmer */
    --shadow-sm: 0 2px 8px rgba(44, 95, 141, 0.04);
    --shadow-md: 0 4px 16px rgba(44, 95, 141, 0.08);
    --shadow-lg: 0 8px 32px rgba(44, 95, 141, 0.12);
    --shadow-xl: 0 16px 48px rgba(44, 95, 141, 0.16);
    --shadow-2xl: 0 24px 64px rgba(44, 95, 141, 0.2);
    
    /* Transitions */
    --transition-fast: 150ms ease-in-out;
    --transition-base: 250ms ease-in-out;
    --transition-slow: 350ms ease-in-out;
    
    /* Layout */
    --container-max-width: 1400px;
    --container-padding: var(--space-md);
    
    /* Z-index */
    --z-dropdown: 1000;
    --z-sticky: 1020;
    --z-fixed: 1030;
    --z-modal-backdrop: 1040;
    --z-modal: 1050;
    --z-popover: 1060;
    --z-tooltip: 1070;
}

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

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

body {
    font-family: var(--font-primary);
    font-size: var(--font-size-base);
    font-weight: var(--font-weight-normal);
    line-height: var(--line-height-normal);
    color: var(--color-gray-900);
    background-color: var(--color-white);
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: var(--font-weight-bold);
    line-height: var(--line-height-tight);
    color: var(--color-secondary);
}

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

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

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

ul, ol {
    list-style: none;
}

button {
    font-family: inherit;
    font-size: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

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

@media (min-width: 768px) {
    .container {
        --container-padding: var(--space-lg);
    }
}

@media (min-width: 1024px) {
    .container {
        --container-padding: var(--space-xl);
    }
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1.125rem 2.5rem;
    font-size: var(--font-size-base);
    font-weight: var(--font-weight-semibold);
    line-height: 1;
    text-align: center;
    white-space: nowrap;
    border-radius: 5px; /* More rounded */
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1); /* Smoother easing */
    cursor: pointer;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
    font-family: var(--font-accent);
    letter-spacing: 0.02em;
}

/* Micro-animation: button ripple effect */
.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn--primary {
    background-color: var(--color-primary);
    color: var(--color-white);
    box-shadow: var(--shadow-md);
}

.btn--primary:hover {
    background-color: var(--color-primary-dark);
    color: var(--color-white);
    transform: translateY(-3px);
    box-shadow: var(--shadow-xl);
}

.btn--secondary {
    background-color: var(--color-accent);
    color: var(--color-white);
    box-shadow: var(--shadow-md);
}

.btn--secondary:hover {
    background-color: var(--color-accent-light);
    color: var(--color-secondary);
    transform: translateY(-3px);
    box-shadow: var(--shadow-xl);
}

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

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

.btn--large {
    padding: 1.375rem 3rem;
    font-size: var(--font-size-lg);
    border-radius: var(--radius-2xl);
}

/* ============================================
   HEADER
   ============================================ */
.header {
    position: sticky;
    top: 0;
    z-index: 1000; /* Above mobile menu */
    background-color: var(--color-secondary);
    box-shadow: var(--shadow-md);
}

.header__container {
    max-width: var(--container-max-width);
    margin-inline: auto;
    padding: var(--space-md) var(--container-padding);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-lg);
}

.header__logo {
    flex-shrink: 0;
}

.header__logo-image {
    height: 100px;
    width: auto;
}

.header__nav {
    flex: 1;
    display: flex;
    justify-content: center;
}

.header__menu {
    display: flex;
    gap: var(--space-lg);
    align-items: center;
	margin-bottom: 0px !important;
}

.header__menu-link {
    color: var(--color-white);
    font-weight: var(--font-weight-medium);
    font-size: var(--font-size-base);
    padding: var(--space-sm) 0;
    position: relative;
}

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

.header__menu-link:hover,
.header__menu-link--active {
    color: var(--color-white);
}

.header__menu-link:hover::after,
.header__menu-link--active::after {
    width: 100%;
}

.header__cta {
    display: flex;
    align-items: center;
    gap: var(--space-md);
}

.header__phone {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1.125rem 2.5rem;
    font-size: var(--font-size-base);
    font-weight: var(--font-weight-semibold);
    line-height: 1;
    text-align: center;
    white-space: nowrap;
    border-radius: var(--radius-md);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
    font-family: var(--font-accent);
    letter-spacing: 0.02em;
    background-color: #2C5F8D;
    color: var(--color-white);
    box-shadow: var(--shadow-md);
}

.header__phone::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.header__phone:hover::before {
    width: 300px;
    height: 300px;
}

.header__phone:hover {
    background-color: var(--color-accent-light);
    color: var(--color-secondary);
    transform: translateY(-3px);
    box-shadow: var(--shadow-xl);
}

.header__mobile-toggle {
    display: none;
}

/* Hide mobile menu CTA on desktop */
.header__nav .header__cta {
    display: none;
}

/* Mobile Header */
@media (max-width: 1024px) {
    .header__container {
        padding: var(--space-md);
    }
    
    /* Modern mobile menu backdrop with blur */
    .header__nav::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(135deg, rgba(26, 58, 82, 0.95) 0%, rgba(44, 95, 141, 0.95) 100%);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        opacity: 0;
        visibility: hidden;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: -1;
    }
    
    .header__nav {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(180deg, rgba(28, 28, 30, 0.98) 0%, rgba(42, 42, 42, 0.98) 100%);
        padding: var(--space-2xl) var(--space-lg) var(--space-lg);
        transform: translateX(100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: -10px 0 40px rgba(0, 0, 0, 0.3);
        overflow-y: auto;
        overflow-x: hidden;
        display: flex;
        flex-direction: column;
        gap: var(--space-md);
        max-width: 85vw;
        margin-left: auto;
        z-index: 999;
        border-left: 1px solid rgba(44, 95, 141, 0.2);
    }
    
    .header__nav--open {
        transform: translateX(0);
        opacity: 1;
        visibility: visible;
    }
    
    .header__nav--open::before {
        opacity: 1;
        visibility: visible;
    }
    
    /* Modern scrollbar for mobile menu */
    .header__nav::-webkit-scrollbar {
        width: 6px;
    }
    
    .header__nav::-webkit-scrollbar-track {
        background: rgba(255, 255, 255, 0.05);
        border-radius: 10px;
    }
    
    .header__nav::-webkit-scrollbar-thumb {
        background: rgba(44, 95, 141, 0.5);
        border-radius: 10px;
        transition: background 0.3s ease;
    }
    
    .header__nav::-webkit-scrollbar-thumb:hover {
        background: rgba(44, 95, 141, 0.8);
    }
    
    .header__menu {
        flex-direction: column;
        gap: var(--space-xs);
        align-items: stretch;
        margin-top: var(--space-lg);
    }
    
    .header__menu-item {
        width: 100%;
        opacity: 0;
        transform: translateX(30px);
        animation: slideInMenuItem 0.4s ease forwards;
    }
    
    .header__nav--open .header__menu-item:nth-child(1) { animation-delay: 0.1s; }
    .header__nav--open .header__menu-item:nth-child(2) { animation-delay: 0.15s; }
    .header__nav--open .header__menu-item:nth-child(3) { animation-delay: 0.2s; }
    .header__nav--open .header__menu-item:nth-child(4) { animation-delay: 0.25s; }
    .header__nav--open .header__menu-item:nth-child(5) { animation-delay: 0.3s; }
    
    @keyframes slideInMenuItem {
        to {
            opacity: 1;
            transform: translateX(0);
        }
    }
    
    .header__menu-link {
        display: flex;
        align-items: center;
        padding: var(--space-md) var(--space-lg);
        font-size: 1.125rem;
        font-weight: var(--font-weight-medium);
        color: var(--color-white);
        background: rgba(255, 255, 255, 0.03);
        border-radius: var(--radius-lg);
        border-left: 3px solid transparent;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        letter-spacing: 0.02em;
    }
    
    .header__menu-link:hover {
        background: rgba(44, 95, 141, 0.2);
        border-left-color: var(--color-primary-light);
        padding-left: calc(var(--space-lg) + 8px);
        color: var(--color-primary-light);
    }
    
    .header__menu-link--active {
        background: rgba(44, 95, 141, 0.25);
        border-left-color: var(--color-primary);
        color: var(--color-primary-light);
    }
    
    .header__menu-link::after {
        content: '→';
        margin-left: auto;
        opacity: 0;
        transform: translateX(-10px);
        transition: all 0.3s ease;
    }
    
    .header__menu-link:hover::after {
        opacity: 1;
        transform: translateX(0);
    }
    
    .header__mobile-toggle {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        width: 44px;
        height: 44px;
        padding: var(--space-sm);
        color: var(--color-white);
        z-index: 1001; /* Above everything */
        position: relative;
		top:-15px;
    }
    
    .header__mobile-icon,
    .header__mobile-icon::before,
    .header__mobile-icon::after {
        width: 28px;
        height: 3px;
        background-color: var(--color-white);
        transition: all var(--transition-base);
        border-radius: 2px;
    }
    
    .header__mobile-icon {
        position: relative;
        display: block;
    }
    
    .header__mobile-icon::before,
    .header__mobile-icon::after {
        content: '';
        position: absolute;
        left: 0;
    }
    
    .header__mobile-icon::before {
        top: -9px;
    }
    
    .header__mobile-icon::after {
        bottom: -9px;
    }
    
    /* Hamburger animation to X when menu is open */
    .header__mobile-toggle[aria-expanded="true"] .header__mobile-icon {
        background-color: transparent;
    }
    
    .header__mobile-toggle[aria-expanded="true"] .header__mobile-icon::before {
        transform: rotate(45deg);
        top: 0;
    }
    
    .header__mobile-toggle[aria-expanded="true"] .header__mobile-icon::after {
        transform: rotate(-45deg);
        bottom: 0;
    }
    
    /* Hide desktop CTA from header container */
    .header__container > .header__cta {
        display: none;
    }
    
    /* Modern CTA section in mobile menu */
    .header__nav .header__cta {
        display: flex;
        flex-direction: column;
        gap: var(--space-md);
        margin-top: auto;
        padding-top: var(--space-xl);
        border-top: 2px solid rgba(44, 95, 141, 0.3);
        opacity: 0;
        transform: translateY(20px);
        animation: fadeInUp 0.4s ease forwards 0.35s;
    }
    
    @keyframes fadeInUp {
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
    
    
    .header__nav .btn {
        box-shadow: 0 4px 20px rgba(44, 95, 141, 0.3);
        font-size: var(--font-size-base);
        padding: 1rem 2rem;
    }
    
    .header__nav .btn:hover {
        box-shadow: 0 6px 30px rgba(44, 95, 141, 0.5);
    }
}

@media (max-width: 767px) {
    .header__logo-image {
        height: 70px;
    }
    
    .header__nav {
        max-width: 90vw;
        padding: var(--space-xl) var(--space-md) var(--space-md);
    }
    
    .header__menu-link {
        font-size: 1rem;
        padding: var(--space-sm) var(--space-md);
    }
    
    .header__nav .header__phone {
        font-size: var(--font-size-base);
        padding: 1rem 2rem;
    }
    
    .btn {
        padding: 0.875rem 1.5rem;
        font-size: var(--font-size-base);
    }
    
    .header__mobile-toggle {
        width: 40px;
        height: 40px;
    }
    
    .header__mobile-icon,
    .header__mobile-icon::before,
    .header__mobile-icon::after {
        width: 24px;
        height: 2px;
    }
    
    .header__mobile-icon::before {
        top: -7px;
    }
    
    .header__mobile-icon::after {
        bottom: -7px;
    }
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    position: relative;
    min-height: 65vh;
    background: linear-gradient(135deg, #1A3A52 0%, #2C5F8D 100%);
    overflow: hidden;
    display: flex;
    align-items: center;
    padding: var(--space-3xl) 0;
	background-image: url(/files/images/CR-4L-D22-SQ23-UTAH-02.jpeg);
	background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
}

/* Animated gradient overlay
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(212, 132, 92, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(90, 138, 181, 0.2) 0%, transparent 50%);
    z-index: 1;
} */

/* Grid pattern overlay
.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    z-index: 1;
} */

section.hero:after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #1a3a52cf 0%, #2c5f8d00 100%);
}

.hero .container {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: var(--space-2xl);
}

.hero__content {
    padding-right: var(--space-lg);
}

.hero__content h1 {
    font-size: clamp(1.875rem, 4vw, 2.75rem);
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: var(--space-md);
    line-height: 1.15;
    letter-spacing: -0.02em;
    font-family: var(--font-heading);
}

/* Highlight accent word */
.hero__content h1 br + span {
    background: linear-gradient(90deg, var(--color-accent), var(--color-accent-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero__content p {
    font-size: var(--font-size-base);
    color: var(--color-sand);
    margin-bottom: var(--space-lg);
    line-height: var(--line-height-relaxed);
    font-weight: 400;
    opacity: 0.95;
}

.hero__buttons {
    display: flex;
    gap: var(--space-md);
    flex-wrap: wrap;
}

/* Hero image side */
.hero__image {
    position: relative;
}

.hero__image-wrapper {
    position: relative;
    border-radius: var(--radius-2xl);
    overflow: hidden;
    box-shadow: var(--shadow-2xl);
    transform: rotate(2deg);
    transition: transform 0.6s ease;
}

.hero__image-wrapper:hover {
    transform: rotate(0deg) scale(1.02);
}

.hero__image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
}

@media (max-width: 1023px) {
    .hero {
        min-height: auto;
        padding: var(--space-2xl) 0;
    }
    
    .hero .container {
        grid-template-columns: 1fr;
        gap: var(--space-xl);
    }
    
    .hero__content {
        text-align: center;
        padding-right: 0;
    }
    
    .hero__content h1 {
        font-size: clamp(1.5rem, 6vw, 2.25rem);
    }
    
    .hero__content p {
        margin-inline: auto;
    }
    
    .hero__buttons {
        justify-content: center;
    }
    
    .hero__image {
        order: -1;
    }
    
    .hero__image-wrapper {
        transform: rotate(0deg);
    }
}

@media (max-width: 767px) {
    .hero {
        padding: var(--space-xl) 0;
    }
    
    .hero .container {
        gap: var(--space-lg);
    }
    
    .hero__content h1 {
        font-size: clamp(1.5rem, 8vw, 2rem);
    }
    
    .hero__content p {
        font-size: var(--font-size-sm);
    }
}

/* ============================================
   SERVICES SECTION
   ============================================ */
.services {
    padding: var(--space-3xl) 0;
    background-color: var(--color-white);
}

.services__header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: var(--space-2xl);
    gap: var(--space-xl);
}

.services__header-content span {
    display: inline-block;
    padding: var(--space-xs) var(--space-lg);
    background: var(--color-cream);
    color: var(--color-primary);
    border-radius: 5px;
    font-size: var(--font-size-sm);
    font-weight: var(--font-weight-semibold);
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: var(--space-md);
}

.services__header-content h2 {
    font-size: var(--font-size-3xl);
    font-weight: 700;
    color: var(--color-secondary);
    font-family: var(--font-heading);
    letter-spacing: -0.02em;
    line-height: 1.2;
    margin: 0;
}

.services__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-xl);
}

.service-card--large {
    background: var(--color-cream);
    border-radius: var(--radius-2xl);
    padding: var(--space-xl);
    position: relative;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
	display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    padding: 2rem;
}

.service-card--large:hover {
    background: var(--color-white);
    border-color: var(--color-primary);
    transform: translateY(-8px);
    box-shadow: var(--shadow-2xl);
}

.service-card__number {
    position: absolute;
    top: var(--space-xl);
    right: var(--space-xl);
    font-size: 4rem;
    font-weight: 900;
    color: var(--color-primary);
    opacity: 0.08;
    font-family: var(--font-heading);
    line-height: 1;
}

.service-card__content {
    position: relative;
    z-index: 2;
}

.service-card__icon {
    width: 56px;
    height: 56px;
    margin-bottom: var(--space-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-white);
    color: var(--color-primary);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    transition: all 0.4s ease;
}

.service-card--large:hover .service-card__icon {
    background: var(--color-primary);
    color: var(--color-white);
    transform: scale(1.1) rotate(-5deg);
}

.service-card__content h3 {
    font-size: var(--font-size-xl);
    margin-bottom: var(--space-md);
    color: var(--color-secondary);
    font-weight: var(--font-weight-bold);
    font-family: var(--font-heading);
    line-height: 1.3;
	height:63px;
}

.service-card__content p {
    color: var(--color-gray-600);
    line-height: var(--line-height-relaxed);
    margin-bottom: var(--space-lg);
    font-size: var(--font-size-sm);
	height:155px;
}

.service-card__link {
    display: inline-flex;
    align-items: center;
    gap: var(--space-xs);
    color: var(--color-primary);
    font-weight: var(--font-weight-semibold);
    font-size: var(--font-size-base);
    transition: gap 0.3s ease;
}

.service-card__link:hover {
    gap: var(--space-sm);
    color: var(--color-primary-dark);
}

@media (max-width: 1023px) {
    .services__header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .services__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-lg);
    }
}

@media (max-width: 767px) {
    .services__grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 767px) {
    .services {
        padding: var(--space-3xl) 0;
    }
    
    .services__header-content h2 {
        font-size: var(--font-size-3xl);
    }
    
    .service-card--large {
        padding: var(--space-2xl);
    }
    
    .service-card__number {
        font-size: 3rem;
    }
}

/* ============================================
   SECTION HEADER
   ============================================ */
.section-header {
    text-align: center;
    margin-bottom: var(--space-2xl);
    position: relative;
}

/* Decorative accent line */
.section-header::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--color-primary), var(--color-accent));
    margin: var(--space-lg) auto 0;
    border-radius: var(--radius-full);
}

.section-header h2 {
    font-size: var(--font-size-3xl);
    margin-bottom: var(--space-md);
    color: var(--color-secondary);
    font-family: var(--font-heading); /* Bold serif */
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.1;
}

.section-header p {
    font-size: var(--font-size-base);
    color: var(--color-gray-600);
    font-weight: 400;
    max-width: 700px;
    margin-inline: auto;
    line-height: var(--line-height-relaxed);
}

@media (max-width: 767px) {
    .section-header {
        margin-bottom: var(--space-2xl);
    }
    
    .section-header h2 {
        font-size: var(--font-size-2xl);
    }
    
    .section-header p {
        font-size: var(--font-size-base);
    }
}

/* ============================================
   PRODUCT SHOWCASE SECTION - Modern Hero Style
   ============================================ */
.product-showcase {
    padding: var(--space-3xl) 0;
    background: var(--color-white);
}

/* Header with label */
.product-showcase__header {
    max-width: 900px;
    margin: 0 auto var(--space-2xl);
    text-align: center;
}

.product-showcase__header-content span {
    display: inline-block;
    padding: 0.625rem 1.5rem;
    background: linear-gradient(135deg, var(--color-primary-light), var(--color-primary));
    color: var(--color-white);
    font-size: var(--font-size-sm);
    font-weight: var(--font-weight-semibold);
    letter-spacing: 0.05em;
    text-transform: uppercase;
    border-radius: var(--radius-md);
    margin-bottom: var(--space-md);
}

.product-showcase__header-content h2 {
    font-size: var(--font-size-3xl);
    margin-bottom: var(--space-md);
    color: var(--color-secondary);
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.1;
}

.product-showcase__header-content p {
    font-size: var(--font-size-base);
    color: var(--color-gray-600);
    line-height: var(--line-height-relaxed);
}

/* Product Hero Cards */
.product-hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    margin-bottom: var(--space-2xl);
    min-height: 450px;
    background: var(--color-cream);
    border-radius: var(--radius-2xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transition: box-shadow var(--transition-base);
}

.product-hero:hover {
    box-shadow: var(--shadow-2xl);
}

.product-hero:last-of-type {
    margin-bottom: 0;
}

/* Image Container */
.product-hero__image-container {
    position: relative;
    overflow: hidden;
}

.product-hero__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.product-hero:hover .product-hero__image {
    transform: scale(1.08);
}

.product-hero__image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(44, 95, 141, 0.05), transparent 50%);
    opacity: 0;
    transition: opacity var(--transition-slow);
}

.product-hero:hover .product-hero__image-overlay {
    opacity: 1;
}

/* Badge */
.product-hero__badge {
    position: absolute;
    top: var(--space-lg);
    left: var(--space-lg);
    padding: 0.75rem 1.75rem;
    background: var(--color-primary);
    color: var(--color-white);
    font-size: var(--font-size-sm);
    font-weight: var(--font-weight-semibold);
    border-radius: var(--radius-md);
    z-index: 10;
    box-shadow: var(--shadow-md);
}

.product-hero__badge--alt {
    background: var(--color-accent);
}

/* Content Area */
.product-hero__content {
    display: flex;
    align-items: center;
    padding: var(--space-xl);
    background: var(--color-white);
}

.product-hero__content-inner {
    width: 100%;
}

/* Tag */
.product-hero__tag {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    background: var(--color-sand);
    color: var(--color-primary);
    font-size: var(--font-size-xs);
    font-weight: var(--font-weight-semibold);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    border-radius: var(--radius-md);
    margin-bottom: var(--space-md);
}

.product-hero__tag--alt {
    background: var(--color-accent-light);
    color: var(--color-accent);
}

/* Product Name */
.product-hero__content-inner h3 {
    font-size: var(--font-size-2xl);
    margin-bottom: var(--space-md);
    color: var(--color-secondary);
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.15;
}

/* Description */
.product-hero__content-inner > p {
    font-size: var(--font-size-sm);
    color: var(--color-gray-600);
    line-height: var(--line-height-relaxed);
    margin-bottom: var(--space-md);
}

/* Features List */
.product-hero__features {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
    margin-bottom: var(--space-lg);
    padding: var(--space-md);
    background: var(--color-cream);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--color-primary);
}

.product-hero__feature {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    color: var(--color-gray-700);
    font-size: var(--font-size-sm);
    font-weight: var(--font-weight-medium);
}

.product-hero__feature span {
    /* Inherit styles from parent */
}

.product-hero__feature-icon {
    flex-shrink: 0;
    color: var(--color-primary);
    stroke-width: 2.5;
}

/* Action Buttons */
.product-hero__actions {
    display: flex;
    gap: var(--space-md);
    flex-wrap: wrap;
}

/* Layout variations */
.product-hero--secondary .product-hero__content {
    order: -1;
}

.product-hero__content--left {
    order: 1;
}

.product-hero__image-container--right {
    order: 2;
}

/* ============================================
   RESPONSIVE - PRODUCT SHOWCASE
   ============================================ */
@media (max-width: 1023px) {
    .product-hero {
        grid-template-columns: 1fr;
        min-height: auto;
    }
    
    .product-hero__content {
        order: 2 !important;
        padding: var(--space-2xl);
    }
    
    .product-hero__image-container {
        order: 1 !important;
        min-height: 400px;
    }
    
    .product-hero__content-inner h3 {
        font-size: var(--font-size-3xl);
    }
}

@media (max-width: 767px) {
    .product-showcase {
        padding: var(--space-3xl) 0;
    }
    
    .product-showcase__header {
        margin-bottom: var(--space-3xl);
    }
    
    .product-showcase__header-content h2 {
        font-size: var(--font-size-3xl);
    }
    
    .product-showcase__header-content p {
        font-size: var(--font-size-base);
    }
    
    .product-hero {
        margin-bottom: var(--space-2xl);
        border-radius: var(--radius-xl);
    }
    
    .product-hero__content {
        padding: var(--space-xl);
    }
    
    .product-hero__image-container {
        min-height: 300px;
    }
    
    .product-hero__content-inner h3 {
        font-size: var(--font-size-2xl);
    }
    
    .product-hero__content-inner > p {
        font-size: var(--font-size-sm);
        margin-bottom: var(--space-lg);
    }
    
    .product-hero__features {
        padding: var(--space-md);
        gap: var(--space-sm);
        margin-bottom: var(--space-xl);
    }
    
    .product-hero__feature {
        font-size: var(--font-size-sm);
        gap: var(--space-sm);
    }
    
    .product-hero__actions {
        flex-direction: column;
    }
    
    .product-hero__actions .btn {
        width: 100%;
        justify-content: center;
    }
    
    .product-hero__badge {
        top: var(--space-md);
        left: var(--space-md);
        padding: 0.5rem 1.25rem;
        font-size: 0.75rem;
    }
}

/* ============================================
   ABOUT SECTION - Modern Card Design
   ============================================ */
.about {
    padding: var(--space-3xl) 0;
    background: linear-gradient(180deg, var(--color-sand) 0%, var(--color-white) 100%);
}

.about__wrapper {
    display: flex;
    flex-direction: column;
    gap: var(--space-2xl);
}

/* Stats Cards Top */
.about__stats-top {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
}

.about__stat-card {
    background: var(--color-white);
    padding: var(--space-lg);
    border-radius: var(--radius-xl);
    text-align: center;
    box-shadow: var(--shadow-md);
    border-top: 4px solid var(--color-primary);
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
}

.about__stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--color-primary), var(--color-accent));
    transform: scaleX(0);
    transition: transform var(--transition-base);
}

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

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

.about__stat-card--primary {
    border-top-color: var(--color-primary);
}

.about__stat-card--secondary {
    border-top-color: var(--color-accent);
}

.about__stat-card--accent {
    border-top-color: var(--color-primary-light);
}

.about__stat-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--color-primary-light), var(--color-primary));
    border-radius: 50%;
    margin-bottom: var(--space-md);
    color: var(--color-white);
    transition: transform var(--transition-base);
}

.about__stat-card--secondary .about__stat-icon {
    background: linear-gradient(135deg, var(--color-accent-light), var(--color-accent));
}

.about__stat-card--accent .about__stat-icon {
    background: linear-gradient(135deg, var(--color-primary-light), var(--color-primary-dark));
}

.about__stat-card:hover .about__stat-icon {
    transform: scale(1.1) rotate(5deg);
}

.about__stat-number {
    font-size: var(--font-size-3xl);
    font-weight: 700;
    color: var(--color-secondary);
    margin-bottom: var(--space-xs);
    line-height: 1;
}

.about__stat-label {
    font-size: var(--font-size-base);
    font-weight: var(--font-weight-semibold);
    color: var(--color-secondary);
    margin-bottom: var(--space-xs);
}

.about__stat-card p {
    font-size: var(--font-size-sm);
    color: var(--color-gray-600);
    line-height: var(--line-height-relaxed);
}

/* Main Content Grid */
.about__main {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-2xl);
    align-items: center;
}

.about__content {
    padding-right: var(--space-lg);
}

.about__content span {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    background: var(--color-sand);
    color: var(--color-primary);
    font-size: var(--font-size-xs);
    font-weight: var(--font-weight-semibold);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    border-radius: var(--radius-md);
    margin-bottom: var(--space-md);
}

.about__content h2 {
    font-size: var(--font-size-2xl);
    margin-bottom: var(--space-md);
    color: var(--color-secondary);
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.15;
}

.about__content > p {
    font-size: var(--font-size-sm);
    color: var(--color-gray-600);
    line-height: var(--line-height-relaxed);
    margin-bottom: var(--space-md);
}

/* Features List */
.about__features {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
    margin: var(--space-lg) 0;
}

.about__feature {
    display: flex;
    gap: var(--space-sm);
    align-items: flex-start;
}

.about__feature-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-cream);
    border-radius: var(--radius-full);
    color: var(--color-primary);
    border: 2px solid var(--color-primary-light);
}

.about__feature-content {
    flex: 1;
}

.about__feature-content h4 {
    font-size: var(--font-size-base);
    font-weight: var(--font-weight-semibold);
    color: var(--color-secondary);
    margin-bottom: 0.25rem;
}

.about__feature-content p {
    font-size: var(--font-size-sm);
    color: var(--color-gray-600);
    line-height: var(--line-height-relaxed);
}

/* Image Wrapper */
.about__image-wrapper {
    position: relative;
    border-radius: var(--radius-2xl);
    overflow: hidden;
    box-shadow: var(--shadow-2xl);
	height:100%;
}

.about__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.about__image-wrapper:hover .about__image {
    transform: scale(1.05);
}

.about__image-badge {
    position: absolute;
    top: var(--space-lg);
    right: var(--space-lg);
    padding: 0.75rem 1.75rem;
    background: var(--color-white);
    color: var(--color-primary);
    font-size: var(--font-size-base);
    font-weight: var(--font-weight-bold);
    border-radius: var(--radius-full);
    box-shadow: var(--shadow-lg);
    z-index: 10;
}

.about__image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(44, 95, 141, 0.1), transparent 60%);
    opacity: 0;
    transition: opacity var(--transition-slow);
}

.about__image-wrapper:hover .about__image-overlay {
    opacity: 1;
}

/* ============================================
   RESPONSIVE - ABOUT SECTION
   ============================================ */
@media (max-width: 1023px) {
    .about__stats-top {
        grid-template-columns: 1fr;
        gap: var(--space-md);
    }
    
    .about__main {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
    }
    
    .about__image-wrapper {
        order: -1;
    }
}

@media (max-width: 767px) {
    .about {
        padding: var(--space-3xl) 0;
    }
    
    .about__wrapper {
        gap: var(--space-2xl);
    }
    
    .about__stat-card {
        padding: var(--space-xl);
    }
    
    .about__stat-icon {
        width: 56px;
        height: 56px;
        margin-bottom: var(--space-md);
    }
    
    .about__stat-number {
        font-size: var(--font-size-3xl);
    }
    
    .about__stat-label {
        font-size: var(--font-size-base);
    }
    
    .about__content h2 {
        font-size: var(--font-size-2xl);
    }
    
    .about__features {
        gap: var(--space-md);
        margin: var(--space-xl) 0;
    }
    
    .about__feature-icon {
        width: 40px;
        height: 40px;
    }
    
    .about__feature-content h4 {
        font-size: var(--font-size-base);
    }
    
    .about__feature-content p {
        font-size: var(--font-size-sm);
    }
    
    .about__image-badge {
        top: var(--space-md);
        right: var(--space-md);
        padding: 0.5rem 1.25rem;
        font-size: var(--font-size-sm);
    }
}

/* ============================================
   SERVICE AREA SECTION
   ============================================ */
.service-area {
    padding: var(--space-3xl) 0;
    background: linear-gradient(180deg, var(--color-white) 0%, var(--color-cream) 100%);
}

.service-area__content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: var(--space-2xl);
    align-items: start;
}

.service-area__map {
    position: sticky;
    top: 100px;
}

.service-area__map-wrapper {
    width: 100%;
    height: 400px;
    border-radius: var(--radius-2xl);
    overflow: hidden;
    box-shadow: var(--shadow-2xl);
    border: 4px solid var(--color-white);
}

.service-area__cities {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.service-area__city {
    background: var(--color-white);
    padding: var(--space-md);
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    gap: var(--space-md);
    border: 2px solid var(--color-sand);
    transition: all 0.3s ease;
}

.service-area__city:hover {
    transform: translateX(8px);
    border-color: var(--color-primary-light);
    box-shadow: var(--shadow-lg);
}

.service-area__city--primary {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    padding: var(--space-lg);
    border: none;
}

.service-area__city--primary:hover {
    transform: translateX(8px) scale(1.02);
}

.service-area__city-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-cream);
    color: var(--color-primary);
    border-radius: var(--radius-lg);
    transition: transform 0.3s ease;
}

.service-area__city--primary .service-area__city-icon {
    background: rgba(255, 255, 255, 0.2);
    color: var(--color-white);
}

.service-area__city:hover .service-area__city-icon {
    transform: scale(1.1) rotate(5deg);
}

.service-area__city-content {
    flex: 1;
}

.service-area__city h3,
.service-area__city h4 {
    font-size: var(--font-size-base);
    font-weight: var(--font-weight-bold);
    color: var(--color-secondary);
    margin: 0;
    font-family: var(--font-heading);
}

.service-area__city--primary h3 {
    color: var(--color-white);
    font-size: var(--font-size-lg);
}

.service-area__city-content span {
    display: inline-block;
    margin-top: var(--space-xs);
    padding: var(--space-xs) var(--space-md);
    background: rgba(255, 255, 255, 0.25);
    color: var(--color-white);
    border-radius: var(--radius-full);
    font-size: var(--font-size-xs);
    font-weight: var(--font-weight-semibold);
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.service-area__city--cta {
    background: var(--color-sand);
    border-color: var(--color-sand);
    justify-content: center;
    padding: var(--space-xl);
}

.service-area__city--cta:hover {
    transform: none;
    border-color: var(--color-primary);
}

.service-area__city--cta p {
    margin: 0;
    color: var(--color-gray-700);
    font-size: var(--font-size-base);
    text-align: center;
}

.service-area__city--cta a {
    color: var(--color-primary);
    font-weight: var(--font-weight-semibold);
    text-decoration: underline;
}

.service-area__city--cta a:hover {
    color: var(--color-primary-dark);
}

@media (max-width: 1023px) {
    .service-area__content {
        grid-template-columns: 1fr;
        gap: var(--space-2xl);
    }
    
    .service-area__map {
        position: relative;
        top: 0;
    }
    
    .service-area__map-wrapper {
        height: 400px;
    }
}

@media (max-width: 767px) {
    .service-area {
        padding: var(--space-3xl) 0;
    }
    
    .service-area__map-wrapper {
        height: 300px;
    }
    
    .service-area__city {
        padding: var(--space-md);
    }
    
    .service-area__city--primary {
        padding: var(--space-lg);
    }
}

/* ============================================
   GALLERY SECTION
   ============================================ */
.gallery {
    padding: var(--space-5xl) 0;
    background-color: var(--color-cream);
    position: relative;
    overflow: hidden;
}

/* Decorative background blob */
.gallery::before {
    content: '';
    position: absolute;
    top: 20%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: var(--color-primary);
    opacity: 0.03;
    border-radius: var(--radius-blob);
    z-index: 0;
}

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

.gallery__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-xl);
    margin-bottom: var(--space-3xl);
}

.gallery__item {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-2xl); /* More organic */
    aspect-ratio: 4 / 3;
    cursor: pointer;
    box-shadow: var(--shadow-lg);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    border: 3px solid var(--color-white);
}

/* Staggered hover effect - asymmetry */
.gallery__item:nth-child(odd):hover {
    transform: translateY(-12px) rotate(-2deg);
    box-shadow: var(--shadow-2xl);
}

.gallery__item:nth-child(even):hover {
    transform: translateY(-12px) rotate(2deg);
    box-shadow: var(--shadow-2xl);
}

.gallery__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
	overflow-clip-margin: unset;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    filter: saturate(0.95); /* Slightly muted for modern look */
}

.gallery__item:hover img {
    transform: scale(1.15);
    filter: saturate(1.1); /* Boost on hover */
}

.gallery__overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(44, 95, 141, 0.9) 0%, rgba(44, 95, 141, 0.4) 60%, transparent 100%);
    padding: var(--space-xl);
    transform: translateY(100%);
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery__item:hover .gallery__overlay {
    transform: translateY(0);
}

.gallery__overlay h3 {
    color: var(--color-white);
    font-size: var(--font-size-xl);
    font-weight: var(--font-weight-bold);
    margin: 0;
    font-family: var(--font-accent);
    letter-spacing: 0.02em;
}

.gallery__cta {
    text-align: center;
    margin-top: var(--space-3xl);
}

@media (max-width: 1023px) {
    .gallery__grid {
        grid-template-columns: repeat(3, 1fr);
        gap: var(--space-md);
    }
}

@media (max-width: 767px) {
    .gallery {
        padding: var(--space-3xl) 0;
    }
    
    .gallery__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-sm);
    }
}

@media (max-width: 480px) {
    .gallery__grid {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   CTA BANNER SECTION - High Contrast Block
   ============================================ */
.cta-banner {
    background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-accent-light) 100%);
    position: relative;
    overflow: hidden;
}

.cta-banner__wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 375px;
}

.cta-banner__content {
    display: flex;
    align-items: center;
    padding: var(--space-xl) var(--space-4xl);
    position: relative;
    z-index: 1;
}

.cta-banner__text {
    max-width: 600px;
}

.cta-banner__text h2 {
    font-size: var(--font-size-3xl);
    color: var(--color-white);
    margin-bottom: var(--space-lg);
    font-family: var(--font-heading);
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.1;
}

.cta-banner__text p {
    font-size: var(--font-size-base);
    color: var(--color-white);
    opacity: 0.95;
    margin: 0;
    line-height: var(--line-height-relaxed);
}

.cta-banner__image {
    position: relative;
    overflow: hidden;
}

.cta-banner__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.cta-doors .cta-banner__content {
    padding: var(--space-2xl) var(--space-xl);
}

@media (max-width: 1023px) {
    .cta-banner__wrapper {
        min-height: 400px;
    }
    
    .cta-banner__content {
        padding: var(--space-2xl);
    }
    
    .cta-banner__text h2 {
        font-size: var(--font-size-3xl);
    }
}

@media (max-width: 767px) {
    .cta-banner__wrapper {
        grid-template-columns: 1fr;
        min-height: auto;
    }
    
    .cta-banner__content {
        padding: var(--space-lg) !important;
        text-align: center;
        justify-content: center;
    }
    
    .cta-banner__text {
        max-width: 100%;
    }
    
    .cta-banner__text h2 {
        font-size: var(--font-size-2xl);
    }
    
    .cta-banner__text p {
        font-size: var(--font-size-base);
    }
    
    .cta-banner__image {
        min-height: 300px;
    }
}

/* ============================================
   WHY CHOOSE US SECTION
   ============================================ */
.why-choose {
    padding: var(--space-4xl) 0;
    background-color: var(--color-gray-100);
}

.why-choose__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-xl);
}

.feature-box {
    background-color: var(--color-white);
    padding: var(--space-2xl);
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-base);
}

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

.feature-box__icon {
    width: 80px;
    height: 80px;
    margin: 0 auto var(--space-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
    color: var(--color-white);
    border-radius: var(--radius-full);
    box-shadow: var(--shadow-lg);
}

.feature-box__title {
    font-size: var(--font-size-xl);
    margin-bottom: var(--space-md);
    color: var(--color-secondary);
}

.feature-box__text {
    color: var(--color-gray-600);
    line-height: var(--line-height-relaxed);
}

@media (max-width: 1023px) {
    .why-choose__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-lg);
    }
}

@media (max-width: 767px) {
    .why-choose {
        padding: var(--space-3xl) 0;
    }
    
    .why-choose__grid {
        grid-template-columns: 1fr;
        gap: var(--space-md);
    }
    
    .feature-box {
        padding: var(--space-xl);
    }
}

/* ============================================
   REVIEWS SECTION - Modern Card Design
   ============================================ */
.reviews {
    padding: var(--space-3xl) 0;
    background: linear-gradient(180deg, var(--color-cream) 0%, var(--color-white) 100%);
}

.reviews__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--space-2xl);
    gap: var(--space-2xl);
}

.reviews__header-content span {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
    color: var(--color-white);
    font-size: var(--font-size-xs);
    font-weight: var(--font-weight-semibold);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    border-radius: var(--radius-md);
    margin-bottom: var(--space-sm);
}

.reviews__header-content h2 {
    font-size: var(--font-size-3xl);
    margin-bottom: var(--space-sm);
    color: var(--color-secondary);
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.reviews__header-content p {
    font-size: var(--font-size-base);
    color: var(--color-gray-600);
    line-height: var(--line-height-relaxed);
}

.reviews__rating-box {
    text-align: center;
    background: var(--color-white);
    padding: var(--space-lg);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    min-width: 180px;
}

.reviews__rating-stars {
    font-size: var(--font-size-2xl);
    color: var(--color-accent);
    margin-bottom: var(--space-xs);
    letter-spacing: 2px;
}

.reviews__rating-text {
    font-size: var(--font-size-lg);
    font-weight: var(--font-weight-bold);
    color: var(--color-secondary);
    margin-bottom: 0.25rem;
}

.reviews__rating-count {
    font-size: var(--font-size-sm);
    color: var(--color-gray-600);
}

/* Slider */
.reviews-slider {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 60px;
}

.reviews-slider__wrapper {
    position: relative;
    overflow: hidden;
    width: 100%;
}

.reviews-slider__track {
    display: flex;
    transition: transform var(--transition-slow);
}

/* Review Cards */
.review-card {
    width: 100%;
    min-width: 100%;
    flex-shrink: 0;
    padding: var(--space-xl);
    background: var(--color-white);
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-md);
    border: 2px solid var(--color-sand);
    transition: all var(--transition-base);
}

.review-card:hover {
    border-color: var(--color-primary-light);
    box-shadow: var(--shadow-xl);
    transform: translateY(-4px);
}

.review-card__header {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    margin-bottom: var(--space-lg);
}

.review-card__avatar {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
    color: var(--color-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--font-size-lg);
    font-weight: var(--font-weight-bold);
    box-shadow: var(--shadow-md);
}

.review-card__avatar--alt {
    background: linear-gradient(135deg, var(--color-accent), var(--color-accent-light));
}

.review-card__avatar--accent {
    background: linear-gradient(135deg, var(--color-primary-light), var(--color-primary));
}

.review-card__info {
    flex: 1;
}

.review-card__info h4 {
    font-size: var(--font-size-lg);
    font-weight: var(--font-weight-bold);
    color: var(--color-secondary);
    margin-bottom: 0.25rem;
}

.review-card__meta {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    font-size: var(--font-size-sm);
    color: var(--color-gray-600);
}

.review-card__meta span {
    /* Inherit styles from parent */
}

.review-card__rating {
    font-size: var(--font-size-lg);
    color: var(--color-accent);
    letter-spacing: 2px;
}

.review-card p {
    font-size: var(--font-size-base);
    color: var(--color-gray-700);
    line-height: var(--line-height-relaxed);
    margin-bottom: var(--space-md);
}

.review-card__badge {
    display: inline-block;
    padding: 0.375rem 0.875rem;
    background: var(--color-cream);
    color: var(--color-primary);
    font-size: var(--font-size-xs);
    font-weight: var(--font-weight-semibold);
    border-radius: var(--radius-md);
    border: 1px solid var(--color-primary-light);
}

/* Navigation */
.reviews-slider__nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--color-white);
    color: var(--color-primary);
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--font-size-3xl);
    transition: all var(--transition-base);
    z-index: 10;
    border: 2px solid var(--color-sand);
}

.reviews-slider__nav:hover {
    background: var(--color-primary);
    color: var(--color-white);
    border-color: var(--color-primary);
    transform: translateY(-50%) scale(1.1);
}

.reviews-slider__nav--prev {
    left: 0;
}

.reviews-slider__nav--next {
    right: 0;
}

.reviews-slider__dots {
    display: flex;
    gap: var(--space-sm);
    justify-content: center;
    margin-top: var(--space-xl);
}

.reviews-slider__dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--color-gray-300);
    cursor: pointer;
    transition: all var(--transition-base);
}

.reviews-slider__dot--active {
    background: var(--color-primary);
    width: 28px;
    border-radius: var(--radius-full);
}

/* ============================================
   RESPONSIVE - REVIEWS SECTION
   ============================================ */
@media (max-width: 1023px) {
    .reviews__header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .reviews__rating-box {
        width: 100%;
    }
}

@media (max-width: 767px) {
    .reviews {
        padding: var(--space-2xl) 0;
    }
    
    .reviews__header {
        margin-bottom: var(--space-xl);
    }
    
    .reviews__header-content h2 {
        font-size: var(--font-size-xl);
    }
    
    .reviews-slider {
        padding: 0 50px;
    }
    
    .review-card {
        padding: var(--space-lg);
    }
    
    .review-card__avatar {
        width: 48px;
        height: 48px;
        font-size: var(--font-size-base);
    }
    
    .review-card__info h4 {
        font-size: var(--font-size-base);
    }
    
    .review-card p {
        font-size: var(--font-size-sm);
    }
    
    .reviews-slider__nav {
        width: 40px;
        height: 40px;
        font-size: var(--font-size-2xl);
    }
}

/* ============================================
   CTA SECTION - Modern with Background Image
   ============================================ */
.cta {
    position: relative;
    padding: var(--space-4xl) 0;
    overflow: hidden;
    min-height: 400px;
    display: flex;
    align-items: center;
}

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

.cta__bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cta__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(26, 58, 82, 0.95) 0%,
        rgba(44, 95, 141, 0.92) 50%,
        rgba(212, 132, 92, 0.88) 100%
    );
}

.cta .container {
    position: relative;
    z-index: 2;
}

.cta__content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.cta__badge {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    color: var(--color-white);
    font-size: var(--font-size-sm);
    font-weight: var(--font-weight-semibold);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border-radius: var(--radius-md);
    border: 1px solid rgba(255, 255, 255, 0.3);
    margin-bottom: var(--space-lg);
}

.cta__content h2 {
    font-size: var(--font-size-4xl);
    margin-bottom: var(--space-md);
    color: var(--color-white);
    font-family: var(--font-heading);
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.2;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.cta__content p {
    font-size: var(--font-size-lg);
    margin-bottom: var(--space-xl);
    color: rgba(255, 255, 255, 0.95);
    line-height: var(--line-height-relaxed);
}

.cta__buttons {
    display: flex;
    gap: var(--space-md);
    justify-content: center;
    flex-wrap: wrap;
}

.cta__buttons .btn {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
}

.cta__buttons .btn svg {
    flex-shrink: 0;
}

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

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

.cta__buttons .btn--secondary {
    background: transparent;
    color: var(--color-white);
    border: 2px solid rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(10px);
}

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

/* ============================================
   RESPONSIVE - CTA SECTION
   ============================================ */
@media (max-width: 767px) {
    .cta {
        padding: var(--space-3xl) 0;
        min-height: 350px;
    }
    
    .cta__content h2 {
        font-size: var(--font-size-2xl);
    }
    
    .cta__content p {
        font-size: var(--font-size-base);
    }
    
    .cta__buttons {
        flex-direction: column;
    }
    
    .cta__buttons .btn {
        width: 100%;
        justify-content: center;
    }
}

/* ============================================
   FOOTER - Modern Multi-Section Design
   ============================================ */
.footer {
    background: linear-gradient(180deg, #1A3A52 0%, #0F1F2E 100%);
    color: var(--color-gray-300);
}

/* Footer Top - CTA Box */
.footer__top {
    padding: var(--space-2xl) 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer__cta-box {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: var(--space-xl);
    padding: var(--space-xl) var(--space-2xl);
    background: rgba(44, 95, 141, 0.15);
    border-radius: var(--radius-2xl);
    border: 1px solid rgba(90, 138, 181, 0.2);
}

.footer__cta-content h3 {
    font-size: var(--font-size-xl);
    font-weight: var(--font-weight-bold);
    color: var(--color-white);
    margin-bottom: 0.25rem;
}

.footer__cta-content p {
    font-size: var(--font-size-sm);
    color: var(--color-sand);
}

.footer__cta-button {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    padding: 0.875rem 2rem;
    background: var(--color-primary);
    color: var(--color-white);
    border-radius: var(--radius-full);
    font-weight: var(--font-weight-semibold);
    font-size: var(--font-size-base);
    transition: all var(--transition-base);
    white-space: nowrap;
}

.footer__cta-button:hover {
    background: var(--color-accent);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* Footer Main */
.footer__main {
    padding: var(--space-2xl) 0 var(--space-xl);
}

.footer__grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: var(--space-2xl);
}

.footer__column--about {
    padding-right: var(--space-xl);
}

.footer__logo {
    width: 120px;
    height: auto;
    margin-bottom: var(--space-sm);
}

.footer__column--about p {
    color: rgba(255, 255, 255, 0.7);
    line-height: var(--line-height-relaxed);
    margin-bottom: var(--space-md);
    font-size: var(--font-size-sm);
}

.footer__social {
    display: flex;
    gap: var(--space-sm);
}

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

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

.footer__column h4 {
    font-size: var(--font-size-base);
    color: var(--color-white);
    font-weight: var(--font-weight-semibold);
    margin-bottom: var(--space-md);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.footer__column ul {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
    list-style: none;
}

.footer__column ul a {
    color: rgba(255, 255, 255, 0.7);
    font-size: var(--font-size-sm);
    transition: all var(--transition-fast);
    display: inline-block;
}

.footer__column ul a:hover {
    color: var(--color-white);
    transform: translateX(4px);
}

.footer__column ul li {
    display: flex;
    align-items: flex-start;
    gap: var(--space-sm);
}

.footer__contact-icon {
    flex-shrink: 0;
    color: var(--color-primary-light);
    margin-top: 2px;
}

.footer__column ul li a,
.footer__column ul li span {
    color: rgba(255, 255, 255, 0.7);
    font-size: var(--font-size-sm);
    line-height: var(--line-height-relaxed);
}

.footer__column ul li a:hover {
    color: var(--color-white);
}

/* Footer Bottom */
.footer__bottom {
    padding: var(--space-md) 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer__bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--space-md);
}

.footer__bottom-content p {
    color: rgba(255, 255, 255, 0.6);
    font-size: var(--font-size-sm);
}

.footer__legal {
    display: flex;
    align-items: center;
    gap: var(--space-md);
}

.footer__legal a {
    color: rgba(255, 255, 255, 0.6);
    font-size: var(--font-size-sm);
    transition: color var(--transition-fast);
}

.footer__legal a:hover {
    color: var(--color-white);
}

.footer__legal span {
    color: rgba(255, 255, 255, 0.3);
}

/* ============================================
   RESPONSIVE - FOOTER
   ============================================ */
@media (max-width: 1023px) {
    .footer__cta-box {
        flex-direction: column;
        text-align: center;
    }
    
    .footer__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-xl);
    }
    
    .footer__column--about {
        grid-column: 1 / -1;
        padding-right: 0;
        text-align: center;
    }
    
    .footer__social {
        justify-content: center;
    }
}

@media (max-width: 767px) {
    .footer__top {
        padding: var(--space-xl) 0;
    }
    
    .footer__cta-box {
        padding: var(--space-lg);
    }
    
    .footer__cta-button {
        width: 100%;
        justify-content: center;
    }
    
    .footer__main {
        padding: var(--space-2xl) 0;
    }
    
    .footer__grid {
        grid-template-columns: 1fr;
        gap: var(--space-2xl);
    }
    
    .footer__bottom-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer__legal {
        flex-wrap: wrap;
        justify-content: center;
    }
}

/* ============================================
   PARALLAX DIVIDERS
   ============================================ */
.parallax-divider {
    position: relative;
    height: 200px;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
    overflow: hidden;
}

.parallax-divider__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(26, 58, 82, 0.85) 0%,
        rgba(44, 95, 141, 0.75) 100%
    );
    display: flex;
    align-items: center;
    justify-content: center;
}

.parallax-divider__content {
    text-align: center;
    padding: var(--space-xl);
}

.parallax-divider__content h3 {
    font-size: var(--font-size-2xl);
    font-weight: 700;
    color: var(--color-white);
    font-family: var(--font-heading);
    letter-spacing: -0.02em;
    margin: 0;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 0.8s ease-out;
}

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

@media (max-width: 1023px) {
    .parallax-divider {
        height: 180px;
        background-attachment: scroll;
    }
    
    .parallax-divider__content h3 {
        font-size: var(--font-size-xl);
    }
}

@media (max-width: 767px) {
    .parallax-divider {
        height: 250px;
    }
    
    .parallax-divider__content h3 {
        font-size: var(--font-size-lg);
    }
}

/* ============================================
   ACCESSIBILITY & RESPONSIVE
   ============================================ */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* Focus styles for keyboard navigation */
a:focus-visible,
button:focus-visible {
    outline: 3px solid var(--color-primary);
    outline-offset: 2px;
}

/* Minimum width support */
@media (max-width: 320px) {
    :root {
        --font-size-5xl: 2rem;
        --font-size-4xl: 1.75rem;
        --font-size-3xl: 1.5rem;
    }
}

/* ============================================
   LIGHTBOX
   ============================================ */
.lightbox {
    position: fixed;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.95);
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    backdrop-filter: blur(10px);
}

.lightbox.lightbox--active {
    display: flex;
    animation: lightboxFadeIn 0.3s ease forwards;
}

@keyframes lightboxFadeIn {
    to {
        opacity: 1;
    }
}

.lightbox__content {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    animation: lightboxZoomIn 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes lightboxZoomIn {
    from {
        transform: scale(0.8);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

.lightbox__image {
    max-width: 100%;
    max-height: 85vh;
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: var(--radius-lg);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.lightbox__caption {
    margin-top: var(--space-lg);
    color: var(--color-white);
    font-size: var(--font-size-lg);
    font-weight: var(--font-weight-semibold);
    text-align: center;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.8);
}

.lightbox__close {
    position: absolute;
    top: var(--space-xl);
    right: var(--space-xl);
    width: 50px;
    height: 50px;
    background-color: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    color: var(--color-white);
    font-size: 2rem;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    z-index: 10001;
}

.lightbox__close:hover {
    background-color: var(--color-accent);
    border-color: var(--color-accent);
    transform: rotate(90deg) scale(1.1);
}

.lightbox__nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background-color: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    color: var(--color-white);
    font-size: 2rem;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    z-index: 10001;
}

.lightbox__nav:hover {
    background-color: var(--color-primary);
    border-color: var(--color-primary);
    transform: translateY(-50%) scale(1.15);
}

.lightbox__nav--prev {
    left: var(--space-xl);
}

.lightbox__nav--next {
    right: var(--space-xl);
}

@media (max-width: 767px) {
    .lightbox__content {
        max-width: 95vw;
        max-height: 85vh;
    }
    
    .lightbox__image {
        max-height: 75vh;
    }
    
    .lightbox__close {
        top: var(--space-md);
        right: var(--space-md);
        width: 40px;
        height: 40px;
        font-size: 1.5rem;
    }
    
    .lightbox__nav {
        width: 40px;
        height: 40px;
        font-size: 1.5rem;
    }
    
    .lightbox__nav--prev {
        left: var(--space-md);
    }
    
    .lightbox__nav--next {
        right: var(--space-md);
    }
    
    .lightbox__caption {
        font-size: var(--font-size-md);
        padding: 0 var(--space-md);
    }
}

/* ============================================
   PRODUCTS PAGE STYLES
   ============================================ */

/* Page Hero */
.page-hero {
    position: relative;
    min-height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: var(--space-3xl) 0 var(--space-2xl);
}

.page-hero__background {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.page-hero__bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
	overflow-clip-margin: unset;
}

.page-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(26, 58, 82, 0.92) 0%,
        rgba(44, 95, 141, 0.85) 100%
    );
}

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

.breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    margin-bottom: var(--space-lg);
    font-size: var(--font-size-sm);
    color: rgba(255, 255, 255, 0.8);
}

.breadcrumb a {
    color: var(--color-white);
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.breadcrumb a:hover {
    opacity: 0.8;
}

.page-hero__content h1 {
    font-size: var(--font-size-4xl);
    font-weight: 700;
    margin-bottom: var(--space-md);
    font-family: var(--font-heading);
    letter-spacing: -0.02em;
    color: var(--color-white);
}

.page-hero__content p {
    font-size: var(--font-size-lg);
    margin-bottom: var(--space-2xl);
    opacity: 0.95;
}

.page-hero__buttons {
    display: flex;
    gap: var(--space-md);
    justify-content: center;
    flex-wrap: wrap;
}

/* Product Navigation Tabs */
.product-nav {
    position: sticky;
    top: 140px;
    background-color: var(--color-white);
    border-bottom: 2px solid var(--color-light);
    z-index: 100;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.product-nav__tabs {
    display: flex;
    gap: var(--space-sm);
    overflow-x: auto;
    padding: var(--space-md) 0;
    scrollbar-width: none;
}

.product-nav__tabs::-webkit-scrollbar {
    display: none;
}

.product-nav__tab {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-md) var(--space-lg);
    background-color: transparent;
    border: 2px solid var(--color-light);
    border-radius: var(--radius-full);
    color: var(--color-dark);
    font-weight: var(--font-weight-semibold);
    font-size: var(--font-size-md);
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.product-nav__tab svg {
    transition: transform 0.3s ease;
}

.product-nav__tab:hover {
    border-color: var(--color-primary);
    color: var(--color-primary);
    transform: translateY(-2px);
}

.product-nav__tab--active {
    background-color: var(--color-primary);
    border-color: var(--color-primary);
    color: var(--color-white);
}

.product-nav__tab--active:hover {
    color: var(--color-white);
}

/* Products Section */
.products-section {
    padding: var(--space-2xl) 0;
    background-color: var(--color-white);
}

.products-section:nth-of-type(even) {
    background-color: var(--color-cream);
}

.section-header__label {
    display: inline-block;
    padding: var(--space-xs) var(--space-lg);
    background-color: rgba(44, 95, 141, 0.1);
    color: var(--color-primary);
    font-weight: var(--font-weight-semibold);
    font-size: var(--font-size-sm);
    border-radius: var(--radius-md);
    margin-bottom: var(--space-lg);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.section-header {
    text-align: center;
    margin-bottom: var(--space-4xl);
}

.section-header h2 {
    font-size: var(--font-size-4xl);
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: var(--space-md);
    font-family: var(--font-heading);
    letter-spacing: -0.02em;
}

.section-header p {
    font-size: var(--font-size-lg);
    color: var(--color-gray);
    max-width: 700px;
    margin: 0 auto;
    line-height: var(--line-height-relaxed);
}

/* Products Category */
.products-category {
    margin-bottom: var(--space-5xl);
}

.products-category:last-child {
    margin-bottom: 0;
}

.products-category__header {
    margin-bottom: var(--space-3xl);
    padding-left: var(--space-xl);
    border-left: 4px solid var(--color-primary);
}

.products-category__header h3 {
    font-size: var(--font-size-2xl);
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: var(--space-xs);
    font-family: var(--font-heading);
}

.products-category__header p {
    font-size: var(--font-size-md);
    color: var(--color-gray);
    margin: 0;
}

/* Products Grid */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: var(--space-2xl);
}

/* Product Card */
.product-card {
    position: relative;
    background-color: var(--color-white);
    border-radius: var(--radius-2xl);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-2xl);
    border-color: var(--color-primary);
}

.product-card--featured {
    border-color: var(--color-accent);
}

.product-card__badge {
    position: absolute;
    top: var(--space-md);
    right: var(--space-md);
    padding: var(--space-xs) var(--space-md);
    background-color: var(--color-accent);
    color: var(--color-white);
    font-size: var(--font-size-sm);
    font-weight: var(--font-weight-bold);
    border-radius: var(--radius-md);
    z-index: 2;
    box-shadow: var(--shadow-lg);
}

.product-card__badge--premium {
    background: linear-gradient(135deg, #D4AF37 0%, #FFD700 100%);
    color: var(--color-dark);
	border-radius: var(--radius-full);
}

.product-card__image {
    position: relative;
    aspect-ratio: 16 / 10;
    overflow: hidden;
}

.product-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
	overflow-clip-margin: unset;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.product-card:hover .product-card__image img {
    transform: scale(1.1);
}

.product-card__overlay {
    position: absolute;
    inset: 0;
    background: rgba(44, 95, 141, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.product-card:hover .product-card__overlay {
    opacity: 1;
}

.product-card__content {
    padding: var(--space-xl);
}

.product-card__content h4 {
    font-size: var(--font-size-xl);
    font-weight: var(--font-weight-bold);
    color: var(--color-dark);
    margin-bottom: var(--space-md);
    font-family: var(--font-accent);
}

.product-card__content p {
    font-size: var(--font-size-md);
    color: var(--color-gray);
    line-height: var(--line-height-relaxed);
    margin-bottom: var(--space-md);
}

.product-card__features {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-md);
}

.product-card__feature {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    font-size: var(--font-size-sm);
    color: var(--color-primary);
    font-weight: var(--font-weight-semibold);
}

.product-card__feature svg {
    flex-shrink: 0;
}

/* Openers Grid */
.openers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: var(--space-3xl);
    margin-bottom: var(--space-lg);
}

/* Opener Card */
.opener-card {
    position: relative;
    background-color: var(--color-white);
    border-radius: var(--radius-2xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
}

.opener-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-2xl);
    border-color: var(--color-primary);
}

.opener-card--featured {
    border-color: var(--color-accent);
}

.opener-card__badge {
    position: absolute;
    top: var(--space-md);
    right: var(--space-md);
    padding: var(--space-xs) var(--space-md);
    background-color: var(--color-accent);
    color: var(--color-white);
    font-size: var(--font-size-sm);
    font-weight: var(--font-weight-bold);
    border-radius: var(--radius-md);
    z-index: 2;
    box-shadow: var(--shadow-lg);
}

.opener-card__image {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-dark) 100%);
    /* padding: var(--space-3xl); */
    display: flex;
    align-items: center;
    justify-content: center;
	height: 215px;
    width: 100%;
}

.opener-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.opener-card__image-placeholder {
    color: rgba(255, 255, 255, 0.3);
}

.opener-card__content {
    padding: var(--space-xl);
}

.opener-card__header {
    display: flex;
    justify-content: space-between;
    align-items: start;
    margin-bottom: var(--space-md);
}

.opener-card__header h4 {
    font-size: var(--font-size-xl);
    font-weight: var(--font-weight-bold);
    color: var(--color-dark);
    font-family: var(--font-accent);
}

.opener-card__rating {
    color: #FFB800;
    font-size: var(--font-size-lg);
}

.opener-card__content > p {
    font-size: var(--font-size-md);
    color: var(--color-gray);
    line-height: var(--line-height-relaxed);
    margin-bottom: var(--space-lg);
}

.opener-card__specs {
    display: flex;
    gap: var(--space-lg);
    padding: var(--space-md);
    background-color: var(--color-cream);
    border-radius: var(--radius-lg);
    margin-bottom: var(--space-lg);
	flex-direction:column;
}

.opener-card__spec {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.opener-card__spec-icon {
    color: var(--color-primary);
}

.opener-card__spec div {
    display: flex;
    flex-direction: column;
}

.opener-card__spec strong {
    font-size: var(--font-size-md);
    font-weight: var(--font-weight-bold);
    color: var(--color-dark);
}

.opener-card__spec span {
    font-size: var(--font-size-sm);
    color: var(--color-gray);
}

.opener-card__features {
    margin-bottom: var(--space-xl);
}

.opener-card__features h5 {
    font-size: var(--font-size-md);
    font-weight: var(--font-weight-bold);
    color: var(--color-dark);
    margin-bottom: var(--space-md);
}

.opener-card__features ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.opener-card__features li {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-xs) 0;
    font-size: var(--font-size-sm);
    color: var(--color-gray);
	background: url(/files/images/tick.svg) no-repeat left center;
    padding-left: 25px;
    margin-bottom: 10px;
}

/* .opener-card__features li svg {
    color: var(--color-primary);
    flex-shrink: 0;
} */

.opener-card__footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: var(--space-sm);
    border-top: 2px solid var(--color-light);
	flex-direction: column;
    gap: 23px;
}

.opener-card__warranty {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    color: var(--color-primary);
    font-weight: var(--font-weight-semibold);
    font-size: var(--font-size-sm);
}

.opener-card__warranty svg {
    flex-shrink: 0;
}

/* Opener Comparison */
.opener-comparison {
    padding: var(--space-4xl);
    background-color: var(--color-cream);
    border-radius: var(--radius-2xl);
    margin-top: var(--space-4xl);
}

.opener-comparison h3 {
    font-size: var(--font-size-3xl);
    font-weight: var(--font-weight-bold);
    color: var(--color-dark);
    text-align: center;
    margin-bottom: var(--space-3xl);
    font-family: var(--font-heading);
}

.opener-comparison__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--space-2xl);
}

.opener-comparison__item {
    text-align: center;
}

.opener-comparison__icon {
    width: 80px;
    height: 80px;
    margin: 0 auto var(--space-lg);
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-accent) 100%);
    border-radius: var(--radius-2xl);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    box-shadow: var(--shadow-lg);
}

.opener-comparison__item h4 {
    font-size: var(--font-size-lg);
    font-weight: var(--font-weight-bold);
    color: var(--color-dark);
    margin-bottom: var(--space-sm);
}

.opener-comparison__item p {
    font-size: var(--font-size-md);
    color: var(--color-gray);
    line-height: var(--line-height-relaxed);
}

/* Why Choose Section */
.why-choose {
    padding: var(--space-5xl) 0;
    background-color: var(--color-cream);
}

.why-choose__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-3xl);
}

.why-choose__item {
    position: relative;
    padding: var(--space-2xl);
    background-color: var(--color-white);
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
}

.why-choose__item:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-2xl);
}

.why-choose__number {
    position: absolute;
    top: var(--space-md);
    right: var(--space-md);
    font-size: var(--font-size-4xl);
    font-weight: 900;
    color: rgba(44, 95, 141, 0.1);
    font-family: var(--font-heading);
    line-height: 1;
}

.why-choose__icon {
    width: 80px;
    height: 80px;
    margin-bottom: var(--space-lg);
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-accent) 100%);
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    box-shadow: var(--shadow-lg);
}

.why-choose__item h3 {
    font-size: var(--font-size-xl);
    font-weight: var(--font-weight-bold);
    color: var(--color-dark);
    margin-bottom: var(--space-md);
    font-family: var(--font-accent);
}

.why-choose__item p {
    font-size: var(--font-size-md);
    color: var(--color-gray);
    line-height: var(--line-height-relaxed);
}

/* Button variants for products page */
.btn--outline-white {
    background-color: transparent;
    border-color: var(--color-white);
    color: var(--color-white);
}

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

/* CTA Banner buttons */
.cta-banner__buttons {
    display: flex;
    gap: var(--space-md);
    margin-top: var(--space-xl);
    flex-wrap: wrap;
}

/* Responsive adjustments for products page */
@media (max-width: 1023px) {
    .page-hero__content h1 {
        font-size: var(--font-size-4xl);
    }
    
    .products-grid {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
        gap: var(--space-xl);
    }
    
    .openers-grid {
        grid-template-columns: 1fr;
    }
    
    .product-nav {
        top: 60px;
    }
}
@media (max-width: 991px){
	.product-nav{
        top: 135px;
    }
}
@media (max-width: 767px) {
    .page-hero {
        min-height: 180px;
        padding: var(--space-2xl) 0 var(--space-xl);
    }
    
    .page-hero__content h1 {
        font-size: var(--font-size-3xl);
    }
    
    .page-hero__content p {
        font-size: var(--font-size-md);
    }
    
    .page-hero__buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .page-hero__buttons .btn {
        width: 100%;
    }
    
    .product-nav__tabs {
        padding: var(--space-sm) 0;
    }
    
    .product-nav__tab {
        padding: var(--space-sm) var(--space-md);
        font-size: var(--font-size-sm);
    }
    
    .products-grid {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
    }
    
    .why-choose__grid {
        grid-template-columns: 1fr;
    }
    
    .opener-comparison__grid {
        grid-template-columns: 1fr;
    }
    
    .cta-banner__buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .cta-banner__buttons .btn {
        width: 100%;
    }
	.product-nav {
        top: 108px !important;
    }
}

/* ============================================
   REPAIR SERVICE PAGE STYLES
   ============================================ */

/* Services Section */
.services-section {
    padding: var(--space-3xl) 0;
    background-color: var(--color-white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: var(--space-2xl);
}

/* Service Detail Cards */
.service-detail-card {
    position: relative;
    background-color: var(--color-white);
    border-radius: var(--radius-2xl);
    padding: var(--space-2xl);
    box-shadow: var(--shadow-lg);
    border: 2px solid var(--color-light);
    transition: all 0.3s ease;
	height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.service-detail-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-2xl);
    border-color: var(--color-primary);
}

.service-detail-card--featured {
    border-color: var(--color-accent);
    background: linear-gradient(135deg, rgba(44, 95, 141, 0.02) 0%, rgba(255, 107, 53, 0.02) 100%);
}

.service-detail-card__badge {
    position: absolute;
    top: var(--space-lg);
    right: var(--space-lg);
    padding: var(--space-xs) var(--space-md);
    background-color: var(--color-accent);
    color: var(--color-white);
    font-size: var(--font-size-sm);
    font-weight: var(--font-weight-bold);
    border-radius: var(--radius-md);
}

.service-detail-card__icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-accent) 100%);
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    margin-bottom: var(--space-lg);
}

.service-detail-card h3 {
    font-size: var(--font-size-2xl);
    font-weight: var(--font-weight-bold);
    color: var(--color-dark);
    margin-bottom: var(--space-md);
    font-family: var(--font-heading);
}

.service-detail-card > p {
    font-size: var(--font-size-md);
    color: var(--color-gray);
    line-height: var(--line-height-relaxed);
    margin-bottom: var(--space-lg);
}

.service-detail-card__list {
    list-style: none;
    padding: 0;
    margin: 0 0 var(--space-xl) 0;
	margin-bottom: 1rem;
}

.service-detail-card__list li {
    padding: var(--space-sm) 0;
    padding-left: var(--space-lg);
    font-size: var(--font-size-md);
    color: var(--color-gray);
    position: relative;
}

.service-detail-card__list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--color-primary);
    font-weight: var(--font-weight-bold);
}

.service-detail-card .btn {
    margin-top: auto;
}

/* Common Issues Section */
.common-issues {
    padding: var(--space-2xl) 0;
    background-color: var(--color-cream);
}

.issues-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--space-xl);
}

.issue-card {
    background-color: var(--color-white);
    padding: var(--space-xl);
    border-radius: var(--radius-xl);
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.issue-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--color-primary);
}

.issue-card__icon {
    font-size: 3rem;
    margin-bottom: var(--space-md);
}

.issue-card h4 {
    font-size: var(--font-size-lg);
    font-weight: var(--font-weight-bold);
    color: var(--color-dark);
    margin-bottom: var(--space-sm);
}

.issue-card p {
    font-size: var(--font-size-sm);
    color: var(--color-gray);
    line-height: var(--line-height-relaxed);
}

/* Process Section */
.process-section {
    padding: var(--space-3xl) 0;
    background-color: var(--color-white);
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--space-2xl);
}

.process-step {
    position: relative;
    text-align: center;
}

.process-step__number {
    width: 80px;
    height: 80px;
    margin: 0 auto var(--space-lg);
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-accent) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--font-size-3xl);
    font-weight: 700;
    color: var(--color-white);
    font-family: var(--font-heading);
}

.process-step__content h3 {
    font-size: var(--font-size-xl);
    font-weight: var(--font-weight-bold);
    color: var(--color-dark);
    margin-bottom: var(--space-sm);
}

.process-step__content p {
    font-size: var(--font-size-md);
    color: var(--color-gray);
    line-height: var(--line-height-relaxed);
}
.parallax-divider .content-box {
    max-width: 40rem;
}
/* Responsive adjustments */
@media (max-width: 1023px) {
    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
}

@media (max-width: 767px) {
    
    .issues-grid,
    .process-steps {
        grid-template-columns: 1fr;
    }
    
    .service-detail-card {
        padding: var(--space-xl);
    }
	.services-grid{
		grid-template-columns: repeat(auto-fit, minmax(275px, 1fr));
	}
	.service-detail-card__icon {
		width: 60px;
		height: 60px;
	}
	.service-detail-card__list ul {
		padding-left: 0px;
	}
	.service-detail-card__list li {
		padding-left: var(--space-md);
	}
	.parallax-divider .content-box {
		max-width: 100%;
        font-size: 0.9rem;
	}
}
@media(max-width:320px){
	.btn {
        font-size: var(--font-size-sm);
	}
	.service-detail-card h3 {
    	font-size: var(--font-size-xl);
	}
}
/* ============================================
   Contact Page Styles
   ============================================ */

/* Contact Info Cards */
.contact-info {
    padding: var(--space-3xl) 0 0 0;
    background-color: var(--color-light);
}

.contact-info__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-xl);
}

.contact-info__card {
    background-color: var(--color-white);
    padding: var(--space-xl);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    gap: var(--space-lg);
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    text-decoration: none;
	color:#2c578d;
}

.contact-info__card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
	color: #D4845C;
}

.contact-info__card--clickable {
    cursor: pointer;
}

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

.contact-info__content {
    text-align: left;
}

.contact-info__card h3 {
    font-size: var(--font-size-sm);
    font-weight: var(--font-weight-bold);
    color: var(--color-gray);
    margin-bottom: var(--space-xs);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.contact-info__value {
    font-size: var(--font-size-md);
    font-weight: var(--font-weight-semibold);
    color: var(--color-dark);
    margin-bottom: var(--space-xs);
}

.contact-info__meta {
    font-size: var(--font-size-sm);
    color: var(--color-gray);
    margin: 0;
}

/* Contact Section */
.contact-section {
    padding: var(--space-3xl) 0 var(--space-4xl) 0;
    background-color: var(--color-light);
}

.contact-section__wrapper {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: var(--space-3xl);
}

.contact-form__container {
    width: 100%;
}

/* Contact Form */
.contact-form {
    background-color: var(--color-white);
    padding: 0;
}

.contact-form__header {
    margin-bottom: var(--space-xl);
}

.contact-form__header h2 {
    font-size: var(--font-size-2xl);
    font-weight: var(--font-weight-bold);
    color: var(--color-dark);
    margin-bottom: var(--space-sm);
}

.contact-form__header p {
    font-size: var(--font-size-md);
    color: var(--color-gray);
    line-height: var(--line-height-relaxed);
}

/* Form Styles */
.form__row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-lg);
    margin-bottom: 0;
}

.form__group {
    margin-bottom: var(--space-lg);
}

.form__label {
    display: block;
    font-size: var(--font-size-sm);
    font-weight: var(--font-weight-semibold);
    color: var(--color-dark);
    margin-bottom: var(--space-sm);
}

.form__input,
.form__select,
.form__textarea {
    width: 100%;
    padding: var(--space-sm) var(--space-md);
    font-size: var(--font-size-md);
    font-family: var(--font-body);
    color: var(--color-dark);
    background-color: var(--color-white);
    border: 2px solid #e5e7eb;
    border-radius: var(--radius-lg);
    transition: all 0.3s ease;
}

.form__input:focus,
.form__select:focus,
.form__textarea:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 4px rgba(26, 86, 219, 0.1);
}

.form__textarea {
    resize: vertical;
    min-height: 120px;
}

.form__select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none' stroke='%23475569' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right var(--space-md) center;
    padding-right: var(--space-3xl);
}

.form__radio-group {
    display: flex;
    gap: var(--space-xl);
}

.form__radio {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    cursor: pointer;
}

.form__radio input[type="radio"] {
    width: 20px;
    height: 20px;
    cursor: pointer;
    accent-color: var(--color-primary);
}

.form__radio span {
    font-size: var(--font-size-md);
    color: var(--color-dark);
}

/* Info Sidebar */
.contact-info-sidebar {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
}

.info-card {
    background-color: var(--color-light);
    padding: var(--space-xl);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--color-primary);
}

.info-card__header {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    margin-bottom: var(--space-lg);
}

.info-card__header svg {
    color: var(--color-primary);
}

.info-card__header h3 {
    font-size: var(--font-size-lg);
    font-weight: var(--font-weight-bold);
    color: var(--color-dark);
    margin: 0;
}

.info-card p {
    font-size: var(--font-size-md);
    color: var(--color-gray);
    line-height: var(--line-height-relaxed);
    margin-bottom: var(--space-md);
}

/* Business Hours */
.hours-list__item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-md) 0;
    border-bottom: 1px solid #e5e7eb;
}

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

.hours-list__day {
    font-size: var(--font-size-md);
    font-weight: var(--font-weight-semibold);
    color: var(--color-dark);
}

.hours-list__time {
    font-size: var(--font-size-sm);
    color: var(--color-gray);
}

.hours-list__item--closed .hours-list__time {
    color: #9ca3af;
    font-weight: var(--font-weight-medium);
}

/* Service Area List */
.service-area-list {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-sm);
    margin: var(--space-lg) 0;
}

.service-area-list li {
    font-size: var(--font-size-md);
    color: var(--color-gray);
    padding-left: var(--space-md);
    position: relative;
}

.service-area-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--color-primary);
    font-weight: bold;
}

.service-area-cta {
    font-size: var(--font-size-sm);
    color: var(--color-gray);
    margin-top: var(--space-lg);
}

.service-area-cta a {
    color: var(--color-primary);
    font-weight: var(--font-weight-semibold);
    text-decoration: none;
}

.service-area-cta a:hover {
    text-decoration: underline;
}

/* Emergency Card */
.info-card--emergency {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-accent) 100%);
    border-left-color: transparent;
}

.info-card--emergency .info-card__header h3,
.info-card--emergency .info-card__header svg,
.info-card--emergency p {
    color: var(--color-white);
}

/* Map Section */
.map-section {
    width: 100%;
}

.map-section__wrapper {
    width: 100%;
    height: 450px;
    filter: grayscale(20%);
}

.map-section__wrapper iframe {
    width: 100%;
    height: 100%;
    display: block;
}

/* Button Modifiers */
.btn--full {
    width: 100%;
}

.btn--large {
    padding: var(--space-lg) var(--space-2xl);
    font-size: var(--font-size-lg);
}

/* Responsive Design */
@media (max-width: 1080px) {
    .contact-section__wrapper {
        grid-template-columns: 1fr;
        gap: var(--space-2xl);
    }
    
    .contact-info__grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 767px) {
    .form__row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .contact-info {
        padding: var(--space-2xl) 0 0 0;
    }
    
    .contact-info__card {
        flex-direction: column;
        text-align: center;
		padding: var(--space-md);
		margin: var(--space-sm);
    }
    
    .contact-info__content {
        text-align: center;
    }
    
    .form__radio-group {
        flex-direction: column;
        gap: var(--space-md);
    }
    
    .service-area-list {
        grid-template-columns: 1fr;
    }
    
    .map-section__wrapper {
        height: 350px;
    }
	
	.contact-info .container {
    	padding: 0;
	}
	
	.contact-section .container {
		padding: 0;
	}
	
	.form__group .form__input {
		width: auto;
	}
	
	.info-card {
		border-bottom: 4px solid var(--color-primary) !important;
		border-left: 0;
		padding: var(--space-lg);
		margin: var(--space-sm);
	}
}


/* ============================================
   Careers Page Styles
   ============================================ */

/* Careers Intro */
.careers-intro {
    padding: var(--space-4xl) 0;
    background-color: var(--color-white);
}

.careers-intro__content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto var(--space-xl);
}

.careers-intro__content h2 {
    font-size: var(--font-size-3xl);
    font-weight: var(--font-weight-bold);
    color: var(--color-dark);
    margin-bottom: var(--space-md);
}

.careers-intro__content p {
    font-size: var(--font-size-lg);
    color: var(--color-gray);
    line-height: var(--line-height-relaxed);
}

/* Benefits Grid */
.careers-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--space-xl);
}

.benefit-card {
    background-color: var(--color-light);
    padding: var(--space-lg);
    border-radius: var(--radius-lg);
    text-align: center;
    transition: all 0.3s ease;
}

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

.benefit-card__icon {
    width: 64px;
    height: 64px;
    margin: 0 auto var(--space-lg);
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-accent) 100%);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
}

.benefit-card h3 {
    font-size: var(--font-size-lg);
    font-weight: var(--font-weight-bold);
    color: var(--color-dark);
    margin-bottom: var(--space-sm);
}

.benefit-card p {
    font-size: var(--font-size-md);
    color: var(--color-gray);
    line-height: var(--line-height-relaxed);
}

/* Careers Application Section */
.careers-application {
    padding: var(--space-lg) 0;
    background-color: var(--color-light);
	margin-bottom: var(--space-3xl);
}

.careers-application__wrapper {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: var(--space-3xl);
}

.careers-form__container {
    width: 100%;
}

.careers-form {
    background-color: var(--color-white);
    padding: 0;
}

.careers-form__header {
    margin-bottom: var(--space-xl);
}

.careers-form__header h2 {
    font-size: var(--font-size-2xl);
    font-weight: var(--font-weight-bold);
    color: var(--color-dark);
    margin-bottom: var(--space-sm);
}

.careers-form__header p {
    font-size: var(--font-size-md);
    color: var(--color-gray);
    line-height: var(--line-height-relaxed);
}

/* File Upload */
.file-upload {
    position: relative;
}

.file-upload__input {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.file-upload__label {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: var(--space-2xl);
    background-color: var(--color-light);
    border: 2px dashed #d1d5db;
    border-radius: var(--radius-lg);
    cursor: pointer;
    transition: all 0.3s ease;
}

.file-upload__label:hover {
    border-color: var(--color-primary);
    background-color: rgba(26, 86, 219, 0.05);
}

.file-upload__input:focus + .file-upload__label {
    border-color: var(--color-primary);
    box-shadow: 0 0 0 4px rgba(26, 86, 219, 0.1);
}

.file-upload__label svg {
    color: var(--color-primary);
    margin-bottom: var(--space-md);
}

.file-upload__text {
    font-size: var(--font-size-md);
    color: var(--color-gray);
    font-weight: var(--font-weight-medium);
}

.file-upload__filename {
    font-size: var(--font-size-sm);
    color: var(--color-primary);
    font-weight: var(--font-weight-semibold);
    margin-top: var(--space-sm);
    display: none;
}

.file-upload__input:valid ~ .file-upload__label .file-upload__filename {
    display: block;
}

.file-upload__hint {
    font-size: var(--font-size-xs);
    color: var(--color-gray);
    margin-top: var(--space-sm);
    text-align: center;
}

/* Careers Info Sidebar */
.careers-info-sidebar {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
}

.info-card__note {
    font-size: var(--font-size-sm);
    color: var(--color-gray);
    font-style: italic;
    margin-top: var(--space-md);
}

.openings-list,
.qualities-list {
    list-style: none;
    margin: 0;
}

.openings-list li,
.qualities-list li {
    font-size: var(--font-size-md);
    color: var(--color-dark);
    padding: var(--space-sm) 0;
    padding-left: var(--space-lg);
    position: relative;
}

.openings-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    background: var(--color-primary);
    border-radius: 50%;
}

.qualities-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--color-primary);
    font-weight: bold;
}

.info-card--accent {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-accent) 100%);
    border-left-color: transparent;
}

.info-card--accent .info-card__header h3,
.info-card--accent .info-card__header svg,
.info-card--accent p {
    color: var(--color-white);
}

/* Responsive */
@media (max-width: 1023px) {
    .careers-application__wrapper {
        grid-template-columns: 1fr;
        gap: var(--space-2xl);
    }
    
    .careers-benefits {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
}

@media (max-width: 767px) {
    .careers-benefits {
        grid-template-columns: 1fr;
    }
    
    .careers-intro__content h2 {
        font-size: var(--font-size-2xl);
    }
	.careers-application__wrapper {
		flex-direction: column;
		display: flex;
	}
	section.careers-intro {
		padding-bottom: var(--space-md);
	}
	ol, ul {
     	padding-left: 0px;
	}
}
/* nim */
.header__menu-item--active a {
    border-bottom: 2px solid var(--color-primary);
}
.header__cta a {
    font-size: 16px;
}
span.required-star {
    color: red;
}
@media (max-width: 568px) {
	.section-header h2 {
     	font-size: var(--font-size-3xl);
	}
	.service-area__city {
		flex-direction: column;
		text-align: center;
	}
	/*testimonials-home page*/
    .reviews-slider__nav {
        width: 20px;
        height: 20px;
        font-size: var(--font-size-md);
    }
    .reviews-slider {
        padding: 0 24px;
    }
    .review-card__header,.review-card__meta{
        flex-direction: column;
    }
    .review-card {
        padding: var(--space-lg);
    }

}
/* ============================================
   Recaptcha Styles
   ============================================ */
.grecaptcha-badge {
    bottom: 130px !important;
	z-index: 10001;
}