@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@400;600;700&family=Rajdhani:wght@400;600;700&display=swap');

* {
    box-sizing: border-box;
}

:root {
    --bg: #0d0d0d;
    --bg-soft: #151515;
    --panel: rgba(16, 16, 16, 0.94);
    --panel-border: rgba(255, 255, 255, 0.06);
    --text: #f4f4f4;
    --muted: #cfcfcf;
    --red: #d31717;
    --red-dark: #8f0f0f;
    --orange: #ff6a00;
    --orange-soft: #ffb07a;
    --max: 1200px;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: 'Rajdhani', sans-serif;
    background:
        linear-gradient(rgba(0,0,0,0.78), rgba(0,0,0,0.92)),
        radial-gradient(circle at top right, rgba(255,106,0,0.10), transparent 30%),
        radial-gradient(circle at top left, rgba(211,23,23,0.08), transparent 26%),
        url('https://www.transparenttextures.com/patterns/brushed-alum.png'),
        #0d0d0d;
    color: var(--text);
    position: relative;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    background:
        radial-gradient(circle at 20% 10%, rgba(255,80,0,0.08), transparent 25%),
        radial-gradient(circle at 80% 20%, rgba(255,0,0,0.05), transparent 25%);
    z-index: 0;
}

body::after {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    background: url('https://www.transparenttextures.com/patterns/asfalt-dark.png');
    opacity: 0.25;
    z-index: 0;
}

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

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

h1, h2, h3 {
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    margin-top: 0;
}

p, span, a, li, div {
    font-family: 'Rajdhani', sans-serif;
}

.container {
    width: min(calc(100% - 32px), var(--max));
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.topbar {
    background: #000;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    position: relative;
    z-index: 2;
}

.topbar-inner {
    width: min(calc(100% - 32px), var(--max));
    margin: 0 auto;
    min-height: 38px;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    color: #f0d7c8;
    font-size: 13px;
    font-weight: 600;
}

.topbar-inner > div:first-child {
    grid-column: 2;
    text-align: center;
}

.topbar-inner > div:last-child {
    grid-column: 3;
    justify-self: end;
    color: #ffd3b8;
    font-weight: 700;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background:
        linear-gradient(180deg, rgba(35,8,8,0.98), rgba(8,0,0,0.97));
    backdrop-filter: blur(6px);
    border-bottom: 2px solid rgba(255, 80, 40, 0.45);
    box-shadow: 0 10px 24px rgba(0,0,0,0.25);
}

.header-inner {
    width: min(calc(100% - 32px), var(--max));
    margin: 0 auto;
    min-height: 108px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
}

.brand {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-shrink: 0;
    padding: 6px 12px;
    background: linear-gradient(180deg, rgba(35,12,8,0.92), rgba(10,4,4,0.96));
    border: 1px solid rgba(255,120,60,0.15);
    box-shadow:
        inset 0 0 0 1px rgba(255,80,40,0.08),
        0 6px 20px rgba(0,0,0,0.4);
}

.logo-img {
    height: 96px;
    width: 290px;
    display: block;
    object-fit: fill;
    filter: drop-shadow(0 0 10px rgba(255, 80, 0, 0.18));
}

.header-right {
    display: flex;
    align-items: center;
    gap: 22px;
    margin-left: auto;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 22px;
    flex-wrap: nowrap;
}

.main-nav a {
    color: #f1f1f1;
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    transition: 0.2s ease;
}

.main-nav a:hover {
    color: var(--orange-soft);
    text-shadow: 0 0 10px rgba(255,106,0,0.2);
}

.phone-link {
    font-size: 24px;
    font-weight: 900;
    color: #fff;
    white-space: nowrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 22px;
    border: 0;
    cursor: pointer;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: 0.25s ease;
}

.btn-primary {
    position: relative;
    overflow: hidden;
    background: linear-gradient(90deg, #ff2a2a, #ff6a00);
    color: #fff;
    box-shadow: 0 10px 28px rgba(255, 70, 30, 0.30);
}

.btn-primary::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(255,120,40,0.25), transparent 70%);
    opacity: 0;
    transition: 0.3s;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 60, 0, 0.4);
}

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

