/*
 * ============================================================
 *  inline-overrides.css
 *  QAF International SPC — Website
 *
 *  Purpose: Houses all styles that were previously written as
 *  inline style="" attributes or scattered <style> blocks
 *  across the Blade templates.  Organised by component /
 *  page section for easy maintenance.
 * ============================================================
 */


/* ============================================================
   1. NAVIGATION — Dropdown (was in includes/style.blade.php)
   ============================================================ */

/* Dropdown trigger button */
.nav-dropdown-btn {
    background: none;
    border: none;
    padding: 0 0 3px;
    font-family: 'Nunito Sans', sans-serif;
    font-size: 13px;
    font-weight: 700;
    color: var(--navy);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    position: relative;
    transition: color var(--transition);
    white-space: nowrap;
    line-height: 1;
}

.nav-dropdown-btn::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--crimson);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.25s;
}

.nav-dropdown-btn:hover,
.nav-dropdown-btn[aria-expanded="true"] {
    color: var(--crimson);
}

.nav-dropdown-btn:hover::after,
.nav-dropdown-btn[aria-expanded="true"]::after {
    transform: scaleX(1);
}

/* Chevron icon inside dropdown button */
.nav-chevron {
    color: var(--crimson);
    transition: transform 0.22s ease;
    flex-shrink: 0;
}

.nav-dropdown-btn[aria-expanded="true"] .nav-chevron {
    transform: rotate(180deg);
}

/* Dropdown panel */
.nav-sub-links {
    position: fixed;
    top: 0;
    left: 0;
    min-width: 240px;
    background: #fff;
    border: 1px solid var(--border-cream);
    box-shadow: 0 12px 40px rgba(27, 42, 74, 0.14);
    border-radius: 6px;
    padding: 8px;
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-4px);
    transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s;
}

/*
 * Invisible hover-bridge: fills the gap between the nav button
 * and the panel so the mouse moving downward never triggers
 * mouseleave on the li.
 */
.nav-sub-links::after {
    content: '';
    position: absolute;
    top: -16px;
    left: -20px;
    right: -20px;
    height: 16px;
    background: transparent;
}

/* Caret arrow */
.nav-sub-links::before {
    content: '';
    position: absolute;
    top: -6px;
    left: var(--caret-pos, 50%);
    transform: translateX(-50%);
    width: 12px;
    height: 6px;
    background: #fff;
    clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
    z-index: 1;
}

.nav-sub-links.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
}

/* Dropdown items */
.nav-sub-links li {
    list-style: none;
}

.nav-sub-links a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 14px;
    border-radius: 4px;
    text-decoration: none;
    transition: background 0.15s;
    color: var(--navy);
}

.nav-sub-links a:hover {
    background: var(--crimson-light);
    color: var(--crimson);
}

.nav-sub-links a::after {
    display: none !important;
}

/* Sub-link icon & text */
.sub-icon {
    font-size: 22px;
    flex-shrink: 0;
    line-height: 1;
}

.sub-text {
    display: flex;
    flex-direction: column;
    gap: 1px;
}

.sub-text strong {
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--navy);
}

.nav-sub-links a:hover .sub-text strong {
    color: var(--crimson);
}

.sub-text em {
    font-style: normal;
    font-size: 11px;
    color: var(--text-muted);
    font-weight: 400;
}

/* Mobile dropdown */
@media (max-width: 900px) {
    .nav-sub-links {
        position: static !important;
        top: auto !important;
        left: auto !important;
        transform: none !important;
        opacity: 1;
        visibility: hidden;
        pointer-events: none;
        max-height: 0;
        overflow: hidden;
        box-shadow: none;
        border: none;
        border-radius: 0;
        background: transparent;
        padding: 0 0 0 12px;
        transition: max-height 0.28s ease, visibility 0.28s;
    }

    .nav-sub-links::after,
    .nav-sub-links::before {
        display: none;
    }

    .nav-sub-links.is-open {
        visibility: visible;
        pointer-events: auto;
        max-height: 200px;
        transform: none !important;
    }

    .nav-sub-links a {
        padding: 10px 0;
        border-bottom: 1px solid var(--border-cream);
        border-radius: 0;
    }

    .nav-sub-links li:last-child a {
        border-bottom: none;
    }
}


