/* ===== CSS VARIABLES ===== */
:root {
    --color-black: #000000;
    --color-dark: #0a0a0a;
    --color-dark-secondary: #111111;
    --color-dark-tertiary: #1a1a1a;
    --color-white: #ffffff;
    --color-gray-100: #f8f8f8;
    --color-gray-200: #e5e5e5;
    --color-gray-300: #c4c4c4;
    --color-gray-400: #8a8a8a;
    --color-gray-500: #6b6b6b;
    --color-gray-600: #3a3a3a;
    --color-accent: #E31E24;
    --color-accent-hover: #ff2d34;
    --color-accent-dark: #b71820;
    --color-premium: #d4af37;
    --color-premium-light: #f0d78c;
    --color-premium-dark: #b8941f;
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --transition-smooth: cubic-bezier(0.4, 0, 0.2, 1);
    --transition-premium: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-primary);
    background-color: var(--color-black);
    color: var(--color-white);
    line-height: 1.6;
    font-weight: 400;
    overflow-x: hidden;
    min-height: 100vh;
    position: relative;
    margin: 0;
    padding: 0;
}

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

ul {
    list-style: none;
}

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

/* Ensure images don't cause overflow */
img[src] {
    max-width: 100%;
    height: auto;
}

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

input, textarea, select {
    font-family: inherit;
    border: none;
    outline: none;
}

/* Performance optimizations */
* {
    will-change: auto;
}

.will-animate {
    will-change: transform, opacity;
}

/* Smooth scroll snap for sections */
@media (min-width: 1024px) {
    html {
        scroll-snap-type: y proximity;
    }
    
    section {
        scroll-snap-align: start;
    }
}

/* ===== UTILITIES ===== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 16px 32px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.5px;
    border-radius: 100px;
    transition: all 0.4s var(--transition-premium);
    min-height: 52px;
    -webkit-tap-highlight-color: transparent;
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    border: 1px solid transparent;
}

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

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

.btn--primary {
    background: linear-gradient(135deg, var(--color-premium) 0%, var(--color-premium-dark) 100%);
    color: var(--color-black);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
}

.btn--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.4);
    background: linear-gradient(135deg, var(--color-premium-light) 0%, var(--color-premium) 100%);
}

.btn--ghost {
    background: transparent;
    color: var(--color-white);
    border: 1px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.btn--ghost:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--color-premium);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.2);
}

.btn--full {
    width: 100%;
}

.btn svg {
    transition: transform 0.3s var(--transition-smooth);
}

.btn:hover svg {
    transform: translateX(4px);
}

/* ===== HEADER ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
    transition: all 0.4s var(--transition-premium);
}

.header.scrolled {
    background: rgba(0, 0, 0, 0.95);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
    border-bottom-color: rgba(212, 175, 55, 0.2);
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
    width: 100%;
    position: relative;
}

.nav__logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    max-height: 100%;
    transition: transform 0.3s var(--transition-smooth);
}

.nav__logo:hover {
    transform: scale(1.05);
}

.nav__logo-img {
    height: 45px;
    width: auto;
    max-height: 45px;
    object-fit: contain;
    filter: drop-shadow(0 2px 8px rgba(212, 175, 55, 0.3));
}

.nav__menu {
    display: flex;
    align-items: center;
}

.nav__list {
    display: flex;
    align-items: center;
    gap: 48px;
}

.nav__link {
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--color-gray-300);
    transition: all 0.3s var(--transition-smooth);
    position: relative;
    padding: 8px 0;
}

.nav__link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--color-premium) 0%, var(--color-accent) 100%);
    transition: width 0.4s var(--transition-premium);
}

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

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

.nav__link.active {
    color: var(--color-premium);
}

.nav__actions {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-shrink: 0;
}

.nav__cta {
    padding: 12px 28px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--color-black);
    background: linear-gradient(135deg, var(--color-premium) 0%, var(--color-premium-dark) 100%);
    border-radius: 100px;
    transition: all 0.3s var(--transition-smooth);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.nav__cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
    background: linear-gradient(135deg, var(--color-premium-light) 0%, var(--color-premium) 100%);
}

.nav__toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    flex-shrink: 0;
    transition: transform 0.3s var(--transition-smooth);
}

.nav__toggle:hover {
    transform: scale(1.1);
}

.nav__toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--color-premium);
    border-radius: 2px;
    transition: all 0.3s var(--transition-smooth);
}

.nav__toggle:hover span {
    background: var(--color-premium-light);
}

.nav__close {
    display: none;
    position: absolute;
    top: 20px;
    right: 20px;
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 1001;
}

.nav__close span {
    display: block;
    width: 28px;
    height: 2px;
    background: var(--color-premium);
    position: absolute;
    border-radius: 2px;
    transition: all 0.3s var(--transition-smooth);
}

.nav__close:hover span {
    background: var(--color-premium-light);
}

.nav__close span:first-child {
    transform: rotate(45deg);
}

.nav__close span:last-child {
    transform: rotate(-45deg);
}

/* ===== HERO SECTION ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero__background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
    width: 100%;
    overflow: hidden;
}

.hero__bg-image {
    width: 100%;
    height: 110%;
    object-fit: cover;
    opacity: 0.85;
    display: block;
    transform: scale(1.1);
}

.hero__overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        to bottom,
        rgba(0,0,0,0.4) 0%,
        rgba(0,0,0,0.7) 40%,
        rgba(0,0,0,0.9) 80%,
        rgba(0,0,0,1) 100%
    );
}

.hero__content {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 140px 20px 100px;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
}

.hero__logo-wrapper {
    margin-bottom: 60px;
    animation: fadeInScale 1s var(--transition-premium) both;
}

.hero__logo {
    height: 140px;
    width: auto;
    margin: 0 auto;
    filter: drop-shadow(0 10px 40px rgba(212, 175, 55, 0.4));
    transition: transform 0.5s var(--transition-premium);
}

.hero__logo:hover {
    transform: scale(1.05) translateY(-5px);
}

.hero__slogan {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

.hero__slogan-item {
    display: flex;
    align-items: baseline;
    opacity: 0;
    animation: slideInUp 0.8s var(--transition-premium) forwards;
}

.hero__slogan-item:nth-child(1) { animation-delay: 0.3s; }
.hero__slogan-item:nth-child(3) { animation-delay: 0.5s; }
.hero__slogan-item:nth-child(5) { animation-delay: 0.7s; }

.hero__slogan-letter {
    font-size: 72px;
    font-weight: 700;
    background: linear-gradient(135deg, var(--color-premium) 0%, var(--color-premium-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 4px 20px rgba(212, 175, 55, 0.3);
    letter-spacing: -2px;
}

.hero__slogan-word {
    font-size: 36px;
    font-weight: 300;
    color: var(--color-white);
    margin-left: 4px;
    letter-spacing: 0.5px;
}

.hero__slogan-divider {
    width: 1px;
    height: 50px;
    background: linear-gradient(
        to bottom,
        transparent,
        var(--color-premium) 20%,
        var(--color-premium) 80%,
        transparent
    );
    opacity: 0;
    animation: fadeIn 0.8s var(--transition-premium) 0.9s forwards;
}

.hero__subtitle {
    font-size: 18px;
    color: var(--color-gray-300);
    margin-bottom: 48px;
    letter-spacing: 1px;
    opacity: 0;
    animation: fadeInUp 0.8s var(--transition-premium) 1.1s forwards;
}

.hero__cta {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    opacity: 0;
    animation: fadeInUp 0.8s var(--transition-premium) 1.3s forwards;
}

.hero__scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0;
    animation: fadeInUp 0.8s var(--transition-premium) 1.5s forwards;
}

.hero__scroll-line {
    width: 2px;
    height: 60px;
    background: linear-gradient(
        to bottom,
        var(--color-premium),
        transparent
    );
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
    0%, 100% {
        opacity: 0.3;
        transform: scaleY(0.8);
    }
    50% {
        opacity: 1;
        transform: scaleY(1);
    }
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

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

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

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* ===== MARQUEE ===== */
.marquee {
    padding: 24px 0;
    background: linear-gradient(90deg, var(--color-dark) 0%, var(--color-dark-secondary) 50%, var(--color-dark) 100%);
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    overflow: hidden;
    display: flex;
    position: relative;
    width: 100%;
}