.btn-outline {
    border: 2px solid rgba(255,255,255,0.18);
    color: #fff;
    background: transparent;
}

.btn-outline:hover {
    border-color: rgba(255,106,0,0.7);
    color: #ffcfad;
}

.hero {
    position: relative;
    overflow: hidden;
    padding: 88px 0 72px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    z-index: 1;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(0,0,0,0.78) 0%, rgba(0,0,0,0.55) 52%, rgba(0,0,0,0.82) 100%),
        url('https://images.unsplash.com/photo-1580273916550-e323be2ae537?auto=format&fit=crop&w=1600&q=80') center/cover no-repeat;
    opacity: 0.92;
    pointer-events: none;
}

.hero-inner {
    position: relative;
    z-index: 1;
    width: min(calc(100% - 32px), var(--max));
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 36px;
    align-items: center;
}

.eyebrow {
    display: none;
}

.hero h1 {
    margin: 0 0 16px;
    font-size: clamp(42px, 6vw, 76px);
    line-height: 0.95;
    font-weight: 700;
    background: linear-gradient(180deg, #ffffff 0%, #cfcfcf 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 4px 20px rgba(0,0,0,0.7);
}

.hero p {
    margin: 0 0 26px;
    color: #d8d8d8;
    font-size: 18px;
    line-height: 1.65;
    max-width: 700px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 28px;
}

.hero-points {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.hero-point {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    padding: 14px 16px;
    font-size: 15px;
    font-weight: 700;
    color: #f0f0f0;
}

.hero-card {
    position: relative;
    z-index: 1;
    background:
        linear-gradient(180deg, rgba(35,35,35,0.96), rgba(10,10,10,0.96));
    border: 1px solid rgba(255,255,255,0.08);
    box-shadow: 0 28px 60px rgba(0,0,0,0.45);
    padding: 30px;
}

.hero-card h2 {
    margin: 0 0 12px;
    font-size: 26px;
    font-weight: 700;
    background: linear-gradient(90deg, #ffffff, #ffb07a);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-card p {
    margin: 0 0 18px;
    color: #d4d4d4;
    font-size: 17px;
    line-height: 1.6;
}

.hero-card-list {
    padding: 0;
    margin: 0 0 20px;
    list-style: none;
    display: grid;
    gap: 12px;
}

.hero-card-list li {
    padding-left: 18px;
    position: relative;
    color: #ededed;
    font-size: 15px;
    line-height: 1.5;
}

.hero-card-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 9px;
    width: 8px;
    height: 8px;
    background: linear-gradient(180deg, #ff7a1a, #ff2b1d);
    box-shadow: 0 0 10px rgba(255,100,40,0.35);
}

.section {
    padding: 72px 0;
    position: relative;
    z-index: 1;
}

.section-dark {
    background:
        linear-gradient(180deg, rgba(25,25,25,0.65), rgba(10,10,10,0.9)),
        url('https://www.transparenttextures.com/patterns/black-metal.png');
    border-top: 1px solid rgba(255,255,255,0.05);
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.section-title,
section h2 {
    font-size: clamp(34px, 4vw, 52px);
    line-height: 1;
    font-weight: 700;
    background: linear-gradient(90deg, #ff2a2a, #ff6a00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-title::after,
section h2::after {
    content: "";
    display: block;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #ff2a2a, #ff6a00);
    margin-top: 10px;
}

.section-intro {
    margin: 0 0 32px;
    max-width: 800px;
    color: var(--muted);
    font-size: 17px;
    line-height: 1.7;
}

.grid-4,
.grid-3 {
    display: grid;
    gap: 20px;
}

.grid-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

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

.card {
    background: linear-gradient(145deg, rgba(20,20,20,0.95), rgba(10,10,10,0.95));
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255,255,255,0.05);
    padding: 24px;
    box-shadow: 0 18px 44px rgba(0,0,0,0.2);
    transition: 0.3s ease;
}

.card:hover {
    transform: translateY(-6px) scale(1.01);
    border-color: rgba(255, 60, 0, 0.3);
    box-shadow: 0 10px 30px rgba(255, 60, 0, 0.15);
}

.card h3 {
    margin: 0 0 12px;
    font-size: 22px;
    font-weight: 600;
    color: #fff;
}

.card p {
    margin: 0;
    color: var(--muted);
    line-height: 1.7;
    font-size: 15px;
}

.icon-tag {
    display: inline-block;
    margin-bottom: 14px;
    padding: 6px 10px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
    background: rgba(255, 95, 35, 0.16);
    border: 1px solid rgba(255, 95, 35, 0.30);
    color: #ffb08a;
}

.expect-list {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
}

.expect-item {
    padding: 18px 20px;
    background: rgba(255,255,255,0.03);
    border-left: 4px solid var(--red);
    font-size: 15px;
    font-weight: 700;
    line-height: 1.45;
    color: #f0f0f0;
}

.cta-band {
    padding: 78px 0;
    background:
        linear-gradient(180deg, rgba(0,0,0,0.82), rgba(0,0,0,0.9)),
        radial-gradient(circle at center, rgba(255,106,0,0.12), transparent 38%),
        #080808;
    text-align: center;
    border-top: 1px solid rgba(255,255,255,0.06);
    border-bottom: 1px solid rgba(255,255,255,0.06);
    position: relative;
    z-index: 1;
}

.cta-band h2 {
    margin: 0 0 14px;
    font-size: clamp(34px, 4vw, 56px);
    font-weight: 700;
    background: linear-gradient(90deg, #ff2a2a, #ff6a00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.cta-band h2::after {
    content: "";
    display: block;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #ff2a2a, #ff6a00);
    margin: 10px auto 0;
}

.cta-band p {
    margin: 0 auto 24px;
    max-width: 760px;
    color: var(--muted);
    font-size: 18px;
    line-height: 1.7;
}

.site-footer {
    background: #000;
    padding: 26px 0 34px;
    position: relative;
    z-index: 1;
}

.footer-grid {
    width: min(calc(100% - 32px), var(--max));
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.3fr 1fr 1fr;
    gap: 28px;
}

.footer-title {
    margin: 0 0 10px;
    font-size: 22px;
    font-weight: 700;
    background: linear-gradient(90deg, #ffffff, #ff9b67);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.footer-copy,
.footer-links a,
.footer-contact {
    color: #cdcdcd;
    font-size: 15px;
    line-height: 1.8;
}

.footer-links {
    display: grid;
    gap: 6px;
}

.footer-links a:hover {
    color: var(--orange-soft);
}

.footer-bottom {
    width: min(calc(100% - 32px), var(--max));
    margin: 24px auto 0;
    padding-top: 18px;
    border-top: 1px solid rgba(255,255,255,0.08);
    color: #8f8f8f;
    font-size: 13px;
}

.how-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(0,0,0,0.80) 0%, rgba(0,0,0,0.55) 52%, rgba(0,0,0,0.84) 100%),
        url('https://images.unsplash.com/photo-1613214150384-7a5d4a5bc9a5?auto=format&fit=crop&w=1600&q=80') center/cover no-repeat;
    opacity: 0.88;
    pointer-events: none;
}

.process-intro {
    background:
        linear-gradient(180deg, rgba(25,6,6,0.18), rgba(0,0,0,0));
}

.process-highlight-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
    margin-top: 26px;
}

.process-highlight {
    background: linear-gradient(145deg, rgba(20,20,20,0.95), rgba(10,10,10,0.95));
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255,255,255,0.05);
    padding: 26px;
    box-shadow: 0 18px 44px rgba(0,0,0,0.2);
    transition: 0.3s ease;
}

.process-highlight:hover {
    transform: translateY(-6px) scale(1.01);
    border-color: rgba(255, 60, 0, 0.3);
    box-shadow: 0 10px 30px rgba(255, 60, 0, 0.15);
}

.process-highlight h3 {
    margin: 0 0 12px;
    font-size: 24px;
    color: #fff;
}

.process-highlight p {
    margin: 0;
    color: var(--muted);
    font-size: 16px;
    line-height: 1.7;
}

.how-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
}

.step-card {
    background: linear-gradient(145deg, rgba(20,20,20,0.95), rgba(10,10,10,0.95));
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255,255,255,0.05);
    padding: 26px;
    box-shadow: 0 18px 44px rgba(0,0,0,0.2);
    transition: 0.3s ease;
}

.step-card:hover {
    transform: translateY(-6px) scale(1.01);
    border-color: rgba(255, 60, 0, 0.3);
    box-shadow: 0 10px 30px rgba(255, 60, 0, 0.15);
}

.step-number {
    display: inline-block;
    margin-bottom: 14px;
    padding: 6px 10px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
    background: rgba(255, 95, 35, 0.16);
    border: 1px solid rgba(255, 95, 35, 0.30);
    color: #ffb08a;
}

.step-card h3 {
    margin: 0 0 12px;
    font-size: 24px;
    font-weight: 600;
    color: #fff;
}

.step-card p {
    margin: 0;
    color: var(--muted);
    line-height: 1.7;
    font-size: 16px;
}

.info-panel {
    background: linear-gradient(145deg, rgba(20,20,20,0.95), rgba(10,10,10,0.95));
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255,255,255,0.05);
    padding: 28px;
    box-shadow: 0 18px 44px rgba(0,0,0,0.2);
}

.info-panel p {
    margin: 0 0 18px;
    color: var(--muted);
    font-size: 17px;
    line-height: 1.7;
}

.info-panel p:last-child {
    margin-bottom: 0;
}

@media (max-width: 1080px) {
    .hero-inner,
    .footer-grid,
    .grid-4,
    .grid-3,
    .expect-list {
        grid-template-columns: 1fr 1fr;
    }

    .hero-inner {
        align-items: start;
    }

    .header-inner {
        flex-direction: column;
        align-items: flex-start;
        padding: 16px 0;
    }

    .header-right {
        width: 100%;
        flex-direction: column;
        align-items: flex-start;
    }

    .logo-img {
        height: 88px;
        width: 250px;
    }
}

@media (max-width: 760px) {
    .topbar-inner,
    .header-inner {
        width: min(calc(100% - 24px), var(--max));
    }

    .main-nav,
    .hero-actions,
    .hero-points,
    .grid-4,
    .grid-3,
    .expect-list,
    .footer-grid,
    .hero-inner,
    .how-grid,
    .process-highlight-grid {
        grid-template-columns: 1fr;
        display: grid;
    }

    .main-nav {
        gap: 12px;
    }

    .header-right {
        gap: 14px;
    }

    .phone-link {
        font-size: 20px;
    }

    .hero {
        padding: 66px 0 54px;
    }

    .hero h1 {
        font-size: clamp(34px, 10vw, 48px);
    }

    .hero p,
    .section-intro,
    .cta-band p {
        font-size: 16px;
    }

    .btn {
        width: 100%;
    }

    .hero-card,
    .card,
    .step-card,
    .process-highlight,
    .info-panel {
        padding: 20px;
    }

    .brand {
        justify-content: center;
        width: 100%;
    }

    .logo-img {
        height: 74px;
        width: 210px;
        margin: 0 auto;
    }
}

.contact-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(0,0,0,0.80) 0%, rgba(0,0,0,0.56) 52%, rgba(0,0,0,0.84) 100%),
        url('https://images.unsplash.com/photo-1492144534655-ae79c964c9d7?auto=format&fit=crop&w=1600&q=80') center/cover no-repeat;
    opacity: 0.88;
    pointer-events: none;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

