/* ============================================
   BEZIEK INTERIORS - Carpentry Website Styles
   Modern, Bold, Warm Design - Inspired by Dribbble
   ============================================ */

/* -------------------- 
   CSS Custom Properties (Design System)
   -------------------- */
:root {
    /* Color Palette - Warm Carpentry Theme */
    --color-primary: #1a1a1a;          /* Rich Black */
    --color-primary-light: #2d2d2d;
    --color-primary-dark: #0d0d0d;
    --color-secondary: #c8956c;        /* Warm Wood/Copper */
    --color-secondary-light: #d4a77a;
    --color-secondary-dark: #b5845d;
    --color-accent: #e8c547;           /* Gold Accent */
    --color-accent-light: #f0d060;
    
    /* Neutral Colors */
    --color-white: #ffffff;
    --color-off-white: #f5f3f0;
    --color-cream: #faf8f5;
    --color-light-gray: #e8e4df;
    --color-mid-gray: #8a8580;
    --color-dark-gray: #4a4744;
    --color-black: #1a1a1a;
    
    /* Typography */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-heading: 'Playfair Display', Georgia, serif;
    
    /* Font Sizes (Fluid Typography) */
    --fs-xs: 0.75rem;      /* 12px */
    --fs-sm: 0.875rem;     /* 14px */
    --fs-base: 1rem;       /* 16px */
    --fs-md: 1.125rem;     /* 18px */
    --fs-lg: 1.25rem;      /* 20px */
    --fs-xl: 1.5rem;       /* 24px */
    --fs-2xl: 2rem;        /* 32px */
    --fs-3xl: 2.75rem;     /* 44px */
    --fs-4xl: 3.5rem;      /* 56px */
    --fs-5xl: 4.5rem;      /* 72px */
    --fs-6xl: 5.5rem;      /* 88px */
    
    /* Spacing Scale (8px system) */
    --space-1: 0.25rem;    /* 4px */
    --space-2: 0.5rem;     /* 8px */
    --space-3: 0.75rem;    /* 12px */
    --space-4: 1rem;       /* 16px */
    --space-5: 1.5rem;     /* 24px */
    --space-6: 2rem;       /* 32px */
    --space-7: 2.5rem;     /* 40px */
    --space-8: 3rem;       /* 48px */
    --space-9: 4rem;       /* 64px */
    --space-10: 5rem;      /* 80px */
    --space-11: 6rem;      /* 96px */
    --space-12: 8rem;      /* 128px */
    
    /* Layout */
    --max-width: 1400px;
    --container-padding: 1.5rem;
    
    /* Borders & Shadows */
    --border-radius-sm: 4px;
    --border-radius: 8px;
    --border-radius-lg: 16px;
    --border-radius-xl: 24px;
    --border-radius-full: 50%;
    
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.08);
    --shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    --shadow-md: 0 16px 32px rgba(0, 0, 0, 0.15);
    --shadow-lg: 0 24px 48px rgba(0, 0, 0, 0.2);
    --shadow-xl: 0 32px 64px rgba(0, 0, 0, 0.25);
    
    /* Transitions */
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    
    /* Z-Index Scale */
    --z-dropdown: 100;
    --z-sticky: 200;
    --z-fixed: 300;
    --z-modal: 400;
    --z-overlay: 500;
}

/* -------------------- 
   CSS Reset & Base Styles
   -------------------- */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

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

body {
    font-family: var(--font-primary);
    font-size: var(--fs-base);
    line-height: 1.7;
    color: var(--color-dark-gray);
    background-color: var(--color-cream);
    overflow-x: hidden;
}

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

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

ul, ol {
    list-style: none;
}

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

/* -------------------- 
   Typography
   -------------------- */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.1;
    color: var(--color-black);
    margin-bottom: var(--space-4);
    letter-spacing: -0.02em;
}

h1 {
    font-size: var(--fs-4xl);
}

h2 {
    font-size: var(--fs-3xl);
}

h3 {
    font-size: var(--fs-2xl);
}

