/* ================================================
   JH Design Unlimited — Main Stylesheet
   ================================================ */

/* --- Variables --- */
:root {
    --red:        #cc0000;
    --red-hover:  #e60000;
    --red-dark:   #990000;
    --black:      #0d0d0d;
    --surface:    #161616;
    --surface-2:  #1e1e1e;
    --surface-3:  #252525;
    --text:       #f0f0f0;
    --text-muted: #999;
    --border:     rgba(255,255,255,0.07);
    --font:       'Montserrat', sans-serif;
    --header-h:   120px;
}

/* --- Reset --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    font-family: var(--font);
    background: var(--black);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* --- Carbon Fiber Texture --- */
.carbon-fiber,
.jhd-topbar,
.jhd-nav {
    background-color: #161616;
    background-image:
        linear-gradient(27deg, #111 5px, transparent 5px) 0 5px,
        linear-gradient(207deg, #111 5px, transparent 5px) 10px 0,
        linear-gradient(27deg, #1d1d1d 5px, transparent 5px) 0 10px,
        linear-gradient(207deg, #1d1d1d 5px, transparent 5px) 10px 5px,
        linear-gradient(90deg, #181818 10px, transparent 10px),
        linear-gradient(#1a1a1a 25%, #161616 25%, #161616 50%, transparent 50%, transparent 75%, #1f1f1f 75%);
    background-size: 20px 20px;
}

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

/* --- Buttons --- */
.jhd-btn {
    display: inline-block;
    padding: 13px 32px;
    font-family: var(--font);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    border-radius: 2px;
    cursor: pointer;
    border: 2px solid transparent;
    transition: background 0.2s, color 0.2s, border-color 0.2s, transform 0.15s;
}
.jhd-btn:hover { transform: translateY(-1px); }
.jhd-btn-red {
    background: var(--red);
    color: #fff;
    border-color: var(--red);
}
.jhd-btn-red:hover { background: var(--red-hover); border-color: var(--red-hover); }
.jhd-btn-outline {
    background: transparent;
    color: #fff;
    border-color: #fff;
}
.jhd-btn-outline:hover { background: #fff; color: var(--black); }

/* ================================================
   HEADER
   ================================================ */
.jhd-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0,0,0,0.6);
}

/* Top Bar */
.jhd-topbar {
    border-bottom: 1px solid var(--border);
}
.jhd-topbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1280px;
    margin: 0 auto;
    padding: 8px 24px;
}
.jhd-topbar-phone {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--text);
    letter-spacing: 0.05em;
    transition: color 0.2s;
}
.jhd-topbar-phone:hover { color: var(--red); }
.jhd-topbar-socials {
    display: flex;
    align-items: center;
    gap: 16px;
}
.jhd-topbar-socials a {
    color: var(--text-muted);
    transition: color 0.2s, transform 0.2s;
    display: flex;
    align-items: center;
}
.jhd-topbar-socials a:hover { color: var(--red); transform: translateY(-1px); }

/* Main Nav */
.jhd-nav {
    border-bottom: 3px solid var(--red);
}
.jhd-nav-inner {
    display: flex;
    align-items: center;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    gap: 24px;
    height: 72px;
}
.jhd-logo { flex-shrink: 0; display: flex; align-items: center; }
.jhd-logo img { height: 50px; width: auto; }

/* Nav Menu */
.jhd-nav-menu-wrap { flex: 1; display: flex; justify-content: center; }
.jhd-menu {
    display: flex;
    align-items: stretch;
    gap: 0;
    height: 72px;
}
.jhd-menu > li {
    position: relative;
    display: flex;
    align-items: center;
}
.jhd-menu > li > .jhd-nav-link {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 0 18px;
    height: 100%;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text);
    position: relative;
    transition: color 0.2s, background 0.2s;
    white-space: nowrap;
}
.jhd-menu > li > .jhd-nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 70%;
    height: 3px;
    background: var(--red);
    transition: transform 0.25s ease;
}
.jhd-menu > li:hover > .jhd-nav-link,
.jhd-menu > li.current-menu-item > .jhd-nav-link {
    color: var(--red);
    background: rgba(204,0,0,0.06);
}
.jhd-menu > li:hover > .jhd-nav-link::after,
.jhd-menu > li.current-menu-item > .jhd-nav-link::after {
    transform: translateX(-50%) scaleX(1);
}
.jhd-arrow {
    font-size: 0.55rem;
    margin-top: 1px;
    transition: transform 0.2s;
}
.jhd-menu > li:hover > .jhd-nav-link .jhd-arrow {
    transform: rotate(180deg);
}

/* Dropdown */
.jhd-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 220px;
    background: var(--surface);
    border-top: 3px solid var(--red);
    border-bottom: 1px solid var(--border);
    box-shadow: 0 12px 40px rgba(0,0,0,0.5);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-6px);
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
    z-index: 200;
}
.jhd-menu > li:hover > .jhd-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.jhd-dropdown li { border-bottom: 1px solid var(--border); }
.jhd-dropdown li:last-child { border-bottom: none; }
.jhd-dropdown .jhd-nav-link {
    display: block;
    padding: 12px 20px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    color: var(--text-muted);
    border-left: 3px solid transparent;
    transition: color 0.15s, border-color 0.15s, background 0.15s, padding-left 0.15s;
}
.jhd-dropdown .jhd-nav-link:hover {
    color: var(--text);
    border-left-color: var(--red);
    background: rgba(204,0,0,0.08);
    padding-left: 26px;
}