.contact-card {
    background: linear-gradient(145deg, rgba(20,20,20,0.95), rgba(10,10,10,0.95));
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255,255,255,0.05);
    padding: 26px;
    box-shadow: 0 18px 44px rgba(0,0,0,0.2);
    transition: 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-6px) scale(1.01);
    border-color: rgba(255, 60, 0, 0.3);
    box-shadow: 0 10px 30px rgba(255, 60, 0, 0.15);
}

.contact-card h3 {
    margin: 0 0 12px;
    font-size: 24px;
    font-weight: 600;
    color: #fff;
}

.contact-card p {
    margin: 0 0 10px;
    color: var(--muted);
    font-size: 17px;
    line-height: 1.6;
}

.contact-card p:last-of-type {
    margin-bottom: 0;
}

.contact-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 18px;
}

.map-wrap {
    border: 1px solid rgba(255,255,255,0.06);
    box-shadow: 0 18px 44px rgba(0,0,0,0.2);
    overflow: hidden;
    min-height: 420px;
    background: #111;
}

.map-wrap iframe {
    width: 100%;
    height: 420px;
    border: 0;
    display: block;
}

.map-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 20px;
}

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

    .contact-actions,
    .map-actions {
        display: grid;
        grid-template-columns: 1fr;
    }
}


