:root {
    --ink: #0d0d0d;
    --charcoal: #1a1a1a;
    --graphite: #2d2d2d;

    --cream: #f7f4ef;
    --bone: #ebe6dd;
    --parchment: #e0d9cc;
    --stone: #c4baa8;

    --copper: #b87333;
    --copper-bright: #d4915c;
    --copper-dark: #8b5a2b;
    --copper-glow: rgba(184, 115, 51, 0.15);

    --spark: #e8c547;
    --spark-glow: rgba(232, 197, 71, 0.2);

    --text-primary: #1a1a1a;
    --text-secondary: #4a4a4a;
    --text-muted: #6b6b6b;

    --primary: var(--charcoal);
    --primary-light: var(--graphite);
    --primary-dark: var(--ink);
    --primary-darker: #050505;
    --accent: var(--copper);
    --accent-light: var(--copper-bright);
    --accent-dark: var(--copper-dark);
    --accent-glow: var(--copper-glow);
    --text: var(--text-secondary);
    --text-light: var(--text-muted);
    --text-dark: var(--text-primary);
    --bg: var(--cream);
    --bg-warm: #faf8f4;
    --bg-cream: var(--bone);
    --bg-blue: var(--cream);
    --border: var(--parchment);
    --border-light: var(--bone);
    --shadow-sm: 0 2px 8px rgba(26, 26, 26, 0.06);
    --shadow-md: 0 12px 32px rgba(26, 26, 26, 0.1);
    --shadow-lg: 0 20px 50px rgba(26, 26, 26, 0.14);
    --shadow-glow: 0 0 40px var(--copper-glow);
    --radius-sm: 10px;
    --radius-md: 14px;
    --radius-lg: 22px;
    --radius-xl: 32px;
}

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

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--text);
    line-height: 1.65;
    font-size: 16px;
    background: var(--bg);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6,
.section-label,
.hero-badge,
.nav-link,
.nav-cta,
.btn,
.stat-number,
.process-step-number {
    font-family: 'Archivo', -apple-system, BlinkMacSystemFont, sans-serif;
}

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

a {
    color: inherit;
    text-decoration: none;
}

.container {
    max-width: 1120px;
    margin: 0 auto;
    padding: 0 28px;
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: var(--cream);
    transition: all 0.3s ease;
}

.header.scrolled {
    background: rgba(247, 244, 239, 0.95);
    backdrop-filter: blur(12px);
    box-shadow: var(--shadow-md);
}

.header-top {
    background: var(--spark);
    color: var(--ink);
    font-size: 14px;
    padding: 0.5rem 0;
    text-align: center;
}

.header-top-inner {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
}

.header-top-eljour {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 700;
}

.header-top-eljour svg {
    width: 18px;
    height: 18px;
}