/* Nav CTA */
.jhd-nav-cta {
    flex-shrink: 0;
    padding: 10px 24px;
    background: var(--red);
    color: #fff;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border-radius: 2px;
    border: 2px solid var(--red);
    transition: background 0.2s, transform 0.15s;
    white-space: nowrap;
}
.jhd-nav-cta:hover { background: var(--red-hover); transform: translateY(-1px); }

/* Mobile Toggle */
.jhd-mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 4px;
    margin-left: auto;
}
.jhd-mobile-toggle span {
    display: block;
    width: 26px;
    height: 2px;
    background: var(--text);
    transition: 0.3s;
}

/* ================================================
   HERO
   ================================================ */
.jhd-hero {
    position: relative;
    height: calc(100vh - 120px);
    min-height: 520px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.jhd-hero-video-wrap {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.jhd-hero-video-wrap video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.jhd-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(0,0,0,0.55) 0%,
        rgba(0,0,0,0.45) 60%,
        rgba(13,13,13,0.85) 100%
    );
}
.jhd-hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 0 24px;
    max-width: 900px;
}
.jhd-hero-headline {
    font-size: clamp(2.4rem, 6vw, 5rem);
    font-weight: 900;
    line-height: 1.05;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #fff;
    text-shadow: 0 2px 20px rgba(0,0,0,0.5);
    margin-bottom: 20px;
}
.jhd-hero-sub {
    font-size: clamp(0.95rem, 2vw, 1.2rem);
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.82);
    margin-bottom: 36px;
}

/* ================================================
   CERTIFIED
   ================================================ */
.jhd-certified {
    background: var(--surface);
    padding: 60px 0;
    border-bottom: 1px solid var(--border);
}
.jhd-section-label {
    text-align: center;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--red);
    margin-bottom: 36px;
}
.jhd-certified-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    align-items: center;
}
.jhd-cert-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 14px;
    padding: 24px;
}
.jhd-cert-logo-placeholder {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    background: var(--surface-2);
    border: 2px solid var(--border);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    text-align: center;
    padding: 16px;
}
.jhd-cert-logo-placeholder span {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--text);
    line-height: 1.3;
}
.jhd-cert-logo-placeholder small {
    font-size: 0.6rem;
    color: var(--text-muted);
    font-style: italic;
}
.jhd-cert-item p {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-muted);
    max-width: 200px;
}
.jhd-cert-item--trusted .jhd-trusted-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}
.jhd-trusted-number {
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--red);
    line-height: 1;
}
.jhd-trusted-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-muted);
    text-align: center;
    line-height: 1.5;
}

/* ================================================
   ONE STOP SHOP
   ================================================ */
.jhd-one-stop {
    background: var(--black);
    padding: 90px 0;
}
.jhd-one-stop-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}
.jhd-section-tag {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--red);
    margin-bottom: 12px;
}
.jhd-section-title {
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    font-weight: 900;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    line-height: 1.1;
    margin-bottom: 24px;
    color: var(--text);
}
.jhd-section-title.jhd-center { text-align: center; }
.jhd-section-sub {
    color: var(--text-muted);
    margin-bottom: 40px;
    font-size: 0.95rem;
}
.jhd-section-sub.jhd-center { text-align: center; }
.jhd-one-stop-lead {
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.75;
    margin-bottom: 28px;
}
.jhd-service-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 24px;
}
.jhd-service-tags span {
    padding: 6px 14px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 2px;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    color: var(--text-muted);
    transition: border-color 0.2s, color 0.2s;
}
.jhd-service-tags span:hover { border-color: var(--red); color: var(--text); }
.jhd-one-stop-cta-text {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-muted);
    font-style: italic;
    margin-bottom: 28px;
}

