/* =============================================
   GTI Towing — Main Stylesheet
   ============================================= */

/* ---------- CSS Custom Properties ---------- */
:root {
    --color-primary: #FF6B00;
    --color-primary-dark: #E05E00;
    --color-primary-light: #FF8A33;
    --color-primary-glow: rgba(255, 107, 0, 0.35);

    --color-dark: #0F172A;
    --color-dark-2: #1E293B;
    --color-dark-3: #334155;

    --color-light: #F8FAFC;
    --color-light-2: #E2E8F0;
    --color-light-3: #CBD5E1;

    --color-white: #FFFFFF;
    --color-text: #334155;
    --color-text-light: #64748B;
    --color-text-dark: #0F172A;

    --color-success: #22C55E;
    --color-danger: #EF4444;

    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

    --shadow-sm: 0 1px 2px rgba(0,0,0,.05);
    --shadow-md: 0 4px 6px -1px rgba(0,0,0,.1), 0 2px 4px -2px rgba(0,0,0,.1);
    --shadow-lg: 0 10px 15px -3px rgba(0,0,0,.1), 0 4px 6px -4px rgba(0,0,0,.1);
    --shadow-xl: 0 20px 25px -5px rgba(0,0,0,.1), 0 8px 10px -6px rgba(0,0,0,.1);
    --shadow-glow: 0 0 30px var(--color-primary-glow);

    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 9999px;

    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-family);
    font-size: 16px;
    line-height: 1.6;
    color: var(--color-text);
    background: var(--color-white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img, svg {
    display: block;
    max-width: 100%;
}

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

ul {
    list-style: none;
}

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

input, select, textarea, button {
    font: inherit;
}

/* ---------- Container ---------- */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ---------- Section Helpers ---------- */
.section-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 60px;
}

.section-tag {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-primary);
    background: rgba(255, 107, 0, 0.08);
    padding: 6px 16px;
    border-radius: var(--radius-full);
    margin-bottom: 16px;
}

.section-title {
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    font-weight: 800;
    color: var(--color-text-dark);
    line-height: 1.2;
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 1.05rem;
    color: var(--color-text-light);
    line-height: 1.7;
}

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-weight: 600;
    font-size: 0.95rem;
    padding: 12px 28px;
    border-radius: var(--radius-full);
    transition: all var(--transition);
    white-space: nowrap;
    border: 2px solid transparent;
}

.btn__icon {
    flex-shrink: 0;
}

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

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

.btn--outline {
    background: transparent;
    color: var(--color-white);
    border-color: rgba(255,255,255,0.3);
}

.btn--outline:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.6);
    transform: translateY(-2px);
}

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

.btn--white:hover {
    background: var(--color-light);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.btn--large {
    padding: 16px 36px;
    font-size: 1.05rem;
}

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

.btn--glow {
    animation: pulse-glow 2.5s ease-in-out infinite;
}

@keyframes pulse-glow {
    0%, 100% { box-shadow: 0 0 0 0 var(--color-primary-glow); }
    50% { box-shadow: 0 0 20px 8px var(--color-primary-glow); }
}

.btn--white.btn--glow {
    animation: pulse-glow-white 2.5s ease-in-out infinite;
}

@keyframes pulse-glow-white {
    0%, 100% { box-shadow: 0 0 0 0 rgba(255,255,255,0.25); }
    50% { box-shadow: 0 0 20px 8px rgba(255,255,255,0.25); }
}

/* =============================================
   HEADER
   ============================================= */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 16px 0;
    transition: all var(--transition);
    background: transparent;
}

.header--scrolled {
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 10px 0;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

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

/* Logo */
.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 1001;
}

.logo__text {
    font-size: 1.4rem;
    font-weight: 900;
    color: var(--color-white);
    letter-spacing: -0.02em;
}

.logo__accent {
    color: var(--color-primary);
}

/* Nav */
.nav__list {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav__link {
    color: rgba(255,255,255,0.7);
    font-weight: 500;
    font-size: 0.9rem;
    padding: 8px 16px;
    border-radius: var(--radius-full);
    transition: all var(--transition);
}

.nav__link:hover {
    color: var(--color-white);
    background: rgba(255,255,255,0.08);
}

/* Header CTA */
.header__cta {
    padding: 10px 24px;
    font-size: 0.9rem;
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    z-index: 1001;
    padding: 4px;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--color-white);
    border-radius: 2px;
    transition: all var(--transition);
}

