/* =====================================================
   TJ TOWBARS LTD — style.css
   Theme: Dark Charcoal + Orange (mobile-first)
   ===================================================== */

/* ---- RESET & BASE ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    background-color: #1a1a1a;
    background-image: url('/images/texture-bg.jpg');
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: #e0e0e0;
    line-height: 1.6;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }

/* ---- VARIABLES ---- */
:root {
    --orange: #e8620a;
    --orange-hover: #ff7420;
    --dark: #1a1a1a;
    --darker: #111111;
    --card: #242424;
    --card-border: #333333;
    --text: #e0e0e0;
    --text-muted: #999999;
    --white: #ffffff;
    --radius: 8px;
    --shadow: 0 4px 20px rgba(0,0,0,0.4);
}

/* ---- CONTAINER ---- */
.container {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 16px;
}

/* ---- HERO CAROUSEL ---- */
.hero-carousel {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.hero-carousel-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.2s ease-in-out;
}
@media (max-width: 767px) {
    .hero-carousel-slide { background-position: 75% center; }
}
.hero-carousel-slide.active { opacity: 1; }

/* ---- BUTTONS ---- */
.btn {
    display: inline-block;
    padding: 14px 28px;
    border-radius: var(--radius);
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    border: none;
    transition: background 0.2s, transform 0.1s;
    text-align: center;
    line-height: 1.2;
}
.btn:active { transform: scale(0.98); }
.btn-orange { background: var(--orange); color: var(--white); }
.btn-orange:hover { background: var(--orange-hover); }
.btn-outline {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255,255,255,0.6);
}
.btn-outline:hover { border-color: var(--white); }
.btn-full { width: 100%; display: block; padding: 16px; font-size: 1.05rem; }

/* ---- SECTION TITLES ---- */
.section-title {
    font-size: clamp(1.5rem, 4vw, 2rem);
    font-weight: 800;
    color: var(--white);
    text-align: center;
    margin-bottom: 8px;
}
.section-sub {
    text-align: center;
    color: #fff;
    margin-bottom: 40px;
    font-size: 1rem;
}

/* ---- RICH TEXT CONTENT HEADINGS & LINKS ---- */
.section-sub h3, .intro-text h3, .page-intro h3, .hero-sub h3, .quote-intro-body h3, .quote-intro-panel h3 {
    color: var(--orange);
    font-size: 1.05rem;
    font-weight: 700;
    margin: 20px 0 8px;
}
.section-sub h2, .intro-text h2, .page-intro h2, .hero-sub h2, .quote-intro-body h2, .quote-intro-panel h2 {
    color: var(--orange);
    font-size: 1.25rem;
    font-weight: 700;
    margin: 28px 0 10px;
}
.section-sub h4, .intro-text h4, .page-intro h4, .hero-sub h4, .quote-intro-body h4, .quote-intro-panel h4 {
    color: var(--orange);
    font-size: .95rem;
    font-weight: 700;
    margin: 16px 0 6px;
}
.section-sub blockquote, .intro-text blockquote, .page-intro blockquote, .hero-sub blockquote,
.quote-intro-body blockquote, .home-mid-content blockquote {
    border-left: 3px solid var(--orange);
    margin: 12px 0;
    padding: 8px 16px;
    color: #aaa;
    font-style: italic;
}
.section-sub a, .intro-text a, .page-intro a, .hero-sub a {
    color: var(--orange);
    text-decoration: underline;
    font-weight: 600;
}
.section-sub a:hover, .intro-text a:hover, .page-intro a:hover, .hero-sub a:hover {
    color: #fff;
}

/* =====================================================
   HEADER
   ===================================================== */
.site-header {
    background-color: #111;
    background-image: url('/images/texture-bg.jpg');
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
    border-bottom: 1px solid #2a2a2a;
    position: sticky;
    top: 0;
    z-index: 100;
    padding: 0;
    /* extra bottom space so logo can overlap below */
    padding-bottom: 0;
}
.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
    min-height: 72px;
    padding: 0 16px;
}

