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

:root {
    --color-primary: #E8730C;
    --color-primary-dark: #C75F00;
    --color-primary-light: #FFF3E8;
    --color-dark: #1A1A2E;
    --color-text: #333;
    --color-text-light: #666;
    --color-bg: #FFFFFF;
    --color-bg-alt: #F7F8FA;
    --color-border: #E2E5EA;
    --color-success: #28A745;
    --radius: 8px;
    --radius-lg: 12px;
    --shadow: 0 2px 8px rgba(0,0,0,0.08);
    --shadow-lg: 0 8px 30px rgba(0,0,0,0.12);
    --font: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    --max-width: 1140px;
    --header-height: 72px;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: var(--header-height);
}

body {
    font-family: var(--font);
    color: var(--color-text);
    line-height: 1.6;
    background: var(--color-bg);
    -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: var(--color-primary); text-decoration: none; }
a:hover { color: var(--color-primary-dark); }

.container {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* ===== Buttons ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 28px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: var(--radius);
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
    background: var(--color-primary);
    color: #fff;
}

.btn:hover {
    background: var(--color-primary-dark);
    color: #fff;
    transform: translateY(-1px);
    box-shadow: var(--shadow);
}

.btn--outline {
    background: transparent;
    border-color: #fff;
    color: #fff;
}
.btn--outline:hover {
    background: #fff;
    color: var(--color-primary);
}

.btn--secondary {
    background: var(--color-primary-light);
    color: var(--color-primary);
    font-size: 0.9rem;
    padding: 10px 20px;
}
.btn--secondary:hover {
    background: var(--color-primary);
    color: #fff;
}

.btn--large { padding: 16px 36px; font-size: 1.1rem; }
.btn--small { padding: 8px 18px; font-size: 0.875rem; }
.btn--full { width: 100%; }

.btn__icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

/* ===== Header ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--color-border);
    height: var(--header-height);
}

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

.header__logo {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    line-height: 1.2;
}

.header__logo-text {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--color-dark);
    letter-spacing: -0.5px;
}

.header__logo-sub {
    font-size: 0.7rem;
    color: var(--color-text-light);
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.header__nav {
    display: none;
    gap: 8px;
}

.header__link {
    padding: 8px 14px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--color-text);
    text-decoration: none;
    border-radius: var(--radius);
    transition: background 0.2s, color 0.2s;
}

.header__link:hover {
    background: var(--color-bg-alt);
    color: var(--color-primary);
}

.header__link--phone {
    font-weight: 700;
    color: var(--color-primary);
}

.header__cta {
    display: none;
}

.header__burger {
    display: flex;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

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

.header__burger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}
.header__burger.active span:nth-child(2) {
    opacity: 0;
}
.header__burger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile nav */
.header__nav.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: var(--header-height);
    left: 0;
    right: 0;
    background: #fff;
    border-bottom: 1px solid var(--color-border);
    padding: 16px 20px;
    box-shadow: var(--shadow-lg);
}

.header__nav.open .header__link {
    padding: 12px 16px;
    font-size: 1rem;
}

/* ===== Hero ===== */
.hero {
    padding: 120px 0 60px;
    background: linear-gradient(135deg, var(--color-dark) 0%, #2D2D4A 100%);
    color: #fff;
    text-align: center;
    margin-top: var(--header-height);
}

.hero__title {
    font-size: 2.2rem;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

.hero__subtitle {
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto 32px;
    opacity: 0.9;
    line-height: 1.6;
}

.hero__actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
    margin-bottom: 32px;
}

.hero__trust {
    font-size: 0.85rem;
    opacity: 0.7;
    letter-spacing: 0.5px;
}

/* ===== Section Titles ===== */
.section__title {
    font-size: 1.8rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 8px;
    color: var(--color-dark);
    letter-spacing: -0.3px;
}

.section__subtitle {
    text-align: center;
    color: var(--color-text-light);
    max-width: 560px;
    margin: 0 auto 40px;
    font-size: 1.05rem;
}

/* ===== Skip Sizes ===== */
.skips {
    padding: 64px 0;
}

.skips__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 32px;
}