.hamburger.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* =============================================
   HERO
   ============================================= */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    overflow: hidden;
}

.hero__bg {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(135deg, rgba(15, 23, 42, 0.82) 0%, rgba(15, 23, 42, 0.65) 50%, rgba(15, 23, 42, 0.80) 100%),
        url('../assets/images/hero-bg.jpg') center/cover no-repeat;
    z-index: -1;
}

.hero__bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.02'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
}

.hero__inner {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 107, 0, 0.12);
    border: 1px solid rgba(255, 107, 0, 0.25);
    color: var(--color-primary-light);
    font-size: 0.85rem;
    font-weight: 600;
    padding: 8px 20px;
    border-radius: var(--radius-full);
    margin-bottom: 28px;
    animation: badge-float 3s ease-in-out infinite;
}

@keyframes badge-float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-4px); }
}

.hero__title {
    font-size: clamp(2.4rem, 6vw, 4rem);
    font-weight: 900;
    color: var(--color-white);
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -0.03em;
}

.hero__highlight {
    color: var(--color-primary);
    position: relative;
}

.hero__subtitle {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: rgba(255,255,255,0.7);
    max-width: 580px;
    margin: 0 auto 36px;
    line-height: 1.7;
}

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

.hero__trust {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
}

.hero__trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
    font-weight: 500;
}

.hero__trust-item svg {
    color: var(--color-success);
    flex-shrink: 0;
}

/* =============================================
   SERVICES
   ============================================= */
.services {
    padding: 60px 0 100px;
    background: var(--color-light);
}

.services__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.service-card {
    background: var(--color-white);
    padding: 36px 28px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--color-light-2);
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--color-primary);
    transform: scaleX(0);
    transition: transform var(--transition);
}

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

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

.service-card__icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 107, 0, 0.08);
    border-radius: var(--radius-md);
    color: var(--color-primary);
    margin-bottom: 20px;
    transition: all var(--transition);
}

.service-card:hover .service-card__icon {
    background: var(--color-primary);
    color: var(--color-white);
}

.service-card__title {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--color-text-dark);
    margin-bottom: 10px;
}

.service-card__desc {
    font-size: 0.92rem;
    color: var(--color-text-light);
    line-height: 1.6;
}

/* =============================================
   ABOUT
   ============================================= */
.about {
    padding: 100px 0;
}

.about__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about__image {
    position: relative;
}

.about__image-box {
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--color-dark);
    box-shadow: var(--shadow-xl);
}

.about__image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    min-height: 350px;
}

.about__stat {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--color-primary);
    color: var(--color-white);
    padding: 20px 28px;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-lg);
}

.about__stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 900;
    line-height: 1;
}

.about__stat-label {
    font-size: 0.8rem;
    font-weight: 500;
    opacity: 0.9;
    margin-top: 4px;
    display: block;
}

.about__content p {
    color: var(--color-text-light);
    margin-bottom: 16px;
    line-height: 1.7;
}

.about__content p strong {
    color: var(--color-text-dark);
}

.about__highlights {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 32px;
    padding-top: 32px;
    border-top: 1px solid var(--color-light-2);
}

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

.about__highlight-number {
    display: block;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--color-primary);
    line-height: 1.2;
}

.about__highlight-label {
    font-size: 0.8rem;
    color: var(--color-text-light);
    margin-top: 4px;
    display: block;
}

/* =============================================
   PHOTO & VIDEO GALLERY
   ============================================= */
.gallery {
    padding: 80px 0 40px;
    background: var(--color-light);
    overflow: hidden;
}

/* Row 1: 1 large left + 2 stacked right */
.gallery__grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    grid-template-rows: 200px 200px;
    gap: 16px;
    margin-bottom: 16px;
}

/* Row 2: even 4-column */
.gallery__grid--four {
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: 260px;
}

/* Row 3: single wide banner */
.gallery__grid--wide {
    grid-template-columns: 1fr;
    grid-template-rows: 300px;
}

.gallery__item {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    cursor: pointer;
}

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

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

.gallery__item--large {
    grid-row: 1 / -1;
    grid-column: 1;
}

.gallery__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(15, 23, 42, 0.7) 0%, transparent 60%);
    display: flex;
    align-items: flex-end;
    padding: 24px;
    opacity: 0;
    transition: opacity var(--transition);
}

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