.marquee::before,
.marquee::after {
    content: '';
    position: absolute;
    top: 0;
    width: 100px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.marquee::before {
    left: 0;
    background: linear-gradient(90deg, var(--color-dark) 0%, transparent 100%);
}

.marquee::after {
    right: 0;
    background: linear-gradient(90deg, transparent 0%, var(--color-dark) 100%);
}

.marquee__content {
    display: flex;
    align-items: center;
    gap: 60px;
    animation: marquee 40s linear infinite;
    flex-shrink: 0;
    padding-right: 60px;
    will-change: transform;
}

.marquee__content span {
    font-size: 13px;
    font-weight: 600;
    background: linear-gradient(135deg, var(--color-premium) 0%, var(--color-white) 50%, var(--color-premium) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-transform: uppercase;
    letter-spacing: 2px;
    white-space: nowrap;
}

.marquee__dot {
    width: 6px;
    height: 6px;
    background: var(--color-premium);
    border-radius: 50%;
    flex-shrink: 0;
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-100%); }
}

/* ===== SECTION STYLES ===== */
.section__eyebrow {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    background: linear-gradient(135deg, var(--color-premium) 0%, var(--color-accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
    position: relative;
    padding-left: 24px;
}

.section__eyebrow::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 16px;
    height: 2px;
    background: linear-gradient(90deg, var(--color-premium), transparent);
}

.section__eyebrow--light {
    background: linear-gradient(135deg, var(--color-white) 0%, var(--color-premium-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section__title {
    font-size: 56px;
    font-weight: 600;
    line-height: 1.1;
    background: linear-gradient(135deg, var(--color-white) 0%, var(--color-gray-200) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    word-wrap: break-word;
    letter-spacing: -1px;
}

.section__header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 100px;
    width: 100%;
    padding: 0 20px;
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s var(--transition-premium);
}

.section__header.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===== SERVICES SECTION ===== */
.services {
    padding: 140px 0;
    background: var(--color-black);
    width: 100%;
    overflow-x: hidden;
    position: relative;
}

.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    width: 1px;
    height: 200px;
    background: linear-gradient(to bottom, transparent, var(--color-premium), transparent);
    opacity: 0.3;
}

.service {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: center;
    margin-bottom: 160px;
    width: 100%;
    max-width: 100%;
    opacity: 0;
    transform: translateY(60px);
    transition: all 1s var(--transition-premium);
}

.service.visible {
    opacity: 1;
    transform: translateY(0);
}

.service:last-child {
    margin-bottom: 0;
}

.service--reverse {
    direction: rtl;
}

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

.service__image {
    position: relative;
    border-radius: 32px;
    overflow: hidden;
    aspect-ratio: 4/3;
    width: 100%;
    max-width: 100%;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6);
}

.service__image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        135deg,
        rgba(212, 175, 55, 0.15) 0%,
        transparent 50%,
        rgba(227, 30, 36, 0.15) 100%
    );
    opacity: 0;
    transition: opacity 0.6s var(--transition-premium);
    z-index: 1;
}

.service:hover .service__image::before {
    opacity: 1;
}

