/* =========================================
   COLOR TOKENS – from your funnel design
   (hero indigo, light-blue CTA, clean white)
========================================= */
:root {
    /* dark hero gradient */
    --fsa-hero-left:  #0b1c4f;   /* deep indigo */
    --fsa-hero-right: #0d5c87;   /* teal-blue */

    /* CTA + highlight */
    --fsa-cta:        #33b6ff;   /* light blue button */
    --fsa-cta-dark:   #2094d4;

    /* neutrals */
    --fsa-bg-page:    #f5f7fb;
    --fsa-bg-card:    #ffffff;
    --fsa-text-main:  #0b1020;
    --fsa-text-soft:  #6b7280;
    --fsa-border-soft:#e4e7f2;
}

/* apply only on this landing layout */
body.landing--interior-designer {
    background: var(--fsa-bg-page);
    color: var(--fsa-text-main);
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

/* wrap */
.fsa-page {
    min-height: 100vh;
}

/* =========================================
   STICKY HEADER
   - top: transparent over hero, white text
   - scrolled: white bar with shadow, dark text
========================================= */

/* ----- NAVBAR: base (top of page) ----- */
.fsa-topbar {
    position: sticky;
    top: 0;
    z-index: 1050;

    /* SAME FEEL AS HERO / MAIN SITE */
    background: linear-gradient(120deg, var(--fsa-hero-left), var(--fsa-hero-right));
    padding: 0.9rem 0;

    /* remove misty effect */
    backdrop-filter: none;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.35);

    transition:
        background-color 0.25s ease,
        box-shadow 0.25s ease,
        padding 0.25s ease;
}

/* text colors when on top (over dark background) */
.fsa-topbar .fsa-brand-name,
.fsa-topbar .fsa-brand-tag,
.fsa-topbar .fsa-nav-link,
.fsa-topbar .fsa-nav-call {
    color: #ffffff;
}

.fsa-topbar .fsa-nav-divider {
    width: 1px;
    height: 18px;
    margin: 0 18px;
    background: rgba(255, 255, 255, 0.35);
}

/* ----- NAVBAR: scrolled state (on light sections) ----- */
.fsa-topbar.scrolled {
    /* solid dark like your main website header */
    background: #050b2c; /* tweak if you want it a bit lighter/darker */
    padding: 0.6rem 0;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.5);
}

/* keep text white when scrolled, just adjust emphasis */
.fsa-topbar.scrolled .fsa-brand-name,
.fsa-topbar.scrolled .fsa-nav-link,
.fsa-topbar.scrolled .fsa-nav-call {
    color: #ffffff;
}

.fsa-topbar.scrolled .fsa-brand-tag {
    color: #cbd5f5;
}

.fsa-topbar.scrolled .fsa-nav-divider {
    background: rgba(255, 255, 255, 0.25);
}

.fsa-topbar.scrolled .fsa-nav-link:hover,
.fsa-topbar.scrolled .fsa-nav-link:focus {
    color: #7dd3ff;
}


/* logo + brand text */
.fsa-logo-box img {
    max-height: 44px;
    display: block;
}

.fsa-brand-text {
    line-height: 1.2;
}

.fsa-brand-name {
    font-weight: 700;
    font-size: 1.05rem;
}

.fsa-brand-tag {
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
}

/* nav links */
.fsa-nav-link,
.fsa-nav-call {
    font-size: 0.86rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 600;
    text-decoration: none;
    margin-left: 1.4rem;
}

/* phone highlight */
.fsa-nav-call span {
    color: var(--fsa-cta-dark);
}

/* =========================================
   HERO SECTION – DEFAULT (MAIN LANDING)
========================================= */

.fsa-hero {
    padding: 4.3rem 0 5rem;
    background: linear-gradient(120deg, var(--fsa-hero-left), var(--fsa-hero-right));
    color: #ffffff;
}

.fsa-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
    gap: 3rem;
    align-items: stretch;
}

.fsa-eyebrow {
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.22em;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0.7rem;
}

.fsa-hero-left h1 {
    font-size: clamp(2.4rem, 3vw + 1.3rem, 3.1rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.25rem;
}

.fsa-hero-left h1 span {
    display: block;
    color: #e3f3ff;
}

.fsa-subtitle {
    font-size: 0.98rem;
    line-height: 1.7;
    max-width: 34rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1.4rem;
}

/* bullet list */
.fsa-bullets {
    list-style: none;
    padding-left: 0;
    margin: 0 0 1.7rem;
}

.fsa-bullets li {
    position: relative;
    padding-left: 1.8rem;
    margin-bottom: 0.6rem;
    font-size: 0.96rem;
}

.fsa-bullets li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    color: #7ff0c3;
    font-weight: 700;
}

