/* ============================================================
   HOSETECH PLUS MORE INC.
   style.css — Main Stylesheet
   Industrial Hydraulics & Heavy Equipment — Ludlow, MA
   ============================================================ */


/* ============================================================
   CSS CUSTOM PROPERTIES & RESET
   ============================================================ */

:root {
    /* Colors */
    --color-black:       #18181c;
    --color-yellow:      #F5B800;
    --color-yellow-dark: #d9a200;
    --color-blue:        #2d4a63;
    --color-blue-dark:   #1f3a50;
    --color-body-text:   #2e2e32;
    --color-light-bg:    #f2f2ee;
    --color-white:       #ffffff;
    --color-footer-bg:   #111116;
    --color-border:      #2a2a32;
    --color-mid-gray:    #888890;

    /* Typography */
    --font-display:  'Bebas Neue', sans-serif;
    --font-heading:  'Oswald', sans-serif;
    --font-body:     'Open Sans', sans-serif;
    --font-accent:   'Exo 2', sans-serif;

    /* Layout */
    --header-height:   160px;
    --container-max:   1200px;
    --section-pad-v:   88px;
    --radius:          3px;
    --radius-sm:       2px;

    /* Transitions */
    --transition:      0.28s ease;
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.75;
    letter-spacing: 0.01em;
    color: var(--color-body-text);
    background-color: var(--color-white);
    overflow-x: hidden;
}

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

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

ul {
    list-style: none;
}


/* ============================================================
   UTILITY — CONTAINER
   ============================================================ */

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


/* ============================================================
   UTILITY — BUTTONS
   ============================================================ */

.btn {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    font-family: var(--font-heading);
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.12em;
    line-height: 1;
    text-transform: uppercase;
    padding: 14px 30px;
    border-radius: var(--radius);
    border: 2px solid transparent;
    cursor: pointer;
    transition: background-color var(--transition),
                color var(--transition),
                border-color var(--transition);
}

.btn svg {
    width: 17px;
    height: 17px;
    flex-shrink: 0;
}

/* Yellow filled — primary action */
.btn-primary {
    background-color: var(--color-yellow);
    color: var(--color-black);
    border-color: var(--color-yellow);
}
.btn-primary:hover {
    background-color: transparent;
    color: var(--color-yellow);
}

/* Blue filled — secondary action */
.btn-secondary {
    background-color: var(--color-blue);
    color: var(--color-white);
    border-color: var(--color-blue);
    margin-top: 8px;
}
.btn-secondary:hover {
    background-color: transparent;
    color: var(--color-blue);
}

/* Hero button — slightly larger */
.hero-btn {
    font-size: 16px;
    padding: 16px 38px;
}

/* CTA band button */
.btn-cta {
    background-color: var(--color-yellow);
    color: var(--color-black);
    border-color: var(--color-yellow);
    font-size: 16px;
    padding: 16px 42px;
    white-space: nowrap;
}
.btn-cta:hover {
    background-color: transparent;
    color: var(--color-yellow);
}

/* Footer ghost button */
.btn-footer-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.12em;
    line-height: 1;
    text-transform: uppercase;
    padding: 12px 28px;
    border-radius: var(--radius);
    border: 2px solid var(--color-yellow);
    color: var(--color-yellow);
    margin-top: 18px;
    transition: background-color var(--transition), color var(--transition);
}
.btn-footer-cta:hover {
    background-color: var(--color-yellow);
    color: var(--color-black);
}


/* ============================================================
   UTILITY — SECTION LABELS & HEADINGS
   ============================================================ */

.section-label {
    display: inline-block;
    font-family: var(--font-accent);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.22em;
    line-height: 1;
    text-transform: uppercase;
    color: var(--color-yellow);
    padding: 5px 10px 5px 12px;
    border-left: 3px solid var(--color-yellow);
    background-color: rgba(245, 184, 0, 0.08);
    margin-bottom: 16px;
}