.header-top a {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 700;
    color: var(--ink);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.header-top a:hover {
    text-decoration: none;
}

.header-main {
    padding: 20px 0;
    border-bottom: 1px solid var(--border-light);
    position: relative;
}

.header.scrolled .header-main {
    padding: 12px 0;
}

.header-main-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

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

.logo img {
    height: 72px;
    width: auto;
    aspect-ratio: 3 / 1;
    object-fit: contain;
    transition: all 0.3s ease;
}

.header.scrolled .logo img {
    height: 52px;
}

.logo:hover img {
    transform: scale(1.02);
}

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

.nav-link {
    padding: 10px 18px;
    font-size: 15px;
    font-weight: 500;
    color: var(--text);
    border-radius: var(--radius-sm);
    transition: all 0.2s;
}

.nav-link:hover {
    background: var(--bone);
    color: var(--charcoal);
}

.nav-link.active {
    color: var(--copper);
    background: var(--copper-glow);
}

.nav-cta {
    margin-left: 12px;
    padding: 11px 22px;
    background: var(--copper);
    color: white;
    font-weight: 600;
    font-size: 15px;
    border-radius: var(--radius-md);
    transition: all 0.25s ease;
    box-shadow: 0 4px 12px var(--copper-glow);
}

.nav-cta:hover {
    background: var(--copper-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(184, 115, 51, 0.35);
}

.nav-toggle {
    display: none;
    background: var(--bone);
    border: none;
    padding: 10px;
    cursor: pointer;
    border-radius: var(--radius-sm);
    transition: all 0.2s ease;
}

.nav-toggle:hover {
    background: var(--parchment);
}

.nav-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    background: var(--charcoal);
    margin: 4px 0;
    border-radius: 2px;
    transition: all 0.3s ease;
}

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

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

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

@media (max-width: 850px) {
    .header-top {
        padding: 0.625rem 0;
    }

    .header-top-inner {
        gap: 0.5rem;
    }

    .header-top-eljour span {
        font-size: 13px;
    }

    .header-top a {
        font-size: 13px;
    }

    .logo img {
        height: 56px;
    }

    .header.scrolled .logo img {
        height: 44px;
    }

    .header-main {
        border-bottom: none;
    }

    .header-main-inner {
        flex-wrap: wrap;
    }

    .nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--cream);
        flex-direction: column;
        padding: 0;
        gap: 0;
        box-shadow: 0 12px 32px rgba(0,0,0,0.15);
        border-top: 1px solid var(--border-light);
        border-radius: 0 0 var(--radius-lg) var(--radius-lg);
        max-height: 0;
        overflow: hidden;
        opacity: 0;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .nav.open {
        max-height: 350px;
        opacity: 1;
    }

    .nav-link {
        width: 100%;
        text-align: left;
        padding: 12px 28px;
        border-radius: 0;
        font-size: 14px;
    }

    .nav-link:hover,
    .nav-link.active {
        background: var(--bone);
    }

    .nav-cta {
        width: calc(100% - 24px);
        text-align: center;
        padding: 12px 28px;
        margin: 12px;
        border-radius: var(--radius-sm);
        background: var(--copper);
        box-shadow: 0 4px 12px var(--copper-glow);
    }

    .nav-cta:hover {
        background: var(--copper-dark);
        transform: none;
    }

    .nav-toggle {
        display: block;
    }

    .hero {
        min-height: auto;
        padding-top: 150px;
        padding-bottom: 3rem;
    }

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

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

    .section {
        padding: 3rem 0;
    }

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

.hero {
    min-height: 100vh;
    padding-top: 180px;
    background: var(--charcoal);
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

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

.hero-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.55) 0%, rgba(0, 0, 0, 0.65) 100%);
}


.hero-content {
    max-width: 800px;
    padding: 3rem 0;
    text-align: center;
    margin: 0 auto;
    position: relative;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.15);
    color: white;
    padding: 0.625rem 1.25rem;
    border-radius: var(--radius-md);
    font-size: 0.8125rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero h1 {
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 700;
    color: white;
    line-height: 1.25;
    margin-bottom: 1.25rem;
    letter-spacing: -0.02em;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.hero-text {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2.5rem;
    max-width: 540px;
    line-height: 1.7;
    margin-left: auto;
    margin-right: auto;
}

.hero-btns {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    justify-content: center;
}

.about-btns {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-top: 28px;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.625rem;
    padding: 0.9375rem 1.75rem;
    font-size: 0.9375rem;
    font-weight: 600;
    border-radius: var(--radius-md);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.btn svg {
    width: 18px;
    height: 18px;
    transition: transform 0.2s ease;
}

.btn:hover svg {
    transform: scale(1.1);
}

.btn-primary {
    background: var(--copper);
    color: white;
    box-shadow: 0 4px 16px var(--copper-glow);
}

.btn-primary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--copper-dark);
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: inherit;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 28px rgba(184, 115, 51, 0.45);
}

.btn-primary:hover::before {
    opacity: 1;
}

.btn-primary span,
.btn-primary svg {
    position: relative;
    z-index: 1;
}

.btn-secondary {
    background: var(--charcoal);
    color: white;
    box-shadow: 0 4px 16px rgba(26, 26, 26, 0.2);
}

.btn-secondary:hover {
    background: var(--ink);
    transform: translateY(-3px);
    box-shadow: 0 8px 28px rgba(26, 26, 26, 0.35);
}

.btn-outline {
    background: white;
    color: var(--text-dark);
    border: 2px solid var(--parchment);
    box-shadow: var(--shadow-sm);
}

.btn-outline:hover {
    border-color: var(--charcoal);
    color: var(--charcoal);
    background: var(--cream);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

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

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

.btn-eljour {
    background: var(--spark);
    color: var(--ink);
    box-shadow: 0 4px 16px var(--spark-glow);
}

.btn-eljour:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 28px var(--spark-glow);
}

.trust-bar {
    background: var(--bone);
    padding: 1.75rem 0;
    border-top: 1px solid var(--parchment);
    border-bottom: 1px solid var(--parchment);
}