.skip-card {
    position: relative;
    background: #fff;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: 28px 24px;
    text-align: center;
    transition: box-shadow 0.2s, transform 0.2s;
}

.skip-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-2px);
}

.skip-card__icon {
    margin-bottom: 16px;
}

.skip-svg {
    width: 100px;
    height: 66px;
    margin: 0 auto;
    color: var(--color-primary);
}

.skip-card__name {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 4px;
}

.skip-card__dims {
    font-size: 0.8rem;
    color: var(--color-text-light);
    margin-bottom: 12px;
}

.skip-card__desc {
    font-size: 0.95rem;
    color: var(--color-text);
    margin-bottom: 8px;
    line-height: 1.5;
}

.skip-card__suits {
    font-size: 0.85rem;
    color: var(--color-text-light);
    margin-bottom: 16px;
}

.skip-card__badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: var(--color-primary);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.skips__note {
    text-align: center;
    color: var(--color-text-light);
    font-size: 0.95rem;
}

.skips__note a {
    white-space: nowrap;
}

/* ===== How It Works ===== */
.how {
    padding: 64px 0;
    background: var(--color-bg-alt);
}

.how__steps {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    max-width: 800px;
    margin: 0 auto;
}

.step {
    text-align: center;
}

.step__number {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-primary);
    color: #fff;
    font-size: 1.4rem;
    font-weight: 800;
    border-radius: 50%;
    margin: 0 auto 16px;
}

.step__title {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 8px;
}

.step__desc {
    color: var(--color-text-light);
    max-width: 280px;
    margin: 0 auto;
    font-size: 0.95rem;
}

/* ===== Why Choose Us ===== */
.why {
    padding: 64px 0;
}

.why__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 28px;
}

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

.why__icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-primary-light);
    border-radius: var(--radius);
    color: var(--color-primary);
}

.why__icon svg {
    width: 22px;
    height: 22px;
}

.why__item h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 4px;
}

.why__item p {
    font-size: 0.9rem;
    color: var(--color-text-light);
    line-height: 1.5;
}

/* ===== Service Areas ===== */
.areas {
    padding: 64px 0;
    background: var(--color-bg-alt);
}

.areas__list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-bottom: 24px;
}

.area-tag {
    padding: 8px 20px;
    background: #fff;
    border: 1px solid var(--color-border);
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--color-text);
    transition: all 0.2s;
}

.area-tag:first-child {
    background: var(--color-primary);
    color: #fff;
    border-color: var(--color-primary);
    font-weight: 600;
}

.areas__note {
    text-align: center;
    color: var(--color-text-light);
    font-size: 0.9rem;
}

/* ===== FAQ ===== */
.faq {
    padding: 64px 0;
}

.faq__list {
    max-width: 720px;
    margin: 0 auto;
}

.faq__item {
    border-bottom: 1px solid var(--color-border);
}

.faq__item:first-child {
    border-top: 1px solid var(--color-border);
}

.faq__question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    padding: 18px 0;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-dark);
    font-family: var(--font);
    line-height: 1.4;
}

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

.faq__chevron {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    transition: transform 0.3s;
    color: var(--color-text-light);
}

.faq__item.open .faq__chevron {
    transform: rotate(180deg);
}

.faq__answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq__item.open .faq__answer {
    max-height: 300px;
}