h4 {
    font-size: var(--fs-xl);
}

p {
    margin-bottom: var(--space-4);
}

.text-accent {
    color: var(--color-secondary);
}

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

.highlight {
    color: var(--color-secondary);
    font-style: italic;
}

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

.container--wide {
    max-width: 1600px;
}

.section {
    padding: var(--space-11) 0;
}

.section--alt {
    background-color: var(--color-off-white);
}

.section--dark {
    background-color: var(--color-black);
    color: var(--color-white);
}

.section--dark h2,
.section--dark h3,
.section--dark h4 {
    color: var(--color-white);
}

.grid {
    display: grid;
    gap: var(--space-6);
}

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

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

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

.flex {
    display: flex;
}

.flex--center {
    align-items: center;
    justify-content: center;
}

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

/* -------------------- 
   Buttons
   -------------------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-2);
    padding: var(--space-4) var(--space-7);
    font-size: var(--fs-sm);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border-radius: 0;
    transition: all var(--transition);
    cursor: pointer;
    text-align: center;
    position: relative;
    overflow: hidden;
}

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

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

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

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

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

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

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

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

.btn--lg {
    padding: var(--space-5) var(--space-9);
    font-size: var(--fs-base);
}

.btn--icon {
    width: 56px;
    height: 56px;
    padding: 0;
    border-radius: var(--border-radius-full);
}

/* -------------------- 
   Header & Navigation
   -------------------- */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: var(--z-sticky);
    background-color: transparent;
    transition: all var(--transition);
    padding: var(--space-4) 0;
}

.header--scrolled {
    background-color: var(--color-white);
    box-shadow: var(--shadow);
    padding: var(--space-3) 0;
}

.header--scrolled .nav__link {
    color: var(--color-dark-gray);
}

.header--scrolled .nav__link:hover {
    color: var(--color-secondary);
}

.header--scrolled .nav-toggle__bar {
    background-color: var(--color-black);
}

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

.logo {
    display: inline-flex;
    align-items: center;
}

.logo__img {
    height: 40px;
    width: auto;
}

.nav {
    display: none;
}

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

.nav__link {
    font-size: var(--fs-sm);
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    position: relative;
    padding: var(--space-2) 0;
}

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

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

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

/* Mobile Menu Toggle */
.nav-toggle {
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: var(--space-2);
    z-index: var(--z-overlay);
}

.nav-toggle__bar {
    width: 28px;
    height: 2px;
    background-color: var(--color-white);
    transition: all var(--transition);
    transform-origin: center;
}

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

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

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

/* Mobile Navigation */
.nav--mobile {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background-color: var(--color-black);
    padding: var(--space-12) var(--space-6);
    transition: right var(--transition-slow);
    z-index: var(--z-modal);
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav--mobile.is-active {
    right: 0;
}

.nav--mobile .nav__list {
    flex-direction: column;
    gap: var(--space-6);
    text-align: center;
}

.nav--mobile .nav__link {
    font-size: var(--fs-2xl);
    font-family: var(--font-heading);
    text-transform: none;
    letter-spacing: 0;
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition);
    z-index: var(--z-fixed);
}

.overlay.is-active {
    opacity: 1;
    visibility: visible;
}

/* -------------------- 
   Hero Section - Bold Carpentry Style
   -------------------- */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: var(--color-black);
    overflow: hidden;
}

.hero__background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hero__background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.5;
}

.hero__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.9) 0%, rgba(26, 26, 26, 0.6) 50%, rgba(200, 149, 108, 0.3) 100%);
}

.hero__content {
    position: relative;
    z-index: 2;
    max-width: 900px;
}

.hero__label {
    display: inline-flex;
    align-items: center;
    gap: var(--space-3);
    font-size: var(--fs-sm);
    color: var(--color-secondary);
    text-transform: uppercase;
    letter-spacing: 0.2em;
    margin-bottom: var(--space-5);
    font-weight: 600;
}

.hero__label::before {
    content: '';
    width: 40px;
    height: 2px;
    background-color: var(--color-secondary);
}