.section-heading {
    font-family: var(--font-heading);
    font-size: 40px;
    font-weight: 700;
    letter-spacing: 0.03em;
    line-height: 1.15;
    color: var(--color-black);
    margin-bottom: 22px;
}


/* ============================================================
   PAGE TITLE BAR (sub-pages)
   ============================================================ */

.page-title-bar {
    position: relative;
    background-color: var(--color-black);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-bottom: 3px solid var(--color-yellow);
    padding: 70px 0 62px;
    margin-top: var(--header-height);
    text-align: center;
    overflow: hidden;
}

/* Dark overlay when a bg image is present */
.page-title-bar::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(16, 16, 20, 0.82) 0%,
        rgba(16, 16, 20, 0.70) 50%,
        rgba(16, 16, 20, 0.86) 100%
    );
    pointer-events: none;
}

.page-title-bar .container {
    position: relative;
    z-index: 1;
}

.page-title-bar h1 {
    font-family: var(--font-display);
    font-size: 56px;
    font-weight: 400;
    letter-spacing: 0.06em;
    line-height: 1.1;
    color: var(--color-white);
    margin-bottom: 12px;
}

.page-title-bar p {
    font-family: var(--font-accent);
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.08em;
    line-height: 1.6;
    color: var(--color-mid-gray);
    max-width: 560px;
    margin: 0 auto;
}


/* ============================================================
   HEADER SECTION
   ============================================================ */

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: var(--header-height);
    background-color: rgba(16, 16, 20, 0.97);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 2px solid var(--color-yellow);
}

.header-inner {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 32px;
    height: 100%;
    display: flex;
    align-items: center;
    gap: 28px;
}

.header-logo {
    flex-shrink: 0;
}

.header-logo img {
    height: 142px;
    width: auto;
}

/* Primary Nav */
.main-nav {
    flex: 1;
}

.main-nav ul {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
}

.main-nav a {
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.14em;
    line-height: 1;
    text-transform: uppercase;
    color: #b8b8c0;
    padding: 10px 14px;
    border-bottom: 2px solid transparent;
    transition: color var(--transition), border-color var(--transition);
}

.main-nav a:hover,
.main-nav a.active {
    color: var(--color-yellow);
    border-bottom-color: var(--color-yellow);
}

/* Header email */
.header-contact {
    flex-shrink: 0;
}

.header-email {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-accent);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.04em;
    line-height: 1;
    color: #888892;
    transition: color var(--transition);
}

.header-email:hover {
    color: var(--color-yellow);
}

.header-email svg {
    width: 15px;
    height: 15px;
    flex-shrink: 0;
    color: var(--color-yellow);
}

/* Hamburger button */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 42px;
    height: 42px;
    background: none;
    border: 1px solid rgba(245, 184, 0, 0.3);
    border-radius: var(--radius-sm);
    cursor: pointer;
    padding: 4px;
    flex-shrink: 0;
    margin-left: auto;
}

.hamburger span {
    display: block;
    width: 22px;
    height: 2px;
    background-color: var(--color-yellow);
    transition: transform var(--transition), opacity var(--transition);
    transform-origin: center;
}

.hamburger.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}
.hamburger.active span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}
.hamburger.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}


/* ============================================================
   HERO SECTION
   ============================================================ */

.hero {
    position: relative;
    height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-top: var(--header-height);
    background-image: url('images/hero.jpg');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(16, 16, 20, 0.88) 0%,
        rgba(16, 16, 20, 0.75) 45%,
        rgba(16, 16, 20, 0.92) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 920px;
    padding: 0 30px;
}

/* Eyebrow row */
.hero-eyebrow {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin-bottom: 22px;
}

.hero-rule {
    display: block;
    flex: 1;
    max-width: 60px;
    height: 1px;
    background-color: var(--color-yellow);
    opacity: 0.6;
}

.hero-eyebrow-text {
    font-family: var(--font-accent);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.26em;
    line-height: 1;
    text-transform: uppercase;
    color: var(--color-yellow);
    white-space: nowrap;
}