.service__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.8s var(--transition-premium);
}

.service:hover .service__image img {
    transform: scale(1.1);
}

.service__content {
    padding: 40px 0;
}

.service__number {
    display: inline-block;
    font-size: 14px;
    font-weight: 700;
    background: linear-gradient(135deg, var(--color-premium) 0%, var(--color-premium-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 24px;
    letter-spacing: 3px;
    position: relative;
    padding-left: 20px;
}

.service__number::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 12px;
    height: 2px;
    background: linear-gradient(90deg, var(--color-premium), transparent);
}

.service__title {
    font-size: 42px;
    font-weight: 600;
    margin-bottom: 28px;
    line-height: 1.2;
    letter-spacing: -0.5px;
    background: linear-gradient(135deg, var(--color-white) 0%, var(--color-gray-200) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.service__description {
    font-size: 17px;
    color: var(--color-gray-400);
    line-height: 1.8;
    margin-bottom: 32px;
}

.service__features {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.service__features li {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 15px;
    color: var(--color-gray-300);
    padding: 12px 0;
    transition: all 0.3s var(--transition-smooth);
}

.service__features li:hover {
    color: var(--color-white);
    transform: translateX(8px);
}

.service__features li::before {
    content: '';
    width: 8px;
    height: 8px;
    background: var(--color-premium);
    border-radius: 50%;
    flex-shrink: 0;
    box-shadow: 0 0 12px rgba(212, 175, 55, 0.6);
    transition: all 0.3s var(--transition-smooth);
}

.service__features li:hover::before {
    background: var(--color-premium-light);
    transform: scale(1.3);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.8);
}





/* ===== CTA SECTION ===== */
.cta {
    position: relative;
    padding: 120px 0;
    overflow: hidden;
}

.cta__background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    overflow: hidden;
}

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

.cta__overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.9) 0%, rgba(227,30,36,0.2) 100%);
}

.cta__content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.cta__title {
    font-size: 48px;
    font-weight: 600;
    line-height: 1.1;
    margin-bottom: 24px;
}

.cta__text {
    font-size: 16px;
    color: var(--color-gray-400);
    margin-bottom: 40px;
}

.cta__phone {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 24px 48px;
    background: var(--color-white);
    border-radius: 16px;
}

.cta__phone-label {
    font-size: 12px;
    font-weight: 500;
    color: var(--color-gray-500);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.cta__phone-number {
    font-size: 28px;
    font-weight: 700;
    color: var(--color-black);
}

/* ===== CONTACT SECTION ===== */
.contact {
    padding: 120px 0;
    background: var(--color-black);
}

.contact__wrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: start;
}

.contact__text {
    font-size: 16px;
    color: var(--color-gray-400);
    line-height: 1.7;
    margin-top: 24px;
    margin-bottom: 40px;
}