/* ============================================================
   2. FOOTER — Logo badges & location text
      (was inline in includes/footer.blade.php)
   ============================================================ */

/* QAF logo badge in footer */
.footer-logo-qaf {
    font-size: 17px;
    padding: 5px 14px;
}

/* Amirah logo badge in footer */
.footer-logo-amirah {
    font-size: 12px;
    padding: 5px 14px;
}

/* Muted location text in footer contact column */
.footer-location-text {
    color: rgba(255, 255, 255, 0.35);
}


/* ============================================================
   3. HOME PAGE — Section wrappers & utility overrides
      (was inline in home/index.blade.php)
   ============================================================ */

/* "Learn More" button wrapper — adds top spacing */
.home-overview-cta {
    margin-top: 32px;
}

/* Overview visual column — relative positioning for floating cards */
.overview-visual-wrap {
    position: relative;
}

/* Warehouse card heading */
.warehouse-card-title {
    font-family: 'Cinzel', serif;
    font-size: 18px;
    font-weight: 700;
    color: white;
    margin-bottom: 8px;
}

/* Brand logos inside the floating brands card */
.brands-floating-logo-qaf {
    font-size: 15px;
    padding: 4px 12px;
    display: inline-block;
}

.brands-floating-logo-amirah {
    font-size: 11px;
    padding: 4px 12px;
    display: inline-block;
    margin-top: 6px;
}

/* Section header block — centered, max-width constrained */
.section-header-centered {
    text-align: center;
    max-width: 560px;
    margin: 0 auto 0;
}

/* Coverage area label above the coverage grid */
.coverage-area-label {
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.3);
    margin-bottom: 16px;
}

/* "View Full Catalogue" button wrapper */
.products-view-all {
    text-align: center;
    margin-top: 48px;
}

/* Brand card name heading */
.brand-card-name {
    font-size: 15px;
    font-weight: 700;
    color: var(--navy);
}

/* Brand card "View Products" button */
.brand-card-cta {
    margin-top: 20px;
    display: inline-block;
}

/* Lead member bio paragraph */
.lead-member-bio {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.65);
    margin-top: 10px;
    line-height: 1.6;
    max-width: 540px;
}


/* ============================================================
   4. ABOUT PAGE — Section wrappers & utility overrides
      (was inline in about/index.blade.php)
   ============================================================ */

/* About hero container — keeps content above decorative bg */
.about-hero-container {
    position: relative;
    z-index: 2;
}

/* Vision/Mission section header */
.vm-section-header {
    text-align: center;
    max-width: 560px;
    margin: 0 auto 0;
}

/* Mission card — navy background variant */
.vm-card-navy {
    background: var(--navy);
}

/* Story section gold rule — extra bottom margin */
.story-gold-rule {
    margin-bottom: 24px;
}

/* "Partner With Us" CTA button in story section */
.story-cta {
    margin-top: 12px;
}

/* Timeline section tag — extra bottom margin */
.timeline-section-tag {
    margin-bottom: 20px;
}

/* Strategy section header */
.strategy-section-header {
    text-align: center;
    max-width: 560px;
    margin: 0 auto 0;
}

/* About page lead member bio — slightly wider than home */
.about-lead-member-bio {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.65);
    margin-top: 10px;
    line-height: 1.6;
    max-width: 600px;
}


/* ============================================================
   5. CONTACT PAGE — Hero & info section overrides
      (was inline in contact/index.blade.php)
   ============================================================ */

/* Section tag in contact hero — lighter colour on dark bg */
.contact-hero-section-tag {
    color: rgba(255, 255, 255, 0.6);
}

