/* ═══════════════════════════════════════════════════════════════════════════
   Focus One Group — Landing Page Styles
   Colors: #1D1D1D (dark), #DAB360 (gold), #FFFFFF, #000000
   ═══════════════════════════════════════════════════════════════════════════ */

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

/* ─── HIDE THEME / ELEMENTOR HEADER on landing page ──────────────────── */
body.fog-landing-active #masthead,
body.fog-landing-active .site-header,
body.fog-landing-active header.header,
body.fog-landing-active .main-navigation,
body.fog-landing-active .nav-menu,
body.fog-landing-active .site-branding,
body.fog-landing-active #site-navigation,
body.fog-landing-active .menu-toggle,
body.fog-landing-active .ast-mobile-header-wrap,
body.fog-landing-active .ast-main-header-wrap,
body.fog-landing-active #ast-desktop-header,
body.fog-landing-active #ast-mobile-header,
body.fog-landing-active .elementor-location-header,
body.fog-landing-active .elementor-header,
body.fog-landing-active [data-elementor-type="header"],
body.fog-landing-active .ehf-header,
body.fog-landing-active #ehf-header,
body.fog-landing-active .eael-navigation-menu,
body.fog-landing-active .elementor-section-wrap > .elementor-section:first-child,
body.fog-landing-active header.elementor-element,
body.fog-landing-active .elementor-sticky,
body.fog-landing-active .hfe-header {
    display: none !important;
}

/* ─── HIDE THEME / ELEMENTOR FOOTER on landing page ──────────────────── */
body.fog-landing-active #colophon,
body.fog-landing-active .site-footer,
body.fog-landing-active footer.footer,
body.fog-landing-active .elementor-location-footer,
body.fog-landing-active [data-elementor-type="footer"],
body.fog-landing-active .ehf-footer,
body.fog-landing-active #ehf-footer,
body.fog-landing-active .hfe-footer,
body.fog-landing-active .ast-footer,
body.fog-landing-active .ast-small-footer {
    display: none !important;
}

/* ─── CUSTOM LANDING FOOTER ──────────────────────────────────────────── */
.fog-footer {
    background: #000;
    border-top: 1px solid rgba(218, 179, 96, 0.3);
    padding: 40px 0;
    text-align: center;
}

.fog-footer-logo img {
    height: 50px;
    width: auto;
    margin-bottom: 16px;
    opacity: 0.8;
}

.fog-footer-copy {
    color: #666;
    font-size: 0.8rem;
    letter-spacing: 1px;
    margin: 0;
}

#fog-landing {
    font-family: 'Montserrat', sans-serif;
    color: #FFFFFF;
    line-height: 1.7;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    max-width: 100vw;
}

#fog-landing *,
#fog-landing *::before,
#fog-landing *::after {
    max-width: 100%;
}

/* ─── STICKY NAV ──────────────────────────────────────────────────────── */
.fog-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(218, 179, 96, 0.2);
    transition: background 0.3s ease;
}

.fog-nav.fog-nav-scrolled {
    background: rgba(0, 0, 0, 0.95);
    border-bottom-color: #DAB360;
}

.fog-nav-inner {
    max-width: 1500px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
}

.fog-nav-logo img {
    height: 45px;
    width: auto;
}

.fog-nav-links {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.fog-nav-links li a {
    color: #ccc;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 8px 16px;
    transition: color 0.3s ease;
    text-decoration: none;
}

.fog-nav-links li a:hover {
    color: #DAB360;
}

.fog-nav-links li a.fog-nav-cta {
    background: #DAB360;
    color: #1D1D1D;
    padding: 10px 24px;
    font-weight: 600;
    margin-left: 8px;
    border: 2px solid #DAB360;
    transition: background 0.3s ease, color 0.3s ease;
}

.fog-nav-links li a.fog-nav-cta:hover {
    background: transparent;
    color: #DAB360;
    border: 2px solid #DAB360;
    padding: 8px 22px;
}

/* Hamburger */
.fog-nav-hamburger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    flex-direction: column;
    gap: 5px;
}

.fog-nav-hamburger span {
    display: block;
    width: 26px;
    height: 2px;
    background: #DAB360;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.fog-nav-hamburger.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.fog-nav-hamburger.open span:nth-child(2) {
    opacity: 0;
}

.fog-nav-hamburger.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