/* Hero main heading */
.hero-heading {
    font-family: var(--font-display);
    font-size: 62px;
    font-weight: 400;
    letter-spacing: 0.05em;
    line-height: 1.18;
    color: var(--color-white);
    text-shadow: 0 2px 24px rgba(0, 0, 0, 0.55);
    margin-bottom: 38px;
}


/* ============================================================
   SECTION 1: WELCOME / ABOUT
   ============================================================ */

.welcome-section {
    padding: var(--section-pad-v) 0;
    background-color: var(--color-white);
}

.welcome-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
}

.welcome-text p {
    font-size: 15px;
    font-weight: 400;
    letter-spacing: 0.01em;
    line-height: 1.85;
    color: var(--color-body-text);
    margin-bottom: 18px;
}

.welcome-lead {
    font-size: 17px !important;
    font-weight: 600 !important;
    letter-spacing: 0.01em !important;
    line-height: 1.6 !important;
    color: var(--color-black) !important;
}

/* Stats row */
.welcome-stats {
    display: flex;
    align-items: stretch;
    gap: 0;
    margin: 30px 0 34px;
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    overflow: hidden;
    background-color: var(--color-black);
}

.stat-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px 16px;
    gap: 6px;
}

.stat-number {
    font-family: var(--font-display);
    font-size: 36px;
    font-weight: 400;
    letter-spacing: 0.05em;
    line-height: 1;
    color: var(--color-yellow);
}

.stat-label {
    font-family: var(--font-accent);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.14em;
    line-height: 1.3;
    text-transform: uppercase;
    color: #8888a0;
    text-align: center;
}

.stat-divider {
    width: 1px;
    background-color: var(--color-border);
    align-self: stretch;
}

/* Dog mascot image */
.welcome-image {
    display: flex;
    align-items: center;
    justify-content: center;
}

.welcome-image img {
    max-width: 380px;
    width: 100%;
    filter: drop-shadow(0 12px 48px rgba(0, 0, 0, 0.18));
}


/* ============================================================
   SECTION 2: CTA BAND
   ============================================================ */

.cta-band {
    background-color: var(--color-blue);
    padding: 52px 0;
    border-top: 3px solid var(--color-yellow);
    border-bottom: 3px solid var(--color-yellow);
    position: relative;
    overflow: hidden;
}

/* Subtle texture stripe */
.cta-band::before {
    content: '';
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(
        -55deg,
        transparent,
        transparent 18px,
        rgba(0,0,0,0.05) 18px,
        rgba(0,0,0,0.05) 19px
    );
    pointer-events: none;
}

.cta-band-inner {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 36px;
}

.cta-band-text p {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 400;
    letter-spacing: 0.03em;
    line-height: 1.4;
    color: var(--color-white);
}

.cta-band-text strong {
    color: var(--color-yellow);
    font-weight: 600;
}


/* ============================================================
   FAT FOOTER SECTION
   ============================================================ */

.fat-footer {
    background-color: var(--color-footer-bg);
    padding: 72px 0 52px;
    border-top: 3px solid var(--color-yellow);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 52px;
}

.footer-col-heading {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.14em;
    line-height: 1;
    text-transform: uppercase;
    color: var(--color-yellow);
    padding-bottom: 14px;
    margin-bottom: 22px;
    border-bottom: 1px solid var(--color-border);
}

/* Footer Contact Column */
.footer-contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 18px;
}

.footer-contact-list svg {
    width: 17px;
    height: 17px;
    flex-shrink: 0;
    margin-top: 2px;
    color: var(--color-yellow);
    opacity: 0.85;
}

.footer-contact-list span,
.footer-contact-list a {
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 0.02em;
    line-height: 1.65;
    color: #9090a0;
    transition: color var(--transition);
}

.footer-contact-list a:hover {
    color: var(--color-yellow);
}