/* Intro paragraph in contact hero */
.contact-hero-intro {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.65);
    margin-top: 20px;
    line-height: 1.8;
    max-width: 440px;
}

/* Non-clickable quick-link item (address) */
.cql-item-static {
    cursor: default;
}

/* Branch offices block — top spacing */
.branch-offices-block {
    margin-top: 28px;
}

/* Branch offices label */
.branch-offices-label {
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 14px;
}

/* Phone link in contact info — inherits navy colour */
.contact-info-link {
    color: var(--navy);
    text-decoration: none;
}

/* FAQ section header wrapper */
.faq-section-header {
    text-align: center;
    margin-bottom: 52px;
}


/* ============================================================
   6. PRODUCTS PAGE — Hero stat superscript
      (was inline in products/index.blade.php)
   ============================================================ */

/* Superscript "+" in products hero stat numbers */
.phs-num-sup {
    font-size: 16px;
    color: var(--crimson);
}

/* Empty category message */
.cat-empty-message {
    padding: 10px 0;
}


/* ============================================================
   7. IT SERVICES PAGE — Full dark-theme stylesheet
      (was a large <style> block in it-services/index.blade.php)
   ============================================================ */

/* ── PDF colour palette ── */
:root {
    --ds-navy:       #0D1B2E;
    --ds-navy-mid:   #132240;
    --ds-navy-card:  #1A2D4A;
    --ds-crimson:    #C8102E;
    --ds-crimson-d:  #9E0B22;
    --ds-gold:       #C5963A;
    --ds-gold-light: #E8C97A;
    --ds-white:      #FFFFFF;
    --ds-off-white:  #E8EDF5;
    --ds-text:       #B8C5D8;
    --ds-muted:      #6B7E96;
    --ds-border:     rgba(197, 150, 58, 0.25);
    --ds-glow:       rgba(200, 16, 46, 0.18);
}

/* Global section reset for dark theme */
.its-hero,
.its-ticker,
.its-services,
.its-process,
.its-why,
.its-plans,
.its-faq,
.its-cta-banner {
    background: var(--ds-navy);
    color: var(--ds-off-white);
}

.its-services { background: var(--ds-navy-mid); }
.its-why      { background: var(--ds-navy-mid); }
.its-faq      { background: var(--ds-navy); }

/* Section header */
.its-section-header {
    text-align: center;
    margin-bottom: 52px;
}

.its-section-header .section-tag {
    display: inline-block;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--ds-crimson);
    background: rgba(200, 16, 46, 0.12);
    border: 1px solid rgba(200, 16, 46, 0.3);
    padding: 5px 16px;
    border-radius: 2px;
    margin-bottom: 16px;
}

.its-section-header .section-title,
.its-page .section-title {
    font-family: 'Cinzel', serif;
    font-size: clamp(26px, 3.5vw, 40px);
    font-weight: 700;
    color: var(--ds-white);
    line-height: 1.2;
    margin-bottom: 10px;
}

.its-page .section-title em {
    color: var(--ds-crimson);
    font-style: normal;
}

.its-section-sub {
    color: var(--ds-text);
    font-size: 15px;
    max-width: 560px;
    margin: 10px auto 0;
    line-height: 1.7;
}

/* Gold rule below section header title */
.its-section-header::after {
    content: '';
    display: block;
    width: 56px;
    height: 3px;
    background: linear-gradient(90deg, var(--ds-gold), var(--ds-gold-light), var(--ds-gold));
    margin: 14px auto 0;
}

/* ── Hero ── */
.its-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: calc(var(--nav-height, 76px) + 60px) 0 80px;
    overflow: hidden;
    background: var(--ds-navy);
}

.its-hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
}

.its-hero-grid-lines {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(197, 150, 58, 0.06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(197, 150, 58, 0.06) 1px, transparent 1px);
    background-size: 60px 60px;
}

.its-hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
}

.its-hero-orb--1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(200, 16, 46, 0.22) 0%, transparent 70%);
    top: -100px;
    right: -80px;
}