@media (max-width: 768px) {
    .fog-nav-inner {
        height: 54px;
    }

    .fog-nav-logo img {
        height: 28px;
    }

    .fog-nav-hamburger {
        display: flex;
        gap: 4px;
    }

    .fog-nav-hamburger span {
        width: 22px;
    }

    .fog-nav-links {
        display: none;
        position: absolute;
        top: 54px;
        left: 0;
        right: 0;
        background: rgba(0, 0, 0, 0.95);
        flex-direction: column;
        padding: 12px 0;
        border-bottom: 1px solid #DAB360;
    }

    .fog-nav-links.fog-nav-open {
        display: flex;
    }

    .fog-nav-links li a {
        padding: 12px 24px;
        display: block;
        text-align: center;
        font-size: 0.8rem;
    }

    .fog-nav-links li a.fog-nav-cta {
        margin: 4px 24px 0;
        text-align: center;
        padding: 10px 24px;
    }
}

#fog-landing *, #fog-landing *::before, #fog-landing *::after {
    box-sizing: border-box;
}

#fog-landing h1, #fog-landing h2, #fog-landing h3 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    line-height: 1.2;
}

#fog-landing a,
#fog-landing a:visited,
#fog-landing a:active,
#fog-landing a:focus {
    text-decoration: none;
    color: inherit;
    outline: none;
}

#fog-landing button:focus,
#fog-landing a:focus {
    outline: none;
}

#fog-landing *:focus-visible {
    outline: 2px solid #DAB360;
    outline-offset: 2px;
}

/* Kill any theme blue on links/buttons inside landing page */
#fog-landing button,
#fog-landing a,
#fog-landing a:link,
#fog-landing a:visited,
#fog-landing a:hover,
#fog-landing a:active {
    color: inherit;
    text-decoration: none;
    outline: none;
}

#fog-landing button {
    background: none;
    border: none;
    color: inherit;
    font-family: 'Montserrat', sans-serif;
}

.fog-container {
    max-width: 1500px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ─── HERO ─────────────────────────────────────────────────────────────── */
.fog-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    text-align: left;
    background-color: #1D1D1D;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.fog-hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.65);
    z-index: 1;
}

.fog-hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1500px;
    margin: 0 auto;
    padding: 40px 24px;
}

.fog-tagline {
    font-size: clamp(0.75rem, 1.5vw, 0.95rem);
    letter-spacing: 4px;
    text-transform: uppercase;
    color: #DAB360;
    margin: 0 0 20px;
    font-weight: 500;
}

.fog-hero-headline {
    font-size: clamp(2.2rem, 5vw, 3.8rem);
    color: #FFFFFF;
    margin: 0 0 20px;
    font-weight: 700;
    line-height: 1.1;
    max-width: 800px;
}

.fog-subtitle {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: #aaa;
    margin: 0 0 36px;
    font-weight: 300;
    line-height: 1.6;
}

/* ─── TRUST BAR ───────────────────────────────────────────────────────── */
.fog-trust-bar {
    background: #000;
    border-top: 1px solid rgba(218, 179, 96, 0.2);
    border-bottom: 1px solid rgba(218, 179, 96, 0.2);
    padding: 32px 0;
}

.fog-trust-items {
    display: flex;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
}

.fog-trust-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex: 1;
    min-width: 140px;
}

.fog-trust-number {
    font-size: 2.2rem;
    font-weight: 700;
    color: #DAB360;
    line-height: 1;
    margin-bottom: 6px;
}

.fog-trust-label {
    font-size: 0.75rem;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 500;
}

/* ─── BUTTONS ──────────────────────────────────────────────────────────── */
.fog-btn-gold {
    display: inline-block;
    background: #DAB360;
    color: #1D1D1D;
    padding: 16px 40px;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    border: 2px solid #DAB360;
    cursor: pointer;
    transition: all 0.3s ease;
}

.fog-btn-gold:hover {
    background: transparent;
    color: #DAB360;
}

.fog-hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: flex-start;
    flex-wrap: wrap;
}

.fog-btn-outline {
    display: inline-block;
    background: transparent;
    color: #FFFFFF;
    padding: 16px 40px;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    border: 2px solid #FFFFFF;
    cursor: pointer;
    transition: all 0.3s ease;
}

.fog-btn-outline:hover {
    background: #FFFFFF;
    color: #1D1D1D;
}

/* ─── SECTIONS ─────────────────────────────────────────────────────────── */
.fog-section {
    padding: 100px 0;
}

/* ─── WHY US ──────────────────────────────────────────────────────────── */
.fog-why {
    background: #1D1D1D;
}