/* ── LARGE OVERLAPPING LOGO ── */
.logo-link {
    position: relative;
    z-index: 110;
    display: block;
    /* Pull logo down so it overlaps the bottom of the header */
    margin-bottom: -30px;
}
.logo-link img {
    width: 110px;
    height: 110px;
    object-fit: contain;
    /* Subtle drop shadow so it pops against dark/light BGs */
    filter: drop-shadow(0 4px 12px rgba(0,0,0,0.7));
    transition: transform 0.2s;
}
.logo-link:hover img { transform: scale(1.05); }

/* Push hero down so logo overlap doesn't cover hero text */
.hero { margin-top: 0; }

.header-cta {
    font-size: 0.9rem;
    padding: 10px 18px;
    white-space: nowrap;
}
.main-nav {
    width: 100%;
    display: flex;
    gap: 20px;
    justify-content: center;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #fff;
    padding-bottom: 8px;
}
.main-nav a { transition: color 0.15s; }
.main-nav a:hover { color: var(--orange); }
.main-nav a.active { color: var(--orange); }

/* ── HAMBURGER BUTTON ── */
.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 42px;
    height: 42px;
    background: transparent;
    border: 1px solid #3a3a3a;
    border-radius: var(--radius);
    cursor: pointer;
    padding: 8px;
    flex-shrink: 0;
}
.burger-bar {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: transform 0.25s, opacity 0.25s;
    transform-origin: center;
}
/* Animate to X when open */
.nav-toggle.open .burger-bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open .burger-bar:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-toggle.open .burger-bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── MOBILE DROPDOWN NAV ── */
.mobile-nav {
    display: none;
    flex-direction: column;
    background: #0d0d0d;
    border-top: 1px solid #2a2a2a;
    padding: 8px 0 16px;
}
.mobile-nav.open { display: flex; }
.mobile-nav-link {
    padding: 13px 20px;
    font-size: 1rem;
    font-weight: 600;
    color: #fff;
    border-bottom: 1px solid #1a1a1a;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    transition: color 0.15s, background 0.15s;
}
.mobile-nav-link:hover,
.mobile-nav-link.active { color: var(--orange); background: rgba(232,98,10,0.06); }
.mobile-nav-call {
    color: var(--orange) !important;
    border-top: 1px solid #2a2a2a;
    margin-top: 8px;
    text-transform: none;
    letter-spacing: 0;
}

/* ── RESPONSIVE BREAKPOINTS ── */
@media (max-width: 767px) {
    /* Show hamburger, hide desktop nav */
    .nav-toggle { display: flex; }
    .main-nav   { display: none; }
    .header-inner { flex-wrap: nowrap; align-items: center; }
}
@media (min-width: 768px) {
    /* Hide mobile nav, show desktop nav */
    .mobile-nav { display: none !important; }
    .nav-toggle { display: none !important; }
    .main-nav   { display: flex; width: auto; padding-bottom: 0; }
    .header-inner { flex-wrap: nowrap; }
}
@media (max-width: 480px) {
    .logo-link img { width: 80px; height: 80px; }
    .logo-link { margin-bottom: -20px; }
    .header-cta { font-size: 0.82rem; padding: 9px 14px; }
}

/* =====================================================
   HERO
   ===================================================== */
