/* ========================================
   ROOF RASCALS — Design System
   ======================================== */

:root {
    /* Colors */
    --color-navy: #1a1a2e;
    --color-navy-light: #16213e;
    --color-navy-mid: #0f3460;
    --color-orange: #ff6b35;
    --color-orange-dark: #e55a2b;
    --color-orange-light: #ff8c5a;
    --color-cyan: #00d4ff;
    --color-cyan-dark: #00b4d8;
    --color-white: #ffffff;
    --color-gray-100: #f0f0f5;
    --color-gray-200: #c8c8d8;
    --color-gray-300: #8888a0;
    --color-gray-400: #6a6a82;
    --color-gray-500: #4a4a62;

    /* Typography */
    --font-heading: 'Bebas Neue', system-ui, sans-serif;
    --font-body: 'DM Sans', system-ui, sans-serif;

    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.3);
    --shadow-md: 0 4px 20px rgba(0,0,0,0.4);
    --shadow-lg: 0 8px 40px rgba(0,0,0,0.5);
    --shadow-glow: 0 0 40px rgba(255,107,53,0.25);
    --shadow-glow-cyan: 0 0 40px rgba(0,212,255,0.2);

    /* Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --radius-full: 9999px;

    /* Motion */
    --ease: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
    --transition: 0.4s var(--ease);

    /* Layout */
    --container: 1280px;
    --header-h: 72px;
    --space-section: clamp(5rem, 10vw, 8rem);
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: var(--header-h);
    -webkit-font-smoothing: antialiased;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--color-gray-200);
    background: var(--color-navy);
    overflow-x: hidden;
}

body.no-scroll { overflow: hidden; }
body.loaded .loader { opacity: 0; pointer-events: none; }

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font: inherit; cursor: pointer; border: none; background: none; }
input, select, textarea { font: inherit; }

/* ========================================
   LOADER
   ======================================== */
.loader {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-navy);
    transition: opacity 0.6s var(--ease);
}

.loader__icon svg {
    width: 80px;
    height: 70px;
}

.loader__roof {
    stroke-dasharray: 120;
    stroke-dashoffset: 120;
    animation: drawRoof 1.2s var(--ease) forwards;
}

.loader__paw {
    opacity: 0;
    animation: pawAppear 0.3s var(--ease) forwards;
}
.loader__paw:nth-child(2) { animation-delay: 0.8s; }
.loader__paw:nth-child(3) { animation-delay: 0.9s; }
.loader__paw:nth-child(4) { animation-delay: 1s; }

@keyframes drawRoof {
    to { stroke-dashoffset: 0; }
}
@keyframes pawAppear {
    to { opacity: 1; }
}

/* ========================================
   CURSOR GLOW
   ======================================== */
.cursor-glow {
    position: fixed;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255,107,53,0.05) 0%, transparent 70%);
    pointer-events: none;
    z-index: 1;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: opacity 0.3s;
}
body.loaded .cursor-glow { opacity: 1; }

@media (hover: none) {
    .cursor-glow { display: none; }
}

/* ========================================
   CONTAINER & UTILITIES
   ======================================== */
.container {
    width: 100%;
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 1.5rem;
}

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

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

/* Section headers */
.section__header { text-align: center; max-width: 640px; margin: 0 auto 3.5rem; }
.section__label {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--color-orange);
    background: rgba(255,107,53,0.1);
    padding: 0.4rem 1.2rem;
    border-radius: var(--radius-full);
    margin-bottom: 1rem;
}
.section__title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 5vw, 3.5rem);
    color: var(--color-white);
    letter-spacing: 0.03em;
    line-height: 1.1;
    margin-bottom: 1rem;
}
.section__subtitle {
    font-size: 1.05rem;
    color: var(--color-gray-300);
    max-width: 520px;
    margin: 0 auto;
}

/* ========================================
   SCROLL REVEAL
   ======================================== */