.contact__details {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact__detail {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    color: var(--color-gray-300);
}

.contact__detail svg {
    color: var(--color-accent);
    flex-shrink: 0;
}

.contact__form {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 40px;
    background: var(--color-dark);
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.form__row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form__input,
.form__select,
.form__textarea {
    width: 100%;
    padding: 16px 20px;
    background: var(--color-dark-secondary);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    font-size: 16px;
    color: var(--color-white);
}

.form__input::placeholder,
.form__textarea::placeholder {
    color: var(--color-gray-500);
}

.form__select {
    appearance: none;
    cursor: pointer;
    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='%2386868b' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 48px;
}

.form__select option {
    background: var(--color-dark);
    color: var(--color-white);
}

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

/* ===== FOOTER ===== */
.footer {
    padding: 24px 0 16px;
    background: var(--color-dark);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer__content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 14px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    margin-bottom: 12px;
}

.footer__brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer__logo {
    width: 72px;
    height: auto;
}

.footer__slogan {
    font-size: 12px;
    color: var(--color-gray-500);
}

.footer__contact {
    display: flex;
    align-items: center;
    gap: 16px;
}

.footer__link {
    font-size: 13px;
    color: var(--color-gray-400);
    transition: color 0.3s ease;
}

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

.footer__location {
    font-size: 13px;
    color: var(--color-gray-500);
}

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

.footer__bottom p {
    font-size: 11px;
    color: var(--color-gray-600);
    text-align: center;
}

/* ===========================================
   RESPONSIVE - MOBILE FIRST
   =========================================== */

@media screen and (max-width: 1024px) {
}

@media screen and (max-width: 768px) {
    /* Container */
    .container {
        padding: 0 20px;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }

    /* Ensure all direct children of container respect width */
    .container > * {
        max-width: 100%;
        width: 100%;
        box-sizing: border-box;
    }

    /* Header Mobile */
    .header {
        background: rgba(0, 0, 0, 0.95);
    }

    .nav {
        height: 60px;
        padding: 0;
        min-height: 60px;
    }

    .nav__logo {
        flex: 0 0 auto;
        max-width: 50%;
        overflow: hidden;
    }

    .nav__logo-img {
        height: 32px;
        max-height: 32px;
        width: auto;
        object-fit: contain;
    }

    .nav__actions {
        flex: 0 0 auto;
        margin-left: auto;
        display: flex;
        align-items: center;
        gap: 0;
        z-index: 1002;
    }

    .nav__menu {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        width: 100%;
        height: 100vh;
        height: 100dvh; /* Dynamic viewport height for mobile */
        background: rgba(0, 0, 0, 0.98);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.3s ease, visibility 0.3s ease;
        z-index: 1000;
        padding: 80px 20px 40px;
        box-sizing: border-box;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }

    .nav__menu.active {
        opacity: 1;
        visibility: visible;
    }

    .nav__list {
        flex-direction: column;
        gap: 32px;
        text-align: center;
        width: 100%;
        max-width: 100%;
        padding: 0;
        margin: 0;
    }

    .nav__item {
        width: 100%;
        display: flex;
        justify-content: center;
    }

    .nav__link {
        font-size: 24px;
        font-weight: 500;
        color: var(--color-white);
        padding: 8px 0;
        display: block;
        width: 100%;
        text-align: center;
    }

    .nav__toggle {
        display: flex !important;
        position: relative;
        margin-left: auto;
        z-index: 1002;
        visibility: visible;
        opacity: 1;
    }

    .nav__cta {
        display: none;
    }

    .nav__close {
        display: flex;
        position: fixed;
        top: 20px;
        right: 20px;
        width: 44px;
        height: 44px;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        z-index: 1001;
        background: transparent;
        border: none;
    }

    .nav__logo {
        max-width: calc(100% - 100px);
        overflow: hidden;
    }

    .nav__logo-img {
        max-width: 100%;
        height: auto;
    }

    /* Hero Mobile */
    .hero {
        min-height: 100vh;
        min-height: 100dvh;
        width: 100%;
        overflow: hidden;
    }

    .hero__background {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        width: 100%;
        height: 100%;
        min-height: 100vh;
        min-height: 100dvh;
    }

    .hero__bg-image {
        width: 100%;
        height: 100%;
        min-height: 100vh;
        min-height: 100dvh;
        object-fit: cover;
        object-position: center;
    }

    .hero__content {
        padding: 100px 20px 60px;
    }

    .hero__logo {
        height: 70px;
    }

    .hero__slogan {
        flex-direction: column;
        gap: 12px;
    }

    .hero__slogan-letter {
        font-size: 40px;
    }

    .hero__slogan-word {
        font-size: 20px;
    }

    .hero__slogan-divider {
        width: 50px;
        height: 1px;
    }

    .hero__subtitle {
        font-size: 14px;
        padding: 0 10px;
    }

    .hero__cta {
        flex-direction: column;
        width: 100%;
        padding: 0 20px;
    }

    .hero__cta .btn {
        width: 100%;
    }

    .hero__scroll {
        bottom: 20px;
    }

    .hero__scroll-line {
        height: 40px;
    }

    /* Marquee Mobile */
    .marquee {
        padding: 16px 0;
        overflow-x: hidden;
        position: relative;
    }

    .marquee__content {
        gap: 24px;
        padding-right: 24px;
    }

    .marquee__content span {
        font-size: 11px;
    }

    /* Section Headers Mobile */
    .section__header {
        margin-bottom: 48px;
        padding: 0;
    }

    .section__title {
        font-size: 28px;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }

    .section__eyebrow {
        font-size: 11px;
    }

    /* Services Mobile */
    .services {
        padding: 60px 0;
    }

    .service {
        grid-template-columns: 1fr;
        gap: 24px;
        margin-bottom: 60px;
        width: 100%;
        max-width: 100%;
    }

    .service--reverse {
        direction: ltr;
    }

    .service__image {
        border-radius: 16px;
        aspect-ratio: 16/10;
        width: 100%;
        max-width: 100%;
        margin: 0 auto;
    }

    .service__content {
        padding: 0;
        width: 100%;
    }

    .service__number {
        font-size: 11px;
        margin-bottom: 12px;
    }

    .service__title {
        font-size: 24px;
        margin-bottom: 12px;
    }

    .service__description {
        font-size: 14px;
        margin-bottom: 16px;
    }

    .service__features li {
        font-size: 13px;
    }

    /* About Mobile */
    .about__hero {
        height: 50vh;
        min-height: 400px;
        width: 100%;
        overflow: hidden;
    }

    .about__hero img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transform: none !important;
    }

    .about__hero-content {
        padding-bottom: 40px;
        width: 100%;
        padding-left: 20px;
        padding-right: 20px;
    }

    .about__hero-title {
        font-size: 32px;
        line-height: 1.1;
    }

    .about__features {
        padding: 48px 0 60px;
        width: 100%;
        overflow-x: hidden;
    }

    .features__grid {
        grid-template-columns: 1fr;
        gap: 16px;
        width: 100%;
    }

    .feature {
        display: flex;
        flex-direction: row;
        gap: 16px;
        text-align: left;
        padding: 20px;
        border-radius: 16px;
        align-items: flex-start;
        width: 100%;
        box-sizing: border-box;
    }

    .feature__icon {
        width: 48px;
        height: 48px;
        min-width: 48px;
        margin: 0;
        flex-shrink: 0;
    }

    .feature__icon svg {
        width: 24px;
        height: 24px;
    }

    .feature__content {
        flex: 1;
        min-width: 0;
    }

    .feature__title {
        font-size: 16px;
        margin-bottom: 6px;
        line-height: 1.3;
    }

    .feature__text {
        font-size: 13px;
        line-height: 1.5;
    }

    /* Zones Mobile */
    .zones {
        padding: 60px 0;
        width: 100%;
        overflow-x: hidden;
    }

    .zones .container {
        grid-template-columns: 1fr;
        gap: 48px;
        width: 100%;
        padding: 0 20px;
    }

    .zones__content {
        text-align: left;
        width: 100%;
        max-width: 100%;
    }

    .zones__text {
        font-size: 14px;
        line-height: 1.6;
        margin-top: 20px;
    }

    .zones__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
        width: 100%;
    }

    .zone {
        padding: 24px 16px;
        border-radius: 16px;
        width: 100%;
        box-sizing: border-box;
    }

    .zone__number {
        font-size: 28px;
        margin-bottom: 6px;
    }

    .zone__name {
        font-size: 10px;
        line-height: 1.3;
    }

    /* CTA Mobile */
    .cta {
        padding: 80px 0;
        width: 100%;
        overflow: hidden;
        min-height: auto;
    }

    .cta__background {
        width: 100%;
        height: 100%;
    }

    .cta__background img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transform: none !important;
    }

    .cta__content {
        width: 100%;
        padding: 0 20px;
        max-width: 100%;
        box-sizing: border-box;
    }

    .cta__title {
        font-size: 32px;
        line-height: 1.2;
        margin-bottom: 20px;
    }

    .cta__text {
        font-size: 15px;
        margin-bottom: 32px;
        line-height: 1.6;
    }

    .cta__phone {
        padding: 24px 40px;
        border-radius: 20px;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        display: flex;
    }

    .cta__phone-label {
        font-size: 11px;
    }

    .cta__phone-number {
        font-size: 24px;
        letter-spacing: 0.5px;
    }

    /* Contact Mobile */
    .contact {
        padding: 60px 0;
        width: 100%;
        overflow-x: hidden;
    }

    .contact .container {
        padding: 0 20px;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }

    .contact__wrapper {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 48px !important;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }

    .contact__info {
        width: 100%;
        max-width: 100%;
        position: static !important;
        box-sizing: border-box;
    }

    .contact__text {
        font-size: 15px;
        margin-bottom: 32px;
        line-height: 1.6;
    }

    .contact__details {
        gap: 16px;
        margin-bottom: 40px;
        width: 100%;
    }

    .contact__detail {
        font-size: 15px;
        padding: 12px 0;
        width: 100%;
        word-wrap: break-word;
    }

    .contact__form {
        padding: 28px 20px;
        border-radius: 20px;
        gap: 16px;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        margin: 0;
    }

    .form__row {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 16px;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }

    .form__group {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }

    .form__input,
    .form__select,
    .form__textarea {
        padding: 16px 20px;
        font-size: 16px;
        border-radius: 12px;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }

    .form__textarea {
        min-height: 120px;
    }

    .btn--full {
        width: 100%;
        padding: 18px 32px;
        font-size: 14px;
    }

    /* Footer Mobile */
    .footer {
        padding: 20px 0 14px;
        margin-bottom: 0;
        position: relative;
    }

    .footer__content {
        flex-direction: column;
        gap: 14px;
        padding-bottom: 12px;
        margin-bottom: 10px;
    }

    .footer__brand {
        flex-direction: column;
        text-align: center;
        gap: 6px;
    }

    .footer__logo {
        height: 28px;
    }

    .footer__slogan {
        font-size: 11px;
    }

    .footer__contact {
        flex-direction: column;
        gap: 6px;
        text-align: center;
    }

    .footer__link,
    .footer__location {
        font-size: 12px;
    }

    .footer__bottom p {
        font-size: 10px;
    }
}