.its-hero-orb--2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(197, 150, 58, 0.14) 0%, transparent 70%);
    bottom: -60px;
    left: -60px;
}

/* Scattered star dots */
.its-hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(1px 1px at 15% 20%, rgba(255, 255, 255, 0.6) 0%, transparent 100%),
        radial-gradient(1px 1px at 30% 65%, rgba(255, 255, 255, 0.4) 0%, transparent 100%),
        radial-gradient(1.5px 1.5px at 55% 10%, rgba(255, 255, 255, 0.5) 0%, transparent 100%),
        radial-gradient(1px 1px at 70% 45%, rgba(255, 255, 255, 0.35) 0%, transparent 100%),
        radial-gradient(1px 1px at 82% 75%, rgba(255, 255, 255, 0.45) 0%, transparent 100%),
        radial-gradient(1.5px 1.5px at 92% 25%, rgba(255, 255, 255, 0.55) 0%, transparent 100%),
        radial-gradient(1px 1px at 10% 80%, rgba(255, 255, 255, 0.3) 0%, transparent 100%),
        radial-gradient(1px 1px at 45% 90%, rgba(255, 255, 255, 0.4) 0%, transparent 100%);
}

.its-hero .container {
    position: relative;
    z-index: 1;
}

.its-hero-inner {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 60px;
    align-items: center;
}

/* Hero copy */
.its-hero-copy .section-tag {
    display: inline-block;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--ds-gold);
    border: 1px solid var(--ds-border);
    padding: 5px 16px;
    border-radius: 2px;
    margin-bottom: 24px;
    background: rgba(197, 150, 58, 0.08);
}

.its-hero-copy h1 {
    font-family: 'Cinzel', serif;
    font-size: clamp(32px, 5vw, 58px);
    font-weight: 700;
    color: var(--ds-white);
    line-height: 1.15;
    margin-bottom: 22px;
}

.its-hero-copy h1 em {
    color: var(--ds-crimson);
    font-style: normal;
}

.its-hero-copy p {
    color: var(--ds-text);
    font-size: 16px;
    line-height: 1.75;
    max-width: 520px;
    margin-bottom: 36px;
}

/* Gold rule under hero h1 */
.its-hero-copy h1::after {
    content: '';
    display: block;
    width: 70px;
    height: 3px;
    background: linear-gradient(90deg, var(--ds-gold), var(--ds-gold-light));
    margin-top: 18px;
}

.its-hero-btns {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 32px;
}

/* Button overrides for dark hero */
.its-hero .btn-primary {
    background: var(--ds-crimson);
    color: #fff;
    border: 2px solid var(--ds-crimson);
    padding: 13px 30px;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border-radius: 3px;
    text-decoration: none;
    transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
    display: inline-block;
}

.its-hero .btn-primary:hover {
    background: var(--ds-crimson-d);
    transform: translateY(-2px);
    box-shadow: 0 8px 28px var(--ds-glow);
}

.its-hero .btn-outline-white {
    background: transparent;
    color: var(--ds-off-white);
    border: 2px solid rgba(197, 150, 58, 0.5);
    padding: 13px 30px;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border-radius: 3px;
    text-decoration: none;
    transition: border-color 0.2s, color 0.2s;
    display: inline-block;
}

.its-hero .btn-outline-white:hover {
    border-color: var(--ds-gold);
    color: var(--ds-gold);
}

/* Trust badges */
.its-hero-trust {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.its-trust-badge {
    font-size: 12px;
    font-weight: 700;
    color: var(--ds-text);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 6px 14px;
    border-radius: 3px;
    letter-spacing: 0.04em;
}

/* Hero stat cards */
.its-hero-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    width: 280px;
    flex-shrink: 0;
}

.its-stat-card {
    background: var(--ds-navy-card);
    border: 1px solid var(--ds-border);
    border-radius: 8px;
    padding: 22px 18px;
    text-align: center;
    transition: transform 0.2s, box-shadow 0.2s;
}