.fog-why h2 {
    font-size: clamp(2rem, 4vw, 3.2rem);
    color: #DAB360;
    margin: 0 0 48px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-align: left;
}

.fog-why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
}

.fog-why-card {
    padding: 32px;
    border-left: 3px solid #DAB360;
}

.fog-why-card h3 {
    font-size: 1.2rem;
    color: #FFFFFF;
    margin: 0 0 12px;
    font-weight: 700;
}

.fog-why-card p {
    color: #aaa;
    font-weight: 300;
    font-size: 0.95rem;
    margin: 0;
}

/* ─── TESTIMONIAL ──────────────────────────────────────────────────────── */
.fog-testimonial {
    background: #1D1D1D;
    padding: 80px 0;
}

.fog-testimonial-card {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    position: relative;
}

.fog-testimonial-quote {
    font-size: 6rem;
    color: #DAB360;
    font-family: Georgia, serif;
    line-height: 1;
    margin-bottom: -20px;
    opacity: 0.4;
}

.fog-testimonial-card blockquote {
    margin: 0;
    padding: 0;
}

.fog-testimonial-card blockquote p {
    font-size: 1.1rem;
    line-height: 1.9;
    color: #ccc;
    font-weight: 300;
    font-style: italic;
    margin: 0 0 32px;
}

.fog-testimonial-author {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.fog-testimonial-name {
    color: #FFFFFF;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.fog-testimonial-role {
    color: #DAB360;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

@media (max-width: 600px) {
    .fog-testimonial {
        padding: 48px 0;
    }
    .fog-testimonial-quote {
        font-size: 4rem;
    }
    .fog-testimonial-card blockquote p {
        font-size: 0.95rem;
        line-height: 1.8;
    }
    .fog-testimonial-name {
        font-size: 0.9rem;
    }
    .fog-testimonial-role {
        font-size: 0.7rem;
    }
}

/* ─── SERVICES ─────────────────────────────────────────────────────────── */
.fog-services {
    background: #000;
}

.fog-services h2 {
    text-align: left;
    font-size: clamp(2rem, 4vw, 3.2rem);
    color: #DAB360;
    margin: 0 0 60px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.fog-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
}

.fog-service-card {
    background: #1D1D1D;
    padding: 40px 32px;
    border: 1px solid #333;
    transition: border-color 0.3s ease, transform 0.3s ease;
}

.fog-service-card:hover {
    border-color: #DAB360;
    transform: translateY(-4px);
}

.fog-service-card h3 {
    font-size: 1.3rem;
    color: #FFFFFF;
    margin: 0 0 12px;
}

.fog-service-card p {
    color: #aaa;
    font-weight: 300;
    margin: 0;
}

/* ─── TEAM ─────────────────────────────────────────────────────────────── */
.fog-team {
    background: #1D1D1D;
}

.fog-team h2 {
    text-align: left;
    font-size: clamp(2rem, 4vw, 3.2rem);
    color: #DAB360;
    margin: 0 0 60px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.fog-team-stack {
    display: flex;
    flex-direction: column;
    gap: 48px;
}

.fog-team-member {
    display: flex;
    align-items: center;
    gap: 40px;
    background: #000;
    padding: 40px 32px;
    border: 1px solid #333;
}

/* ─── Featured portrait layout (Steve) ─────────────────────────────── */
.fog-team-featured {
    display: grid;
    grid-template-columns: 380px 1fr;
    gap: 60px;
    align-items: center;
    padding: 0;
    border: none;
    background: transparent;
}

.fog-team-portrait {
    width: 380px;
    height: 480px;
    overflow: hidden;
    flex-shrink: 0;
    position: relative;
    background: linear-gradient(180deg, rgba(218,179,96,0.12) 0%, rgba(0,0,0,0.6) 100%);
    border-bottom: 3px solid #DAB360;
}

.fog-team-portrait img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: bottom center;
    display: block;
    transition: transform 0.5s ease;
}

.fog-team-featured:hover .fog-team-portrait img {
    transform: scale(1.03);
}

/* Keep legacy circle styles for any future use */
.fog-team-left {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    flex-shrink: 0;
    width: 200px;
}

.fog-team-photo {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid #DAB360;
    margin-bottom: 16px;
}

.fog-team-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.fog-photo-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #1D1D1D;
    color: #DAB360;
    font-size: 2.5rem;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
}

.fog-team-info {
    flex: 1;
    min-width: 0;
    overflow: visible;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.fog-team-info .fog-team-role {
    margin-bottom: 16px;
}

.fog-team-info p {
    overflow: visible;
    display: block;
    -webkit-line-clamp: unset;
    max-height: none;
    font-size: 1.15rem;
    line-height: 1.7;
}

.fog-team-full {
    display: none;
}

.fog-team-member.fog-expanded .fog-team-full {
    display: block;
}

.fog-team-services {
    list-style: none;
    padding: 0;
    margin: 0 0 16px;
}

.fog-team-services li {
    color: #ccc;
    font-weight: 300;
    font-size: 0.95rem;
    padding: 6px 0 6px 20px;
    position: relative;
}

.fog-team-services li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 2px;
    background: #DAB360;
}

.fog-team-quote {
    font-style: italic;
    color: #DAB360 !important;
    font-size: 1.1rem !important;
    border-left: 3px solid #DAB360;
    padding-left: 20px;
    margin-top: 20px !important;
}

#fog-landing button.fog-read-more,
#fog-landing button.fog-read-more:link,
#fog-landing button.fog-read-more:visited,
#fog-landing button.fog-read-more:active,
#fog-landing button.fog-read-more:focus {
    display: inline-block !important;
    width: auto !important;
    max-width: none !important;
    background: transparent !important;
    border: 2px solid #DAB360 !important;
    color: #DAB360 !important;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    cursor: pointer;
    padding: 10px 28px !important;
    margin-top: 12px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    transition: background 0.3s ease, color 0.3s ease;
    outline: none !important;
    box-shadow: none !important;
    text-decoration: none !important;
    text-align: left;
    align-self: flex-start !important;
}