.reveal {
    opacity: 0;
    transform: translateY(35px);
    transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-hero {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}
.reveal-hero.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ========================================
   BUTTONS
   ======================================== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 600;
    padding: 0.75rem 1.75rem;
    border-radius: var(--radius-full);
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
    white-space: nowrap;
}
.btn::after {
    content: '';
    position: absolute;
    top: 50%; left: 50%;
    width: 0; height: 0;
    border-radius: 50%;
    background: rgba(255,255,255,0.15);
    transform: translate(-50%, -50%);
    transition: width 0.5s var(--ease), height 0.5s var(--ease);
}
.btn:hover::after { width: 300px; height: 300px; }

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

.btn--outline {
    border: 2px solid rgba(255,107,53,0.5);
    color: var(--color-orange-light);
    background: transparent;
}
.btn--outline:hover {
    border-color: var(--color-orange);
    background: rgba(255,107,53,0.08);
    transform: translateY(-3px);
}

.btn--white {
    background: var(--color-white);
    color: var(--color-orange-dark);
}
.btn--white:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(255,255,255,0.2);
}

.btn--outline-white {
    border: 2px solid rgba(255,255,255,0.5);
    color: var(--color-white);
    background: transparent;
}
.btn--outline-white:hover {
    border-color: var(--color-white);
    background: rgba(255,255,255,0.1);
    transform: translateY(-3px);
}

.btn--lg { padding: 1rem 2.25rem; font-size: 1rem; }

/* ========================================
   HEADER
   ======================================== */
.header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    height: var(--header-h);
    transition: background 0.4s, box-shadow 0.4s, backdrop-filter 0.4s;
}
.header--scrolled {
    background: rgba(26,26,46,0.92);
    backdrop-filter: blur(20px);
    box-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    z-index: 101;
}
.logo__icon { width: 36px; height: 30px; }
.logo__text {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    letter-spacing: 0.1em;
    color: var(--color-white);
}
.logo__accent { color: var(--color-orange); }

.nav__list {
    display: flex;
    gap: 2rem;
}
.nav__link {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--color-gray-200);
    transition: color 0.3s;
    position: relative;
}
.nav__link::after {
    content: '';
    position: absolute;
    bottom: -4px; left: 0;
    width: 0; height: 2px;
    background: var(--color-orange);
    transition: width 0.3s var(--ease);
}
.nav__link:hover { color: var(--color-white); }
.nav__link:hover::after { width: 100%; }

.header__cta { font-size: 0.8rem; padding: 0.6rem 1.4rem; }

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    z-index: 101;
    padding: 4px;
}
.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--color-white);
    border-radius: 2px;
    transition: all 0.3s var(--ease);
}
.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 {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding-top: var(--header-h);
}

.hero__mesh {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 60% at 20% 30%, rgba(15,52,96,0.7) 0%, transparent 60%),
        radial-gradient(ellipse 60% 50% at 80% 60%, rgba(0,212,255,0.06) 0%, transparent 55%),
        radial-gradient(ellipse 50% 40% at 50% 80%, rgba(255,107,53,0.04) 0%, transparent 50%),
        linear-gradient(160deg, #1a1a2e 0%, #16213e 40%, #0f3460 100%);
}

/* Shingle-line texture */
.hero__mesh::after {
    content: '';
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(
        -45deg,
        transparent,
        transparent 40px,
        rgba(255,255,255,0.012) 40px,
        rgba(255,255,255,0.012) 41px
    );
}

/* Floating roof triangles */
.hero__shapes { position: absolute; inset: 0; pointer-events: none; }
.roof-shape {
    position: absolute;
    width: var(--size, 60px);
    height: var(--size, 60px);
    clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
    background: linear-gradient(135deg, var(--color-orange), var(--color-cyan));
    opacity: var(--opacity, 0.06);
    transform: rotate(var(--rotate, 0deg));
    animation: roofFloat 12s ease-in-out infinite;
}
@keyframes roofFloat {
    0%, 100% { transform: rotate(var(--rotate, 0deg)) translateY(0) scale(1); }
    50% { transform: rotate(var(--rotate, 0deg)) translateY(-20px) scale(1.05); }
}


.hero__inner {
    position: relative;
    z-index: 5;
    text-align: center;
    padding: 3rem 0 6rem;
}

.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--color-orange-light);
    background: rgba(255,107,53,0.1);
    border: 1px solid rgba(255,107,53,0.2);
    padding: 0.5rem 1.2rem;
    border-radius: var(--radius-full);
    margin-bottom: 2rem;
}