.its-stat-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.its-stat-card--accent {
    background: var(--ds-crimson);
    border-color: var(--ds-crimson);
}

.its-stat-card--dark {
    background: rgba(197, 150, 58, 0.12);
    border-color: var(--ds-border);
}

.its-stat-icon {
    font-size: 24px;
    margin-bottom: 8px;
}

.its-stat-num {
    font-family: 'Cinzel', serif;
    font-size: 26px;
    font-weight: 700;
    color: var(--ds-white);
    line-height: 1;
}

.its-stat-num span {
    font-size: 14px;
    color: var(--ds-gold);
}

.its-stat-card--accent .its-stat-num span {
    color: rgba(255, 255, 255, 0.8);
}

.its-stat-label {
    font-size: 11px;
    font-weight: 700;
    color: var(--ds-text);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-top: 4px;
}

.its-stat-card--accent .its-stat-label {
    color: rgba(255, 255, 255, 0.8);
}

/* Entrance animations */
.anim-1 { animation: fadeUp 0.6s ease both 0.1s; }
.anim-2 { animation: fadeUp 0.6s ease both 0.2s; }
.anim-3 { animation: fadeUp 0.6s ease both 0.35s; }
.anim-4 { animation: fadeUp 0.6s ease both 0.5s; }
.anim-5 { animation: fadeUp 0.6s ease both 0.65s; }

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

/* ── Ticker ── */
.its-ticker {
    background: var(--ds-crimson);
    padding: 14px 0;
    overflow: hidden;
    border-top: 1px solid var(--ds-crimson-d);
    border-bottom: 1px solid var(--ds-crimson-d);
}

.its-ticker-track {
    display: flex;
    gap: 0;
    width: max-content;
    animation: itsTicker 28s linear infinite;
}

@keyframes itsTicker {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}

.its-ticker-item {
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.95);
    white-space: nowrap;
    padding: 0 28px;
}

.its-ticker-sep {
    color: rgba(255, 255, 255, 0.4);
    font-size: 8px;
    align-self: center;
    flex-shrink: 0;
}

/* ── Services grid ── */
.its-services {
    padding: 100px 0;
}

.its-services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.its-service-card {
    background: var(--ds-navy-card);
    border: 1px solid var(--ds-border);
    border-radius: 8px;
    padding: 32px 28px;
    transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
    position: relative;
    overflow: hidden;
}

.its-service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--ds-crimson), var(--ds-gold));
    opacity: 0;
    transition: opacity 0.25s;
}

.its-service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    border-color: rgba(200, 16, 46, 0.4);
}

.its-service-card:hover::before {
    opacity: 1;
}

.its-sc-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 18px;
}

.its-sc-icon {
    width: 52px;
    height: 52px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}

.its-sc-icon--crimson {
    background: rgba(200, 16, 46, 0.15);
    border: 1px solid rgba(200, 16, 46, 0.3);
}

.its-sc-icon--gold {
    background: rgba(197, 150, 58, 0.12);
    border: 1px solid rgba(197, 150, 58, 0.3);
}

.its-sc-icon--navy {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.its-sc-tag {
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--ds-gold);
    background: rgba(197, 150, 58, 0.1);
    border: 1px solid var(--ds-border);
    padding: 3px 10px;
    border-radius: 2px;
}

.its-service-card h3 {
    font-family: 'Cinzel', serif;
    font-size: 16px;
    font-weight: 700;
    color: var(--ds-white);
    margin-bottom: 10px;
}

.its-service-card p {
    color: var(--ds-text);
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 18px;
}

.its-sc-list {
    list-style: none;
    padding: 0;
    margin-bottom: 24px;
}

.its-sc-list li {
    font-size: 13px;
    color: var(--ds-text);
    padding: 6px 0 6px 18px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
}

.its-sc-list li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: var(--ds-crimson);
    font-size: 10px;
}

.its-sc-list li:last-child {
    border-bottom: none;
}