.trust-items {
    display: flex;
    justify-content: center;
    gap: 48px;
    flex-wrap: wrap;
}

@media (max-width: 700px) {
    .trust-items {
        gap: 24px 40px;
    }
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.875rem;
    color: var(--text-primary);
    transition: transform 0.2s ease;
}

.trust-item:hover {
    transform: translateY(-2px);
}

.trust-item-icon {
    width: 44px;
    height: 44px;
    background: var(--charcoal);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.trust-item:hover .trust-item-icon {
    background: var(--ink);
    box-shadow: 0 4px 12px rgba(26, 26, 26, 0.2);
}

.trust-item svg {
    width: 22px;
    height: 22px;
    color: var(--copper-bright);
}

.trust-item span {
    font-size: 0.9375rem;
    font-weight: 600;
    letter-spacing: 0.01em;
}

.section {
    padding: 4rem 0;
}

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

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

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8125rem;
    font-weight: 700;
    color: var(--copper);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

.section-label::before,
.section-label::after {
    content: '';
    width: 24px;
    height: 2px;
    background: linear-gradient(90deg, var(--copper), transparent);
    border-radius: 1px;
}

.section-label::after {
    background: linear-gradient(90deg, transparent, var(--copper));
}

.section-title {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.section-desc {
    color: var(--text-light);
    font-size: 1.0625rem;
    line-height: 1.75;
    max-width: 540px;
    margin: 0 auto;
}

.services {
    background: var(--cream);
}

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

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

.service-card {
    background: var(--bone);
    border: 1px solid var(--parchment);
    border-left: 4px solid transparent;
    border-radius: var(--radius-lg);
    padding: 2rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.service-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, transparent 0%, var(--copper-glow) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.service-card:hover {
    border-left-color: var(--copper);
    box-shadow: var(--shadow-md);
    transform: translateY(-6px);
}

.service-card:hover::after {
    opacity: 1;
}

.service-icon {
    width: 56px;
    height: 56px;
    background: var(--charcoal);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    box-shadow: 0 6px 16px rgba(26, 26, 26, 0.2);
    transition: all 0.3s ease;
    position: relative;
}

.service-card:hover .service-icon {
    transform: scale(1.05);
    box-shadow: 0 8px 24px rgba(26, 26, 26, 0.25);
}

.service-icon svg {
    width: 26px;
    height: 26px;
    color: var(--copper-bright);
}

.service-card h3 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
    position: relative;
}

.service-card p {
    font-size: 0.9375rem;
    color: var(--text-light);
    line-height: 1.7;
    position: relative;
}

.about {
    background: var(--cream);
}

.about-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 5rem;
    align-items: center;
}


.about-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    position: relative;
}

.about-images::before {
    content: '';
    position: absolute;
    top: -1rem;
    left: -1rem;
    width: 40%;
    height: 40%;
    border: 3px solid var(--copper);
    border-radius: var(--radius-lg);
    opacity: 0.3;
    z-index: -1;
}

.about-images img {
    border-radius: var(--radius-lg);
    height: 180px;
    width: 100%;
    object-fit: cover;
    box-shadow: var(--shadow-md);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.about-images img:hover {
    transform: scale(1.03);
    box-shadow: var(--shadow-lg);
}

.about-images img:first-child {
    grid-column: span 2;
    height: 240px;
}

@media (max-width: 850px) {
    .about-grid {
        display: block;
    }
    .about-content {
        margin-bottom: 2.5rem;
    }
    .about-images {
        display: grid;
        grid-template-columns: 1fr 1fr;
    }
    .about-images::before {
        display: none;
    }
}

.about-content .section-label {
    text-align: left;
}

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

.about-content > p {
    color: var(--text-light);
    margin-bottom: 16px;
    font-size: 16px;
    line-height: 1.75;
}

.about-list {
    margin: 2rem 0;
    list-style: none;
    background: var(--bg-cream);
    border-radius: var(--radius-lg);
    padding: 0.5rem;
}

.about-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.25rem;
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--text-dark);
    background: var(--bg);
    border-radius: var(--radius-md);
    margin-bottom: 0.5rem;
    transition: all 0.2s ease;
}

.about-list li:last-child {
    margin-bottom: 0;
}

.about-list li:hover {
    transform: translateX(4px);
}

.about-list-icon {
    width: 32px;
    height: 32px;
    background: var(--copper);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 3px 10px var(--copper-glow);
}