.gallery__overlay span {
    color: var(--color-white);
    font-weight: 700;
    font-size: 1.05rem;
    letter-spacing: -0.01em;
}

/* Videos */
.gallery__videos {
    margin-top: 48px;
}

.gallery__videos-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--color-text-dark);
    margin-bottom: 20px;
    text-align: center;
}

.gallery__videos-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.gallery__video-item {
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--color-dark);
    box-shadow: var(--shadow-md);
    height: 380px;
}

.gallery__video-item video {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

@media (max-width: 1024px) {
    .gallery__grid--four {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: 220px 220px;
    }

    .gallery__videos-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .gallery__video-item {
        height: 320px;
    }
}

@media (max-width: 768px) {
    .gallery__grid {
        grid-template-columns: 1fr;
        grid-template-rows: 240px 240px 240px;
        gap: 12px;
    }

    .gallery__grid--four {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 200px 200px;
    }

    .gallery__grid--wide {
        grid-template-rows: 220px;
    }

    .gallery__item--large {
        grid-row: auto;
        grid-column: auto;
    }

    .gallery__overlay {
        opacity: 1;
    }

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

    .gallery__video-item {
        height: 300px;
    }
}

@media (max-width: 400px) {
    .gallery__grid--four {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(4, 200px);
    }

    .gallery__grid {
        grid-template-rows: repeat(3, 200px);
    }
}

/* =============================================
   WHY US
   ============================================= */
.why-us {
    padding: 100px 0;
    background: var(--color-dark);
    position: relative;
    overflow: hidden;
}

.why-us::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255,107,0,0.08), transparent 70%);
}

.why-us .section-tag {
    background: rgba(255, 107, 0, 0.15);
}

.why-us .section-title {
    color: var(--color-white);
}

.why-us .section-subtitle {
    color: rgba(255,255,255,0.6);
}

.why-us__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.why-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    padding: 36px 32px;
    border-radius: var(--radius-lg);
    transition: all var(--transition);
}

.why-card:hover {
    background: rgba(255,255,255,0.08);
    border-color: rgba(255,107,0,0.3);
    transform: translateY(-4px);
}

.why-card__number {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--color-primary);
    opacity: 0.4;
    line-height: 1;
    margin-bottom: 16px;
}

.why-card__title {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 10px;
}

.why-card__desc {
    font-size: 0.92rem;
    color: rgba(255,255,255,0.6);
    line-height: 1.6;
}

/* =============================================
   CTA BANNER
   ============================================= */
.cta-banner {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    position: relative;
    overflow: hidden;
}

.cta-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.05' fill-rule='evenodd'%3E%3Cpath d='m0 40 40-40h-40z'/%3E%3C/g%3E%3C/svg%3E");
}

.cta-banner__inner {
    text-align: center;
    position: relative;
    z-index: 1;
}

.cta-banner__title {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 900;
    color: var(--color-white);
    margin-bottom: 12px;
    letter-spacing: -0.02em;
}

.cta-banner__text {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.85);
    margin-bottom: 32px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

/* =============================================
   CONTACT
   ============================================= */
.contact {
    padding: 100px 0;
    background: var(--color-light);
}

.contact__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact__info p {
    color: var(--color-text-light);
    line-height: 1.7;
    margin-bottom: 32px;
}

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

.contact__detail {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.contact__detail svg {
    color: var(--color-primary);
    flex-shrink: 0;
    margin-top: 2px;
}

.contact__detail strong {
    display: block;
    color: var(--color-text-dark);
    font-weight: 600;
    margin-bottom: 2px;
}

.contact__detail a {
    color: var(--color-primary);
    font-weight: 600;
}

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

.contact__detail span {
    color: var(--color-text-light);
}

/* Contact Form */
.contact__form {
    background: var(--color-white);
    padding: 40px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--color-light-2);
}

.form-group {
    margin-bottom: 20px;
}

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1.5px solid var(--color-light-2);
    border-radius: var(--radius-md);
    font-size: 0.95rem;
    color: var(--color-text-dark);
    background: var(--color-light);
    transition: all var(--transition);
    outline: none;
}

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

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--color-primary);
    box-shadow: 0 0 0 4px rgba(255, 107, 0, 0.1);
    background: var(--color-white);
}

.form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%2364748B' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%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: 40px;
}

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