.its-sc-cta {
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--ds-crimson);
    text-decoration: none;
    border-bottom: 1px solid rgba(200, 16, 46, 0.4);
    padding-bottom: 2px;
    transition: color 0.2s, border-color 0.2s;
}

.its-sc-cta:hover {
    color: var(--ds-gold);
    border-color: var(--ds-gold);
}

/* ── Process steps ── */
.its-process {
    padding: 100px 0;
    background: var(--ds-navy);
}

.its-process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    position: relative;
}

.its-process-steps::before {
    content: '';
    position: absolute;
    top: 36px;
    left: 10%;
    width: 80%;
    height: 2px;
    background: linear-gradient(90deg, var(--ds-crimson), var(--ds-gold), var(--ds-crimson));
    opacity: 0.35;
    z-index: 0;
}

.its-step {
    text-align: center;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

.its-step-num {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Cinzel', serif;
    font-size: 22px;
    font-weight: 700;
    color: var(--ds-white);
    background: linear-gradient(135deg, var(--ds-crimson), var(--ds-crimson-d));
    border: 3px solid var(--ds-navy);
    box-shadow: 0 0 0 3px var(--ds-crimson), 0 8px 24px rgba(200, 16, 46, 0.3);
    margin: 0 auto 24px;
}

.its-step-connector {
    display: none;
}

.its-step-body h4 {
    font-family: 'Cinzel', serif;
    font-size: 15px;
    font-weight: 700;
    color: var(--ds-white);
    margin-bottom: 10px;
}

.its-step-body p {
    font-size: 13px;
    color: var(--ds-text);
    line-height: 1.7;
}

/* ── Why QAF ── */
.its-why {
    padding: 100px 0;
}

.its-why-inner {
    display: grid;
    grid-template-columns: 1fr 1.6fr;
    gap: 80px;
    align-items: center;
}

.its-why-copy .section-tag {
    display: inline-block;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--ds-crimson);
    background: rgba(200, 16, 46, 0.12);
    border: 1px solid rgba(200, 16, 46, 0.3);
    padding: 5px 16px;
    border-radius: 2px;
    margin-bottom: 16px;
}

.its-why-copy .section-title {
    font-size: clamp(28px, 3.5vw, 44px);
    margin-bottom: 18px;
}

.its-why-copy p {
    color: var(--ds-text);
    font-size: 15px;
    line-height: 1.75;
    margin-bottom: 32px;
}

.its-why-copy .btn-white {
    display: inline-block;
    background: var(--ds-crimson);
    color: #fff;
    border: 2px solid var(--ds-crimson);
    padding: 13px 30px;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border-radius: 3px;
    text-decoration: none;
    transition: background 0.2s, transform 0.2s;
}

.its-why-copy .btn-white:hover {
    background: var(--ds-crimson-d);
    transform: translateY(-2px);
}

.its-why-feats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.its-feat {
    background: var(--ds-navy-card);
    border: 1px solid var(--ds-border);
    border-radius: 8px;
    padding: 20px 18px;
    display: flex;
    gap: 14px;
    align-items: flex-start;
    transition: border-color 0.2s, transform 0.2s;
}

.its-feat:hover {
    border-color: rgba(200, 16, 46, 0.4);
    transform: translateY(-3px);
}

.its-feat-icon {
    font-size: 26px;
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(200, 16, 46, 0.1);
    border-radius: 6px;
}

.its-feat h4 {
    font-family: 'Cinzel', serif;
    font-size: 13px;
    font-weight: 700;
    color: var(--ds-white);
    margin-bottom: 5px;
}

.its-feat p {
    font-size: 12px;
    color: var(--ds-text);
    line-height: 1.6;
    margin: 0;
}

/* ── Plans / Packages ── */
.its-plans {
    padding: 100px 0;
    background: var(--ds-navy-mid);
}

.its-plans-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    align-items: start;
}

.its-plan {
    background: var(--ds-navy-card);
    border: 1px solid var(--ds-border);
    border-radius: 10px;
    padding: 36px 30px;
    position: relative;
    transition: transform 0.25s, box-shadow 0.25s;
}