.faq__answer p {
    padding-bottom: 18px;
    color: var(--color-text-light);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ===== CTA / Quote Form ===== */
.cta {
    padding: 64px 0;
    background: linear-gradient(135deg, var(--color-dark) 0%, #2D2D4A 100%);
    color: #fff;
}

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

.cta__title {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 12px;
}

.cta__desc {
    opacity: 0.9;
    margin-bottom: 24px;
    font-size: 1.05rem;
    line-height: 1.6;
}

.cta__phone {
    margin-bottom: 16px;
}

.cta__email {
    font-size: 0.9rem;
    opacity: 0.8;
}

.cta__email a {
    color: #fff;
    text-decoration: underline;
}

.cta__form-wrap {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 32px 24px;
    box-shadow: var(--shadow-lg);
}

.quote-form__title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 24px;
    text-align: center;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 14px;
    font-size: 1rem;
    font-family: var(--font);
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    background: var(--color-bg-alt);
    color: var(--color-text);
    transition: border-color 0.2s, box-shadow 0.2s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(232, 115, 12, 0.15);
}

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

.form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23666' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    padding-right: 40px;
}

/* Form success state */
.quote-form.submitted .form-group,
.quote-form.submitted .quote-form__title,
.quote-form.submitted .btn {
    display: none;
}

.quote-form__success {
    display: none;
    text-align: center;
    padding: 20px 0;
}

.quote-form.submitted .quote-form__success {
    display: block;
}

.quote-form__success-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 16px;
    background: #E8F5E9;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-success);
}

.quote-form__success-icon svg {
    width: 28px;
    height: 28px;
}

.quote-form__success h3 {
    font-size: 1.2rem;
    color: var(--color-dark);
    margin-bottom: 8px;
}

.quote-form__success p {
    color: var(--color-text-light);
    font-size: 0.95rem;
}

/* ===== Footer ===== */
.footer {
    padding: 40px 0;
    background: #111;
    color: #aaa;
    font-size: 0.85rem;
}

.footer__inner {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    text-align: center;
}

.footer__company {
    font-weight: 700;
    color: #fff;
    margin-bottom: 4px;
}

.footer__heading {
    font-weight: 700;
    color: #fff;
    margin-bottom: 4px;
}

.footer a {
    color: #ccc;
}

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

.footer__info p,
.footer__services p,
.footer__legal p {
    line-height: 1.6;
}

/* ===== Responsive: Tablet (640px+) ===== */
@media (min-width: 640px) {
    .hero__title {
        font-size: 2.8rem;
    }

    .hero__actions {
        flex-direction: row;
        justify-content: center;
    }

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

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

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

    .cta__form-wrap {
        padding: 36px 32px;
    }

    .footer__inner {
        grid-template-columns: repeat(3, 1fr);
        text-align: left;
    }
}

/* ===== Responsive: Desktop (960px+) ===== */
@media (min-width: 960px) {
    .header__nav {
        display: flex;
    }

    .header__cta {
        display: inline-flex;
    }

    .header__burger {
        display: none;
    }

    .hero {
        padding: 100px 0 80px;
    }

    .hero__title {
        font-size: 3.2rem;
    }

    .hero__subtitle {
        font-size: 1.2rem;
    }

    .section__title {
        font-size: 2.2rem;
    }

    .skips {
        padding: 80px 0;
    }

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

    /* Make last 2 cards center in their own row */
    .skips__grid .skip-card:nth-child(4) {
        grid-column: 1 / 2;
        justify-self: end;
        max-width: calc(100% - 10px);
    }

    .skips__grid .skip-card:nth-child(5) {
        grid-column: 2 / 3;
        justify-self: start;
        max-width: calc(100% - 10px);
    }

    .how { padding: 80px 0; }
    .why { padding: 80px 0; }
    .areas { padding: 80px 0; }
    .faq { padding: 80px 0; }
    .cta { padding: 80px 0; }

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

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

/* ===== Large Desktop (1200px+) ===== */
@media (min-width: 1200px) {
    .skips__grid {
        grid-template-columns: repeat(5, 1fr);
    }

    .skips__grid .skip-card:nth-child(4),
    .skips__grid .skip-card:nth-child(5) {
        grid-column: auto;
        justify-self: auto;
        max-width: none;
    }
}