/* Process Steps */
.jhd-process-title {
    font-size: 1.4rem;
    font-weight: 900;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 8px;
    color: var(--text);
}
.jhd-process-sub {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 32px;
}
.jhd-process-steps {
    display: flex;
    flex-direction: column;
    gap: 0;
    list-style: none;
    counter-reset: none;
}
.jhd-process-steps li {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 20px 0;
    border-bottom: 1px solid var(--border);
    position: relative;
}
.jhd-process-steps li:last-child { border-bottom: none; }
.jhd-step-num {
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--red);
    line-height: 1;
    flex-shrink: 0;
    width: 48px;
    opacity: 0.9;
}
.jhd-process-steps strong {
    display: block;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--text);
    margin-bottom: 4px;
}
.jhd-process-steps p {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* ================================================
   PARALLAX — What Sets Us Apart
   ================================================ */
.jhd-parallax {
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
    background-color: var(--surface-2);
    position: relative;
}
.jhd-parallax-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.78);
}
.jhd-apart {
    padding: 90px 0;
}
.jhd-apart-inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}
.jhd-apart-content { }

/* Accordion */
.jhd-accordion { margin-bottom: 36px; }
.jhd-accordion-item {
    border-bottom: 1px solid rgba(255,255,255,0.1);
}
.jhd-accordion-item:first-child { border-top: 1px solid rgba(255,255,255,0.1); }
.jhd-accordion-trigger {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 18px 0;
    background: none;
    border: none;
    cursor: pointer;
    font-family: var(--font);
    font-size: 0.92rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--text);
    text-align: left;
    transition: color 0.2s;
}
.jhd-accordion-trigger:hover { color: var(--red); }
.jhd-accordion-icon {
    font-size: 1.3rem;
    font-weight: 400;
    color: var(--red);
    transition: transform 0.25s;
    flex-shrink: 0;
}
.jhd-accordion-item.active .jhd-accordion-icon { transform: rotate(45deg); }
.jhd-accordion-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
}
.jhd-accordion-body p {
    padding-bottom: 18px;
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.75;
}
.jhd-accordion-item.active .jhd-accordion-body { max-height: 300px; }

/* ================================================
   TESTIMONIALS
   ================================================ */
.jhd-testimonials {
    background: var(--surface);
    padding: 90px 0;
    border-top: 1px solid var(--border);
}
.jhd-reviews-placeholder { margin-top: 40px; }
.jhd-reviews-mock {
    text-align: center;
    padding: 48px;
    background: var(--surface-2);
    border-radius: 4px;
    border: 1px solid var(--border);
}
.jhd-reviews-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
}
.jhd-reviews-header strong {
    font-size: 1.1rem;
    font-weight: 800;
    letter-spacing: 0.12em;
}
.jhd-stars { color: #f5c518; font-size: 1.4rem; letter-spacing: 3px; }
.jhd-reviews-note {
    font-size: 0.82rem;
    color: var(--text-muted);
    font-style: italic;
}

/* ================================================
   SOCIAL FEED
   ================================================ */
.jhd-social-feed {
    background: var(--black);
    padding: 80px 0;
}
.jhd-ig-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--text-muted);
    font-size: 0.9rem;
    font-weight: 600;
    transition: color 0.2s;
}
.jhd-ig-link:hover { color: var(--red); }
.jhd-ig-placeholder {
    margin-top: 32px;
    min-height: 200px;
    background: var(--surface);
    border: 1px dashed var(--border);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    font-size: 0.85rem;
    font-style: italic;
}

/* ================================================
   FOOTER
   ================================================ */