.its-plan:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.its-plan--featured {
    background: linear-gradient(160deg, var(--ds-navy-card) 0%, rgba(200, 16, 46, 0.08) 100%);
    border-color: var(--ds-crimson);
    transform: scale(1.04);
}

.its-plan--featured:hover {
    transform: scale(1.04) translateY(-6px);
}

.its-plan-badge {
    display: inline-block;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #fff;
    background: var(--ds-crimson);
    padding: 4px 14px;
    border-radius: 2px;
    margin-bottom: 18px;
}

.its-plan-label {
    font-family: 'Cinzel', serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--ds-gold);
    margin-bottom: 8px;
}

.its-plan-price {
    font-family: 'Cinzel', serif;
    font-size: 30px;
    font-weight: 700;
    color: var(--ds-white);
    margin-bottom: 8px;
}

.its-plan-price span {
    font-size: 14px;
    color: var(--ds-text);
    font-family: 'Nunito Sans', sans-serif;
    font-weight: 400;
}

.its-plan-desc {
    font-size: 13px;
    color: var(--ds-text);
    line-height: 1.65;
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--ds-border);
}

.its-plan-list {
    list-style: none;
    padding: 0;
    margin-bottom: 28px;
}

.its-plan-list li {
    font-size: 13px;
    color: var(--ds-text);
    padding: 7px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.its-plan-list li.muted {
    color: var(--ds-muted);
}

.its-plan-list li:last-child {
    border-bottom: none;
}

.its-plan .btn-outline,
.its-plan .btn-primary {
    display: block;
    text-align: center;
    padding: 12px 24px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    border-radius: 3px;
    text-decoration: none;
    transition: background 0.2s, color 0.2s, transform 0.2s;
}

.its-plan .btn-outline {
    border: 2px solid var(--ds-border);
    color: var(--ds-off-white);
    background: transparent;
}

.its-plan .btn-outline:hover {
    border-color: var(--ds-gold);
    color: var(--ds-gold);
}

.its-plan .btn-primary {
    background: var(--ds-crimson);
    color: #fff;
    border: 2px solid var(--ds-crimson);
}

.its-plan .btn-primary:hover {
    background: var(--ds-crimson-d);
    transform: translateY(-2px);
}

/* ── FAQ ── */
.its-faq {
    padding: 100px 0;
}

.its-faq-inner {
    display: grid;
    grid-template-columns: 1fr 1.8fr;
    gap: 80px;
    align-items: start;
}

.its-faq-copy .section-tag {
    display: inline-block;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--ds-crimson);
    background: rgba(200, 16, 46, 0.12);
    border: 1px solid rgba(200, 16, 46, 0.3);
    padding: 5px 16px;
    border-radius: 2px;
    margin-bottom: 16px;
}

.its-faq-copy .section-title {
    margin-bottom: 16px;
}

.its-faq-copy p {
    color: var(--ds-text);
    font-size: 14px;
    line-height: 1.7;
}

.its-faq-copy a {
    color: var(--ds-crimson);
    text-decoration: none;
}

.its-faq-copy a:hover {
    color: var(--ds-gold);
}

/* FAQ accordion items */
.faq-item {
    background: var(--ds-navy-card);
    border: 1px solid var(--ds-border);
    border-radius: 6px;
    margin-bottom: 10px;
    cursor: pointer;
    transition: border-color 0.2s;
    overflow: hidden;
}

.faq-item:hover {
    border-color: rgba(200, 16, 46, 0.4);
}

.faq-item.open {
    border-color: var(--ds-crimson);
}

.faq-q {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 22px;
    font-size: 14px;
    font-weight: 700;
    color: var(--ds-white);
    gap: 16px;
}

.faq-chevron {
    font-size: 22px;
    color: var(--ds-crimson);
    font-weight: 300;
    flex-shrink: 0;
    transition: transform 0.22s;
}