/* Footer Service Column */
.footer-service-text {
    font-family: var(--font-heading);
    font-size: 21px;
    font-weight: 400;
    letter-spacing: 0.02em;
    line-height: 1.55;
    color: #b0b0c0;
}

.footer-service-text strong {
    color: var(--color-yellow);
    font-weight: 600;
}

/* Footer Map Column */
.footer-map {
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--color-border);
}

.footer-map iframe {
    display: block;
    filter: grayscale(25%) contrast(1.08) brightness(0.95);
    transition: filter var(--transition);
}

.footer-map:hover iframe {
    filter: grayscale(0%) contrast(1) brightness(1);
}


/* ============================================================
   COPYRIGHT FOOTER BAR
   ============================================================ */

.copyright-bar {
    background-color: #09090c;
    padding: 15px 0;
    border-top: 1px solid #1e1e26;
}

.copyright-bar p {
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 0.04em;
    line-height: 1.5;
    color: #48484e;
    text-align: center;
}

.copyright-bar a {
    color: #666672;
    transition: color var(--transition);
}

.copyright-bar a:hover {
    color: var(--color-yellow);
}


/* ============================================================
   MOBILE STICKY PHONE BAR
   ============================================================ */

.mobile-sticky-phone {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 999;
    background-color: var(--color-yellow);
    height: 50px;
}

.mobile-sticky-phone a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    height: 100%;
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.1em;
    line-height: 1;
    text-transform: uppercase;
    color: var(--color-black);
}

.mobile-sticky-phone svg {
    width: 18px;
    height: 18px;
}


/* ============================================================
   SERVICES PAGE
   ============================================================ */

.services-section {
    padding: var(--section-pad-v) 0;
    background-color: var(--color-white);
}

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

.services-intro {
    font-size: 15px;
    font-weight: 400;
    letter-spacing: 0.01em;
    line-height: 1.8;
    color: var(--color-body-text);
    margin-bottom: 36px;
}

/* Service group block */
.service-group {
    margin-bottom: 34px;
    padding: 28px 28px 24px;
    background-color: var(--color-light-bg);
    border-left: 4px solid var(--color-yellow);
    border-radius: 0 var(--radius) var(--radius) 0;
}

.service-group-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    padding-bottom: 14px;
    border-bottom: 1px solid #ddddd8;
}

.service-group-header svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    color: var(--color-yellow);
}

.service-group-header h3 {
    font-family: var(--font-heading);
    font-size: 17px;
    font-weight: 600;
    letter-spacing: 0.08em;
    line-height: 1;
    text-transform: uppercase;
    color: var(--color-black);
}

.service-group-intro {
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 0.01em;
    line-height: 1.6;
    color: #666670;
    margin-bottom: 14px;
    font-style: italic;
}

/* Styled service list items */
.service-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.service-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 0.02em;
    line-height: 1.5;
    color: var(--color-body-text);
    padding: 10px 14px;
    background-color: var(--color-white);
    border-radius: var(--radius);
    border: 1px solid #e0e0da;
    transition: border-color var(--transition), background-color var(--transition);
}

.service-list li:hover {
    border-color: var(--color-yellow);
    background-color: rgba(245, 184, 0, 0.04);
}

.service-list li svg {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
    color: var(--color-yellow);
}

.services-inline-link {
    color: var(--color-blue);
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: color var(--transition);
}

.services-inline-link:hover {
    color: var(--color-yellow);
}

.services-cta-btn {
    margin-top: 10px;
}

/* Services photo column */
.services-photo {
    position: sticky;
    top: calc(var(--header-height) + 30px);
}

.services-photo-wrap {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    border: 3px solid var(--color-border);
    box-shadow: 0 16px 56px rgba(0, 0, 0, 0.16);
}

.services-photo-wrap img {
    width: 100%;
    height: auto;
    display: block;
}