.jhd-footer {
    background: var(--surface);
    border-top: 3px solid var(--red);
}
.jhd-footer-inner {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr;
    gap: 48px;
    max-width: 1280px;
    margin: 0 auto;
    padding: 60px 24px 40px;
}
.jhd-footer-logo { margin-bottom: 20px; }
.jhd-footer-logo img { height: 48px; width: auto; }
.jhd-footer-certs {
    display: flex;
    gap: 12px;
    margin-bottom: 24px;
}
.jhd-cert-placeholder {
    padding: 8px 14px;
    background: var(--surface-2);
    border: 1px solid var(--border);
    border-radius: 2px;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    color: var(--text-muted);
}
.jhd-footer-services strong {
    display: block;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.2em;
    color: var(--text);
    margin-bottom: 14px;
}
.jhd-footer-services-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6px 24px;
}
.jhd-footer-services-grid div {
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.jhd-footer-services-grid a {
    font-size: 0.82rem;
    color: var(--text-muted);
    transition: color 0.2s;
}
.jhd-footer-services-grid a:hover { color: var(--red); }
.jhd-footer-address-small {
    margin-top: 18px;
    font-size: 0.78rem;
    color: var(--text-muted);
}

.jhd-footer-company strong {
    display: block;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.2em;
    color: var(--text);
    margin-bottom: 16px;
}
.jhd-footer-company ul { display: flex; flex-direction: column; gap: 10px; }
.jhd-footer-company a {
    font-size: 0.85rem;
    color: var(--text-muted);
    transition: color 0.2s, padding-left 0.2s;
}
.jhd-footer-company a:hover { color: var(--red); padding-left: 4px; }

.jhd-footer-contact { display: flex; flex-direction: column; gap: 0; }
.jhd-footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 14px 0;
    font-size: 0.85rem;
    color: var(--text-muted);
}
.jhd-footer-contact-item svg { flex-shrink: 0; margin-top: 2px; color: var(--red); }
.jhd-footer-contact-item a { transition: color 0.2s; }
.jhd-footer-contact-item a:hover { color: var(--red); }
.jhd-footer-divider { height: 1px; background: var(--border); }
.jhd-footer-hours {
    padding-top: 14px;
    font-size: 0.82rem;
    color: var(--text-muted);
}
.jhd-footer-hours strong { color: var(--text); }

/* Google badge strip */
.jhd-footer-google {
    border-top: 1px solid var(--border);
}
.jhd-footer-google-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 20px 24px;
}
.jhd-google-badge {
    display: flex;
    align-items: center;
    gap: 14px;
}
.jhd-google-stars { color: #f5c518; font-size: 1rem; letter-spacing: 2px; }
.jhd-google-text { font-size: 0.8rem; color: var(--text-muted); font-weight: 600; }

/* Footer bottom bar */
.jhd-footer-bottom {
    background: rgba(0,0,0,0.4);
    border-top: 1px solid var(--border);
    text-align: center;
    padding: 16px 24px;
    font-size: 0.75rem;
    color: var(--text-muted);
}

/* ================================================
   PAGE / GENERIC
   ================================================ */
.jhd-main { padding: 80px 24px; min-height: 60vh; }
.jhd-page-title {
    font-size: 2rem;
    font-weight: 900;
    text-transform: uppercase;
    margin-bottom: 32px;
    padding-bottom: 16px;
    border-bottom: 3px solid var(--red);
}
.jhd-page-content p { margin-bottom: 16px; color: var(--text-muted); }

/* ================================================
   RESPONSIVE
   ================================================ */
@media (max-width: 1024px) {
    .jhd-one-stop-inner,
    .jhd-apart-inner { grid-template-columns: 1fr; gap: 48px; }
    .jhd-footer-inner { grid-template-columns: 1fr 1fr; }
    .jhd-footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 768px) {
    :root { --header-h: 100px; }

    .jhd-topbar { display: none; }

    .jhd-mobile-toggle { display: flex; }
    .jhd-nav-menu-wrap {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--surface);
        border-top: 1px solid var(--border);
        border-bottom: 3px solid var(--red);
        padding: 16px 0;
        box-shadow: 0 8px 24px rgba(0,0,0,0.5);
    }
    .jhd-nav-menu-wrap.open { display: block; }
    .jhd-menu { flex-direction: column; height: auto; gap: 0; }
    .jhd-menu > li { flex-direction: column; align-items: flex-start; }
    .jhd-menu > li > .jhd-nav-link {
        width: 100%;
        padding: 14px 24px;
        height: auto;
        border-bottom: 1px solid var(--border);
    }
    .jhd-menu > li > .jhd-nav-link::after { display: none; }
    .jhd-dropdown {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border-top: none;
        background: rgba(0,0,0,0.2);
        display: none;
    }
    .jhd-menu > li:hover > .jhd-dropdown,
    .jhd-menu > li.open > .jhd-dropdown { display: block; }

    .jhd-nav-cta { display: none; }

    .jhd-hero { height: 80vh; }

    .jhd-certified-grid { grid-template-columns: 1fr; }

    .jhd-footer-inner { grid-template-columns: 1fr; gap: 32px; }
    .jhd-footer-brand { grid-column: auto; }

    .jhd-parallax { background-attachment: scroll; }
}

@media (max-width: 480px) {
    .jhd-hero-headline { font-size: 2rem; }
}