@media screen and (max-width: 480px) {
    .hero__logo {
        height: 60px;
    }

    .hero__slogan-letter {
        font-size: 36px;
    }

    .hero__slogan-word {
        font-size: 18px;
    }

    .section__title {
        font-size: 24px;
    }

    .service__title {
        font-size: 22px;
    }

    .about__hero-title {
        font-size: 28px;
    }

    .zone__number {
        font-size: 20px;
    }

    .cta__title {
        font-size: 24px;
    }

    .contact__form {
        padding: 20px 16px;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
    }
    
    .contact__wrapper {
        gap: 40px !important;
    }
    
    .contact__info {
        margin-bottom: 0 !important;
    }
    
    .contact__form {
        margin-top: 0 !important;
    }
}

/* Prevent horizontal scroll */
html, body {
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
    margin: 0;
    padding: 0;
}

/* Prevent vertical scroll after footer on mobile */
@media screen and (max-width: 768px) {
    html {
        overflow-y: auto;
        height: 100%;
        position: relative;
        -webkit-overflow-scrolling: touch;
    }
    
    body {
        overflow-y: auto;
        height: auto;
        min-height: 100vh;
        position: relative;
        margin: 0;
        padding: 0;
        -webkit-overflow-scrolling: touch;
    }
    
    .footer {
        margin-bottom: 0 !important;
        padding-bottom: 14px !important;
        position: relative;
    }
    
    /* Ensure no extra space after footer */
    .footer::after {
        content: '';
        display: block;
        height: 0;
        overflow: hidden;
        clear: both;
    }
    
    /* Prevent any element from creating extra space */
    body > *:last-child {
        margin-bottom: 0 !important;
        padding-bottom: 0 !important;
    }
    
    /* Fix for mobile viewport height issues */
    @supports (-webkit-touch-callout: none) {
        body {
            min-height: -webkit-fill-available;
        }
        
        html {
            height: -webkit-fill-available;
        }
    }
}

/* Ensure all containers respect viewport width */
.container {
    width: 100%;
    max-width: 100%;
}

/* Fix any potential overflow issues */
section {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}

/* ===========================================
   ANIMATIONS
   =========================================== */

/* Fade In Up Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Fade In Animation */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Scale In Animation */
@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Slide In Left */
@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-60px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Slide In Right */
@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(60px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Pulse Animation for CTA */
@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.02);
    }
}

/* Animated Elements - Initial State */
.animate {
    opacity: 0;
}

.animate.show {
    animation-duration: 0.8s;
    animation-fill-mode: both;
    animation-timing-function: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.animate.fade-up.show {
    animation-name: fadeInUp;
}

.animate.fade-in.show {
    animation-name: fadeIn;
}

.animate.scale-in.show {
    animation-name: scaleIn;
}

.animate.slide-left.show {
    animation-name: slideInLeft;
}

.animate.slide-right.show {
    animation-name: slideInRight;
}

/* Delay Classes */
.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }
.delay-4 { animation-delay: 0.4s; }
.delay-5 { animation-delay: 0.5s; }