/* Badge overlay on photo */
.services-photo-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background-color: var(--color-yellow);
    padding: 14px 20px;
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.badge-big-num {
    font-family: var(--font-display);
    font-size: 42px;
    font-weight: 400;
    letter-spacing: 0.04em;
    line-height: 1;
    color: var(--color-black);
}

.badge-big-label {
    font-family: var(--font-accent);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.1em;
    line-height: 1.4;
    text-transform: uppercase;
    color: var(--color-black);
}

/* Services responsive */
@media (max-width: 900px) {
    .services-grid {
        grid-template-columns: 1fr;
        gap: 44px;
    }

    .services-photo {
        position: static;
        order: -1;
    }
}

@media (max-width: 480px) {
    .service-group {
        padding: 20px 18px;
    }
}


/* ============================================================
   VIDEO PAGE
   ============================================================ */

.video-section {
    padding: var(--section-pad-v) 0;
    background-color: var(--color-light-bg);
}

.video-intro {
    max-width: 680px;
    margin: 0 auto 52px;
    text-align: center;
}

.video-intro .section-label {
    display: inline-block;
    margin-bottom: 16px;
}

.video-intro p {
    font-size: 15px;
    font-weight: 400;
    letter-spacing: 0.01em;
    line-height: 1.8;
    color: #555560;
}

/* 4-column grid — Shorts are vertical (9:16) */
.video-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

.video-card {
    background-color: var(--color-black);
    border-radius: var(--radius);
    overflow: hidden;
    border: 2px solid var(--color-border);
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.18);
    transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
}

.video-card:hover {
    border-color: var(--color-yellow);
    transform: translateY(-4px);
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.28);
}

/* 9:16 vertical aspect ratio for YouTube Shorts */
.video-embed {
    position: relative;
    width: 100%;
    aspect-ratio: 9 / 16;
}

.video-embed iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}

/* Video page responsive */
@media (max-width: 1024px) {
    .video-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 16px;
    }
}

@media (max-width: 768px) {
    .video-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .video-intro {
        margin-bottom: 36px;
    }
}

@media (max-width: 480px) {
    .video-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
}


/* ============================================================
   CONTACT PAGE
   ============================================================ */

/* Quick-contact cards strip */
.contact-cards-strip {
    background-color: var(--color-black);
    border-bottom: 2px solid var(--color-border);
    padding: 0;
}

.contact-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.contact-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 28px 24px;
    border-right: 1px solid var(--color-border);
    transition: background-color var(--transition);
    text-decoration: none;
}

.contact-card:last-child {
    border-right: none;
}

.contact-card:not(.contact-card--nolink):hover {
    background-color: rgba(245, 184, 0, 0.06);
}

.contact-card--highlight {
    background-color: rgba(245, 184, 0, 0.06);
}

.contact-card-icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    background-color: rgba(245, 184, 0, 0.12);
    border: 1px solid rgba(245, 184, 0, 0.3);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-card-icon svg {
    width: 20px;
    height: 20px;
    color: var(--color-yellow);
}

.contact-card-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
    min-width: 0;
}

.contact-card-label {
    font-family: var(--font-accent);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.16em;
    line-height: 1;
    text-transform: uppercase;
    color: var(--color-yellow);
}

.contact-card-value {
    font-family: var(--font-heading);
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 0.02em;
    line-height: 1.3;
    color: #cccccc;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Main contact section */
.contact-main-section {
    padding: var(--section-pad-v) 0;
    background-color: var(--color-white);
}

.contact-main-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
    align-items: start;
}

/* Call CTA column */
.contact-call-intro {
    font-size: 15px;
    font-weight: 400;
    letter-spacing: 0.01em;
    line-height: 1.8;
    color: #666670;
    margin-bottom: 32px;
}

/* Large phone block */
.contact-phone-block {
    display: flex;
    align-items: center;
    gap: 22px;
    background-color: var(--color-black);
    border: 2px solid var(--color-yellow);
    border-radius: var(--radius);
    padding: 28px 32px;
    margin-bottom: 32px;
    text-decoration: none;
    transition: background-color var(--transition), box-shadow var(--transition);
}