.hero__title {
    font-family: var(--font-heading);
    font-size: clamp(3.5rem, 10vw, 8rem);
    color: var(--color-white);
    letter-spacing: 0.04em;
    line-height: 0.95;
    margin-bottom: 1.5rem;
}
.hero__title-accent {
    background: linear-gradient(135deg, var(--color-orange) 0%, var(--color-cyan) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero__tagline {
    font-size: clamp(1.1rem, 2.5vw, 1.35rem);
    color: var(--color-gray-300);
    min-height: 1.8em;
    margin-bottom: 2.5rem;
}
.hero__cursor {
    display: inline-block;
    color: var(--color-orange);
    font-weight: 300;
    animation: blink 0.8s step-end infinite;
}
@keyframes blink {
    50% { opacity: 0; }
}

.hero__ctas {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ========================================
   SECTION DIVIDERS
   ======================================== */
.divider {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    z-index: 3;
    line-height: 0;
}
.divider svg { width: 100%; height: 80px; display: block; }
.divider--up { bottom: -1px; }
.divider--down { bottom: -1px; }

/* ========================================
   TRUST BAR
   ======================================== */
.trust-bar {
    background: var(--color-navy-light);
    padding: 1.5rem 0;
    position: relative;
    border-top: 1px solid rgba(255,107,53,0.1);
    border-bottom: 1px solid rgba(255,107,53,0.1);
}

.trust-bar__inner {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.trust-bar__item {
    display: flex;
    align-items: baseline;
    gap: 0.4rem;
    white-space: nowrap;
}

.trust-bar__number {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--color-orange);
    letter-spacing: 0.02em;
}
.trust-bar__number--text {
    font-size: 1.5rem;
}

.trust-bar__plus {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: var(--color-orange-light);
}

.trust-bar__label {
    font-size: 0.85rem;
    color: var(--color-gray-300);
    font-weight: 500;
}

.trust-bar__stars {
    display: flex;
    gap: 2px;
}
.trust-bar__stars svg {
    width: 20px;
    height: 20px;
}

.trust-bar__sep {
    width: 1px;
    height: 28px;
    background: rgba(255,255,255,0.08);
}

/* ========================================
   SERVICES
   ======================================== */
.services {
    background: var(--color-navy);
    /* Shingle texture */
    background-image: repeating-linear-gradient(
        -45deg,
        transparent,
        transparent 60px,
        rgba(255,255,255,0.008) 60px,
        rgba(255,255,255,0.008) 61px
    );
}

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

.service-card {
    background: rgba(22,33,62,0.6);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: var(--radius-lg);
    padding: 2rem;
    transition: all var(--transition);
    backdrop-filter: blur(8px);
    cursor: default;
}
.service-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255,107,53,0.3);
    box-shadow: var(--shadow-glow);
}

.service-card__icon-wrap {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,107,53,0.1);
    border-radius: var(--radius-md);
    margin-bottom: 1.25rem;
    transition: all var(--transition);
}
.service-card:hover .service-card__icon-wrap {
    background: rgba(255,107,53,0.2);
    transform: scale(1.1);
}
.service-card__icon-wrap svg {
    width: 26px;
    height: 26px;
    stroke: var(--color-orange);
}

.service-card__title {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    color: var(--color-white);
    letter-spacing: 0.05em;
    margin-bottom: 0.6rem;
}

.service-card__desc {
    font-size: 0.9rem;
    color: var(--color-gray-300);
    line-height: 1.5;
}

.service-card__reveal {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s var(--ease), margin-top 0.5s var(--ease);
}
.service-card:hover .service-card__reveal {
    max-height: 120px;
    margin-top: 0.8rem;
}
.service-card__reveal p {
    font-size: 0.85rem;
    color: var(--color-gray-400);
    border-top: 1px solid rgba(255,255,255,0.06);
    padding-top: 0.8rem;
}

/* ========================================
   WHY CHOOSE US
   ======================================== */
.why-us { background: var(--color-navy); }

.why-us__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.why-us__visual { position: relative; }

.why-us__geo {
    position: relative;
    width: 100%;
    aspect-ratio: 1;
    max-width: 460px;
    margin: 0 auto;
}