.hero {
    position: relative;
    min-height: 560px;
    display: flex;
    align-items: center;
    background-color: #1a1a1a;
    overflow: hidden;
    /* extra top padding to clear the overlapping logo */
    padding-top: 40px;
}
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.82) 60%, rgba(232,98,10,0.15));
}
.hero-content {
    position: relative;
    z-index: 2;
    padding: 60px 16px;
    max-width: 680px;
}
.hero-content h1 {
    font-size: clamp(1.8rem, 5vw, 2.8rem);
    font-weight: 800;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 16px;
}
.hero-sub {
    color: #ccc;
    font-size: 1.05rem;
    margin-bottom: 28px;
}
.hero-btns {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 28px;
}
.hero-badges {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.hero-badges li {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 20px;
    padding: 6px 14px;
    font-size: 0.85rem;
    color: #ccc;
}

/* =====================================================
   INTRO SECTION (editable SEO block above Services)
   ===================================================== */
.intro-section {
    padding: 56px 0 16px;
    background: transparent;
}
.intro-section .section-title {
    margin-bottom: 16px;
}
.intro-text {
    max-width: 100%;
    margin: 0 auto;
    color: #e0e0e0;
    font-size: 1rem;
    line-height: 1.8;
    text-align: center;
}

/* =====================================================
   SERVICES
   ===================================================== */
.services {
    padding: 64px 0;
    background: transparent;
}
.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}
@media (min-width: 480px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 900px) { .services-grid { grid-template-columns: repeat(3, 1fr); } }

.service-card {
    background: var(--card);
    border: 1px solid var(--card-border);
    border-radius: var(--radius);
    padding: 24px;
    transition: border-color 0.2s, transform 0.2s;
}
.service-card:hover {
    border-color: var(--orange);
    transform: translateY(-3px);
}
.service-icon { font-size: 2rem; margin-bottom: 12px; }
.service-card h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 8px;
}
.service-card p { font-size: 0.9rem; color: #fff; margin-bottom: 12px; }
.service-price {
    display: inline-block;
    background: var(--orange);
    color: var(--white);
    font-weight: 700;
    font-size: 0.85rem;
    padding: 4px 12px;
    border-radius: 20px;
}

/* =====================================================
   QUOTE FORM
   ===================================================== */
.quote-section {
    padding: 64px 0;
    background: transparent;
}
/* Two-column quote layout */
.quote-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
}
.quote-intro-panel {
    position: sticky;
    top: 24px;
    background: rgba(0,0,0,0.55);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 12px;
    padding: 32px 28px;
    backdrop-filter: blur(4px);
}
.quote-intro-heading {
    color: var(--orange);
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 16px;
    line-height: 1.3;
}
.quote-intro-body {
    color: #ccc;
    font-size: .97rem;
    line-height: 1.8;
}
.quote-intro-body p  { margin-bottom: 12px; }
.quote-intro-body p:last-child { margin-bottom: 0; }
.quote-intro-body strong { color: var(--white); }
.quote-intro-body ul { margin-left: 18px; margin-bottom: 12px; }
.quote-intro-body li { margin-bottom: 6px; }
.quote-form-wrap { width: 100%; }
@media (max-width: 768px) {
    .quote-layout { grid-template-columns: 1fr; gap: 32px; }
    .quote-intro-panel { position: static; }
}

.quote-form {
    max-width: 560px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
    background: rgba(0,0,0,0.55);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 12px;
    padding: 32px;
    box-shadow: 0 0 32px rgba(255,255,255,0.06), 0 8px 32px rgba(0,0,0,0.5);
}
.form-row { display: flex; flex-direction: column; gap: 6px; }
.form-row label {
    font-size: 0.85rem;
    font-weight: 600;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}
.form-row input,
.form-row select,
.form-row textarea {
    background: #2a2a2a;
    border: 1px solid #3a3a3a;
    border-radius: var(--radius);
    color: var(--white);
    padding: 12px 14px;
    font-size: 1rem;
    width: 100%;
    font-family: inherit;
    transition: border-color 0.2s;
    -webkit-appearance: none;
}
.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
    outline: none;
    border-color: var(--orange);
}
.form-row select {
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23ffffff' stroke-width='2' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 38px;
}
.form-row select option {
    background: #2a2a2a;
    color: #e0e0e0;
}
.form-row textarea { resize: vertical; }

/* =====================================================
   GALLERY
   ===================================================== */