.about-list svg {
    width: 16px;
    height: 16px;
    color: white;
}

.gallery {
    background: var(--charcoal);
    position: relative;
    overflow: hidden;
}

.gallery::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23ffffff' fill-opacity='0.02' fill-rule='evenodd'/%3E%3C/svg%3E");
    pointer-events: none;
}

.gallery .section-header {
    position: relative;
}

.gallery .section-label {
    color: var(--copper-bright);
}

.gallery .section-title {
    color: white;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    position: relative;
}


.gallery-item {
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 4/3;
    box-shadow: 0 8px 32px rgba(0,0,0,0.3);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.gallery-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,0.4) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover {
    box-shadow: 0 16px 48px rgba(0,0,0,0.4), var(--shadow-glow);
    transform: translateY(-8px) scale(1.02);
}

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

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.contact {
    background: var(--cream);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 4rem;
    align-items: start;
}

@media (max-width: 850px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .contact-form-wrapper {
        order: -1;
    }
}

.contact-info h3 {
    font-size: 1.375rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1.125rem;
    padding: 1.125rem 1.25rem;
    background: var(--bg);
    border-radius: var(--radius-md);
    margin-bottom: 0.75rem;
    transition: all 0.3s ease;
    border: 1px solid transparent;
    box-shadow: var(--shadow-sm);
}

.contact-item:hover {
    transform: translateX(6px);
    border-color: var(--copper);
    box-shadow: var(--shadow-md);
}

.contact-item:last-child {
    margin-bottom: 0;
}

.contact-item-icon {
    width: 48px;
    height: 48px;
    background: var(--charcoal);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 14px rgba(26, 26, 26, 0.18);
    transition: all 0.3s ease;
}

.contact-item:hover .contact-item-icon {
    transform: scale(1.05);
}

.contact-item-icon svg {
    width: 22px;
    height: 22px;
    color: var(--copper-bright);
}

.contact-item-text span {
    display: block;
    font-size: 0.8125rem;
    color: var(--text-light);
    margin-bottom: 0.25rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.contact-item-text a,
.contact-item-text p {
    font-size: 1.0625rem;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0;
    transition: color 0.2s ease;
}

.contact-item-text a:hover {
    color: var(--copper);
}

.contact-locations {
    background: var(--charcoal);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    margin-top: 1rem;
}

.contact-locations-label {
    display: block;
    font-size: 0.8125rem;
    font-weight: 700;
    color: var(--copper-bright);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
    text-align: center;
}

.contact-locations-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
}

.contact-location-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    background: rgba(255,255,255,0.05);
    border-radius: var(--radius-sm);
    color: white;
    transition: all 0.2s ease;
}

.contact-location-item:hover {
    background: rgba(255,255,255,0.1);
    transform: translateY(-2px);
}

.contact-location-item svg {
    width: 18px;
    height: 18px;
    color: var(--copper-bright);
    flex-shrink: 0;
}

.contact-location-item span {
    font-size: 0.9375rem;
    font-weight: 500;
}

.contact-intro-card {
    background: linear-gradient(135deg, var(--bone) 0%, var(--parchment) 100%);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    margin-bottom: 1.25rem;
    border: 1px solid var(--parchment);
}

.contact-intro-card p {
    font-size: 0.9375rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin: 0 0 1rem 0;
}

.contact-intro-eljour {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: var(--spark);
    padding: 0.875rem 1rem;
    border-radius: var(--radius-md);
    margin-top: 0.5rem;
}

.contact-intro-eljour svg {
    width: 20px;
    height: 20px;
    color: var(--ink);
    flex-shrink: 0;
}

.contact-intro-eljour span {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--ink);
}

.contact-cta {
    background: var(--charcoal);
    border-radius: var(--radius-xl);
    padding: 2.5rem;
    color: white;
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
}

.contact-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, var(--copper-glow) 0%, transparent 70%);
    pointer-events: none;
}

.contact-cta h3 {
    font-size: 24px;
    margin-bottom: 0.875rem;
    font-weight: 700;
}

.contact-cta > p {
    opacity: 0.9;
    margin-bottom: 1.75rem;
    font-size: 16px;
    line-height: 1.65;
}

.contact-cta .btn {
    width: 100%;
    justify-content: center;
    background: var(--copper);
    box-shadow: 0 4px 16px var(--copper-glow);
}