.geo-shape {
    position: absolute;
    border-radius: var(--radius-lg);
    transition: transform 0.6s var(--ease);
}

.geo-shape--1 {
    width: 65%;
    height: 55%;
    top: 10%;
    left: 5%;
    background: linear-gradient(135deg, rgba(255,107,53,0.15) 0%, rgba(255,107,53,0.05) 100%);
    border: 1px solid rgba(255,107,53,0.2);
    transform: rotate(-6deg);
}
.geo-shape--2 {
    width: 55%;
    height: 50%;
    top: 25%;
    right: 5%;
    background: linear-gradient(135deg, rgba(0,212,255,0.12) 0%, rgba(0,212,255,0.03) 100%);
    border: 1px solid rgba(0,212,255,0.15);
    transform: rotate(4deg);
}
.geo-shape--3 {
    width: 40%;
    height: 35%;
    bottom: 10%;
    left: 15%;
    clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
    background: linear-gradient(180deg, var(--color-orange), transparent);
    opacity: 0.15;
}
.geo-shape--4 {
    width: 30%;
    height: 25%;
    bottom: 20%;
    right: 20%;
    clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
    background: linear-gradient(180deg, var(--color-cyan), transparent);
    opacity: 0.1;
    transform: rotate(15deg);
}

.geo-shape--badge {
    width: 100px;
    height: 100px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(255,107,53,0.15);
    border: 2px solid rgba(255,107,53,0.3);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
}
.geo-badge__number {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    color: var(--color-orange);
    line-height: 1;
}
.geo-badge__text {
    font-size: 0.75rem;
    color: var(--color-gray-300);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.why-us__content .section__label,
.why-us__content .section__title { text-align: left; }

.why-us__list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 2rem;
}

.why-us__item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.why-us__icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,107,53,0.08);
    border: 1px solid rgba(255,107,53,0.15);
    border-radius: var(--radius-md);
}
.why-us__icon svg {
    width: 22px;
    height: 22px;
    stroke: var(--color-orange);
}

.why-us__item h4 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: var(--color-white);
    letter-spacing: 0.04em;
    margin-bottom: 0.15rem;
}
.why-us__item p {
    font-size: 0.88rem;
    color: var(--color-gray-300);
}

/* ========================================
   GALLERY (FLIP CARDS)
   ======================================== */
.gallery { background: var(--color-navy-light); }

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

.gallery__item {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 4/3;
    cursor: default;
}
.gallery__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s var(--ease);
}
.gallery__item:hover img {
    transform: scale(1.08);
}

.gallery__overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1.25rem;
    background: linear-gradient(180deg, transparent 40%, rgba(0,0,0,0.7) 100%);
    opacity: 0;
    transition: opacity 0.4s var(--ease);
}
.gallery__item:hover .gallery__overlay {
    opacity: 1;
}

.gallery__tag {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    padding: 0.3rem 0.8rem;
    border-radius: var(--radius-full);
    align-self: flex-start;
    margin-bottom: 0.5rem;
}
.gallery__tag--after {
    background: rgba(255,107,53,0.85);
    color: var(--color-white);
}

.gallery__caption {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.9);
}

/* ========================================
   PROCESS TIMELINE
   ======================================== */
.process { background: var(--color-navy); }

.process__timeline {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    padding-top: 2rem;
}

.process__line {
    position: absolute;
    top: calc(2rem + 24px);
    left: 24px;
    right: 24px;
    height: 3px;
    background: rgba(255,255,255,0.06);
    border-radius: 2px;
}
.process__line-fill {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, var(--color-orange), var(--color-cyan));
    border-radius: 2px;
    transition: width 0.8s var(--ease);
}

.process__step {
    flex: 1;
    text-align: center;
    position: relative;
    z-index: 2;
}

.process__dot {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--color-navy-light);
    border: 2px solid rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    transition: all 0.5s var(--ease);
}
.process__dot span {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: var(--color-gray-400);
    transition: color 0.5s;
}

.process__step.active .process__dot {
    background: var(--color-orange);
    border-color: var(--color-orange);
    box-shadow: 0 0 20px rgba(255,107,53,0.4);
}
.process__step.active .process__dot span { color: var(--color-white); }