/* CTA + small notes */
.fsa-hero-cta {
    margin-bottom: 1.4rem;
}

.fsa-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    font-size: 0.9rem;
    padding: 0.9rem 2rem;
    border-radius: 999px;
    border: none;
    cursor: pointer;
    text-decoration: none;
    transition: transform 0.15s ease, box-shadow 0.15s ease, opacity 0.15s ease;
}

.fsa-btn-primary {
    background: linear-gradient(135deg, var(--fsa-cta), var(--fsa-cta-dark));
    color: #ffffff;
    box-shadow: 0 12px 26px rgba(0, 0, 0, 0.45);
}

.fsa-btn-primary:hover {
    opacity: 0.95;
    transform: translateY(-1px);
    box-shadow: 0 18px 38px rgba(0, 0, 0, 0.55);
}

.fsa-btn-secondary {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.42);
    color: #e5f3ff;
}

.fsa-btn-secondary:hover {
    border-color: #ffffff;
    color: #ffffff;
}

.fsa-hero-note {
    margin-top: 0.7rem;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.72);
}

.fsa-hero-alt {
    margin-top: 0.35rem;
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.72);
}

.fsa-hero-alt a {
    color: #bfe7ff;
    text-decoration: underline;
}

/* trust row */
.fsa-trust-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1.4rem;
    align-items: center;
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.75);
}

.fsa-trust-badge {
    padding: 0.38rem 1rem;
    border-radius: 999px;
    border: 1px solid rgba(191, 219, 254, 0.5);
    background: rgba(15, 23, 42, 0.5);
}

/* right side form */
.fsa-hero-right {
    display: flex;
    justify-content: flex-end;
    align-items: stretch;
}

.fsa-form-card {
    width: 100%;
    max-width: 420px;
    background: var(--fsa-bg-card);
    color: var(--fsa-text-main);
    border-radius: 22px;
    padding: 2.1rem 2.3rem;
    box-shadow: 0 30px 80px rgba(15, 23, 42, 0.65);
}

.fsa-form-card h2 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.fsa-form-subtitle {
    font-size: 0.9rem;
    color: var(--fsa-text-soft);
    margin-bottom: 1rem;
}

/* iframe wrapper so CRM form fits nicely */
.fsa-iframe-wrapper {
    width: 100%;
    height: 430px;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--fsa-border-soft);
}

.fsa-iframe-wrapper iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

.fsa-privacy-note {
    margin-top: 0.9rem;
    font-size: 0.78rem;
    color: var(--fsa-text-soft);
}

/* =========================================
   SECTIONS BELOW HERO
========================================= */

.fsa-section {
    padding: 4rem 0;
    background: var(--fsa-bg-page);
}

.fsa-section-light {
    background: #ffffff;
}

.fsa-section-dark {
    background: #0c1124;
    color: #e5e7f5;
}

.fsa-section-title {
    font-size: 1.8rem;
    font-weight: 700;
}

.fsa-section-subtitle {
    font-size: 0.98rem;
    color: var(--fsa-text-soft);
}

/* cards */
.fsa-topic-card {
    background: #ffffff;
    border-radius: 18px;
    padding: 1.7rem 1.6rem;
    border: 1px solid var(--fsa-border-soft);
    height: 100%;
}

.fsa-topic-icon {
    font-size: 1.7rem;
    margin-bottom: 0.7rem;
}

.fsa-topic-card h3 {
    font-size: 1.05rem;
    margin-bottom: 0.4rem;
}

/* steps */
.fsa-step-card {
    background: #ffffff;
    border-radius: 18px;
    padding: 1.7rem 1.5rem;
    border: 1px solid var(--fsa-border-soft);
    position: relative;
    height: 100%;
}

.fsa-step-number {
    position: absolute;
    top: -14px;
    left: 18px;
    width: 32px;
    height: 32px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--fsa-cta), var(--fsa-cta-dark));
    color: #ffffff;
    font-weight: 700;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* about */
.fsa-about-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
    gap: 3rem;
}

.fsa-list {
    list-style: none;
    padding-left: 0;
    margin: 1rem 0 0;
}

.fsa-list li {
    position: relative;
    padding-left: 1.4rem;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.fsa-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    top: 0;
    color: var(--fsa-cta-dark);
}