.contact__form-note {
    text-align: center;
    font-size: 0.82rem;
    color: var(--color-text-light);
    margin-top: 16px;
}

.contact__form-note a {
    color: var(--color-primary);
    font-weight: 600;
}

/* Form success state */
.contact__form--success {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    min-height: 400px;
}

.contact__form--success .success-icon {
    width: 80px;
    height: 80px;
    background: rgba(34, 197, 94, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

/* =============================================
   FOOTER
   ============================================= */
.footer {
    background: var(--color-dark);
    padding: 60px 0 0;
}

.footer__inner {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 40px;
}

.footer__tagline {
    color: rgba(255,255,255,0.5);
    font-size: 0.9rem;
    margin-top: 16px;
    line-height: 1.6;
    max-width: 280px;
}

.footer__links h4,
.footer__contact h4 {
    color: var(--color-white);
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.footer__links ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer__links a {
    color: rgba(255,255,255,0.5);
    font-size: 0.9rem;
    transition: color var(--transition);
}

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

.footer__phone {
    display: block;
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--color-primary) !important;
    margin-bottom: 12px;
}

.footer__contact p {
    color: rgba(255,255,255,0.5);
    font-size: 0.9rem;
    line-height: 1.6;
}

.footer__bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 20px 0;
}

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

.footer__bottom p {
    color: rgba(255,255,255,0.35);
    font-size: 0.82rem;
}

/* =============================================
   FLOATING CALL BUTTON
   ============================================= */
.floating-call {
    display: none;
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 60px;
    height: 60px;
    background: var(--color-primary);
    color: var(--color-white);
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(255, 107, 0, 0.4);
    z-index: 999;
    transition: all var(--transition);
    animation: pulse-glow 2.5s ease-in-out infinite;
}

.floating-call:hover {
    transform: scale(1.1);
    background: var(--color-primary-dark);
}

/* =============================================
   SCROLL ANIMATIONS
   ============================================= */
[data-animate] {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

[data-animate].animate-in {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger children */
.services__grid [data-animate]:nth-child(2) { transition-delay: 0.1s; }
.services__grid [data-animate]:nth-child(3) { transition-delay: 0.2s; }
.services__grid [data-animate]:nth-child(4) { transition-delay: 0.3s; }
.services__grid [data-animate]:nth-child(5) { transition-delay: 0.4s; }
.services__grid [data-animate]:nth-child(6) { transition-delay: 0.5s; }

.why-us__grid [data-animate]:nth-child(2) { transition-delay: 0.1s; }
.why-us__grid [data-animate]:nth-child(3) { transition-delay: 0.2s; }
.why-us__grid [data-animate]:nth-child(4) { transition-delay: 0.3s; }

/* =============================================
   RESPONSIVE
   ============================================= */

/* Tablet */
@media (max-width: 1024px) {
    .services__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about__inner {
        gap: 40px;
    }

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

/* Mobile */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav {
        position: fixed;
        inset: 0;
        background: rgba(15, 23, 42, 0.98);
        backdrop-filter: blur(12px);
        display: flex;
        align-items: center;
        justify-content: center;
        opacity: 0;
        visibility: hidden;
        transition: all var(--transition);
        z-index: 1000;
    }

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

    .nav__list {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }

    .nav__link {
        font-size: 1.3rem;
        padding: 12px 24px;
    }

    .header__cta {
        display: none;
    }

    .hero {
        min-height: auto;
        padding: 140px 0 80px;
    }

    .hero__title {
        font-size: clamp(2rem, 8vw, 3rem);
    }

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

    .hero__actions .btn {
        width: 100%;
    }

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

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

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

    .about__stat {
        right: 16px;
        bottom: -16px;
    }

    .about__highlights {
        grid-template-columns: repeat(3, 1fr);
        gap: 12px;
    }

    .why-us__grid {
        grid-template-columns: 1fr;
    }

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

    .contact__form {
        padding: 28px 20px;
    }

    .footer__inner {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .footer__bottom-inner {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }

    .floating-call {
        display: flex;
    }
}

/* Small Mobile */
@media (max-width: 400px) {
    .container {
        padding: 0 16px;
    }

    .hero__title {
        font-size: 1.9rem;
    }

    .about__highlights {
        grid-template-columns: 1fr;
        text-align: left;
    }

    .about__highlight-item {
        display: flex;
        align-items: center;
        gap: 12px;
        text-align: left;
    }
}