.process__content h4 {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    color: var(--color-white);
    letter-spacing: 0.04em;
    margin-bottom: 0.3rem;
}
.process__content p {
    font-size: 0.82rem;
    color: var(--color-gray-400);
    max-width: 160px;
    margin: 0 auto;
    line-height: 1.4;
}

/* ========================================
   TESTIMONIALS
   ======================================== */
.testimonials { background: var(--color-navy-light); }

.testimonials__carousel {
    position: relative;
    max-width: 700px;
    margin: 0 auto;
    overflow: hidden;
    min-height: 260px;
}

.testimonial {
    position: absolute;
    inset: 0;
    opacity: 0;
    transform: translateX(60px);
    transition: all 0.6s var(--ease);
    background: rgba(22,33,62,0.6);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: var(--radius-xl);
    padding: 2.5rem;
    backdrop-filter: blur(8px);
    pointer-events: none;
}
.testimonial.active {
    opacity: 1;
    transform: translateX(0);
    pointer-events: auto;
}

.testimonial__stars {
    display: flex;
    gap: 4px;
    margin-bottom: 1rem;
}
.testimonial__stars svg {
    width: 18px;
    height: 18px;
    fill: var(--color-orange);
}

.testimonial__text {
    font-size: 1.05rem;
    color: var(--color-gray-200);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial__author {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}
.testimonial__avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--avatar-bg, var(--color-orange));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--color-white);
}
.testimonial__name {
    font-weight: 600;
    color: var(--color-white);
    font-size: 0.9rem;
}
.testimonial__role {
    font-size: 0.78rem;
    color: var(--color-gray-400);
}

.testimonials__dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 2rem;
}
.testimonials__dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,0.15);
    transition: all 0.3s;
}
.testimonials__dot.active {
    background: var(--color-orange);
    transform: scale(1.3);
}

/* ========================================
   SERVICE AREAS
   ======================================== */
.areas { background: var(--color-navy); }

.areas__grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
}

.area-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(22,33,62,0.8);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--radius-full);
    padding: 0.65rem 1.5rem;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--color-gray-200);
    transition: all 0.3s var(--ease);
}
.area-tag:hover {
    border-color: rgba(255,107,53,0.4);
    background: rgba(255,107,53,0.08);
    transform: translateY(-3px);
}
.area-tag svg { stroke: var(--color-orange); }

/* ========================================
   CTA BAND
   ======================================== */
.cta-band {
    position: relative;
    overflow: hidden;
    text-align: center;
}

.cta-band__bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--color-orange) 0%, var(--color-orange-dark) 60%, #c44a1f 100%);
}
.cta-band__bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(
        -45deg,
        transparent,
        transparent 40px,
        rgba(255,255,255,0.03) 40px,
        rgba(255,255,255,0.03) 41px
    );
}

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

.cta-band__title {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    color: var(--color-white);
    letter-spacing: 0.04em;
    line-height: 1;
    margin-bottom: 1rem;
}

.cta-band__subtitle {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.85);
    max-width: 500px;
    margin: 0 auto 2rem;
}

.cta-band__actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Form */
.cta-band__form {
    max-width: 600px;
    margin: 2rem auto 0;
}
.form__row {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}
.form__input {
    flex: 1;
    padding: 0.85rem 1.2rem;
    background: rgba(255,255,255,0.15);
    border: 1px solid rgba(255,255,255,0.25);
    border-radius: var(--radius-sm);
    color: var(--color-white);
    font-size: 0.9rem;
    outline: none;
    transition: border-color 0.3s;
}
.form__input::placeholder { color: rgba(255,255,255,0.5); }
.form__input:focus { border-color: rgba(255,255,255,0.6); }
.form__textarea { resize: vertical; min-height: 80px; margin-bottom: 1rem; width: 100%; }

select.form__input { -webkit-appearance: none; appearance: none; }
select.form__input option { background: var(--color-navy); color: var(--color-white); }

.form__submit { width: 100%; justify-content: center; }
.form__submit.sending { opacity: 0.6; pointer-events: none; }