.fsa-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.fsa-stat {
    background: #ffffff;
    border-radius: 14px;
    padding: 0.9rem 1.2rem;
    min-width: 140px;
    border: 1px solid var(--fsa-border-soft);
}

.fsa-stat span {
    display: block;
    font-weight: 700;
    font-size: 1rem;
}

.fsa-stat small {
    font-size: 0.8rem;
    color: var(--fsa-text-soft);
}

.fsa-about-note {
    margin-top: 1rem;
    font-size: 0.9rem;
    color: var(--fsa-text-soft);
}

/* final CTA */
.fsa-final-cta {
    background: linear-gradient(120deg, var(--fsa-hero-left), var(--fsa-hero-right));
    color: #ffffff;
}

.fsa-final-cta-inner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
}

/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 991.98px) {
    .fsa-hero-grid {
        grid-template-columns: minmax(0, 1fr);
    }

    .fsa-hero-right {
        justify-content: flex-start;
    }

    .fsa-nav {
        display: none !important; /* hide top nav on small devices for now */
    }

    .fsa-hero {
        padding-top: 4rem;
    }
}

@media (max-width: 767.98px) {
    .fsa-section {
        padding: 3rem 0;
    }

    .fsa-about-grid {
        grid-template-columns: minmax(0, 1fr);
    }
}

/* ============================
   FOOTER – INTERIOR FUNNEL
   ============================ */

.fsa-footer {
    background: #f5f7fc;              /* soft light background */
    padding: 3.5rem 0 2.5rem;
    border-top: 1px solid #e0e4f2;
    color: var(--fsa-text-main);
}

.fsa-footer-top {
    margin-bottom: 2rem;
}

/* logo in footer */
.fsa-footer-brand img {
    max-height: 46px;
    width: auto;
    margin-bottom: 0.9rem;
}

.fsa-footer-text {
    font-size: 0.9rem;
    color: var(--fsa-text-soft);
}

/* headings (Company, Contact) */
.fsa-footer-heading {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.9rem;
}

/* company links list */
.fsa-footer-list {
    list-style: none;
    padding-left: 0;
    margin: 0;
}

.fsa-footer-list li + li {
    margin-top: 0.4rem;
}

.fsa-footer-list a {
    font-size: 0.9rem;
    text-decoration: none;
    color: var(--fsa-text-main);
}

.fsa-footer-list a:hover {
    color: var(--fsa-cta-dark);
}

/* ============================ */
/* FOOTER SOCIAL ICONS          */
/* ============================ */

.fsa-footer .fsa-social-links {
    list-style: none;
    padding-left: 0;
    margin: 0.8rem 0 0;
    display: flex;
    gap: 0.5rem;
}

.fsa-footer .fsa-social-links li {
    margin: 0;
}

.fsa-footer .fsa-social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: #111827;                 /* dark circle */
    text-decoration: none;
    color: #ffffff;                       /* white text */
    font-size: 0.78rem;
    line-height: 1;
    transition: background 0.2s ease,
                transform 0.2s ease,
                box-shadow 0.2s ease;
}

.fsa-footer .fsa-social-links a span {
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.fsa-footer .fsa-social-links a:hover {
    background: var(--fsa-cta-dark);      /* blue hover */
    transform: translateY(-1px);
    box-shadow: 0 6px 14px rgba(15, 23, 42, 0.4);
}


/* contact column */
.fsa-footer-contact strong {
    display: block;
    margin-top: 0.2rem;
    font-weight: 600;
}

.fsa-footer-contact p {
    margin: 0.2rem 0 0.6rem;
    font-size: 0.9rem;
    color: var(--fsa-text-soft);
}

.fsa-footer-contact a {
    color: var(--fsa-cta-dark);
    text-decoration: none;
}

.fsa-footer-contact a:hover {
    text-decoration: underline;
}

/* bottom strip */
.fsa-footer-bottom {
    padding-top: 1.2rem;
    border-top: 1px solid #dde2f2;
    font-size: 0.8rem;
    color: #6b7280;
    text-align: center;
}

/* responsive tweaks */
@media (max-width: 767.98px) {
    .fsa-footer {
        padding: 3rem 0 2rem;
    }

    .fsa-footer-bottom {
        text-align: left;
    }
}

/* ============================ */
/* BONUS SECTION                */
/* ============================ */

.fsa-bonus .fsa-bonus-header {
    max-width: 720px;
}

.fsa-bonus-card {
    background: #ffffff;
    border-radius: 18px;
    padding: 1.6rem 1.5rem;
    border: 1px solid var(--fsa-border-soft);
    height: 100%;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.05);
}