.gallery-section {
    padding: 64px 0;
    background: transparent;
}
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
}
@media (min-width: 600px) { .gallery-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 900px) { .gallery-grid { grid-template-columns: repeat(4, 1fr); } }

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius);
    aspect-ratio: 4/3;
    background: #2a2a2a;
}
.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}
.gallery-item:hover img { transform: scale(1.05); }
.gallery-item-clickable { cursor: zoom-in; }
.gallery-item-clickable::after {
    content: '🔍';
    position: absolute;
    top: 8px; right: 8px;
    background: rgba(0,0,0,.6);
    color: #fff;
    border-radius: 50%;
    width: 28px; height: 28px;
    display: flex; align-items: center; justify-content: center;
    font-size: .8rem;
    opacity: 0;
    transition: opacity .2s;
    pointer-events: none;
}
.gallery-item-clickable:hover::after { opacity: 1; }
.gallery-empty { text-align: center; color: #fff; padding: 40px 0; }

/* =====================================================
   HOME MID SECTION
   ===================================================== */
.home-mid-section {
    padding: 48px 0;
    background: transparent;
}
.home-mid-content {
    max-width: 860px;
    margin: 0 auto;
    color: var(--text);
    line-height: 1.75;
}
.home-mid-content p { margin-bottom: 1em; }
.home-mid-content h1 { color: #fff; margin-bottom: .6em; font-size: clamp(1.4rem,3vw,2rem); }
.home-mid-content h2 { color: var(--orange); margin-bottom: .6em; }
.home-mid-content h3 { color: var(--orange); margin-bottom: .5em; }
.home-mid-content h4 { color: var(--orange); margin-bottom: .4em; }

/* =====================================================
   WHY US
   ===================================================== */
.why-us {
    padding: 64px 0;
    background: transparent;
}
.why-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}
@media (min-width: 700px) { .why-grid { grid-template-columns: repeat(4, 1fr); } }

.why-card {
    background: var(--card);
    border: 1px solid var(--card-border);
    border-radius: var(--radius);
    padding: 24px 16px;
    text-align: center;
}
.why-icon { font-size: 2.2rem; display: block; margin-bottom: 10px; }
.why-card h3 {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 8px;
}
.why-card p { font-size: 0.85rem; color: #fff; }

/* =====================================================
   FOOTER
   ===================================================== */
.site-footer {
    background: #0d0d0d;
    border-top: 1px solid #2a2a2a;
    padding: 52px 0 0;
}
.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 36px;
    padding-bottom: 40px;
}
@media (min-width: 640px)  { .footer-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 900px)  { .footer-grid { grid-template-columns: 2fr 1fr 1.5fr; } }

/* Col 1 */
.footer-logo-wrap {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
}
.footer-logo-wrap span {
    font-weight: 800;
    font-size: 1rem;
    color: var(--white);
    line-height: 1.3;
}
.footer-blurb {
    color: #888;
    font-size: .88rem;
    line-height: 1.7;
}

/* Col 2 */
.footer-col-title {
    font-size: .8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .06em;
    color: var(--orange);
    margin-bottom: 14px;
}
.footer-col nav {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.footer-col nav a {
    color: #bbb;
    font-size: .9rem;
    transition: color .15s;
}
.footer-col nav a:hover { color: var(--orange); }

/* Col 3 */
.footer-contact-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #bbb;
    font-size: .9rem;
}
a.footer-contact-item { color: var(--orange); font-weight: 600; }
a.footer-contact-item:hover { color: #fff; }
.footer-contact-item svg { flex-shrink: 0; color: var(--orange); }

/* Bottom bar */
.footer-bottom {
    border-top: 1px solid #1e1e1e;
    padding: 14px 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 8px;
    max-width: 1100px;
    margin: 0 auto;
}
.footer-bottom p {
    font-size: .78rem;
    color: #444;
}
.footer-legal-links {
    display: flex;
    gap: 20px;
}
.footer-legal-links a {
    font-size: .78rem;
    color: #555;
    transition: color .15s;
}
.footer-legal-links a:hover { color: var(--orange); }

/* =====================================================
   PAGE HERO (inner pages)
   ===================================================== */
.page-hero {
    background: transparent;
    border-bottom: 1px solid #2a2a2a;
    padding: 56px 16px 24px;
}
.page-hero h1 {
    font-size: clamp(1.6rem, 4vw, 2.4rem);
    font-weight: 800;
    color: var(--white);
    margin-bottom: 12px;
}
.page-intro {
    color: #fff;
    font-size: 1rem;
    max-width: 100%;
    line-height: 1.7;
}

/* ── RTE INLINE IMAGES ────────────────────────────────── */
.page-intro img,
.section-sub img,
.intro-text img,
.hero-sub img,
.faq-section img,
.legal-content img {
    max-width: 100%;
    height: auto;
    border-radius: 6px;
}
/* Float left — text wraps right */
.page-intro img[style*="float:left"],
.section-sub img[style*="float:left"],
.intro-text img[style*="float:left"],
.hero-sub img[style*="float:left"] {
    float: left;
    margin: 0 18px 10px 0;
}
/* Float right — text wraps left */
.page-intro img[style*="float:right"],
.section-sub img[style*="float:right"],
.intro-text img[style*="float:right"],
.hero-sub img[style*="float:right"] {
    float: right;
    margin: 0 0 10px 18px;
}
/* Clearfix so floated images don't overflow their containers */
.page-intro::after,
.section-sub::after,
.intro-text::after,
.hero-sub::after {
    content: '';
    display: table;
    clear: both;
}
@media (max-width: 560px) {
    .page-intro img[style*="float"],
    .section-sub img[style*="float"],
    .intro-text img[style*="float"],
    .hero-sub img[style*="float"] {
        float: none !important;
        display: block;
        margin: 12px auto !important;
        width: 100% !important;
    }
}

/* =====================================================
   LEGAL PAGES (Privacy Policy, Terms & Conditions)
   ===================================================== */
.legal-section {
    padding: 48px 0 64px;
    background: transparent;
}
.legal-content {
    max-width: 860px;
}
.legal-content h2 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--orange);
    margin: 32px 0 10px;
    padding-top: 8px;
    border-top: 1px solid rgba(255,255,255,0.07);
}
.legal-content h2:first-child {
    border-top: none;
    margin-top: 0;
}
.legal-content p {
    color: #ccc;
    font-size: .95rem;
    line-height: 1.8;
    margin-bottom: 12px;
}
.legal-content ul {
    color: #ccc;
    font-size: .95rem;
    line-height: 1.8;
    margin: 0 0 12px 20px;
}
.legal-content ul li {
    margin-bottom: 4px;
}
.legal-content a {
    color: var(--orange);
    text-decoration: underline;
}