.cta-band__success {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--color-white);
    margin-top: 1.5rem;
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
    background: var(--color-navy);
    padding: 4rem 0 0;
    position: relative;
}

.footer__gradient {
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,107,53,0.3), transparent);
}

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

.footer__tagline {
    font-size: 0.88rem;
    color: var(--color-gray-400);
    margin-top: 1rem;
    line-height: 1.6;
}

.footer__heading {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: var(--color-white);
    letter-spacing: 0.08em;
    margin-bottom: 1rem;
}

.footer__links li {
    margin-bottom: 0.5rem;
}
.footer__links a {
    font-size: 0.88rem;
    color: var(--color-gray-400);
    transition: color 0.3s;
}
.footer__links a:hover { color: var(--color-orange); }

.footer__contact-list li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.footer__contact-list svg { stroke: var(--color-orange); flex-shrink: 0; }

.footer__social {
    display: flex;
    gap: 0.75rem;
    margin-top: 1.25rem;
}
.footer__social-link {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.06);
    border-radius: 50%;
    color: var(--color-gray-300);
    transition: all 0.3s;
}
.footer__social-link:hover {
    background: rgba(255,107,53,0.15);
    color: var(--color-orange);
    transform: translateY(-3px);
}
.footer__social-link svg { width: 18px; height: 18px; }

.footer__bottom {
    border-top: 1px solid rgba(255,255,255,0.06);
    padding: 1.5rem 0;
    text-align: center;
}
.footer__bottom p {
    font-size: 0.8rem;
    color: var(--color-gray-500);
}

/* ========================================
   RESPONSIVE — TABLET (max-width: 1024px)
   ======================================== */
@media (max-width: 1024px) {
    .services__grid { grid-template-columns: repeat(2, 1fr); }
    .gallery__grid { grid-template-columns: repeat(2, 1fr); }
    .gallery__overlay { opacity: 1; }
    .why-us__inner { grid-template-columns: 1fr; gap: 3rem; }
    .why-us__content .section__label,
    .why-us__content .section__title,
    .why-us__content .section__subtitle { text-align: center; }
    .why-us__geo { max-width: 320px; }

    .process__timeline { flex-direction: column; gap: 2rem; padding-top: 0; }
    .process__line {
        top: 0; bottom: 0;
        left: 24px; right: auto;
        width: 3px; height: 100%;
    }
    .process__line-fill { width: 100% !important; height: 0%; transition: height 0.8s var(--ease); }
    .process__step { text-align: left; display: flex; gap: 1rem; align-items: flex-start; }
    .process__dot { margin: 0; flex-shrink: 0; }
    .process__content p { max-width: none; margin: 0; }

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

    .header__cta { display: none; }
    .hamburger { display: flex; }

    .nav {
        position: fixed;
        inset: 0;
        background: rgba(26,26,46,0.98);
        backdrop-filter: blur(20px);
        display: flex;
        align-items: center;
        justify-content: center;
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.4s;
        z-index: 100;
    }
    .nav.open { opacity: 1; pointer-events: auto; }
    .nav__list { flex-direction: column; align-items: center; gap: 2rem; }
    .nav__link { font-size: 1.5rem; font-family: var(--font-heading); letter-spacing: 0.1em; }
}

/* ========================================
   RESPONSIVE — MOBILE (max-width: 768px)
   ======================================== */
@media (max-width: 768px) {
    .services__grid { grid-template-columns: 1fr; }
    .gallery__grid { grid-template-columns: 1fr 1fr; }

    .trust-bar__inner { gap: 1rem; }
    .trust-bar__sep { display: none; }

    .areas__grid { gap: 0.75rem; }
    .area-tag { padding: 0.5rem 1rem; font-size: 0.82rem; }

    .form__row { flex-direction: column; }

    .footer__inner { grid-template-columns: 1fr; text-align: center; }
    .footer__social { justify-content: center; }
    .footer__contact-list li { justify-content: center; }

    .hero__title { font-size: clamp(2.8rem, 12vw, 4rem); }
}

@media (max-width: 480px) {
    .gallery__grid { grid-template-columns: 1fr; }
    .hero__ctas { flex-direction: column; align-items: center; }
    .hero__ctas .btn { width: 100%; max-width: 280px; justify-content: center; }
}