.hero__title {
    font-size: var(--fs-4xl);
    color: var(--color-white);
    margin-bottom: var(--space-6);
    line-height: 1.05;
    font-weight: 600;
}

.hero__title span {
    color: var(--color-secondary);
    font-style: italic;
}

.hero__description {
    font-size: var(--fs-lg);
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: var(--space-8);
    line-height: 1.8;
    max-width: 600px;
}

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

.hero__scroll {
    position: absolute;
    bottom: var(--space-8);
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-3);
    color: var(--color-white);
    font-size: var(--fs-xs);
    text-transform: uppercase;
    letter-spacing: 0.2em;
    animation: bounce 2s infinite;
}

.hero__scroll-line {
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, var(--color-secondary), transparent);
}

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

/* -------------------- 
   Section Headers
   -------------------- */
.section-header {
    margin-bottom: var(--space-10);
}

.section-header--center {
    text-align: center;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.section-header__label {
    display: inline-flex;
    align-items: center;
    gap: var(--space-3);
    font-size: var(--fs-sm);
    color: var(--color-secondary);
    text-transform: uppercase;
    letter-spacing: 0.2em;
    margin-bottom: var(--space-4);
    font-weight: 600;
}

.section-header__label::before {
    content: '';
    width: 40px;
    height: 2px;
    background-color: var(--color-secondary);
}

.section-header--center .section-header__label::before {
    display: none;
}

.section-header__title {
    margin-bottom: var(--space-5);
    font-size: var(--fs-3xl);
}

.section-header__title span {
    color: var(--color-secondary);
    font-style: italic;
}

.section-header__description {
    color: var(--color-mid-gray);
    font-size: var(--fs-md);
    line-height: 1.8;
}

/* -------------------- 
   About/Overview Section
   -------------------- */
.about-section {
    display: grid;
    gap: var(--space-10);
    align-items: center;
}

.about__content {
    order: 2;
}

.about__image-wrapper {
    order: 1;
    position: relative;
}

.about__image {
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
    width: 100%;
    height: auto;
    object-fit: cover;
}

.about__image-accent {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 200px;
    height: 200px;
    background-color: var(--color-secondary);
    border-radius: var(--border-radius-lg);
    z-index: -1;
    display: none;
}

.about__stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-6);
    margin-top: var(--space-8);
    padding-top: var(--space-8);
    border-top: 1px solid var(--color-light-gray);
}

.stat {
    text-align: center;
}

.stat__number {
    font-family: var(--font-heading);
    font-size: var(--fs-3xl);
    font-weight: 700;
    color: var(--color-secondary);
    line-height: 1;
    margin-bottom: var(--space-2);
}

.stat__label {
    font-size: var(--fs-sm);
    color: var(--color-mid-gray);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* -------------------- 
   Service Cards - Modern Style
   -------------------- */
.services-grid {
    display: grid;
    gap: var(--space-6);
}

.service-card {
    position: relative;
    background-color: var(--color-white);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all var(--transition);
    group: true;
}

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

.service-card__image {
    height: 280px;
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
}

.service-card__image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(26, 26, 26, 0.9) 0%, rgba(26, 26, 26, 0) 60%);
    transition: opacity var(--transition);
}

.service-card:hover .service-card__image::before {
    opacity: 0.7;
}

.service-card__number {
    position: absolute;
    top: var(--space-5);
    left: var(--space-5);
    font-family: var(--font-heading);
    font-size: var(--fs-5xl);
    font-weight: 700;
    color: rgba(255, 255, 255, 0.15);
    line-height: 1;
}

.service-card__content {
    padding: var(--space-6);
}

.service-card__title {
    font-size: var(--fs-xl);
    margin-bottom: var(--space-3);
    color: var(--color-black);
}

.service-card__description {
    color: var(--color-mid-gray);
    margin-bottom: var(--space-5);
    font-size: var(--fs-base);
    line-height: 1.7;
}