.contact-cta .btn:hover {
    background: var(--copper-bright);
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(184, 115, 51, 0.5);
}

.contact-form-wrapper {
    background: var(--bg);
    border-radius: var(--radius-xl);
    padding: 2.5rem;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-light);
    position: relative;
    overflow: hidden;
}

.contact-form-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--charcoal), var(--copper), var(--charcoal));
}

@media (max-width: 500px) {
    .contact-form-wrapper {
        padding: 2rem;
    }
}

.contact-form-wrapper h3 {
    font-size: 1.375rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.contact-form-wrapper > p {
    color: var(--text-light);
    margin-bottom: 1.75rem;
    font-size: 0.9375rem;
}

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

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

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 0.9375rem 1.125rem;
    font-size: 0.9375rem;
    font-family: inherit;
    border: 2px solid var(--border-light);
    border-radius: var(--radius-md);
    background: var(--bg-warm);
    color: var(--text);
    transition: all 0.25s ease;
}

.form-group input:hover,
.form-group textarea:hover,
.form-group select:hover {
    border-color: var(--border);
}

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

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

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

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

@media (max-width: 500px) {
    .form-row {
        grid-template-columns: 1fr;
    }
}

#contact-form {
    display: flex;
    flex-direction: column;
}

#contact-form .form-note {
    order: 10;
}

#contact-form button[type="submit"] {
    order: 9;
}

.form-submit-btn {
    width: 100%;
    justify-content: center;
    padding: 1rem 1.75rem;
    font-size: 1rem;
    margin-top: 0.5rem;
}

.form-note {
    margin-top: 1.25rem;
    font-size: 0.8125rem;
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    background: var(--bg-cream);
    border-radius: var(--radius-sm);
}

.form-note svg {
    width: 18px;
    height: 18px;
    color: var(--accent);
    flex-shrink: 0;
}

.stats {
    background: var(--bone);
    padding: 4.5rem 0;
    position: relative;
    overflow: hidden;
}

.process {
    background: var(--bone);
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.75rem;
}


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

.process-step {
    position: relative;
    text-align: center;
    padding: 2.25rem 1.75rem;
    background: var(--bg);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-light);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: var(--shadow-sm);
}

.process-step:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
    border-color: var(--border);
}

.process-step-number {
    width: 52px;
    height: 52px;
    background: var(--copper);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 700;
    margin: 0 auto 1.25rem;
    box-shadow: 0 6px 20px var(--copper-glow);
    transition: all 0.3s ease;
}

.process-step:hover .process-step-number {
    transform: scale(1.1);
    box-shadow: 0 8px 28px rgba(184, 115, 51, 0.4);
}

.process-step h4 {
    font-size: 1.0625rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.625rem;
}

.process-step p {
    font-size: 0.9375rem;
    color: var(--text-light);
    line-height: 1.65;
}

.faq {
    background: var(--bone);
}

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

.faq-item {
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    margin-bottom: 1rem;
    overflow: hidden;
    background: var(--bg);
    transition: all 0.3s ease;
    box-shadow: var(--shadow-sm);
}

.faq-item:hover {
    border-color: var(--border);
    box-shadow: var(--shadow-md);
}

.faq-item.open {
    border-color: var(--copper);
    box-shadow: var(--shadow-md), 0 0 0 1px var(--copper-glow);
}

.faq-question {
    width: 100%;
    padding: 1.375rem 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-dark);
    background: none;
    border: none;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    font-family: inherit;
    transition: all 0.2s;
}

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

.faq-item.open .faq-question {
    color: var(--copper);
}

.faq-question svg {
    width: 22px;
    height: 22px;
    color: var(--copper);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    flex-shrink: 0;
}

.faq-item.open .faq-question svg {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-answer-inner {
    padding: 0 1.5rem 1.375rem;
    color: var(--text-light);
    font-size: 0.9375rem;
    line-height: 1.75;
    border-top: 1px solid var(--border-light);
    padding-top: 1.25rem;
    margin-top: 0;
}

.faq-item.open .faq-answer {
    max-height: 400px;
}

.footer {
    background: var(--charcoal);
    color: white;
    padding: 4rem 0 2rem;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--copper);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3.5rem;
}

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

@media (max-width: 500px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
}

.footer-brand img {
    height: 64px;
    width: auto;
    aspect-ratio: 3 / 1;
    object-fit: contain;
    margin-bottom: 1.25rem;
}