#fog-landing button.fog-read-more:hover {
    background: #DAB360 !important;
    color: #1D1D1D !important;
}

.fog-team-featured h3 {
    font-size: 2rem;
    color: #FFFFFF;
    margin: 0 0 6px;
    letter-spacing: 1px;
}

.fog-team-featured .fog-team-role {
    font-size: 0.85rem;
    letter-spacing: 3px;
    margin-bottom: 24px;
}

.fog-team-featured .fog-team-info p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #bbb;
}

.fog-team-member h3 {
    font-size: 1.3rem;
    color: #FFFFFF;
    margin: 0 0 4px;
}

.fog-team-role {
    display: block;
    color: #DAB360;
    font-size: 0.75rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 600;
}

.fog-team-member p {
    color: #aaa;
    font-weight: 300;
    text-align: left;
    font-size: 0.95rem;
    margin: 0 0 12px;
}


/* Tablet: featured portrait adjusts */
@media (max-width: 900px) {
    .fog-team-featured {
        grid-template-columns: 300px 1fr;
        gap: 40px;
    }
    .fog-team-portrait {
        width: 300px;
        height: 400px;
    }
}

/* Mobile: stack team member vertically */
@media (max-width: 640px) {
    .fog-team-member {
        flex-direction: column;
        align-items: center;
    }
    .fog-team-featured {
        grid-template-columns: 1fr;
        gap: 32px;
        text-align: center;
    }
    .fog-team-portrait {
        width: 100%;
        max-width: 340px;
        height: 420px;
        margin: 0 auto;
    }
    .fog-team-featured h3 {
        font-size: 1.6rem;
    }
    .fog-team-featured .fog-team-info p {
        font-size: 0.9rem;
        text-align: left;
    }
    .fog-team-left {
        width: auto;
    }
    .fog-team-member p {
        text-align: center;
    }
}

/* ─── STRATEGIC PARTNER ────────────────────────────────────────────────── */
.fog-partner {
    background: #000;
}