.service-card__link {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    color: var(--color-secondary);
    font-weight: 600;
    font-size: var(--fs-sm);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    transition: gap var(--transition);
}

.service-card__link:hover {
    gap: var(--space-4);
}

.service-card__link svg {
    width: 20px;
    height: 20px;
    transition: transform var(--transition);
}

.service-card:hover .service-card__link svg {
    transform: translateX(4px);
}

/* -------------------- 
   Feature Cards
   -------------------- */
.card {
    background-color: var(--color-white);
    border-radius: var(--border-radius-lg);
    padding: var(--space-7);
    box-shadow: var(--shadow);
    transition: all var(--transition);
    border: 1px solid transparent;
}

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

.card__icon {
    width: 72px;
    height: 72px;
    background: linear-gradient(135deg, var(--color-secondary) 0%, var(--color-secondary-dark) 100%);
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--space-5);
    font-size: var(--fs-2xl);
    color: var(--color-white);
}

.card__title {
    font-size: var(--fs-lg);
    margin-bottom: var(--space-3);
    font-family: var(--font-heading);
}

.card__description {
    color: var(--color-mid-gray);
    margin-bottom: 0;
    line-height: 1.7;
}

/* -------------------- 
   Gallery Grid
   -------------------- */
.gallery {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-4);
}

.gallery__item {
    position: relative;
    aspect-ratio: 4/3;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    cursor: pointer;
}

.gallery__item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(26, 26, 26, 0.7) 0%, transparent 50%);
    opacity: 0;
    transition: opacity var(--transition);
    z-index: 1;
}

.gallery__item:hover::before {
    opacity: 1;
}

.gallery__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.gallery__item:hover .gallery__image {
    transform: scale(1.08);
}

.gallery__overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: var(--space-5);
    color: var(--color-white);
    z-index: 2;
    transform: translateY(20px);
    opacity: 0;
    transition: all var(--transition);
}

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

.gallery__overlay h4 {
    color: var(--color-white);
    margin-bottom: var(--space-1);
    font-size: var(--fs-md);
}

.gallery__overlay p {
    color: var(--color-secondary);
    font-size: var(--fs-sm);
    margin: 0;
}

.gallery__placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
    color: var(--color-white);
    font-size: var(--fs-sm);
    text-align: center;
    padding: var(--space-4);
}

.gallery__placeholder-icon {
    font-size: var(--fs-3xl);
    margin-bottom: var(--space-2);
    opacity: 0.7;
}

/* -------------------- 
   Page Banner
   -------------------- */
.page-banner {
    position: relative;
    padding: var(--space-12) 0 var(--space-10);
    margin-top: 0;
    min-height: 50vh;
    display: flex;
    align-items: center;
    background: var(--color-black);
    overflow: hidden;
}

.page-banner__background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.page-banner__background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.4;
}

.page-banner__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.95) 0%, rgba(26, 26, 26, 0.7) 100%);
}

.page-banner__content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.page-banner__title {
    color: var(--color-white);
    font-size: var(--fs-4xl);
    margin-bottom: var(--space-4);
}

.page-banner__breadcrumb {
    color: rgba(255, 255, 255, 0.7);
    font-size: var(--fs-sm);
    text-transform: uppercase;
    letter-spacing: 0.15em;
}

.page-banner__breadcrumb a {
    color: var(--color-secondary);
    transition: color var(--transition);
}

.page-banner__breadcrumb a:hover {
    color: var(--color-secondary-light);
}

/* -------------------- 
   About Page Sections
   -------------------- */
.mission-vision {
    display: grid;
    gap: var(--space-6);
}

.mission-vision__item {
    padding: var(--space-7);
    border-radius: var(--border-radius-lg);
    background-color: var(--color-white);
    border-left: 4px solid var(--color-secondary);
    box-shadow: var(--shadow);
}

.mission-vision__title {
    color: var(--color-black);
    margin-bottom: var(--space-4);
    font-size: var(--fs-xl);
}