/* Hero Animations */
.hero__logo {
    animation: scaleIn 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.2s both;
}

.hero__slogan-item {
    opacity: 0;
    animation: fadeInUp 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
}

.hero__slogan-item:nth-child(1) {
    animation-delay: 0.4s;
}

.hero__slogan-item:nth-child(3) {
    animation-delay: 0.5s;
}

.hero__slogan-item:nth-child(5) {
    animation-delay: 0.6s;
}

.hero__slogan-divider {
    opacity: 0;
    animation: fadeIn 0.6s ease 0.7s both;
}

.hero__subtitle {
    opacity: 0;
    animation: fadeInUp 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.8s both;
}

.hero__cta {
    opacity: 0;
    animation: fadeInUp 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.9s both;
}

.hero__scroll-line {
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
    0%, 100% {
        opacity: 0.3;
        height: 40px;
    }
    50% {
        opacity: 1;
        height: 60px;
    }
}

/* Service Animations */
.service {
    opacity: 0;
    transform: translateY(60px);
    transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.service.visible {
    opacity: 1;
    transform: translateY(0);
}

.service__image {
    overflow: hidden;
}

.service__image img {
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.service.visible .service__image img {
    animation: imageReveal 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
}

@keyframes imageReveal {
    from {
        transform: scale(1.2);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

/* Feature Animations */
.feature {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.feature.visible {
    opacity: 1;
    transform: translateY(0);
}

.feature:nth-child(1) { transition-delay: 0s; }
.feature:nth-child(2) { transition-delay: 0.1s; }
.feature:nth-child(3) { transition-delay: 0.2s; }
.feature:nth-child(4) { transition-delay: 0.3s; }

/* Zone Animations */
.zone {
    opacity: 0;
    transform: scale(0.8);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.zone.visible {
    opacity: 1;
    transform: scale(1);
}

.zone:nth-child(1) { transition-delay: 0s; }
.zone:nth-child(2) { transition-delay: 0.05s; }
.zone:nth-child(3) { transition-delay: 0.1s; }
.zone:nth-child(4) { transition-delay: 0.15s; }
.zone:nth-child(5) { transition-delay: 0.2s; }
.zone:nth-child(6) { transition-delay: 0.25s; }
.zone:nth-child(7) { transition-delay: 0.3s; }
.zone:nth-child(8) { transition-delay: 0.35s; }

/* Section Headers Animation */
.section__eyebrow {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.section__title {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease 0.1s, transform 0.6s ease 0.1s;
}

.section__header.visible .section__eyebrow,
.section__header.visible .section__title,
.zones__content.visible .section__eyebrow,
.zones__content.visible .section__title,
.contact__info.visible .section__eyebrow,
.contact__info.visible .section__title {
    opacity: 1;
    transform: translateY(0);
}

/* About Section Animation */
.about__hero-title {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.about__hero-content.visible .about__hero-title {
    opacity: 1;
    transform: translateY(0);
}

/* CTA Animation */
.cta__content {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.cta__content.visible {
    opacity: 1;
    transform: translateY(0);
}

.cta__phone {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cta__phone:hover {
    transform: scale(1.05);
    box-shadow: 0 20px 40px rgba(255, 255, 255, 0.1);
}

/* Contact Form Animation */
.contact__form {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease 0.2s, transform 0.8s ease 0.2s;
}

.contact__wrapper.visible .contact__form {
    opacity: 1;
    transform: translateY(0);
}

/* Button Hover Effects */
.btn {
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
}

.btn--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.2);
}

.btn--ghost:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
}

/* Nav Link Hover */
.nav__link {
    position: relative;
}

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

.nav__link:hover::after {
    width: 100%;
}

/* Image Hover Effects */
@media (hover: hover) {
    .service__image:hover img {
        transform: scale(1.05);
    }

    .zone:hover {
        transform: scale(1.05);
        border-color: var(--color-accent);
    }

    .feature:hover {
        transform: translateY(-8px);
        border-color: rgba(255, 255, 255, 0.1);
        background: var(--color-dark-secondary);
    }
}

/* Mobile Menu Animation */
.nav__menu {
    transition: opacity 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                visibility 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

@media screen and (max-width: 768px) {
    .nav__list {
        opacity: 0;
        transform: translateY(20px);
        transition: opacity 0.4s ease 0.1s, transform 0.4s ease 0.1s;
    }

    .nav__menu.active .nav__list {
        opacity: 1;
        transform: translateY(0);
    }

    .nav__link {
        opacity: 0;
        transform: translateY(20px);
        transition: opacity 0.3s ease, transform 0.3s ease, color 0.2s ease;
    }

    .nav__menu.active .nav__link {
        opacity: 1;
        transform: translateY(0);
    }

    .nav__menu.active .nav__item:nth-child(1) .nav__link { transition-delay: 0.1s; }
    .nav__menu.active .nav__item:nth-child(2) .nav__link { transition-delay: 0.15s; }
    .nav__menu.active .nav__item:nth-child(3) .nav__link { transition-delay: 0.2s; }
    .nav__menu.active .nav__item:nth-child(4) .nav__link { transition-delay: 0.25s; }
    .nav__menu.active .nav__item:nth-child(5) .nav__link { transition-delay: 0.3s; }
}
/* ===== CTA SECTION PREMIUM ===== */
.cta {
    position: relative;
    padding: 140px 0;
    overflow: hidden;
}

.cta__background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    overflow: hidden;
}

.cta__background img {
    width: 100%;
    height: 110%;
    object-fit: cover;
    opacity: 0.25;
    display: block;
    transform: scale(1.1);
    transition: transform 0.3s ease;
}

.cta__overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        135deg,
        rgba(0,0,0,0.95) 0%,
        rgba(10,10,10,0.9) 30%,
        rgba(20,20,20,0.85) 60%,
        rgba(0,0,0,0.95) 100%
    );
}

.cta::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
    pointer-events: none;
    z-index: 1;
}

.cta__content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    opacity: 0;
    transform: scale(0.95);
    transition: all 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.cta__content.visible {
    opacity: 1;
    transform: scale(1);
}

.cta__title {
    font-size: 56px;
    font-weight: 600;
    line-height: 1.1;
    margin-bottom: 28px;
    background: linear-gradient(135deg, var(--color-white) 0%, var(--color-premium-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -1px;
}

.cta__text {
    font-size: 18px;
    color: var(--color-gray-300);
    margin-bottom: 48px;
    line-height: 1.6;
}

.cta__phone {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 32px 64px;
    background: linear-gradient(135deg, var(--color-premium) 0%, var(--color-premium-dark) 100%);
    border-radius: 24px;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 20px 60px rgba(212, 175, 55, 0.3);
    position: relative;
    overflow: hidden;
}

.cta__phone::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.cta__phone:hover::before {
    left: 100%;
}

.cta__phone:hover {
    transform: scale(1.05) translateY(-4px);
    box-shadow: 0 30px 80px rgba(212, 175, 55, 0.4);
}

.cta__phone-label {
    font-size: 12px;
    font-weight: 600;
    color: rgba(0, 0, 0, 0.6);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.cta__phone-number {
    font-size: 32px;
    font-weight: 700;
    color: var(--color-black);
    letter-spacing: 1px;
}

/* ===== CONTACT SECTION PREMIUM ===== */
.contact {
    padding: 140px 0;
    background: var(--color-black);
    position: relative;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 1px;
    height: 200px;
    background: linear-gradient(to bottom, transparent, var(--color-premium), transparent);
    opacity: 0.3;
}

.contact__wrapper {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 100px;
    align-items: start;
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.contact__wrapper.visible {
    opacity: 1;
    transform: translateY(0);
}

.contact__info {
    position: sticky;
    top: 120px;
}

@media screen and (max-width: 768px) {
    .contact__info {
        position: static !important;
        top: auto !important;
    }
}

.contact__text {
    font-size: 17px;
    color: var(--color-gray-400);
    line-height: 1.8;
    margin-top: 28px;
    margin-bottom: 48px;
}

.contact__details {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact__detail {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 16px;
    color: var(--color-gray-300);
    padding: 16px 0;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.contact__detail:hover {
    color: var(--color-white);
    transform: translateX(8px);
}

.contact__detail svg {
    color: var(--color-premium);
    flex-shrink: 0;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.contact__detail:hover svg {
    color: var(--color-premium-light);
    transform: scale(1.1);
}

.contact__form {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 48px;
    background: linear-gradient(135deg, var(--color-dark-secondary) 0%, var(--color-dark-tertiary) 100%);
    border-radius: 32px;
    border: 1px solid rgba(212, 175, 55, 0.1);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
    position: relative;
    overflow: hidden;
}

.contact__form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--color-premium) 0%, var(--color-accent) 100%);
}

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

.form__input,
.form__select,
.form__textarea {
    width: 100%;
    padding: 18px 24px;
    background: var(--color-dark);
    border: 1px solid rgba(212, 175, 55, 0.15);
    border-radius: 16px;
    font-size: 16px;
    color: var(--color-white);
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.form__input:focus,
.form__select:focus,
.form__textarea:focus {
    border-color: var(--color-premium);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
    outline: none;
}

.form__input::placeholder,
.form__textarea::placeholder {
    color: var(--color-gray-500);
}

.form__select {
    appearance: none;
    cursor: pointer;
    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='%23d4af37' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 20px center;
    padding-right: 52px;
}

.form__select option {
    background: var(--color-dark);
    color: var(--color-white);
}

.form__textarea {
    resize: vertical;
    min-height: 140px;
    font-family: inherit;
}

/* ===== FOOTER PREMIUM ===== */
.footer {
    padding: 28px 0 18px;
    background: linear-gradient(180deg, var(--color-dark) 0%, var(--color-black) 100%);
    border-top: 1px solid rgba(212, 175, 55, 0.1);
}

.footer__content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 14px;
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
    margin-bottom: 12px;
}

.footer__brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer__logo {
    height: 34px;
    filter: drop-shadow(0 4px 12px rgba(212, 175, 55, 0.2));
}

.footer__slogan {
    font-size: 12px;
    background: linear-gradient(135deg, var(--color-premium) 0%, var(--color-gray-400) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 500;
}

.footer__contact {
    display: flex;
    align-items: center;
    gap: 16px;
}

.footer__link {
    font-size: 13px;
    color: var(--color-gray-400);
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.footer__link:hover {
    color: var(--color-premium);
    transform: translateX(2px);
}

.footer__location {
    font-size: 13px;
    color: var(--color-gray-500);
}

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

.footer__bottom p {
    font-size: 11px;
    color: var(--color-gray-500);
    text-align: center;
}

/* ===========================================
   IPHONE OPTIMIZATIONS
   =========================================== */

/* iPhone specific fixes */
@supports (-webkit-touch-callout: none) {
    /* About section iPhone fixes */
    .about__hero {
        min-height: 50vh !important;
    }
    
    .about__hero img {
        transform: none !important;
    }
    
    .about__features {
        width: 100% !important;
        padding-left: 0 !important;
        padding-right: 0 !important;
    }
    
    .features__grid {
        width: 100% !important;
        padding: 0 !important;
    }
    
    .feature {
        width: 100% !important;
    }
    
    /* Zones section iPhone fixes */
    .zones {
        width: 100% !important;
    }
    
    .zones .container {
        width: 100% !important;
        max-width: 100% !important;
    }
    
    .zones__grid {
        width: 100% !important;
    }
    
    .zone {
        width: 100% !important;
    }
    
    /* CTA section iPhone fixes */
    .cta {
        width: 100% !important;
    }
    
    .cta__background img {
        transform: none !important;
    }
    
    .cta__phone {
        width: 100% !important;
        max-width: 100% !important;
    }
    
    /* Contact section iPhone fixes */
    .contact {
        width: 100% !important;
    }
    
    .contact__wrapper {
        width: 100% !important;
    }
    
    .contact__form {
        width: 100% !important;
    }
    
    .form__input,
    .form__select,
    .form__textarea {
        width: 100% !important;
        -webkit-appearance: none !important;
    }
}

/* Additional mobile fixes for all devices */
@media screen and (max-width: 768px) {
    /* Force full width on all sections */
    section {
        width: 100% !important;
        max-width: 100% !important;
        overflow-x: hidden !important;
    }
    
    .container {
        width: 100% !important;
        max-width: 100% !important;
        padding-left: 20px !important;
        padding-right: 20px !important;
        box-sizing: border-box !important;
    }
    
    /* About section full responsive */
    .about,
    .about__hero,
    .about__features {
        width: 100% !important;
        max-width: 100% !important;
        overflow-x: hidden !important;
    }
    
    .about__hero-content {
        width: 100% !important;
        max-width: 100% !important;
        padding-left: 20px !important;
        padding-right: 20px !important;
        box-sizing: border-box !important;
    }
    
    .features__grid {
        width: 100% !important;
        max-width: 100% !important;
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 16px !important;
    }
    
    .feature {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        display: flex !important;
        flex-direction: row !important;
    }
    
    /* Zones section full responsive */
    .zones {
        width: 100% !important;
        max-width: 100% !important;
        overflow-x: hidden !important;
    }
    
    .zones .container {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 48px !important;
        width: 100% !important;
        max-width: 100% !important;
    }
    
    .zones__content {
        width: 100% !important;
        max-width: 100% !important;
    }
    
    .zones__grid {
        width: 100% !important;
        max-width: 100% !important;
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 12px !important;
    }
    
    .zone {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
    }
    
    /* CTA section full responsive */
    .cta {
        width: 100% !important;
        max-width: 100% !important;
        overflow-x: hidden !important;
    }
    
    .cta .container {
        width: 100% !important;
        max-width: 100% !important;
    }
    
    .cta__content {
        width: 100% !important;
        max-width: 100% !important;
        padding-left: 20px !important;
        padding-right: 20px !important;
        box-sizing: border-box !important;
    }
    
    .cta__phone {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
    }
    
    /* Contact section full responsive */
    .contact {
        width: 100% !important;
        max-width: 100% !important;
        overflow-x: hidden !important;
    }
    
    .contact .container {
        width: 100% !important;
        max-width: 100% !important;
    }
    
    .contact__wrapper {
        width: 100% !important;
        max-width: 100% !important;
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 48px !important;
        margin: 0 !important;
        padding: 0 !important;
    }
    
    .contact__info {
        width: 100% !important;
        max-width: 100% !important;
        position: static !important;
        margin: 0 !important;
        padding: 0 !important;
    }
    
    .contact__form {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin: 0 !important;
    }
    
    .form__row {
        width: 100% !important;
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 16px !important;
    }
    
    .form__group {
        width: 100% !important;
        max-width: 100% !important;
    }
    
    .form__input,
    .form__select,
    .form__textarea,
    .btn--full {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
    }
    
    /* Footer responsive */
    .footer {
        width: 100% !important;
        max-width: 100% !important;
        overflow-x: hidden !important;
    }
    
    .footer .container {
        width: 100% !important;
        max-width: 100% !important;
    }
}

/* Extra small devices (iPhone SE, etc.) */
@media screen and (max-width: 480px) {
    .about__hero-title {
        font-size: 28px !important;
        line-height: 1.2 !important;
    }
    
    .section__title {
        font-size: 26px !important;
        line-height: 1.2 !important;
    }
    
    .cta__title {
        font-size: 28px !important;
        line-height: 1.2 !important;
    }
    
    .zone__number {
        font-size: 24px !important;
    }
    
    .zone__name {
        font-size: 9px !important;
    }
    
    .cta__phone {
        padding: 20px 24px !important;
    }
    
    .cta__phone-number {
        font-size: 22px !important;
    }
}

/* ===== PHONE BUTTON IN HEADER (MOBILE ONLY) ===== */
.phone-float {
    display: none;
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, var(--color-premium) 0%, var(--color-premium-dark) 100%);
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    -webkit-tap-highlight-color: transparent;
    flex-shrink: 0;
}

.phone-float svg {
    color: var(--color-black);
    width: 20px;
    height: 20px;
    transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.phone-float:active {
    transform: scale(0.95);
}

.phone-float:active svg {
    transform: scale(0.9);
}

.phone-float:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(212, 175, 55, 0.4);
    background: linear-gradient(135deg, var(--color-premium-light) 0%, var(--color-premium) 100%);
}

/* Show phone button only on mobile and hide nav__cta text */
@media screen and (max-width: 768px) {
    .phone-float {
        display: flex;
    }
    
    .nav__cta {
        display: none;
    }
    
    .nav__actions {
        gap: 12px;
    }
}

/* Adjust size for very small screens */
@media screen and (max-width: 480px) {
    .phone-float {
        width: 40px;
        height: 40px;
    }
    
    .phone-float svg {
        width: 18px;
        height: 18px;
    }
}