.fog-partner h2 {
    text-align: left;
    font-size: clamp(2rem, 4vw, 3.2rem);
    color: #DAB360;
    margin: 0 0 60px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.fog-partner-card {
    display: grid;
    grid-template-columns: 180px 1fr;
    gap: 60px;
    align-items: center;
    background: #1D1D1D;
    padding: 48px;
    border: 1px solid #333;
    transition: border-color 0.3s ease;
}

.fog-partner-card:hover {
    border-color: #DAB360;
}

.fog-partner-logo {
    display: flex;
    align-items: center;
    justify-content: center;
}

.fog-partner-logo img {
    width: 120px;
    height: auto;
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

.fog-partner-card:hover .fog-partner-logo img {
    opacity: 1;
}

.fog-partner-info h3 {
    font-size: 1.6rem;
    color: #FFFFFF;
    margin: 0 0 6px;
    letter-spacing: 1px;
}

.fog-partner-location {
    display: inline-block;
    color: #DAB360;
    font-size: 0.75rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 20px;
}

.fog-partner-info p {
    color: #aaa;
    font-weight: 300;
    font-size: 1rem;
    line-height: 1.8;
    margin: 0 0 16px;
}

.fog-partner-cta {
    margin-top: 8px;
    display: inline-block;
    font-size: 0.85rem;
    padding: 14px 32px;
}

@media (max-width: 900px) {
    .fog-partner-card {
        grid-template-columns: 1fr;
        gap: 32px;
        text-align: center;
        padding: 32px;
    }
    .fog-partner-info p {
        text-align: left;
    }
}

@media (max-width: 600px) {
    .fog-partner-card {
        padding: 24px;
    }
    .fog-partner-logo img {
        width: 100px;
    }
    .fog-partner-info h3 {
        font-size: 1.3rem;
    }
    .fog-partner-info p {
        font-size: 0.9rem;
    }
}

/* ─── CONTACT ──────────────────────────────────────────────────────────── */
.fog-contact {
    background: #000;
}

.fog-contact h2 {
    text-align: left;
    font-size: clamp(2rem, 4vw, 3.2rem);
    color: #DAB360;
    margin: 0 0 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.fog-contact-intro {
    text-align: left;
    color: #ccc;
    font-weight: 300;
    margin: 0 0 48px;
}

.fog-contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 48px;
    align-items: start;
}

.fog-form label {
    display: block;
    color: #DAB360;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 6px;
}

.fog-form label span {
    color: #ff6b6b;
}

.fog-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.fog-form-group {
    margin-bottom: 20px;
}

.fog-form input,
.fog-form textarea {
    width: 100%;
    padding: 14px 16px;
    background: #1D1D1D;
    border: 1px solid #333;
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.fog-form input:focus,
.fog-form textarea:focus {
    outline: none;
    border-color: #DAB360;
}

.fog-form input::placeholder,
.fog-form textarea::placeholder {
    color: #666;
}

button.fog-btn-submit,
button.fog-btn-submit:hover,
button.fog-btn-submit:focus,
button.fog-btn-submit:active {
    width: 100%;
    font-family: 'Montserrat', sans-serif;
    background: #DAB360 !important;
    color: #1D1D1D !important;
    border: 2px solid #DAB360 !important;
    padding: 16px 40px;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
}

button.fog-btn-submit:hover {
    background: transparent !important;
    color: #DAB360 !important;
}

#fog-form-status {
    text-align: center;
    margin-top: 16px;
    font-size: 0.95rem;
}

#fog-form-status.success { color: #4caf50; }
#fog-form-status.error   { color: #ff6b6b; }

.fog-contact-sidebar {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.fog-sidebar-card {
    background: #1D1D1D;
    padding: 32px;
    border: 1px solid #333;
    text-align: center;
}

.fog-sidebar-card h3 {
    color: #DAB360;
    font-size: 1.3rem;
    margin: 0 0 12px;
}

.fog-sidebar-card p {
    color: #ccc;
    font-weight: 300;
    margin: 0 0 20px;
}

.fog-btn-call {
    display: inline-block;
    background: transparent;
    color: #DAB360;
    padding: 14px 32px;
    font-size: 1.1rem;
    font-weight: 600;
    border: 2px solid #DAB360;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.fog-btn-call:hover {
    background: #DAB360;
    color: #1D1D1D;
}

/* ─── CHAT WIDGET ──────────────────────────────────────────────────────── */
.fog-chat-widget {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 99999;
    font-family: 'Montserrat', sans-serif;
}

.fog-chat-toggle {
    height: 48px;
    border-radius: 24px;
    background: #DAB360 !important;
    color: #1D1D1D !important;
    border: 2px solid #DAB360 !important;
    cursor: pointer;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 0 20px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.4);
    transition: transform 0.3s ease, background 0.3s ease;
    position: relative;
    z-index: 2;
}

.fog-chat-label {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    white-space: nowrap;
}

.fog-chat-toggle:hover {
    transform: scale(1.05);
}

.fog-chat-close {
    display: none;
    font-size: 1.6rem;
}

.fog-chat-widget.open .fog-chat-icon { display: none; }
.fog-chat-widget.open .fog-chat-label { display: none; }
.fog-chat-widget.open .fog-chat-close { display: block; }

.fog-chat-widget.open .fog-chat-toggle {
    width: 48px;
    border-radius: 50%;
    padding: 0;
    justify-content: center;
}

.fog-chat-panel {
    display: none;
    position: absolute;
    bottom: 80px;
    right: 0;
    width: 320px;
    background: #1D1D1D;
    border: 1px solid #333;
    box-shadow: 0 8px 32px rgba(0,0,0,0.5);
    overflow: hidden;
}

.fog-chat-widget.open .fog-chat-panel {
    display: block;
    animation: fogSlideUp 0.3s ease;
}

@keyframes fogSlideUp {
    from { opacity: 0; transform: translateY(16px); }
    to   { opacity: 1; transform: translateY(0); }
}

.fog-chat-header {
    background: #000;
    padding: 20px;
    border-bottom: 2px solid #DAB360;
}

.fog-chat-header strong {
    display: block;
    color: #DAB360;
    font-size: 1.1rem;
    letter-spacing: 1px;
}

.fog-chat-header span {
    color: #aaa;
    font-size: 0.85rem;
    font-weight: 300;
}

.fog-chat-body {
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.fog-chat-option,
.fog-chat-option:link,
.fog-chat-option:visited,
.fog-chat-option:active,
.fog-chat-option:focus {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px;
    background: #000;
    border: 1px solid #333;
    color: #fff !important;
    font-size: 0.95rem;
    cursor: pointer;
    transition: border-color 0.3s ease, background 0.3s ease;
    text-decoration: none;
    outline: none;
}

.fog-chat-option:hover {
    border-color: #DAB360;
    color: #DAB360 !important;
}

.fog-chat-toggle:focus,
.fog-chat-toggle:active {
    outline: none;
    box-shadow: 0 4px 20px rgba(0,0,0,0.4);
}

.fog-chat-option-icon {
    font-size: 1.4rem;
    color: #DAB360;
    flex-shrink: 0;
}

/* ─── RESPONSIVE ───────────────────────────────────────────────────────── */
@media (max-width: 900px) {
    .fog-contact-wrapper {
        grid-template-columns: 1fr;
    }
    .fog-form-row {
        grid-template-columns: 1fr;
    }
    .fog-team-grid {
        grid-template-columns: 1fr;
    }
    .fog-services-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    /* Hero on mobile */
    .fog-hero {
        min-height: auto;
        padding: 100px 0 48px;
    }

    .fog-hero-content {
        padding: 32px 16px;
    }

    .fog-tagline {
        font-size: 0.8rem;
        letter-spacing: 2px;
        margin-bottom: 16px;
    }

    .fog-subtitle {
        font-size: 0.9rem;
        margin-bottom: 24px;
    }

    .fog-hero-buttons {
        flex-direction: column;
    }

    .fog-hero-buttons .fog-btn-gold,
    .fog-hero-buttons .fog-btn-outline {
        width: 100%;
        text-align: center;
        padding: 14px 20px;
        font-size: 0.85rem;
    }

    /* Tighter sections */
    .fog-section {
        padding: 48px 0;
    }

    .fog-hero-headline {
        font-size: 1.8rem;
    }

    .fog-trust-items {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }

    .fog-trust-number {
        font-size: 1.6rem;
    }

    .fog-trust-label {
        font-size: 0.65rem;
    }

    .fog-why h2,
    .fog-services h2,
    .fog-team h2,
    .fog-contact h2 {
        font-size: 1.5rem;
        margin-bottom: 24px;
    }

    .fog-why-card {
        padding: 20px;
    }

    .fog-service-card {
        padding: 28px 24px;
    }

    .fog-service-card h3 {
        font-size: 1.1rem;
    }

    .fog-service-card p {
        font-size: 0.85rem;
    }

    .fog-team-member {
        padding: 28px 20px;
        gap: 24px;
    }

    .fog-team-member p {
        font-size: 0.85rem;
    }

    .fog-contact-intro {
        font-size: 0.9rem;
    }

    .fog-sidebar-card {
        padding: 24px;
    }

    .fog-sidebar-card h3 {
        font-size: 1.1rem;
    }

    .fog-sidebar-card p {
        font-size: 0.85rem;
    }

    /* Contact form */
    .fog-contact .fog-container {
        padding: 0 16px;
    }

    .fog-contact-wrapper {
        gap: 32px;
    }

    .fog-form input,
    .fog-form textarea {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }

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

    button.fog-btn-submit {
        padding: 14px 20px !important;
        font-size: 0.85rem !important;
    }

    /* Chat widget */
    .fog-chat-widget {
        bottom: 16px;
        right: 16px;
    }

    .fog-chat-panel {
        width: 280px;
    }
}