.mission-vision__item p {
    color: var(--color-mid-gray);
    margin: 0;
    line-height: 1.8;
}

/* Values Grid */
.values-grid {
    display: grid;
    gap: var(--space-5);
}

.value-item {
    display: flex;
    gap: var(--space-5);
    padding: var(--space-6);
    background-color: var(--color-white);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition);
    border: 1px solid transparent;
}

.value-item:hover {
    box-shadow: var(--shadow);
    transform: translateX(8px);
    border-color: var(--color-secondary);
}

.value-item__icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--color-secondary) 0%, var(--color-secondary-dark) 100%);
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--fs-xl);
    color: var(--color-white);
    flex-shrink: 0;
}

.value-item__content h4 {
    font-size: var(--fs-md);
    margin-bottom: var(--space-2);
    font-family: var(--font-heading);
}

.value-item__content p {
    color: var(--color-mid-gray);
    font-size: var(--fs-sm);
    margin-bottom: 0;
    line-height: 1.7;
}

/* -------------------- 
   Services Page
   -------------------- */
.service-detail {
    display: grid;
    gap: var(--space-10);
    align-items: center;
    padding: var(--space-10) 0;
    border-bottom: 1px solid var(--color-light-gray);
}

.service-detail:last-child {
    border-bottom: none;
}

.service-detail__image img {
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
}

.service-detail__content h3 {
    font-size: var(--fs-2xl);
    margin-bottom: var(--space-5);
}

.service-detail__content p {
    color: var(--color-mid-gray);
    line-height: 1.8;
}

.service-detail__list {
    margin-top: var(--space-5);
}

.service-detail__list li {
    display: flex;
    align-items: flex-start;
    gap: var(--space-3);
    margin-bottom: var(--space-4);
    color: var(--color-dark-gray);
    font-size: var(--fs-base);
}

.service-detail__list li::before {
    content: '?';
    color: var(--color-secondary);
    font-weight: bold;
    flex-shrink: 0;
    margin-top: 2px;
}

/* Process Steps */
.process {
    counter-reset: process-counter;
}

.process-step {
    display: flex;
    gap: var(--space-6);
    padding: var(--space-6);
    background-color: var(--color-white);
    border-radius: var(--border-radius-lg);
    margin-bottom: var(--space-4);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition);
}

.process-step:hover {
    box-shadow: var(--shadow);
    transform: translateX(4px);
}

.process-step:last-child {
    margin-bottom: 0;
}

.process-step__number {
    counter-increment: process-counter;
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--color-secondary) 0%, var(--color-secondary-dark) 100%);
    border-radius: var(--border-radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: var(--fs-xl);
    font-weight: 700;
    color: var(--color-white);
    flex-shrink: 0;
}

.process-step__number::before {
    content: counter(process-counter);
}

.process-step__content h4 {
    margin-bottom: var(--space-2);
    font-family: var(--font-heading);
}

.process-step__content p {
    color: var(--color-mid-gray);
    margin-bottom: 0;
    line-height: 1.7;
}

/* -------------------- 
   CTA Section
   -------------------- */
.cta {
    position: relative;
    text-align: center;
    padding: var(--space-12) 0;
    background: var(--color-black);
    overflow: hidden;
}

.cta__background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.cta__background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3;
}

.cta__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.95) 0%, rgba(200, 149, 108, 0.3) 100%);
}

.cta__content {
    position: relative;
    z-index: 2;
}

.cta__title {
    color: var(--color-white);
    margin-bottom: var(--space-5);
    font-size: var(--fs-3xl);
}

.cta__title span {
    color: var(--color-secondary);
    font-style: italic;
}

.cta__description {
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin: 0 auto var(--space-7);
    font-size: var(--fs-md);
    line-height: 1.8;
}

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

/* -------------------- 
   Footer
   -------------------- */
.footer {
    background-color: var(--color-black);
    color: rgba(255, 255, 255, 0.7);
    padding: var(--space-11) 0 var(--space-6);
}

.footer__grid {
    display: grid;
    gap: var(--space-8);
    margin-bottom: var(--space-10);
}