.estimate-hero {
    position: relative;
    overflow: hidden;
    padding: 92px 0 76px;
    background:
        linear-gradient(180deg, #2e2e2e 0%, #1e1e1e 45%, #141414 100%);
    border-bottom: 1px solid rgba(255,255,255,0.06);
    z-index: 1;
}

.estimate-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(40,40,40,0.78) 0%, rgba(28,28,28,0.56) 52%, rgba(16,16,16,0.84) 100%),
        url('https://images.unsplash.com/photo-1492144534655-ae79c964c9d7?auto=format&fit=crop&w=1600&q=80') center/cover no-repeat;
    opacity: 0.32;
    pointer-events: none;
}

.estimate-hero-inner {
    position: relative;
    z-index: 1;
    width: min(calc(100% - 32px), var(--max));
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 34px;
    align-items: center;
}

.estimate-eyebrow {
    display: inline-block;
    margin-bottom: 14px;
    padding: 6px 12px;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.12);
    color: #ffe0c9;
}

.estimate-hero h1 {
    margin: 0 0 16px;
    font-size: clamp(44px, 6vw, 78px);
    line-height: 0.95;
    font-weight: 700;
    background: linear-gradient(180deg, #ffffff 0%, #dfdfdf 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 4px 20px rgba(0,0,0,0.5);
}

.estimate-hero p {
    margin: 0 0 24px;
    color: #ececec;
    font-size: 19px;
    line-height: 1.65;
    max-width: 760px;
}

.estimate-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 28px;
}