.footer-brand p {
    font-size: 0.9375rem;
    opacity: 0.7;
    line-height: 1.8;
    max-width: 300px;
}

.footer-col h4 {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 1.25rem;
    color: var(--copper-bright);
}

.footer-links {
    list-style: none;
}

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

.footer-links a {
    font-size: 0.9375rem;
    opacity: 0.7;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-links a::before {
    content: '';
    width: 0;
    height: 2px;
    background: var(--copper);
    transition: width 0.2s ease;
}

.footer-links a:hover {
    opacity: 1;
    color: var(--copper-bright);
    transform: translateX(6px);
}

.footer-links a:hover::before {
    width: 12px;
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.08);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom p {
    font-size: 0.8125rem;
    opacity: 0.4;
}

.footer-locations {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.footer-locations span {
    font-size: 0.8125rem;
    opacity: 0.4;
    padding: 0.25rem 0.75rem;
    background: rgba(255,255,255,0.05);
    border-radius: var(--radius-sm);
    transition: all 0.2s ease;
}

.footer-locations span:hover {
    opacity: 0.7;
    background: rgba(255,255,255,0.08);
}

.reviews {
    background: var(--cream);
}

.reviews-widget {
    max-width: 900px;
    margin: 0 auto;
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    .header-top {
        padding: 0.4rem 0;
    }

    .header-top-inner {
        gap: 0.375rem;
        flex-wrap: nowrap;
    }

    .header-top-eljour {
        gap: 0.25rem;
    }

    .header-top-eljour span {
        font-size: 11px;
    }

    .header-top-eljour svg {
        width: 14px;
        height: 14px;
    }

    .header-top a {
        font-size: 11px;
        gap: 0.25rem;
    }

    .logo img {
        height: 48px;
    }

    .header.scrolled .logo img {
        height: 40px;
    }

    .nav-link {
        padding: 11px 20px;
        font-size: 14px;
    }

    .nav-cta {
        padding: 11px 20px;
        font-size: 14px;
        margin: 10px;
        width: calc(100% - 20px);
    }

    .hero {
        padding-top: 140px;
        padding-bottom: 2.5rem;
    }

    .hero-btns {
        flex-direction: column;
        width: 100%;
    }

    .hero-btns .btn {
        width: 100%;
        justify-content: center;
    }

    .trust-bar {
        padding: 1.25rem 0;
    }

    .trust-items {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
    }

    .trust-item {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }

    .trust-item span {
        font-size: 0.8125rem;
    }

    .section {
        padding: 2rem 0;
    }

    .section-label::before,
    .section-label::after {
        width: 16px;
    }

    .services-grid,
    .process-grid {
        grid-template-columns: 1fr;
    }

    .service-card {
        padding: 1.5rem;
    }

    .process-step {
        padding: 1.5rem 1rem;
    }

    .process-step-number {
        width: 44px;
        height: 44px;
        font-size: 1rem;
    }

    .about-images img:first-child {
        grid-column: span 1;
        height: 180px;
    }

    .about-images img {
        height: 150px;
    }

    .about-list li {
        padding: 0.875rem 1rem;
        font-size: 0.875rem;
    }

    .gallery-grid {
        gap: 0.75rem;
    }

    .gallery-item {
        aspect-ratio: 4/3;
    }

    .faq-question {
        padding: 1rem;
        font-size: 0.9375rem;
    }

    .contact-cta {
        padding: 1.5rem;
    }

    .contact-form-wrapper {
        padding: 1.5rem;
    }

    .contact-item-text a,
    .contact-item-text p {
        word-break: break-word;
    }

    .footer-brand p {
        max-width: 100%;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .footer-locations {
        justify-content: center;
    }
}

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

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

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }

@media (max-width: 640px) {
    section,
    section > div,
    section > div > div,
    section > div > div > div {
        max-width: 100%;
        box-sizing: border-box;
        overflow-x: hidden;
    }

    .contact-grid > div,
    .grid > div {
        min-width: 0;
        max-width: 100%;
    }
}

#contact-form {
    max-width: 100%;
    overflow: hidden;
}

#contact-form .g-recaptcha {
    transform-origin: left center;
    max-width: 100%;
}

@media (max-width: 400px) {
    #contact-form .g-recaptcha {
        transform: scale(0.85);
    }
}

@media (max-width: 340px) {
    #contact-form .g-recaptcha {
        transform: scale(0.75);
    }
}