.fsa-bonus-card h3 {
    font-size: 1.05rem;
    margin-bottom: 0.45rem;
}

.fsa-bonus-card p {
    font-size: 0.92rem;
    color: var(--fsa-text-soft);
    margin-bottom: 0;
}

.fsa-bonus-tag {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    padding: 0.25rem 0.7rem;
    border-radius: 999px;
    background: rgba(51, 182, 255, 0.12);
    color: var(--fsa-cta-dark);
    margin-bottom: 0.6rem;
}

/* ============================ */
/* FAQ SECTION                  */
/* ============================ */

.fsa-faq {
    background: #f5f7fb;
}

.fsa-faq-list {
    max-width: 780px;
    margin: 0 auto;
}

.fsa-faq-item {
    background: #ffffff;
    border-radius: 14px;
    border: 1px solid var(--fsa-border-soft);
    padding: 0.75rem 1.1rem;
    margin-bottom: 0.75rem;
}

/* remove default triangle & style summary */
.fsa-faq-item > summary {
    list-style: none;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.98rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.fsa-faq-item > summary::-webkit-details-marker {
    display: none;
}

.fsa-faq-item > summary::after {
    content: "+";
    font-weight: 700;
    margin-left: 0.75rem;
    font-size: 1rem;
    color: var(--fsa-cta-dark);
}

/* expanded state arrow */
.fsa-faq-item[open] > summary::after {
    content: "–";
}

/* answer text */
.fsa-faq-item p {
    margin: 0.6rem 0 0.2rem;
    font-size: 0.9rem;
    color: var(--fsa-text-soft);
}

/* responsive spacing */
@media (max-width: 767.98px) {
    .fsa-bonus-card,
    .fsa-faq-item {
        padding: 1.2rem 1.1rem;
    }
}

/* =========================================
   APPOINTMENT PAGE – HERO + LAYOUT
   (body has class: landing--interior-designer fsa-appointment)
========================================= */

/* smaller hero for appointment page */
body.landing--interior-designer.fsa-appointment .fsa-hero {
     padding: 2.4rem 0 2.6rem;
}

.fsa-hero--appointment {
    max-width: 880px;
}

/* appointment content block with Calendly */
.fsa-appointment-section {
    background: var(--fsa-bg-page);
}

.fsa-appointment-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: 2rem;
    align-items: flex-start;
}

.fsa-appointment-copy h2 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.fsa-appointment-copy p {
    font-size: 0.95rem;
    color: var(--fsa-text-soft);
    margin-bottom: 0.9rem;
}

.fsa-appointment-copy .fsa-bullets li::before {
    color: var(--fsa-cta-dark);
}

/* Calendly widget styling */
.fsa-appointment-calendly {
    background: #ffffff;
    border-radius: 18px;
    padding: 0;
    box-shadow: 0 20px 60px rgba(15, 23, 42, 0.2);
    border: 1px solid var(--fsa-border-soft);
    overflow: hidden;
}

.fsa-appointment-calendly .calendly-inline-widget {
    min-width: 100%;
    height: 650px;
}

/* responsive */
@media (max-width: 991.98px) {
    .fsa-appointment-grid {
        grid-template-columns: minmax(0, 1fr);
    }

    .fsa-appointment-calendly {
        margin-top: 1rem;
    }

    body.landing--interior-designer.fsa-appointment .fsa-hero {
        padding: 2.4rem 0 2.6rem;
    }
}

@media (max-width: 575.98px) {
    body.landing--interior-designer.fsa-appointment .fsa-hero {
        padding: 2.1rem 0 2.3rem;
    }

    .fsa-appointment-calendly .calendly-inline-widget {
        height: 580px;
    }
}

/* =========================================
   THANK YOU PAGE
   (body class: landing--interior-designer fsa-thankyou)
========================================= */

/* slightly smaller, centered hero */
.fsa-thankyou-hero {
    padding: 3.4rem 0 3.8rem;
    text-align: center;
}

.fsa-thankyou-hero h1 {
    font-size: clamp(2.2rem, 3vw + 1.2rem, 2.8rem);
    font-weight: 800;
    margin-bottom: 1rem;
}

.fsa-thankyou-hero p {
    max-width: 640px;
    margin: 0 auto;
    font-size: 0.98rem;
}

/* buttons under hero text */
.fsa-thankyou-actions {
    margin-top: 2rem;
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

/* tweak hero padding only on thank-you page (reuses gradient) */
body.landing--interior-designer.fsa-thankyou .fsa-hero {
    padding-top: 3.4rem;
    padding-bottom: 3.8rem;
}