.faq-item.open .faq-chevron {
    transform: rotate(45deg);
}

.faq-a {
    font-size: 13px;
    color: var(--ds-text);
    line-height: 1.7;
    max-height: 0;
    overflow: hidden;
    padding: 0 22px;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.open .faq-a {
    max-height: 200px;
    padding: 0 22px 18px;
}

/* ── CTA Banner (IT Services page override) ── */
.its-cta-banner {
    padding: 100px 0;
    background: var(--ds-navy);
    border-top: 1px solid var(--ds-border);
    position: relative;
    overflow: hidden;
}

.its-cta-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 60% 80% at 80% 50%, rgba(200, 16, 46, 0.14) 0%, transparent 70%),
        radial-gradient(ellipse 40% 60% at 10% 50%, rgba(197, 150, 58, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

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

.its-cta-banner .cta-banner-eyebrow {
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--ds-gold);
    margin-bottom: 12px;
}

.its-cta-banner .cta-banner-title {
    font-family: 'Cinzel', serif;
    font-size: clamp(22px, 3vw, 36px);
    font-weight: 700;
    color: var(--ds-white);
    margin-bottom: 14px;
}

.its-cta-banner .cta-banner-sub {
    color: var(--ds-text);
    font-size: 15px;
    line-height: 1.7;
    max-width: 500px;
}

.its-cta-banner .cta-banner-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    flex-shrink: 0;
}

.its-cta-banner .btn-white {
    display: inline-block;
    background: var(--ds-crimson);
    color: #fff;
    border: 2px solid var(--ds-crimson);
    padding: 14px 32px;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border-radius: 3px;
    text-decoration: none;
    transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
    white-space: nowrap;
}

.its-cta-banner .btn-white:hover {
    background: var(--ds-crimson-d);
    transform: translateY(-2px);
    box-shadow: 0 8px 28px var(--ds-glow);
}

.its-cta-banner .btn-outline-white {
    display: inline-block;
    background: transparent;
    color: var(--ds-off-white);
    border: 2px solid rgba(197, 150, 58, 0.5);
    padding: 14px 32px;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border-radius: 3px;
    text-decoration: none;
    transition: border-color 0.2s, color 0.2s;
    white-space: nowrap;
}

.its-cta-banner .btn-outline-white:hover {
    border-color: var(--ds-gold);
    color: var(--ds-gold);
}

/* ── Fade card animation ── */
.fade-card {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.fade-card.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ── IT Services responsive ── */
@media (max-width: 1100px) {
    .its-services-grid { grid-template-columns: repeat(2, 1fr); }
    .its-plans-grid    { grid-template-columns: repeat(2, 1fr); }
    .its-plan--featured { transform: none; }
    .its-plan--featured:hover { transform: translateY(-6px); }
}

@media (max-width: 900px) {
    .its-hero-inner    { grid-template-columns: 1fr; }
    .its-hero-cards    { width: 100%; grid-template-columns: repeat(4, 1fr); }
    .its-process-steps { grid-template-columns: repeat(2, 1fr); gap: 32px; }
    .its-process-steps::before { display: none; }
    .its-why-inner     { grid-template-columns: 1fr; gap: 40px; }
    .its-faq-inner     { grid-template-columns: 1fr; gap: 40px; }
    .its-cta-banner .cta-banner-inner { flex-direction: column; text-align: center; align-items: center; }
}

@media (max-width: 640px) {
    .its-services-grid  { grid-template-columns: 1fr; }
    .its-plans-grid     { grid-template-columns: 1fr; }
    .its-why-feats      { grid-template-columns: 1fr; }
    .its-hero-cards     { grid-template-columns: repeat(2, 1fr); }
    .its-process-steps  { grid-template-columns: 1fr; }
    .its-hero-btns      { flex-direction: column; }
    .its-cta-banner .cta-banner-actions { flex-direction: column; width: 100%; }
    .its-cta-banner .btn-white,
    .its-cta-banner .btn-outline-white  { text-align: center; }
}