/* =====================================================
   AREAS GRID
   ===================================================== */
.areas-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}
@media (min-width: 500px) {
    .areas-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 900px) {
    .areas-grid { grid-template-columns: repeat(4, 1fr); }
}
.area-card {
    background: rgba(0,0,0,0.45);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius);
    padding: 22px 20px;
}
.area-card h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--orange);
    margin-bottom: 12px;
}
.area-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.area-card ul li {
    color: #ccc;
    font-size: .9rem;
    padding: 4px 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}
.area-card ul li:last-child { border-bottom: none; }
.area-card p {
    color: #ccc;
    font-size: .9rem;
    line-height: 1.6;
}
.area-card--highlight {
    border-color: rgba(232,98,10,0.4);
    background: rgba(232,98,10,0.08);
}
.area-card--highlight h3 {
    color: #fff;
}

/* =====================================================
   CTA STRIP
   ===================================================== */
.cta-strip {
    background:
        radial-gradient(ellipse 80% 120% at 50% 50%,
            #b84d00 0%,
            #7a2e00 40%,
            #1a1a1a 100%);
    border-top: 1px solid rgba(232,98,10,0.25);
    border-bottom: 1px solid rgba(232,98,10,0.25);
    padding: 40px 0;
}
.cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}
.cta-inner p { color: #111111; font-size: 1.05rem; font-weight: 600; }
.cta-inner p strong { color: #111111; }
.cta-btns { display: flex; gap: 12px; flex-wrap: wrap; }
/* Buttons keep their own styles — no overrides here */

/* =====================================================
   GALLERY CAPTION
   ===================================================== */
.gallery-caption {
    display: block;
    font-size: 0.75rem;
    color: #fff;
    padding: 6px 4px 0;
    text-align: center;
}

/* =====================================================
   CONTACT PAGE
   ===================================================== */
.contact-section { padding: 56px 0; }
.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
}
@media (min-width: 700px) {
    .contact-grid { grid-template-columns: 1fr 1fr; }
}
.contact-info {
    background: rgba(0,0,0,0.55);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 12px;
    padding: 28px;
    box-shadow: 0 0 32px rgba(255,255,255,0.06), 0 8px 32px rgba(0,0,0,0.5);
}
.contact-form-wrap {
    background: rgba(0,0,0,0.55);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 12px;
    padding: 28px;
    box-shadow: 0 0 32px rgba(255,255,255,0.06), 0 8px 32px rgba(0,0,0,0.5);
}
.contact-info h2,
.contact-form-wrap h2 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 20px;
}
.contact-item {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    margin-bottom: 20px;
}
.contact-icon { font-size: 1.4rem; flex-shrink: 0; margin-top: 2px; }
.contact-item strong { display: block; color: var(--white); font-size: 0.85rem; margin-bottom: 2px; }
.contact-item a, .contact-item p { color: #fff; font-size: 0.95rem; }
.contact-item a:hover { color: var(--orange); }

/* =====================================================
   FORM SUCCESS BOX
   ===================================================== */
.form-success-box {
    max-width: 480px;
    margin: 0 auto;
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid rgba(39,174,96,0.3);
    box-shadow: 0 8px 32px rgba(0,0,0,0.4);
}
.form-success-header {
    background: #b85a00;   /* dark orange header */
    color: #fff;
    font-size: 1.25rem;
    font-weight: 800;
    text-align: center;
    padding: 18px 24px;
    letter-spacing: 0.02em;
}
.form-success-body {
    background: rgba(39,174,96,0.1);
    border-top: 2px solid rgba(39,174,96,0.4);
    padding: 28px 24px;
    text-align: center;
}
.form-success-body p {
    color: #a8f0c0;
    font-size: 1.05rem;
    line-height: 1.8;
}
.form-success-body p:first-child {
    font-weight: 600;
    font-size: 1.1rem;
    color: #2ecc71;
}

/* =====================================================
   FORM FIELD ERRORS
   ===================================================== */
.form-row.field-error input,
.form-row.field-error select,
.form-row.field-error textarea {
    border-color: #e74c3c !important;
    background: rgba(231,76,60,0.06) !important;
}
.field-error-msg {
    display: block;
    color: #e74c3c;
    font-size: 0.82rem;
    margin-top: 5px;
    font-weight: 600;
}

/* Legacy success (kept for compatibility) */
.quote-success {
    background: rgba(39,174,96,0.1);
    border: 1px solid #27ae60;
    border-radius: var(--radius);
    padding: 24px;
    text-align: center;
    color: #2ecc71;
}
.quote-success h2 { color: #2ecc71; margin-bottom: 8px; }

/* =====================================================
   NAV ACTIVE STATE
   ===================================================== */
.main-nav a.active { color: var(--orange); }

/* =====================================================
   UTILITY
   ===================================================== */
@media (max-width: 400px) {
    .hero-btns { flex-direction: column; }
    .btn { width: 100%; }
    .cta-inner { flex-direction: column; text-align: center; }
}