.footer__brand .logo {
    margin-bottom: var(--space-5);
    display: inline-flex;
}

.footer__description {
    font-size: var(--fs-sm);
    line-height: 1.8;
    margin-bottom: var(--space-5);
}

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

.footer__social a {
    width: 44px;
    height: 44px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--border-radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--fs-md);
    transition: all var(--transition);
}

.footer__social a:hover {
    background-color: var(--color-secondary);
    border-color: var(--color-secondary);
    color: var(--color-white);
}

.footer__title {
    color: var(--color-white);
    font-size: var(--fs-md);
    font-family: var(--font-heading);
    font-weight: 600;
    margin-bottom: var(--space-5);
    position: relative;
    padding-bottom: var(--space-3);
}

.footer__title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--color-secondary);
}

.footer__links li {
    margin-bottom: var(--space-3);
}

.footer__links a {
    font-size: var(--fs-sm);
    transition: all var(--transition);
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
}

.footer__links a::before {
    content: '?';
    color: var(--color-secondary);
    opacity: 0;
    transform: translateX(-10px);
    transition: all var(--transition);
}

.footer__links a:hover {
    color: var(--color-secondary);
}

.footer__links a:hover::before {
    opacity: 1;
    transform: translateX(0);
}

.footer__contact li {
    display: flex;
    gap: var(--space-3);
    margin-bottom: var(--space-4);
    font-size: var(--fs-sm);
}

.footer__contact-icon {
    color: var(--color-secondary);
    font-size: var(--fs-md);
}

.footer__bottom {
    padding-top: var(--space-6);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    flex-direction: column;
    gap: var(--space-4);
    text-align: center;
    font-size: var(--fs-sm);
}

.footer__bottom a {
    color: var(--color-secondary);
}

.footer__bottom a:hover {
    text-decoration: underline;
}

/* -------------------- 
   Animations
   -------------------- */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1), transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.fade-in-left {
    opacity: 0;
    transform: translateX(-30px);
    transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1), transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.fade-in-right {
    opacity: 0;
    transform: translateX(30px);
    transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1), transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

/* -------------------- 
   Responsive Breakpoints
   -------------------- */

/* Tablet (768px) */
@media (min-width: 768px) {
    :root {
        --fs-4xl: 4rem;
        --fs-5xl: 5rem;
    }
    
    .grid--2 {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .grid--3 {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .grid--4 {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .hero__title {
        font-size: var(--fs-5xl);
    }
    
    .about-section {
        grid-template-columns: 1fr 1fr;
    }
    
    .about__content {
        order: 1;
    }
    
    .about__image-wrapper {
        order: 2;
    }
    
    .about__image-accent {
        display: block;
    }
    
    .about__stats {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .mission-vision {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .service-detail {
        grid-template-columns: 1fr 1fr;
    }
    
    .service-detail:nth-child(even) .service-detail__image {
        order: 1;
    }
    
    .service-detail:nth-child(even) .service-detail__content {
        order: -1;
    }
    
    .footer__grid {
        grid-template-columns: 2fr 1fr 1fr;
    }
    
    .footer__bottom {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }
}

/* Desktop (1024px) */
@media (min-width: 1024px) {
    :root {
        --fs-4xl: 4.5rem;
        --fs-5xl: 5.5rem;
        --fs-6xl: 6.5rem;
    }
    
    .nav {
        display: flex;
    }
    
    .nav-toggle {
        display: none;
    }
    
    .grid--3 {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .grid--4 {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .hero {
        padding: var(--space-12) 0;
    }
    
    .hero__title {
        font-size: var(--fs-6xl);
    }
    
    .gallery {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .footer__grid {
        grid-template-columns: 2fr 1fr 1fr 1.5fr;
    }
}

/* Large Desktop (1400px+) */
@media (min-width: 1400px) {
    .container {
        padding: 0 var(--space-10);
    }
    
    .hero__title {
        font-size: 6rem;
    }
}