.contact-phone-block:hover {
    background-color: rgba(245, 184, 0, 0.08);
    box-shadow: 0 6px 30px rgba(245, 184, 0, 0.18);
}

.contact-phone-icon {
    flex-shrink: 0;
    width: 64px;
    height: 64px;
    background-color: var(--color-yellow);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-phone-icon svg {
    width: 32px;
    height: 32px;
    color: var(--color-black);
}

.contact-phone-text {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.contact-phone-label {
    font-family: var(--font-accent);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.2em;
    line-height: 1;
    text-transform: uppercase;
    color: var(--color-yellow);
}

.contact-phone-number {
    font-family: var(--font-display);
    font-size: 48px;
    font-weight: 400;
    letter-spacing: 0.05em;
    line-height: 1;
    color: var(--color-white);
}

/* Bullet points below the phone block */
.contact-call-points {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.contact-call-point {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 15px;
    font-weight: 400;
    letter-spacing: 0.01em;
    line-height: 1.6;
    color: var(--color-body-text);
}

.contact-call-point svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    margin-top: 2px;
    color: var(--color-yellow);
}

.contact-call-point a {
    color: var(--color-blue);
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: color var(--transition);
}

.contact-call-point a:hover {
    color: var(--color-yellow);
}

/* Contact info column */
.contact-info-block {
    margin-bottom: 32px;
}

.contact-info-list {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-top: 8px;
    border: 1px solid #e0e0da;
    border-radius: var(--radius);
    overflow: hidden;
}

.contact-info-list li {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 18px 20px;
    border-bottom: 1px solid #e0e0da;
    background-color: var(--color-white);
    transition: background-color var(--transition);
}

.contact-info-list li:last-child {
    border-bottom: none;
}

.contact-info-list li:hover {
    background-color: rgba(245, 184, 0, 0.03);
}

.contact-info-icon {
    flex-shrink: 0;
    width: 38px;
    height: 38px;
    background-color: var(--color-black);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 2px;
}

.contact-info-icon svg {
    width: 17px;
    height: 17px;
    color: var(--color-yellow);
}

.contact-info-label {
    display: block;
    font-family: var(--font-accent);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.16em;
    line-height: 1;
    text-transform: uppercase;
    color: var(--color-yellow);
    margin-bottom: 5px;
}

.contact-info-value {
    display: block;
    font-size: 15px;
    font-weight: 400;
    letter-spacing: 0.01em;
    line-height: 1.65;
    color: var(--color-body-text);
}

.contact-info-value a {
    color: var(--color-blue);
    transition: color var(--transition);
}

.contact-info-value a:hover {
    color: var(--color-yellow);
}

.contact-info-value strong {
    color: var(--color-black);
    font-weight: 600;
}

/* Map */
.contact-map {
    border-radius: var(--radius);
    overflow: hidden;
    border: 2px solid var(--color-border);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.contact-map iframe {
    display: block;
    filter: grayscale(20%) contrast(1.05);
    transition: filter var(--transition);
}

.contact-map:hover iframe {
    filter: grayscale(0%) contrast(1);
}

/* Contact page responsive */
@media (max-width: 960px) {
    .contact-cards {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-card:nth-child(2) {
        border-right: none;
    }

    .contact-card:nth-child(1),
    .contact-card:nth-child(2) {
        border-bottom: 1px solid var(--color-border);
    }

    .contact-main-grid {
        grid-template-columns: 1fr;
        gap: 52px;
    }

    .contact-info-col {
        order: -1;
    }
}

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

    .contact-card {
        border-right: none;
        border-bottom: 1px solid var(--color-border);
    }

    .contact-card:last-child {
        border-bottom: none;
    }

    .contact-card:nth-child(2) {
        border-bottom: 1px solid var(--color-border);
    }

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

    .contact-card-value {
        font-size: 13px;
        white-space: normal;
    }

    .form-submit-btn {
        width: 100%;
        justify-content: center;
    }
}


/* ============================================================
   RESPONSIVE — LARGE TABLET  (≤ 1024px)
   ============================================================ */

@media (max-width: 1024px) {
    .hero-heading {
        font-size: 52px;
    }

    .welcome-grid {
        gap: 48px;
    }

    .footer-grid {
        gap: 36px;
    }
}


/* ============================================================
   RESPONSIVE — TABLET  (≤ 768px)
   ============================================================ */

@media (max-width: 768px) {
    :root {
        --header-height: 90px;
        --section-pad-v: 60px;
    }

    /* ---- Header ---- */
    .header-logo img {
        height: 74px;
    }

    .header-contact {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    /* Mobile nav drawer */
    .main-nav {
        display: none;
        position: fixed;
        top: var(--header-height);
        left: 0;
        right: 0;
        background-color: rgba(14, 14, 18, 0.99);
        border-bottom: 2px solid var(--color-yellow);
        padding: 14px 0 20px;
    }

    .main-nav.open {
        display: block;
    }

    .main-nav ul {
        flex-direction: column;
        gap: 0;
        align-items: stretch;
    }

    .main-nav a {
        display: block;
        padding: 14px 28px;
        font-size: 16px;
        letter-spacing: 0.14em;
        border-bottom: 1px solid rgba(255, 255, 255, 0.06);
        border-left: 3px solid transparent;
    }

    .main-nav a:hover,
    .main-nav a.active {
        border-bottom-color: rgba(255, 255, 255, 0.06);
        border-left-color: var(--color-yellow);
        background-color: rgba(245, 184, 0, 0.06);
        color: var(--color-yellow);
    }

    /* ---- Hero ---- */
    .hero {
        height: 560px;
    }

    .hero-heading {
        font-size: 38px;
        letter-spacing: 0.03em;
    }

    .hero-eyebrow-text {
        font-size: 10px;
        letter-spacing: 0.18em;
        white-space: normal;
        text-align: center;
    }

    /* ---- Welcome ---- */
    .welcome-grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .welcome-image {
        order: -1;
    }

    .welcome-image img {
        max-width: 260px;
        margin: 0 auto;
    }

    .section-heading {
        font-size: 32px;
    }

    .welcome-stats {
        flex-wrap: wrap;
    }

    .stat-item {
        flex: 1 1 80px;
    }

    /* ---- CTA Band ---- */
    .cta-band-inner {
        flex-direction: column;
        text-align: center;
        gap: 26px;
    }

    .cta-band-text p {
        font-size: 20px;
    }

    /* ---- Footer ---- */
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    /* ---- Page title bar ---- */
    .page-title-bar h1 {
        font-size: 40px;
    }

    /* ---- Mobile sticky phone ---- */
    .mobile-sticky-phone {
        display: block;
    }

    /* Extra bottom padding so sticky bar doesn't cover content */
    .copyright-bar {
        padding-bottom: 64px;
    }
}


/* ============================================================
   RESPONSIVE — MOBILE  (≤ 480px)
   ============================================================ */

@media (max-width: 480px) {
    :root {
        --section-pad-v: 50px;
    }

    .container {
        padding: 0 18px;
    }

    .header-logo img {
        height: 72px;
    }

    .hero {
        height: 500px;
    }

    .hero-heading {
        font-size: 32px;
        line-height: 1.22;
    }

    .hero-eyebrow {
        gap: 8px;
    }

    .hero-rule {
        max-width: 30px;
    }

    .hero-eyebrow-text {
        font-size: 9px;
    }

    .hero-btn {
        padding: 14px 26px;
        font-size: 14px;
    }

    .section-heading {
        font-size: 28px;
    }

    .welcome-stats {
        flex-direction: column;
    }

    .stat-divider {
        width: auto;
        height: 1px;
    }

    .cta-band-text p {
        font-size: 18px;
    }

    .page-title-bar h1 {
        font-size: 34px;
    }
}