.estimate-summary-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}

.estimate-summary-card {
    padding: 18px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.10);
    backdrop-filter: blur(4px);
}

.estimate-summary-card strong {
    display: block;
    margin-bottom: 8px;
    font-size: 17px;
    color: #fff;
}

.estimate-summary-card span {
    color: #ececec;
    font-size: 15px;
    line-height: 1.5;
}

.estimate-side-card {
    position: relative;
    z-index: 1;
    background: linear-gradient(180deg, rgba(255,255,255,0.10), rgba(255,255,255,0.06));
    border: 1px solid rgba(255,255,255,0.14);
    box-shadow: 0 28px 60px rgba(0,0,0,0.30);
    padding: 30px;
    backdrop-filter: blur(8px);
}

.estimate-side-card h2 {
    margin: 0 0 12px;
    font-size: 28px;
    background: linear-gradient(90deg, #ffffff, #ffb07a);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.estimate-side-card p {
    margin: 0 0 18px;
    color: #f1f1f1;
    font-size: 17px;
    line-height: 1.6;
}

.estimate-section {
    padding: 76px 0;
    position: relative;
    z-index: 1;
}

.estimate-light {
    background:
        linear-gradient(180deg, rgba(70,70,70,0.14), rgba(20,20,20,0.06)),
        #2b2b2b;
}

.estimate-dark {
    background:
        linear-gradient(180deg, rgba(42,42,42,0.55), rgba(18,18,18,0.96)),
        url('https://www.transparenttextures.com/patterns/black-metal.png');
    border-top: 1px solid rgba(255,255,255,0.05);
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.request-info-grid,
.photo-guide-grid,
.after-submit-grid {
    display: grid;
    gap: 22px;
}

.request-info-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.photo-guide-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.after-submit-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
}

.request-info-card,
.photo-guide-card,
.process-tile {
    background: linear-gradient(145deg, rgba(255,255,255,0.08), rgba(255,255,255,0.03));
    border: 1px solid rgba(255,255,255,0.08);
    padding: 24px;
    box-shadow: 0 18px 44px rgba(0,0,0,0.15);
    transition: 0.3s ease;
    backdrop-filter: blur(4px);
}

.request-info-card:hover,
.photo-guide-card:hover,
.process-tile:hover {
    transform: translateY(-6px) scale(1.01);
    border-color: rgba(255, 90, 40, 0.30);
    box-shadow: 0 10px 30px rgba(255, 60, 0, 0.12);
}

.request-info-card h3,
.photo-guide-card h3,
.process-tile h3 {
    margin: 0 0 12px;
    font-size: 24px;
    color: #fff;
}

.request-info-card p,
.photo-guide-card p,
.process-tile p {
    margin: 0;
    color: #ebebeb;
    line-height: 1.7;
    font-size: 16px;
}

.photo-note {
    margin-top: 22px;
    padding: 18px 22px;
    background: rgba(255,255,255,0.08);
    border-left: 4px solid #ff6a00;
    color: #f0f0f0;
    font-size: 16px;
    line-height: 1.6;
}

.estimate-form {
    background: linear-gradient(145deg, rgba(255,255,255,0.10), rgba(255,255,255,0.04));
    border: 1px solid rgba(255,255,255,0.10);
    box-shadow: 0 18px 44px rgba(0,0,0,0.18);
    padding: 30px;
    backdrop-filter: blur(6px);
}

.form-section-title {
    margin: 0 0 18px;
    font-family: 'Oswald', sans-serif;
    font-size: 28px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #fff;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
    margin-bottom: 28px;
}

.form-grid-single {
    grid-template-columns: 1fr;
}

.form-group {
    display: grid;
    gap: 8px;
}

.form-group label {
    font-size: 15px;
    font-weight: 700;
    color: #fff;
    letter-spacing: 0.5px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 14px;
    border: 1px solid rgba(255,255,255,0.12);
    background: rgba(255,255,255,0.08);
    color: #fff;
    font-size: 16px;
    outline: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #d2d2d2;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: rgba(255, 106, 0, 0.55);
    box-shadow: 0 0 0 2px rgba(255,106,0,0.10);
}

.upload-help {
    font-size: 14px;
    color: #e7e7e7;
    line-height: 1.5;
}

.estimate-disclaimer-box {
    margin-top: 8px;
    margin-bottom: 22px;
    padding: 22px;
    background: rgba(255,255,255,0.08);
    border-left: 4px solid #ff6a00;
}

.estimate-disclaimer-box h3 {
    margin: 0 0 12px;
    font-size: 24px;
    color: #fff;
}

.estimate-disclaimer-box p {
    margin: 0 0 12px;
    color: #f0f0f0;
    line-height: 1.7;
    font-size: 16px;
}

.estimate-disclaimer-box p:last-child {
    margin-bottom: 0;
}

.checkbox-row {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 22px;
    color: #f0f0f0;
    line-height: 1.6;
}

.checkbox-row input {
    margin-top: 4px;
}

.form-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.estimate-process {
    background:
        linear-gradient(180deg, rgba(58,58,58,0.12), rgba(18,18,18,0.08)),
        #242424;
}

.estimate-cta {
    background:
        linear-gradient(180deg, rgba(50,50,50,0.30), rgba(8,8,8,0.94)),
        radial-gradient(circle at center, rgba(255,106,0,0.10), transparent 38%);
}

@media (max-width: 1080px) {
    .estimate-hero-inner,
    .request-info-grid,
    .photo-guide-grid,
    .after-submit-grid,
    .estimate-summary-grid,
    .form-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 760px) {
    .estimate-hero-inner,
    .request-info-grid,
    .photo-guide-grid,
    .after-submit-grid,
    .estimate-summary-grid,
    .form-grid,
    .estimate-hero-actions,
    .form-actions {
        grid-template-columns: 1fr;
        display: grid;
    }

    .estimate-hero {
        padding: 72px 0 58px;
    }

    .estimate-hero h1 {
        font-size: clamp(36px, 10vw, 52px);
    }

    .estimate-hero p,
    .request-info-card p,
    .photo-guide-card p,
    .process-tile p {
        font-size: 15px;
    }

    .estimate-form,
    .estimate-side-card {
        padding: 22px;
    }
}
