.h-section {
  position: relative;
  min-height: -5vh;
  display: flex;
  align-items: center;
  background: #FAFAF8;
  overflow: hidden;
  padding: clamp(72px,10vh,120px) clamp(20px,5vw,72px);
}

canvas#hGrid {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  pointer-events: none;
  z-index: 0;
}

/* Accent bleed — top-right corner warm wash */
.h-section::before {
  content:'';
  position: absolute;
  top:-160px; right:-160px;
  width: 480px; height: 480px;
  background: radial-gradient(circle, rgba(184,134,11,.09) 0%, transparent 68%);
  z-index: 0;
}

.h-wrap {
  position: relative; z-index: 1;
  max-width: 1350px; margin: 0 auto; width: 100%;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(36px,5vw,88px);
  align-items: center;
}

/* ---- LEFT ---- */
.h-left { display: flex; flex-direction: column; }

.h-pill {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 6px 14px;
  background: var(--fm-gold-bg);
  border: 1px solid var(--fm-gold-rim);
  border-radius: 50px;
  font-size: 11px; font-weight: 700;
  letter-spacing: 1.6px; text-transform: uppercase;
  color: var(--fm-gold);
  width: fit-content;
  margin-bottom: 26px;
  animation: up .5s ease both;
}
.h-pill-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--fm-gold);
  animation: blink 2.2s ease-in-out infinite;
}

.h-title {
  font-size: clamp(2.2rem, 4.8vw, 3.9rem);
  font-weight: 800;
  line-height: 1.07;
  letter-spacing: -1.5px;
  color: var(--fm-ink);
  margin-bottom: 20px;
  animation: up .5s .08s ease both;
}
.h-title em {
  font-style: normal;
  background: linear-gradient(110deg, var(--fm-gold) 0%, #A0522D 55%, var(--fm-green) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.h-desc {
  font-size: clamp(.93rem,1.7vw,1.05rem);
  color: var(--fm-muted);
  line-height: 1.78;
  max-width: 500px;
  margin-bottom: 38px;
  font-weight: 400;
  animation: up .5s .16s ease both;
}

.h-ctas {
  display: flex; align-items: center; gap: 12px;
  margin-bottom: 48px; flex-wrap: wrap;
  animation: up .5s .22s ease both;
}

.h-btn {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 13px 26px; border-radius: var(--fm-r);
  font-size: 13.5px; font-weight: 700; cursor: pointer;
  text-decoration: none; transition: .22s;
  border: 1.5px solid transparent;
}
.h-btn-solid {
  background: var(--fm-gold);
  color: #fff;
  box-shadow: 0 4px 20px rgba(184,134,11,.2);
}
.h-btn-solid:hover { background: #9A6C06; transform: translateY(-2px); box-shadow: 0 10px 28px rgba(184,134,11,.28); }

.h-btn-outline {
  border-color: var(--fm-border);
  color: var(--fm-ink);
  background: var(--fm-white);
}
.h-btn-outline:hover { border-color: var(--fm-gold); color: var(--fm-gold); }

.h-stats {
  display: flex; gap: 0;
  padding-top: 28px;
  border-top: 1px solid var(--fm-border);
  animation: up .5s .3s ease both;
}
.h-stat {
  padding-right: 32px; margin-right: 32px;
  border-right: 1px solid var(--fm-border);
}
.h-stat:last-child { border-right: none; margin-right: 0; padding-right: 0; }
.h-stat strong {
  display: block;
  font-size: clamp(1.5rem,2.4vw,1.9rem);
  font-weight: 800;
  color: var(--fm-ink);
  line-height: 1;
  background: linear-gradient(120deg, var(--fm-gold), var(--fm-green));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.h-stat span {
  font-size: 10.5px; font-weight: 600;
  letter-spacing: 1.3px; text-transform: uppercase;
  color: var(--fm-muted); margin-top: 5px; display: block;
}

/* ---- RIGHT: CARD ---- */
.h-right { display: flex; justify-content: center; animation: card-in .7s .2s ease both; }

.h-card {
  width: 100%; max-width: 410px;
  background: var(--fm-white);
  border: 1px solid var(--fm-border);
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 2px 4px rgba(0,0,0,.04), 0 24px 60px -12px rgba(0,0,0,.1);
  position: relative;
  transition: transform .3s ease, box-shadow .3s ease;
}
.h-card:hover { 
  transform: translateY(-4px); 
  box-shadow: 0 4px 12px rgba(0,0,0,.04), 0 32px 72px -10px rgba(0,0,0,.14);
}

.h-card::before {
  content:'';
  position: absolute; top:0; left: 20px; right: 20px; height: 2px;
  background: linear-gradient(90deg, transparent, var(--fm-gold), var(--fm-green), transparent);
  border-radius: 2px;
}

.h-card-top {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 20px;
}
.h-card-label {
  font-size: 10.5px; font-weight: 800;
  letter-spacing: 2px; text-transform: uppercase;
  color: var(--fm-gold);
}
.h-dots { display: flex; gap: 5px; }
.h-dot { width: 8px; height: 8px; border-radius: 50%; opacity: .7; }

.h-sep { height: 1px; background: var(--fm-border); margin-bottom: 20px; }

.h-form { 
  display: flex; 
  flex-direction: column; 
  gap: 10px; 
  position: relative; 
}

.h-field {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0;
  background: #F9FAFB;
  border: 1px solid var(--fm-border);
  border-radius: 9px;
  transition: border-color .2s, box-shadow .2s;
}
.h-field:not(.h-dropdown) {
  overflow: hidden;
}
.h-field:focus-within {
  border-color: var(--fm-gold-rim);
  box-shadow: 0 0 0 3px rgba(184,134,11,.08);
  background: #fff;
}
.h-field i {
  width: 40px; text-align: center;
  color: #9CA3AF; font-size: 12px; flex-shrink: 0;
}
.h-field:focus-within i { color: var(--fm-gold); }

/* Custom override for the phone icon to shift everything left */
.h-field i.h-phone-icon {
  width: 28px; 
  padding-left: 8px;
}

.h-field input,
.h-field textarea {
  flex: 1; padding: 12px 12px 12px 0;
  background: transparent; border: none; outline: none;
  font-size: 13.5px; color: var(--fm-ink);
  font-family: inherit;
}
.h-field input::placeholder,
.h-field textarea::placeholder { color: #9CA3AF; }

/* ---- PHONE & ZERO-CONFLICT COUNTRY DROP-DOWN ---- */
.h-phone-container {
  display: flex;
  align-items: center;
  flex: 1;
  position: relative;
  width: 100%;
}
.h-cc-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  border-right: 1px solid var(--fm-border);
  height: 43px;
  background: transparent;
  flex-shrink: 0;
}
.h-cc-select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background: transparent;
  border: none;
  outline: none;
  font-size: 13.5px;
  font-weight: 700;
  color: var(--fm-ink);
  cursor: pointer;
  height: 100%;
  font-family: inherit;
  
  /* Pushed text left by reducing left padding to 4px, locked arrow gap to 34px */
  padding: 0 34px 0 4px; 
  
  /* Standard gold color vector dropdown icon embedded directly inside background */
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23b8860b' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><polyline points='6 9 12 15 18 9'></polyline></svg>");
  background-repeat: no-repeat;
  background-position: calc(100% - 10px) center;
  background-size: 10px;
}
.h-cc-select option {
  color: var(--fm-ink);
  background-color: #fff;
  font-family: inherit;
  font-weight: 600;
}
.h-phone-input {
  padding-left: 14px !important;
}

/* ---- HIGHLY CUSTOM DROP-DOWN ENGINE ---- */
.h-field.h-dropdown {
  cursor: pointer;
  position: relative;
}
.h-field.h-dropdown input[readonly] {
  cursor: pointer;
  padding-right: 40px;
  user-select: none;
}
.h-field.h-dropdown.active {
  border-color: var(--fm-gold-rim);
  box-shadow: 0 0 0 3px rgba(184,134,11,.08);
  background: #fff;
}

.h-dropdown-list {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  width: 100%;
  background: var(--fm-white);
  border: 1px solid var(--fm-border);
  border-radius: 9px;
  box-shadow: 0 10px 25px -5px rgba(0,0,0,0.1), 0 8px 10px -6px rgba(0,0,0,0.05);
  padding: 6px 0;
  margin: 0;
  list-style: none;
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s;
}
.h-field.h-dropdown.active .h-dropdown-list {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.h-dropdown-list li {
  padding: 10px 16px;
  font-size: 13.5px;
  color: var(--fm-ink);
  transition: background 0.15s, color 0.15s;
}
.h-dropdown-list li:hover {
  background: var(--fm-gold-bg);
  color: var(--fm-gold);
}

.h-dropdown-arrow {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%) rotate(0deg);
  color: #9CA3AF;
  font-size: 10px;
  pointer-events: none;
  z-index: 2;
  transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1), color 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.h-field.h-dropdown.active .h-dropdown-arrow {
  transform: translateY(-50%) rotate(180deg);
  color: var(--fm-gold);
}
.h-field.h-dropdown.active i {
  color: var(--fm-gold);
}

.h-field textarea { resize: none; padding-top: 12px; align-self: stretch; }
.h-field.h-ta { align-items: flex-start; }
.h-field.h-ta i { padding-top: 14px; }

.h-submit {
  margin-top: 4px; width: 100%; padding: 14px;
  background: linear-gradient(135deg, var(--fm-gold) 0%, #7A4A08 100%);
  border: none; border-radius: 9px;
  font-size: 14px; font-weight: 700; color: #fff;
  font-family: inherit; cursor: pointer;
  display: flex; align-items: center; justify-content: center; gap: 9px;
  transition: .22s; position: relative; overflow: hidden;
}
.h-submit::after {
  content:''; position: absolute; inset:0;
  background: linear-gradient(135deg, rgba(255,255,255,.14) 0%, transparent 55%);
}
.h-submit:hover { transform: translateY(-2px); box-shadow: 0 10px 28px rgba(184,134,11,.3); }

/* --- FORM ABSOLUTE CENTRE OVERLAY STATE WITH BOOM POP --- */
#formResponse {
  display: none; 
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%) scale(0.6);
  width: 90%;
  max-width: 320px;
  padding: 20px 16px; 
  border-radius: 12px;
  font-size: 14px; 
  text-align: center; 
  font-weight: 700;
  box-shadow: 0 15px 35px rgba(0,0,0,0.25);
  z-index: 1000;
  opacity: 0;
  transition: opacity 0.2s, transform 0.2s;
  pointer-events: none;
}

#formResponse.ok { 
  display: block; 
  background: #ffffff;
  border: 2px solid #2ed573; 
  color: #2ed573; 
  animation: centreBoom 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) both;
}

#formResponse.err { 
  display: block; 
  background: #ffffff;
  border: 2px solid #ff4757; 
  color: #ff4757; 
  animation: centreBoom 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) both;
}

#formResponse i {
  display: block;
  font-size: 32px;
  margin-bottom: 8px;
}

/* Keyframes */
@keyframes up   { from{opacity:0;transform:translateY(18px)} to{opacity:1;transform:translateY(0)} }
@keyframes blink{ 0%,100%{opacity:1} 50%{opacity:.25} }
@keyframes card-in { from{opacity:0;transform:translateY(14px)} to{opacity:1;transform:translateY(0)} }

@keyframes centreBoom {
  0% { opacity: 0; transform: translate(-50%, -50%) scale(0.5); }
  75% { transform: translate(-50%, -50%) scale(1.08); }
  100% { opacity: 1; transform: translate(-50%, -50%) scale(1); }
}

/* Responsive */
@media(max-width:960px){
  .h-wrap{grid-template-columns:1fr;text-align:center;gap:52px}
  .h-left{align-items:center}
  .h-desc{margin-left:auto;margin-right:auto}
  .h-ctas{justify-content:center}
  .h-stats{justify-content:center}
  .h-card{transform:none!important}
  .h-right{animation:up .6s .3s ease both}
}
@media(max-width:480px){
  .h-section{padding:70px 16px 56px}
  .h-stat{padding-right:18px;margin-right:18px}
}

/* ==========================================================================
   SERVICES SECTION — services-section.css
   Requires root variables from your :root block.
   JS is handled by main.js — no JS here.
   ========================================================================== */


/* ── SECTION SHELL ── */
.ser-section {
    padding: 80px 0 88px;
    background: #fff;
}

.ser-container {
    max-width: 1350px;
    margin: 0 auto;
    padding: 0 32px;
}


/* ── HEADER ── */
.ser-header {
    margin-bottom: 28px;
    max-width: 620px;
}

.ser-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: var(--fm-gold-bg);
    color: var(--fm-gold);
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .09em;
    text-transform: uppercase;
    padding: 5px 13px;
    border-radius: 50px;
    border: 1px solid var(--fm-gold-rim);
    margin-bottom: 14px;
}

.ser-title {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--fm-ink);
    line-height: 1.2;
    margin: 0 0 10px;
}

.ser-title span {
    color: var(--fm-gold);
}

.ser-desc {
    font-family: var(--font-body);
    font-size: .93rem;
    color: var(--fm-muted);
    line-height: 1.65;
    margin: 0;
}


/* ── DIVIDER ── */
.ser-divider {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 32px;
}
.ser-divider-line {
    flex: 1;
    height: 1px;
    background: var(--fm-border);
}
.ser-divider-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--fm-gold);
    flex-shrink: 0;
}


/* ── NAV TABS ── */
.ser-nav-wrapper {
    margin-bottom: 30px;
}

.ser-nav-list {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    align-items: center;
}

.ser-nav-btn {
    background: #111827;
    border: 1px solid #1f2937;
    padding: 9px 20px;
    border-radius: 50px;
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 600;
    color: #9CA3AF;
    cursor: pointer;
    transition: background .2s, color .2s, border-color .2s, box-shadow .2s;
    white-space: nowrap;
    line-height: 1;
}

.ser-nav-btn:hover {
    background: #1f2937;
    color: #E8C96A;
    border-color: #374151;
}

/* active tab — gold fill, white text */
.ser-nav-btn.active {
    background: var(--fm-gold);
    color: #fff;
    border-color: var(--fm-gold);
    box-shadow: 0 4px 14px rgba(184, 134, 11, .30);
}


/* ── CARDS GRID ── */
.ser-main-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}


/* ── CARD BASE ── */
.ser-card {
    display: flex;
    flex-direction: column;
    gap: 0;
    padding: 24px;
    background: #FAFAF8;
    border: 1.5px solid var(--fm-border);
    border-radius: 18px;
    position: relative;
    overflow: hidden;
    transition: transform .28s var(--ease, ease),
                border-color .28s,
                background .28s,
                box-shadow .28s;
    cursor: default;
}

/* gold top bar — hidden by default */
.ser-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--fm-gold), var(--fm-gold-rim));
    opacity: 0;
    transition: opacity .28s;
}

/* ── HIGHLIGHTED STATE (set by main.js via nav click) ── */
.ser-card.ser-highlighted {
    border-color: var(--fm-gold-rim);
    background: #fff;
    box-shadow: 0 8px 28px rgba(184, 134, 11, .13);
}
.ser-card.ser-highlighted::before {
    opacity: 1;
}
.ser-card.ser-highlighted .ser-icon {
    background: var(--fm-gold);
    border-color: var(--fm-gold);
    color: #fff;
}
.ser-card.ser-highlighted .ser-arrow-btn {
    background: var(--fm-gold);
    color: #fff;
    border-color: var(--fm-gold);
}
.ser-card.ser-highlighted .ser-arrow-btn i {
    transform: translateX(3px);
}


/* ── TOP ROW: icon + title + tag ── */
.ser-card-top {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 14px;
}

.ser-icon {
    width: 46px;
    height: 46px;
    min-width: 46px;
    border-radius: 12px;
    background: var(--fm-gold-bg);
    border: 1px solid var(--fm-gold-rim);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: var(--fm-gold);
    transition: background .28s, border-color .28s, color .28s;
}

.ser-card-meta {
    display: flex;
    flex-direction: column;
    gap: 4px;
    min-width: 0;
}

.ser-card-meta h4 {
    font-family: var(--font-body);
    font-size: .975rem;
    font-weight: 700;
    color: var(--fm-ink);
    margin: 0;
    line-height: 1.3;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* ── SERVICE TAG ── */
.ser-tag {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .07em;
    text-transform: uppercase;
    background: var(--fm-green-l);
    color: var(--fm-green);
    padding: 2px 9px;
    border-radius: 50px;
    border: 1px solid rgba(42, 96, 65, .18);
    width: fit-content;
}


/* ── DESCRIPTION ── */
.ser-card-desc {
    font-family: var(--font-body);
    font-size: .875rem;
    color: var(--fm-muted);
    line-height: 1.65;
    margin: 0;
    flex: 1;
}


/* ── FOOTER + ARROW BUTTON ── */
.ser-card-footer {
    margin-top: 18px;
    padding-top: 16px;
    border-top: 1px solid var(--fm-border);
}

.ser-arrow-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    border: 1.5px solid var(--fm-border);
    color: var(--fm-ink);
    font-family: var(--font-body);
    font-size: .8125rem;
    font-weight: 600;
    padding: 8px 16px;
    border-radius: 50px;
    text-decoration: none;
    transition: background .22s, color .22s, border-color .22s, box-shadow .22s;
    cursor: pointer;
    line-height: 1;
}

.ser-arrow-btn i {
    font-size: 11px;
    transition: transform .22s;
}

.ser-arrow-btn:hover {
    background: var(--fm-gold);
    color: #fff;
    border-color: var(--fm-gold);
    box-shadow: 0 4px 14px rgba(184, 134, 11, .25);
}

.ser-arrow-btn:hover i {
    transform: translateX(4px);
}


/* ── MOBILE DOTS ── */
.ser-dots-wrap {
    display: none;
    justify-content: center;
    gap: 6px;
    margin-top: 20px;
}

.ser-dot {
    width: 7px;
    height: 7px;
    border-radius: 50px;
    background: var(--fm-border);
    cursor: pointer;
    transition: width .25s, background .25s;
    border: none;
    padding: 0;
    display: inline-block;
}

.ser-dot.active {
    width: 22px;
    background: var(--fm-gold);
}


/* ==========================================================================
   DESKTOP HOVER (mouse only — won't fire on touch)
   ========================================================================== */
@media (hover: hover) {
    .ser-card:hover {
        transform: translateY(-5px);
        border-color: var(--fm-gold-rim);
        background: #fff;
        box-shadow: 0 12px 36px rgba(184, 134, 11, .10);
    }
    .ser-card:hover::before {
        opacity: 1;
    }
    .ser-card:hover .ser-icon {
        background: var(--fm-gold);
        border-color: var(--fm-gold);
        color: #fff;
    }
}


/* ==========================================================================
   TABLET — 2 columns
   ========================================================================== */
@media (max-width: 960px) {
    .ser-main-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}


/* ==========================================================================
   MOBILE — horizontal snap slider
   ========================================================================== */
@media (max-width: 768px) {

    .ser-section {
        padding: 52px 0 64px;
    }

    .ser-container {
        padding: 0 20px;
    }

    .ser-title {
        font-size: 1.7rem;
    }

    /* scrollable tab bar */
    .ser-nav-wrapper {
        overflow-x: auto;
        white-space: nowrap;
        margin: 0 -20px 26px;
        padding: 0 20px 12px;
        scrollbar-width: none;
    }
    .ser-nav-wrapper::-webkit-scrollbar { display: none; }
    .ser-nav-list { flex-wrap: nowrap; }

    /* snap slider */
    .ser-main-grid {
        display: flex !important;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        gap: 14px;
        margin: 0 -20px;
        padding: 4px 20px 18px;
        scrollbar-width: none;
        scroll-behavior: smooth;
        -webkit-overflow-scrolling: touch;
    }
    .ser-main-grid::-webkit-scrollbar { display: none; }

    .ser-card {
        min-width: 78vw;
        scroll-snap-align: start;
        scroll-snap-stop: always;
        /* no lift on touch */
        transform: none !important;
        box-shadow: none !important;
    }
    .ser-card:active,
    .ser-card:hover {
        transform: none !important;
        box-shadow: none !important;
        background: #FAFAF8;
        border-color: var(--fm-border);
    }
    .ser-card::before {
        opacity: 0 !important;
    }
    /* keep highlight visible even on mobile */
    .ser-card.ser-highlighted {
        border-color: var(--fm-gold-rim) !important;
        background: #fff !important;
        box-shadow: 0 4px 16px rgba(184, 134, 11, .10) !important;
    }
    .ser-card.ser-highlighted::before {
        opacity: 1 !important;
    }

    /* show dots */
    .ser-dots-wrap {
        display: flex;
    }
}
/* ============================================
   CTA BANNER STYLES - MITHILA THEME
   Professional & Fully Responsive
   ============================================ */

/* ────────────────────────────────────────── */
/* MAIN CONTAINER STYLES                      */
/* ────────────────────────────────────────── */

.cta-banner {
    position: relative;
    width: 100%;
    padding: 80px 24px;
    background: linear-gradient(135deg, var(--fm-ink) 0%, var(--fm-green) 100%);
    overflow: hidden;
}

/* Decorative background overlays for depth */
.cta-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(184, 134, 11, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(232, 201, 106, 0.05) 0%, transparent 50%);
    pointer-events: none;
    z-index: 1;
}

.cta-container {
    position: relative;
    z-index: 2;
    max-width: 1000px;
    margin: 0 auto;
}

.cta-content {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.cta-text {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

/* ────────────────────────────────────────── */
/* BADGE STYLES                               */
/* ────────────────────────────────────────── */

.cta-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: rgba(232, 201, 106, 0.15);
    border: 1px solid rgba(232, 201, 106, 0.3);
    color: var(--fm-gold-rim);
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 18px;
    backdrop-filter: blur(10px);
    transition: all 0.3s var(--ease);
}

.cta-badge i {
    font-size: 0.9rem;
    display: inline-block;
}

.cta-badge:hover {
    background: rgba(232, 201, 106, 0.25);
    border-color: rgba(232, 201, 106, 0.5);
}

/* ────────────────────────────────────────── */
/* HEADING STYLES                             */
/* ────────────────────────────────────────── */

.cta-text h2 {
    font-family: var(--font-display);
    font-size: 2.4rem;
    font-weight: 700;
    line-height: 1.2;
    color: var(--fm-white);
    margin: 0 0 12px 0;
    padding: 0;
    letter-spacing: -0.5px;
    word-wrap: break-word;
}

/* Gold gradient text for brand */
.brand-text {
    background: linear-gradient(135deg, var(--fm-gold-rim) 0%, var(--fm-gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
    font-style: italic;
}

/* ────────────────────────────────────────── */
/* SUBTITLE STYLES                            */
/* ────────────────────────────────────────── */

.cta-subtitle {
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    margin: 0 0 28px 0;
    padding: 0;
    max-width: 650px;
}

/* ────────────────────────────────────────── */
/* FEATURES LIST STYLES                       */
/* ────────────────────────────────────────── */

.cta-features {
    list-style: none;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 32px;
    margin: 0 0 36px 0;
    padding: 0;
    flex-wrap: wrap;
}

.cta-features li {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-weight: 500;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.9);
    transition: all 0.3s var(--ease);
}

.cta-features li:hover {
    color: var(--fm-gold-rim);
}

.cta-features span {
    display: inline-block;
}

/* Feature icons with circular background */
.cta-features i {
    width: 28px;
    height: 28px;
    min-width: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(232, 201, 106, 0.2);
    border-radius: 50%;
    color: var(--fm-gold-rim);
    font-size: 0.95rem;
    transition: all 0.3s var(--ease);
}

.cta-features li:hover i {
    background: rgba(232, 201, 106, 0.35);
    transform: scale(1.1);
}

/* ────────────────────────────────────────── */
/* BUTTONS CONTAINER                          */
/* ────────────────────────────────────────── */

.cta-btns {
    display: flex;
    gap: 16px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    width: 100%;
    margin: 0;
    padding: 0;
}

/* ────────────────────────────────────────── */
/* PRIMARY BUTTON STYLES                      */
/* ────────────────────────────────────────── */

.cta-btn-primary {
    background: linear-gradient(135deg, var(--fm-gold) 0%, var(--fm-gold-rim) 100%);
    color: var(--fm-ink);
    padding: 14px 42px;
    border-radius: var(--fm-r);
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.3s var(--ease);
    box-shadow: 0 8px 24px rgba(184, 134, 11, 0.25);
    position: relative;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    white-space: nowrap;
}

.cta-btn-primary span {
    display: inline-block;
}

.cta-btn-primary i {
    font-size: 0.9rem;
    display: inline-block;
}

/* Shine effect on primary button */
.cta-btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
    z-index: 1;
}

.cta-btn-primary:hover::before {
    left: 100%;
}

.cta-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(184, 134, 11, 0.35);
}

.cta-btn-primary:active {
    transform: translateY(-1px);
}

/* ────────────────────────────────────────── */
/* OUTLINE BUTTON STYLES                      */
/* ────────────────────────────────────────── */

.cta-btn-outline {
    background: transparent;
    color: var(--fm-white);
    padding: 14px 42px;
    border: 2px solid rgba(232, 201, 106, 0.5);
    border-radius: var(--fm-r);
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s var(--ease);
    position: relative;
    overflow: hidden;
    white-space: nowrap;
}

.cta-btn-outline span {
    display: inline-block;
}

.cta-btn-outline i {
    font-size: 0.9rem;
    display: inline-block;
}

/* Background fill effect on outline button */
.cta-btn-outline::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(232, 201, 106, 0.1);
    transition: left 0.6s ease;
    z-index: -1;
}

.cta-btn-outline:hover::before {
    left: 0;
}

.cta-btn-outline:hover {
    border-color: var(--fm-gold-rim);
    color: var(--fm-gold-rim);
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(232, 201, 106, 0.2);
}

.cta-btn-outline:active {
    transform: translateY(-1px);
}

/* ────────────────────────────────────────── */
/* ANIMATIONS                                 */
/* ────────────────────────────────────────── */

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

/* ────────────────────────────────────────── */
/* TABLET RESPONSIVE (768px and below)        */
/* ────────────────────────────────────────── */

@media (max-width: 768px) {
    .cta-banner {
        padding: 65px 20px;
    }

    .cta-text h2 {
        font-size: 1.9rem;
        line-height: 1.3;
        margin-bottom: 10px;
    }

    .cta-badge {
        font-size: 0.8rem;
        padding: 7px 16px;
        margin-bottom: 14px;
    }

    .cta-badge i {
        font-size: 0.85rem;
    }

    .cta-subtitle {
        font-size: 0.95rem;
        margin-bottom: 22px;
        max-width: 100%;
    }

    .cta-features {
        gap: 24px;
        margin-bottom: 28px;
    }

    .cta-features li {
        font-size: 0.9rem;
    }

    .cta-features i {
        width: 26px;
        height: 26px;
        min-width: 26px;
        font-size: 0.85rem;
    }

    .cta-btns {
        gap: 12px;
    }

    .cta-btn-primary,
    .cta-btn-outline {
        padding: 12px 32px;
        font-size: 0.9rem;
    }

    .cta-btn-primary i,
    .cta-btn-outline i {
        font-size: 0.85rem;
    }
}

/* ────────────────────────────────────────── */
/* MOBILE RESPONSIVE (480px and below)        */
/* Side-by-side buttons on mobile              */
/* ────────────────────────────────────────── */

@media (max-width: 480px) {
    .cta-banner {
        padding: 50px 16px;
    }

    .cta-text h2 {
        font-size: 1.5rem;
        line-height: 1.25;
        margin-bottom: 8px;
    }

    .cta-badge {
        font-size: 0.75rem;
        padding: 6px 14px;
        margin-bottom: 12px;
        gap: 6px;
    }

    .cta-badge i {
        font-size: 0.75rem;
    }

    .cta-subtitle {
        font-size: 0.9rem;
        line-height: 1.5;
        margin-bottom: 18px;
    }

    /* Features in single or double line on mobile */
    .cta-features {
        flex-direction: row;
        gap: 16px;
        margin-bottom: 20px;
        max-width: 100%;
    }

    .cta-features li {
        font-size: 0.8rem;
        justify-content: center;
        flex: 1 1 calc(50% - 8px);
        min-width: 130px;
    }

    .cta-features i {
        width: 22px;
        height: 22px;
        min-width: 22px;
        font-size: 0.75rem;
    }

    /* Buttons side-by-side on mobile */
    .cta-btns {
        gap: 10px;
        width: 100%;
    }

    .cta-btn-primary,
    .cta-btn-outline {
        flex: 1;
        min-width: 0;
        padding: 11px 12px;
        font-size: 0.8rem;
        border-radius: 10px;
    }

    /* Hide icons on mobile to save space */
    .cta-btn-primary i,
    .cta-btn-outline i {
        display: none;
    }

    .cta-btn-primary span,
    .cta-btn-outline span {
        display: inline;
    }
}

/* ────────────────────────────────────────── */
/* SMALL MOBILE (360px and below)              */
/* ────────────────────────────────────────── */

@media (max-width: 360px) {
    .cta-banner {
        padding: 45px 12px;
    }

    .cta-text h2 {
        font-size: 1.3rem;
        margin-bottom: 6px;
    }

    .cta-badge {
        font-size: 0.7rem;
        padding: 5px 12px;
        margin-bottom: 10px;
    }

    .cta-subtitle {
        font-size: 0.85rem;
        margin-bottom: 14px;
    }

    .cta-features {
        gap: 10px;
        margin-bottom: 16px;
        flex-direction: row;
    }

    .cta-features li {
        font-size: 0.75rem;
        flex: 1 1 calc(50% - 5px);
        min-width: 110px;
    }

    .cta-features i {
        width: 20px;
        height: 20px;
        min-width: 20px;
        font-size: 0.7rem;
    }

    .cta-btns {
        gap: 8px;
    }

    .cta-btn-primary,
    .cta-btn-outline {
        padding: 10px 10px;
        font-size: 0.75rem;
    }
}


/* ============================================
   PROJECTS SECTION STYLES - MITHILA THEME
   Professional Portfolio Design
   ============================================ */

/* ────────────────────────────────────────── */
/* SECTION BASE STYLES                        */
/* ────────────────────────────────────────── */

.pro-section {
    position: relative;
    width: 100%;
    padding: 120px 24px 100px 24px;
    background: linear-gradient(180deg, var(--fm-gold-bg) 0%, var(--white) 100%);
    overflow: hidden;
}

.pro-container {
    max-width: 1350px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

/* ────────────────────────────────────────── */
/* HEADER SECTION STYLES                      */
/* ────────────────────────────────────────── */

.pro-header {
    margin-bottom: 70px;
}

/* Header Top - Badge & Title */
.pro-header-top {
    text-align: center;
    margin-bottom: 50px;
}

.pro-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(232, 201, 106, 0.15);
    border: 1px solid rgba(232, 201, 106, 0.3);
    color: var(--fm-gold);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.pro-badge i {
    font-size: 0.9rem;
}

/* Title */
.pro-title {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.15;
    color: var(--fm-ink);
    margin: 0 0 16px 0;
    letter-spacing: -0.5px;
}

.pro-highlight {
    background: linear-gradient(135deg, var(--fm-gold) 0%, var(--fm-gold-rim) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}

/* Description */
.pro-desc {
    font-size: 1.1rem;
    color: var(--text);
    line-height: 1.6;
    margin: 0;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
}

/* Header Context - Info & Capabilities */
.pro-header-context {
    max-width: 100%;
    margin: 0 auto;
}

.pro-sub-desc {
    font-size: 1rem;
    color: var(--text);
    line-height: 1.8;
    margin: 0 0 32px 0;
    padding: 28px;
    background: rgba(232, 201, 106, 0.08);
    border-left: 4px solid var(--fm-gold);
    border-radius: 8px;
}

.pro-sub-desc strong {
    color: var(--fm-ink);
    font-weight: 700;
}

/* Capabilities Grid */
.pro-capabilities {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 0;
    margin-bottom: 40px;
}

.pro-cap-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 20px;
    background: var(--white);
    border: 2px solid rgba(232, 201, 106, 0.2);
    border-radius: 12px;
    transition: all 0.3s var(--ease);
}

.pro-cap-item:hover {
    border-color: var(--fm-gold);
    background: rgba(232, 201, 106, 0.05);
    transform: translateY(-3px);
}

.pro-cap-item i {
    font-size: 1.8rem;
    color: var(--fm-gold);
    display: block;
}

.pro-cap-item span {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--fm-ink);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-align: center;
}

/* Highlight Box Section */
.pro-highlight-box {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-top: 40px;
}

.pro-highlight-item {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 32px;
    background: var(--white);
    border: 1px solid rgba(232, 201, 106, 0.1);
    border-radius: 12px;
    transition: all 0.3s var(--ease);
}

.pro-highlight-item:hover {
    border-color: rgba(232, 201, 106, 0.3);
    box-shadow: 0 8px 24px rgba(42, 96, 65, 0.08);
    transform: translateY(-4px);
}

.pro-highlight-icon {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.pro-highlight-icon i {
    font-size: 2.2rem;
    color: var(--fm-gold);
}

.pro-highlight-content h4 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--fm-ink);
    margin: 0 0 10px 0;
}

.pro-highlight-content p {
    font-size: 0.95rem;
    color: var(--text);
    line-height: 1.7;
    margin: 0;
}

/* ────────────────────────────────────────── */
/* PROJECTS GRID & CARDS                      */
/* ────────────────────────────────────────── */

.pro-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 50px;
}

.pro-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(42, 96, 65, 0.06);
    border: 1px solid rgba(232, 201, 106, 0.15);
    display: flex;
    flex-direction: column;
    transition: all 0.4s var(--ease);
    cursor: pointer;
}

.pro-card:hover {
    box-shadow: 0 8px 24px rgba(42, 96, 65, 0.1);
    transform: translateY(-6px);
    border-color: rgba(232, 201, 106, 0.3);
}

/* ────────────────────────────────────────── */
/* PROJECT IMAGE CONTAINERS                   */
/* ────────────────────────────────────────── */

.pro-img {
    position: relative;
    height: 220px;
    background: linear-gradient(135deg, var(--fm-gold-bg) 0%, var(--fm-green-l) 100%);
    margin: 12px;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(232, 201, 106, 0.1);
}

.img-contain {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 12px;
    background: var(--white);
}

/* Image Slider */
.pro-slider {
    position: relative;
    width: 100%;
    height: 100%;
}

.pro-slider img {
    opacity: 0;
    transition: opacity 0.5s var(--ease);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.pro-slider img.active {
    opacity: 1;
}

/* Overlay for first card (Desktop) */
.pro-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(42, 96, 65, 0.9);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.4s var(--ease);
    z-index: 10;
}

.pro-card:hover .pro-overlay {
    opacity: 1;
}

.pro-overlay-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

/* Slider Navigation */
.slider-nav {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 12px;
    transform: translateY(-50%);
    z-index: 5;
    pointer-events: none;
}

.slider-btn {
    pointer-events: auto;
    background: var(--white);
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    cursor: pointer;
    color: var(--fm-green);
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(42, 96, 65, 0.12);
    opacity: 0;
    transition: all 0.3s var(--ease);
}

.slider-btn:hover {
    background: var(--fm-gold);
    color: var(--white);
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(232, 201, 106, 0.2);
}

.pro-card:hover .slider-btn {
    opacity: 1;
}

/* Slider Dots */
.slider-dots {
    position: absolute;
    bottom: 12px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 5;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s var(--ease);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.dot.active {
    background: var(--fm-gold);
    border-color: var(--fm-gold);
    width: 10px;
    height: 10px;
}

.dot:hover {
    background: rgba(255, 255, 255, 0.8);
}

/* ────────────────────────────────────────── */
/* PROJECT INFO & TEXT                        */
/* ────────────────────────────────────────── */

.pro-info {
    padding: 24px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.pro-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.75rem;
    font-weight: 800;
    color: var(--fm-gold);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.pro-tag i {
    font-size: 0.85rem;
}

.pro-card-title {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--fm-ink);
    margin: 0 0 12px 0;
    line-height: 1.25;
}

.pro-detail-text {
    font-size: 0.95rem;
    color: var(--text);
    line-height: 1.7;
    margin: 0 0 16px 0;
    flex-grow: 1;
}

/* Technology Stack Badges */
.pro-tech-stack {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 12px;
    margin-bottom: 12px;
}

.tech-badge {
    display: inline-block;
    background: rgba(232, 201, 106, 0.15);
    color: var(--fm-gold);
    padding: 5px 12px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    border: 1px solid rgba(232, 201, 106, 0.25);
}

.tech-badge:hover {
    background: rgba(232, 201, 106, 0.25);
    border-color: rgba(232, 201, 106, 0.5);
}

/* Mobile Preview Hint */
.mobile-preview-hint {
    display: none;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--fm-gold);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: auto;
    align-items: center;
    gap: 6px;
}

.mobile-preview-hint i {
    font-size: 0.8rem;
}

/* Preview Button */
.pro-btn-preview {
    background: linear-gradient(135deg, var(--fm-gold) 0%, var(--fm-gold-rim) 100%);
    color: var(--fm-ink);
    border: none;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s var(--ease);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 4px 12px rgba(184, 134, 11, 0.15);
}

.pro-btn-preview:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(184, 134, 11, 0.25);
}

/* ────────────────────────────────────────── */
/* CAROUSEL DOTS (Project Cards)               */
/* ────────────────────────────────────────── */

.pro-carousel-dots {
    display: none;
    justify-content: center;
    gap: 6px;
    margin-top: 20px;
}

.carousel-dot {
    width: 7px;
    height: 7px;
    border-radius: 50px;
    background: var(--fm-border);
    cursor: pointer;
    transition: width 0.25s, background 0.25s;
    border: none;
    padding: 0;
    display: inline-block;
}

.carousel-dot.active {
    width: 22px;
    background: var(--fm-gold);
}

/* ────────────────────────────────────────── */
/* MODAL STYLES                               */
/* ────────────────────────────────────────── */

.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 23, 42, 0.9);
    backdrop-filter: blur(8px);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    padding: 20px;
}

.modal-overlay.active {
    display: flex;
}

.modal-content {
    background: var(--white);
    width: 100%;
    max-width: 1200px;
    height: 85vh;
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(15, 23, 42, 0.2);
    animation: modalSlideIn 0.4s var(--ease);
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.modal-header {
    padding: 20px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(232, 201, 106, 0.15);
    background: var(--fm-gold-bg);
}

.modal-title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--fm-ink);
}

.modal-title i {
    color: var(--fm-gold);
    font-size: 1.4rem;
}

.close-btn {
    background: none;
    border: none;
    font-size: 28px;
    cursor: pointer;
    color: var(--fm-ink);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    transition: all 0.3s var(--ease);
}

.close-btn:hover {
    background: rgba(232, 201, 106, 0.2);
    color: var(--fm-gold);
}

.modal-body {
    flex: 1;
    overflow: hidden;
}

iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}

/* ────────────────────────────────────────── */
/* TABLET RESPONSIVE (768px and below)        */
/* ────────────────────────────────────────── */

@media (max-width: 768px) {
    .pro-section {
        padding: 80px 20px;
    }

    .pro-header {
        margin-bottom: 50px;
    }

    .pro-title {
        font-size: 2.2rem;
        margin-bottom: 12px;
    }

    .pro-desc {
        font-size: 1rem;
    }

    .pro-sub-desc {
        font-size: 0.95rem;
        padding: 20px;
        margin-bottom: 20px;
        box-shadow: none;
        border: 1px solid rgba(232, 201, 106, 0.2);
    }

    .pro-capabilities {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
        margin-bottom: 30px;
    }

    .pro-cap-item {
        padding: 16px;
        box-shadow: none;
        border: 1px solid rgba(232, 201, 106, 0.2);
    }

    .pro-cap-item:hover {
        box-shadow: none;
        border-color: var(--fm-gold);
    }

    .pro-cap-item i {
        font-size: 1.5rem;
    }

    .pro-cap-item span {
        font-size: 0.8rem;
    }

    /* Highlight box on tablet */
    .pro-highlight-box {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 30px;
    }

    .pro-highlight-item {
        padding: 24px;
    }

    .pro-highlight-content h4 {
        font-size: 1.1rem;
    }

    .pro-highlight-content p {
        font-size: 0.9rem;
    }

    /* Carousel layout for tablet */
    .pro-grid {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        gap: 20px;
        margin: 0 -20px;
        padding: 0 20px 50px 20px;
        scrollbar-width: none;
        -webkit-overflow-scrolling: touch;
        position: relative;
    }

    .pro-grid::-webkit-scrollbar {
        display: none;
    }

    .pro-card {
        min-width: 85vw;
        width: 85vw;
        scroll-snap-align: start;
        flex-shrink: 0;
        box-shadow: 0 5px 20px rgba(42, 96, 65, 0.06);
        border: 1px solid rgba(232, 201, 106, 0.1);
    }

    .pro-card:hover {
        box-shadow: 0 10px 30px rgba(42, 96, 65, 0.1);
    }

    .pro-img {
        height: 180px;
        margin: 10px;
    }

    .slider-btn {
        opacity: 1;
        width: 32px;
        height: 32px;
        font-size: 0.9rem;
        box-shadow: 0 2px 8px rgba(42, 96, 65, 0.15);
    }

    .slider-dots {
        display: flex;
        justify-content: center;
        gap: 6px;
        margin-top: 16px;
    }

    .pro-overlay {
        display: none;
    }

    .mobile-preview-hint {
        display: flex;
    }

    .pro-info {
        padding: 20px;
    }

    .pro-card-title {
        font-size: 1.2rem;
    }

    .pro-detail-text {
        font-size: 0.9rem;
    }

    .modal-content {
        height: 90vh;
        box-shadow: 0 20px 40px rgba(15, 23, 42, 0.3);
    }
}

/* ────────────────────────────────────────── */
/* MOBILE RESPONSIVE (480px and below)        */
/* ────────────────────────────────────────── */

@media (max-width: 480px) {
    .pro-section {
        padding: 60px 16px;
    }

    .pro-header {
        margin-bottom: 40px;
    }

    .pro-badge {
        font-size: 0.7rem;
        padding: 6px 12px;
        margin-bottom: 12px;
        box-shadow: none;
    }

    .pro-badge i {
        font-size: 0.8rem;
    }

    .pro-title {
        font-size: 1.8rem;
        margin-bottom: 10px;
    }

    .pro-desc {
        font-size: 0.95rem;
    }

    .pro-sub-desc {
        font-size: 0.9rem;
        padding: 16px;
        margin-bottom: 16px;
        box-shadow: none;
        border: 1px solid rgba(232, 201, 106, 0.2);
    }

    /* 2 items per row on mobile */
    .pro-capabilities {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
        margin-bottom: 20px;
    }

    .pro-cap-item {
        padding: 14px;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 10px;
        box-shadow: none;
        border: 1px solid rgba(232, 201, 106, 0.2);
        text-align: center;
    }

    .pro-cap-item:hover {
        box-shadow: none;
        border-color: var(--fm-gold);
    }

    .pro-cap-item i {
        font-size: 1.4rem;
        flex-shrink: 0;
    }

    .pro-cap-item span {
        font-size: 0.7rem;
        text-align: center;
    }

    /* Highlight box on mobile */
    .pro-highlight-box {
        grid-template-columns: 1fr;
        gap: 16px;
        margin-top: 20px;
    }

    .pro-highlight-item {
        padding: 20px;
        flex-direction: row;
        gap: 12px;
    }

    .pro-highlight-icon {
        min-width: 40px;
    }

    .pro-highlight-icon i {
        font-size: 1.8rem;
    }

    .pro-highlight-content h4 {
        font-size: 1rem;
        margin-bottom: 6px;
    }

    .pro-highlight-content p {
        font-size: 0.8rem;
        line-height: 1.5;
    }

    /* Horizontal scroll carousel - cards with right edge visible */
    .pro-grid {
        display: flex;
        overflow-x: auto;
        overflow-y: hidden;
        scroll-snap-type: x mandatory;
        gap: 16px;
        margin: 0 -16px;
        padding: 0 16px 20px 16px;
        scrollbar-width: none;
        -webkit-overflow-scrolling: touch;
        scroll-behavior: smooth;
        position: relative;
    }

    /* Show carousel dots on mobile */
    .pro-carousel-dots {
        display: flex;
    }

    .pro-grid::-webkit-scrollbar {
        display: none;
    }

    /* Cards show full width with edge of next card visible */
    .pro-card {
        min-width: calc(100vw - 32px - 8px);
        width: calc(100vw - 32px - 8px);
        scroll-snap-align: start;
        flex-shrink: 0;
        box-shadow: 0 3px 12px rgba(42, 96, 65, 0.05);
        border: 1px solid rgba(232, 201, 106, 0.1);
        margin-right: 8px;
    }

    .pro-card:last-child {
        margin-right: 0;
    }

    .pro-card:hover {
        box-shadow: 0 6px 16px rgba(42, 96, 65, 0.08);
    }

    .pro-img {
        height: 160px;
        margin: 8px;
    }

    /* Slider buttons */
    .slider-btn {
        width: 30px;
        height: 30px;
        font-size: 0.8rem;
        box-shadow: 0 2px 6px rgba(42, 96, 65, 0.12);
    }

    /* Slider dots visible on mobile */
    .slider-dots {
        display: flex;
        justify-content: center;
        gap: 5px;
        bottom: 8px;
    }

    .dot {
        width: 6px;
        height: 6px;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.6);
        border: none;
        transition: all 0.3s var(--ease);
    }

    .dot.active {
        background: var(--fm-gold);
        width: 8px;
        height: 8px;
    }

    .pro-overlay {
        display: none;
    }

    .mobile-preview-hint {
        display: flex;
        font-size: 0.8rem;
    }

    .pro-info {
        padding: 16px;
    }

    .pro-tag {
        font-size: 0.7rem;
        margin-bottom: 10px;
    }

    .pro-tag i {
        font-size: 0.75rem;
    }

    .pro-card-title {
        font-size: 1.1rem;
        margin-bottom: 8px;
    }

    .pro-detail-text {
        font-size: 0.85rem;
        line-height: 1.5;
        margin-bottom: 10px;
    }

    .pro-tech-stack {
        gap: 6px;
        margin-bottom: 8px;
    }

    .tech-badge {
        font-size: 0.65rem;
        padding: 4px 10px;
        border: 1px solid rgba(232, 201, 106, 0.2);
        box-shadow: none;
    }

    .modal-overlay {
        padding: 16px;
    }

    .modal-content {
        border-radius: 12px;
        box-shadow: 0 15px 35px rgba(15, 23, 42, 0.25);
    }

    .modal-header {
        padding: 16px;
        border-bottom: 1px solid rgba(232, 201, 106, 0.1);
    }

    .modal-title {
        font-size: 1rem;
        gap: 8px;
    }

    .modal-title i {
        font-size: 1.2rem;
    }

    .close-btn {
        width: 36px;
        height: 36px;
        font-size: 24px;
    }

    .close-btn:hover {
        box-shadow: none;
        background: rgba(232, 201, 106, 0.15);
    }
}

/* --- CHATBOT CONTAINER --- */
/* --- CHATBOT MAIN CARD --- */
/* --- CHATBOT MAIN CARD --- */
.bot-card {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 340px;
    height: 520px;
    max-height: 85vh;
    background: #ffffff;
    z-index: 4000;
    border-radius: 20px;
    display: none; 
    flex-direction: column;
    box-shadow: 0 15px 35px rgba(15, 23, 42, 0.2);
    overflow: hidden;
    font-family: 'Outfit', sans-serif;
    border: 1px solid #e2e8f0;
    animation: botAppear 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.1);
}

@keyframes botAppear {
    from { transform: translateY(20px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

/* --- ONE-LINE PROFESSIONAL HEADER --- */
.bot-header {
    background: #0f172a;
    color: #fff;
    padding: 12px 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.bot-profile-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
}

.bot-avatar {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: #fff;
    padding: 3px;
    object-fit: contain;
}

.bot-title-area h4 {
    font-size: 14px;
    font-weight: 700;
    margin: 0;
    line-height: 1.2;
}

.bot-status {
    font-size: 10px;
    color: #4ade80;
    display: flex;
    align-items: center;
    gap: 4px;
}

.bot-status::before {
    content: '';
    width: 6px;
    height: 6px;
    background: #4ade80;
    border-radius: 50%;
}

.bot-close {
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: #fff;
    width: 28px;
    height: 28px;
    border-radius: 8px;
    cursor: pointer;
    transition: 0.2s;
}
.bot-close:hover { background: #ef4444; }

/* --- CHAT BODY --- */
.bot-body {
    flex: 1;
    padding: 15px;
    background: #f8fafc;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
}

#botThread {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* --- MESSAGE BUBBLES --- */
.bot-bubble {
    background: #ffffff;
    color: #334155;
    padding: 10px 14px;
    border-radius: 15px 15px 15px 4px;
    font-size: 13px;
    line-height: 1.5;
    max-width: 85%;
    align-self: flex-start;
    border: 1px solid #e2e8f0;
    box-shadow: 0 2px 4px rgba(0,0,0,0.02);
}

.user-bubble {
    background: #6b21a8;
    color: #ffffff;
    padding: 10px 14px;
    border-radius: 15px 15px 4px 15px;
    font-size: 13px;
    max-width: 80%;
    align-self: flex-end;
}

/* --- ERROR STYLING --- */
.error-text {
    color: #ef4444 !important;
    font-weight: 600;
}

.error-text b {
    text-decoration: underline;
    color: #b91c1c;
}

/* --- OPTIONS --- */
.bot-options-container {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.bot-opt {
    background: #ffffff;
    color: #1e293b;
    border: 1px solid #cbd5e1;
    padding: 8px 12px;
    border-radius: 10px;
    text-align: left;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    width: fit-content;
    max-width: 240px; 
    transition: 0.2s;
}

.bot-opt i {
    color: #6b21a8;
    font-size: 12px;
}

.bot-opt:hover {
    border-color: #6b21a8;
    color: #6b21a8;
    background: #fdfaff;
    transform: translateX(4px);
}

.options-disabled { opacity: 0.5; pointer-events: none; filter: grayscale(1); }

/* --- INPUT GROUPS & LOCKING --- */
.bot-input-group {
    display: flex;
    gap: 8px;
    padding: 6px;
    background: #ffffff;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    margin-top: 5px;
    transition: 0.3s opacity;
}

.bot-input-group:focus-within { border-color: #6b21a8; }

.bot-input-group input {
    flex: 1; border: none; padding: 6px; font-size: 13px; outline: none; background: transparent;
}

.bot-input-group button {
    background: #6b21a8; color: #fff; border: none; width: 32px; height: 32px; border-radius: 8px; cursor: pointer;
}

.bot-input-group.input-locked {
    opacity: 0.6;
    background: #f1f5f9;
    pointer-events: none;
    border-color: #cbd5e1;
}

/* --- TYPING INDICATOR --- */
.typing-indicator { 
    display: flex !important; 
    gap: 4px; padding: 10px; background: #fff; 
    border-radius: 12px; width: fit-content; border: 1px solid #e2e8f0; 
}
.typing-indicator span { 
    width: 5px; height: 5px; background: #cbd5e1; border-radius: 50%; 
    animation: bounce 1.4s infinite; 
}
@keyframes bounce { 0%, 80%, 100% { transform: translateY(0); } 40% { transform: translateY(-5px); } }

/* --- FOOTER & BRANDING --- */
.bot-footer {
    padding: 10px 15px;
    background: #ffffff;
    border-top: 1px solid #f1f5f9;
    display: flex;
    justify-content: center; /* Centers the branding */
    align-items: center;
    position: relative;
    min-height: 45px;
}

.bot-branding {
    font-size: 10px;
    font-weight: 800;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 1.2px;
}

.bot-back {
    position: absolute;
    left: 15px;
    background: #f1f5f9;
    border: none;
    padding: 6px 12px;
    border-radius: 8px;
    font-size: 11px;
    font-weight: 600;
    color: #64748b;
    cursor: pointer;
}

.hide { display: none !important; }

/* --- MOBILE RESPONSIVE --- */
@media (max-width: 480px) {
    .bot-card {
        right: 10px; bottom: 10px; 
        width: 300px;
        height: 480px; 
        border-radius: 15px;
    }
}

/* --- OVERLAY --- */
.bot-overlay {
    position: fixed; inset: 0; background: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(2px); z-index: 3999; display: none;
}


/* ============================================================
   ABOUT SECTION — about-section.css
   Matches: about-section.php (.abt-* classes)
   Theme: light mode · golden-green · uses your root variables
   ============================================================ */

.abt-section {
    padding: clamp(80px, 10vh, 120px) clamp(20px, 5vw, 72px);
    background: #FAFAF8;
    overflow: hidden;
    position: relative;
}

/* subtle warm grid bg — same language as hero */
.abt-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(184,134,11,.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(184,134,11,.05) 1px, transparent 1px);
    background-size: 48px 48px;
    pointer-events: none;
    z-index: 0;
}

.abt-container {
    max-width: 1350px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.abt-inner {
    display: grid;
    grid-template-columns: 1fr 1.05fr;
    gap: clamp(40px, 6vw, 90px);
    align-items: center;
}

/* ============================================================
   VISUAL SIDE
   ============================================================ */
.abt-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 680px;
}

/* Decorative rings */
.abt-ring {
    position: absolute;
    border-radius: 50%;
    border: 1.5px solid rgba(184,134,11,.18);
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 380px; height: 380px;
    animation: abt-spin 28s linear infinite;
    pointer-events: none;
}
.abt-ring--2 {
    width: 480px; height: 480px;
    border-color: rgba(42,96,65,.1);
    border-style: dashed;
    animation-duration: 40s;
    animation-direction: reverse;
}

/* Image wrap — Height and Width Optimised */
.abt-img-wrap {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 450px; /* Wrapper ki width adjust ki taaki proportions sahi rahein */
    height: 520px;     /* Yahan se wrapper ki height ko badha diya gaya hai */
    display: flex;
    align-items: center;
    justify-content: center;
}

.abt-img {
    width: 100%;
    height: 110%;      /* 200% se hatakar standard 100% kiya */
    display: block;
    object-fit: cover; /* contain ki jagah cover kiya taaki wrap area ko acche se fill kare */
    filter: drop-shadow(0 20px 40px rgba(0,0,0,.08));
    -webkit-mask-image: linear-gradient(to bottom, black 75%, transparent 100%);
    mask-image: linear-gradient(to bottom, black 75%, transparent 90%);
}

/* Floating badges */
.abt-badge {
    position: absolute;
    z-index: 4;
    background: var(--white, #fff);
    border: 1px solid rgba(184,134,11,.2);
    border-radius: 14px;
    padding: 14px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 8px 32px rgba(0,0,0,.09);
    animation: abt-float 5s ease-in-out infinite;
}
.abt-badge--years   { bottom: 12%; left: -10px; animation-delay: 0s; }
.abt-badge--projects{ top: 16%; right: -10px;  animation-delay: -2.5s; }

/* gold top shimmer */
.abt-badge::before {
    content: '';
    position: absolute;
    top: 0; left: 16px; right: 16px; height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary, #B8860B), transparent);
    border-radius: 2px;
}

.abt-badge-num {
    font-size: 1.75rem;
    font-weight: 800;
    line-height: 1;
    background: linear-gradient(120deg, var(--primary, #B8860B), #2A6041);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.abt-badge-lbl {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .6px;
    line-height: 1.4;
    color: var(--text, #6B7280);
    text-transform: uppercase;
}

/* ============================================================
   TEXT SIDE
   ============================================================ */
.abt-text { display: flex; flex-direction: column; }

/* Eyebrow */
.abt-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 6px 14px;
    background: #FBF5E6;
    border: 1px solid #E8C96A;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.6px;
    text-transform: uppercase;
    color: var(--primary, #B8860B);
    width: fit-content;
    margin-bottom: 22px;
}
.abt-eyebrow i { font-size: 10px; }

/* Heading */
.abt-title {
    font-size: clamp(1.9rem, 3.8vw, 3rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -1px;
    color: var(--dark, #111827);
    margin-bottom: 18px;
}
.abt-title span {
    background: linear-gradient(110deg, var(--primary, #B8860B) 0%, #A0522D 50%, #2A6041 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Description */
.abt-desc {
    font-size: clamp(.93rem, 1.6vw, 1.05rem);
    color: var(--text, #6B7280);
    line-height: 1.78;
    margin-bottom: 34px;
    font-weight: 400;
}
.abt-desc strong { color: var(--dark, #111827); font-weight: 700; }

/* Feature list */
.abt-features {
    list-style: none;
    padding: 0; margin: 0 0 38px;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.abt-feat {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 18px 20px;
    background: #fff;
    border: 1px solid #E5E7EB;
    border-radius: 12px;
    transition: border-color .22s, box-shadow .22s, transform .22s;
    position: relative;
    overflow: hidden;
}
.abt-feat::before {
    content: '';
    position: absolute;
    left: 0; top: 0; bottom: 0; width: 3px;
    background: linear-gradient(180deg, var(--primary, #B8860B), #2A6041);
    border-radius: 3px 0 0 3px;
    opacity: 0;
    transition: opacity .22s;
}
.abt-feat:hover {
    border-color: rgba(184,134,11,.3);
    box-shadow: 0 6px 24px rgba(184,134,11,.08);
    transform: translateX(4px);
}
.abt-feat:hover::before { opacity: 1; }

.abt-feat-icon {
    width: 44px; height: 44px;
    flex-shrink: 0;
    background: #FBF5E6;
    border: 1px solid #E8C96A;
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    color: var(--primary, #B8860B);
    font-size: 16px;
    transition: background .22s, color .22s;
}
.abt-feat:hover .abt-feat-icon {
    background: var(--primary, #B8860B);
    color: #fff;
    border-color: var(--primary, #B8860B);
}

.abt-feat-text h5 {
    font-size: .95rem;
    font-weight: 700;
    color: var(--dark, #111827);
    margin: 0 0 4px;
}
.abt-feat-text p {
    font-size: .86rem;
    color: var(--text, #6B7280);
    margin: 0;
    line-height: 1.55;
}

/* CTA row */
.abt-cta-row {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
}

.abt-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 13px 28px;
    background: var(--primary, #B8860B);
    color: #fff;
    border-radius: 10px;
    font-size: 13.5px;
    font-weight: 700;
    text-decoration: none;
    transition: .22s;
    box-shadow: 0 4px 18px rgba(184,134,11,.2);
    position: relative; overflow: hidden;
}
.abt-btn-primary::after {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,.14) 0%, transparent 55%);
}
.abt-btn-primary:hover {
    background: #9A6C06;
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(184,134,11,.28);
}

.abt-btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: transparent;
    color: var(--dark, #111827);
    border: 1.5px solid #E5E7EB;
    border-radius: 10px;
    font-size: 13.5px;
    font-weight: 600;
    text-decoration: none;
    transition: .22s;
}
.abt-btn-ghost:hover {
    border-color: var(--primary, #B8860B);
    color: var(--primary, #B8860B);
}

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes abt-spin  { to { transform: translate(-50%,-50%) rotate(360deg); } }
@keyframes abt-float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 960px) {
    .abt-inner {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 56px;
    }
    .abt-visual  { order: 1; min-height: 360px; }
    .abt-text    { order: 2; align-items: center; }
    .abt-desc    { margin-left: auto; margin-right: auto; }
    .abt-features { max-width: 520px; width: 100%; }
    .abt-feat    { text-align: left; }
    .abt-cta-row { justify-content: center; }
    .abt-badge--years   { left: 0; }
    .abt-badge--projects{ right: 0; }
}

@media (max-width: 540px) {
    .abt-section { padding: 64px 16px 56px; }
    .abt-ring    { width: 260px; height: 260px; }
    .abt-ring--2 { width: 340px; height: 340px; }
    .abt-img-wrap{ max-width: 380px; }
    .abt-img {width: 70%; height: 70%;}
    .abt-badge   { padding: 10px 14px; }
    .abt-badge-num { font-size: 1.4rem; }
    .abt-title   { letter-spacing: -.5px; }
}



/* ============================================================
   FAQ SECTION — faq-section.css
   Classes: .fq-*  |  Uses your root variables
   Design: Premium split layout · Golden-green · Light mode
   ============================================================ */

.fq-section {
    padding: clamp(90px,11vh,130px) 0;
    background: #F7F5F0;
    position: relative;
    overflow: hidden;
}

/* Diagonal stripe texture */
.fq-section::before {
    content: '';
    position: absolute; inset: 0;
    background-image: repeating-linear-gradient(
        -45deg,
        rgba(184,134,11,.03) 0px, rgba(184,134,11,.03) 1px,
        transparent 1px, transparent 12px
    );
    pointer-events: none; z-index: 0;
}

/* Gold arc decoration */
.fq-section::after {
    content: '';
    position: absolute;
    top: -200px; right: -200px;
    width: 500px; height: 500px;
    border-radius: 50%;
    border: 56px solid rgba(184,134,11,.05);
    pointer-events: none; z-index: 0;
}

.fq-wrap {
    max-width: 1350px;
    margin: 0 auto;
    padding: 0 clamp(15px,5vw,72px);
    position: relative; z-index: 1;
}

/* ── TWO-COLUMN GRID ── */
.fq-inner {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: clamp(48px,7vw,100px);
    align-items: start;
}

/* ════════════════════════════════════════
   LEFT: INFO SIDE
════════════════════════════════════════ */
.fq-info { position: sticky; top: 100px; }

.fq-eyebrow {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 6px 14px;
    background: #FBF5E6; border: 1px solid #E8C96A;
    border-radius: 50px;
    font-size: 11px; font-weight: 700;
    letter-spacing: 1.8px; text-transform: uppercase;
    color: var(--primary,#B8860B);
    margin-bottom: 22px;
}
.fq-eyebrow i { font-size: 9px; }

.fq-title {
    font-size: clamp(1.9rem,3.6vw,2.9rem);
    font-weight: 800; line-height: 1.08;
    letter-spacing: -1px;
    color: var(--dark,#111827);
    margin-bottom: 16px;
}
.fq-title span {
    background: linear-gradient(110deg, var(--primary,#B8860B) 0%, #A0522D 50%, #2A6041 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.fq-desc {
    font-size: clamp(.93rem,1.5vw,1.04rem);
    color: var(--text,#6B7280);
    line-height: 1.75; margin-bottom: 36px;
    font-weight: 400;
}

/* Stats row */
.fq-stats {
    display: flex; gap: 0;
    padding: 22px 0;
    border-top: 1px solid rgba(184,134,11,.15);
    border-bottom: 1px solid rgba(184,134,11,.15);
    margin-bottom: 36px;
}
.fq-stat { padding-right: 28px; margin-right: 28px; border-right: 1px solid #E5E7EB; }
.fq-stat:last-child { border-right: none; margin-right: 0; padding-right: 0; }
.fq-stat strong {
    display: block;
    font-size: 1.6rem; font-weight: 800; line-height: 1;
    background: linear-gradient(120deg, var(--primary,#B8860B), #2A6041);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.fq-stat span { font-size: 10.5px; font-weight: 600; letter-spacing: 1.2px; text-transform: uppercase; color: #9CA3AF; margin-top: 4px; display: block; }

/* Help card */
.fq-help {
    background: var(--dark,#111827);
    border-radius: 20px;
    padding: 28px;
    position: relative; overflow: hidden;
}
/* Shimmer line */
.fq-help::before {
    content: '';
    position: absolute; top: 0; left: 20px; right: 20px; height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary,#B8860B), #2A6041, transparent);
    border-radius: 2px;
}
/* Subtle glow inside card */
.fq-help::after {
    content: '';
    position: absolute; bottom: -60px; right: -60px;
    width: 200px; height: 200px; border-radius: 50%;
    background: radial-gradient(circle, rgba(42,96,65,.25) 0%, transparent 70%);
    pointer-events: none;
}

/* ── Icon + Text side by side ── */
.fq-help-top {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 22px;
}

.fq-help-icon {
    width: 44px; height: 44px; min-width: 44px;
    border-radius: 12px;
    background: rgba(184,134,11,.15);
    border: 1px solid rgba(184,134,11,.25);
    display: flex; align-items: center; justify-content: center;
    color: var(--primary,#B8860B); font-size: 17px;
    /* removed margin-bottom — spacing handled by .fq-help-top gap */
}

.fq-help-text h5 {
    font-size: 1rem; font-weight: 700;
    color: #F8F9FA; margin: 0 0 5px 0;
    line-height: 1.3;
}

.fq-help-text p {
    font-size: 13px; color: #94A3B8;
    line-height: 1.6; margin: 0;
}

.fq-help-link {
    display: inline-flex; align-items: center; gap: 9px;
    padding: 12px 22px;
    background: linear-gradient(135deg, var(--primary,#B8860B), #9A6006);
    color: #fff; text-decoration: none;
    border-radius: 10px; font-size: 13.5px; font-weight: 700;
    transition: .22s; position: relative; overflow: hidden;
}
.fq-help-link::after {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,.14) 0%, transparent 55%);
}
.fq-help-link:hover { transform: translateY(-2px); box-shadow: 0 10px 28px rgba(184,134,11,.3); }

/* ════════════════════════════════════════
   RIGHT: ACCORDION
════════════════════════════════════════ */
.fq-accordion { display: flex; flex-direction: column; gap: 12px; }

.fq-item {
    background: #fff;
    border: 1px solid #E8E8E8;
    border-radius: 16px;
    overflow: hidden;
    transition: border-color .25s, box-shadow .25s;
    position: relative;
}

/* Number label */
.fq-item::before {
    content: attr(data-num);
    position: absolute;
    top: 22px; left: 22px;
    font-size: 11px; font-weight: 800;
    letter-spacing: 1px;
    color: rgba(184,134,11,.3);
    font-variant-numeric: tabular-nums;
    transition: color .25s;
}

.fq-item.active {
    border-color: rgba(184,134,11,.3);
    box-shadow: 0 8px 32px rgba(184,134,11,.08);
}
.fq-item.active::before { color: var(--primary,#B8860B); }

/* Left accent bar */
.fq-item .fq-bar {
    position: absolute; left: 0; top: 0; bottom: 0; width: 3px;
    background: linear-gradient(180deg, var(--primary,#B8860B), #2A6041);
    border-radius: 3px 0 0 3px;
    transform: scaleY(0); transform-origin: top;
    transition: transform .35s cubic-bezier(.4,0,.2,1);
}
.fq-item.active .fq-bar { transform: scaleY(1); }

/* Question row */
.fq-question {
    padding: 22px 22px 22px 52px;
    cursor: pointer;
    display: flex; justify-content: space-between; align-items: center;
    gap: 16px; user-select: none;
}
.fq-question span {
    font-size: clamp(.9rem,1.5vw,.98rem);
    font-weight: 700; color: var(--dark,#111827);
    line-height: 1.35;
}
.fq-item.active .fq-question span { color: var(--primary,#B8860B); }

/* Toggle icon pill */
.fq-icon {
    width: 34px; height: 34px; flex-shrink: 0;
    border-radius: 10px;
    border: 1.5px solid #E5E7EB;
    background: #F9F9F7;
    display: flex; align-items: center; justify-content: center;
    color: #9CA3AF; font-size: 11px;
    transition: background .25s, border-color .25s, color .25s, transform .35s;
}
.fq-item.active .fq-icon {
    background: var(--primary,#B8860B);
    border-color: var(--primary,#B8860B);
    color: #fff;
    transform: rotate(180deg);
}

/* Answer */
.fq-answer {
    max-height: 0; overflow: hidden;
    transition: max-height .4s cubic-bezier(.4,0,.2,1), padding .3s;
    padding: 0 22px 0 52px;
}
.fq-answer p {
    padding-bottom: 22px;
    font-size: .93rem; line-height: 1.78;
    color: var(--text,#6B7280);
    margin: 0;
}
.fq-item.active .fq-answer { max-height: 240px; }

/* ── RESPONSIVE ── */
@media (max-width: 960px) {
    .fq-inner      { grid-template-columns: 1fr; gap: 52px; }
    .fq-info       { position: static; text-align: center; display: flex; flex-direction: column; align-items: center; }
    .fq-stats      { justify-content: center; }
    .fq-help       { max-width: 480px; width: 100%; text-align: left; }
}
@media (max-width: 480px) {
    .fq-section    { padding: 64px 0 56px; }
    .fq-stat       { padding-right: 18px; margin-right: 18px; }
    .fq-question   { padding: 18px 18px 18px 46px; }
    .fq-answer     { padding-left: 46px; }
    .fq-item::before { left: 18px; top: 20px; }
}
/* ============================================================
   TK CONTACT SECTION — tk-contact.css
   Prefix : .tk-contact-* / .tk-tile / .tk-field / .tk-form-*
   Colors : your :root variables
   ============================================================ */

/* ── SECTION SHELL ── */
.tk-contact {
    padding: clamp(80px, 10vh, 120px) 0;
    background: var(--cream, #f9f6f0);
    position: relative;
    overflow: hidden;
    font-family: var(--font-body, 'DM Sans', sans-serif);
}

/* Diagonal stripe texture */
.tk-contact::before {
    content: '';
    position: absolute; inset: 0;
    background-image: repeating-linear-gradient(
        -55deg,
        rgba(184,134,11,.025) 0, rgba(184,134,11,.025) 1px,
        transparent 1px, transparent 14px
    );
    pointer-events: none;
}

/* Gold circle decoration top-right */
.tk-contact::after {
    content: '';
    position: absolute;
    top: -180px; right: -180px;
    width: 480px; height: 480px;
    border-radius: 50%;
    border: 60px solid rgba(184,134,11,.06);
    pointer-events: none;
}

.tk-contact-container {
    max-width: 1350px;
    margin: 0 auto;
    padding: 0 clamp(20px, 5vw, 60px);
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: clamp(48px, 8vw, 96px);
    align-items: center;
    position: relative;
    z-index: 1;
}

/* ════════════════════════════════════════
   LEFT — INFO
════════════════════════════════════════ */
.tk-contact-info { display: flex; flex-direction: column; gap: 0; }

/* Eyebrow pill */
.tk-contact-eyebrow {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 6px 14px 6px 10px;
    background: var(--fm-gold-bg, #FBF5E6);
    border: 1px solid var(--fm-gold-rim, #E8C96A);
    border-radius: 50px;
    font-size: 11px; font-weight: 700;
    letter-spacing: .1em; text-transform: uppercase;
    color: var(--fm-gold, #B8860B);
    margin-bottom: 24px;
    width: fit-content;
}
.tk-contact-eyebrow i { font-size: 10px; }

/* Headline */
.tk-contact-title {
    font-family: var(--font-display, 'Playfair Display', serif);
    font-size: clamp(2rem, 3.8vw, 3rem);
    font-weight: 700;
    line-height: 1.1;
    color: var(--fm-ink, #111827);
    margin: 0 0 20px;
}
.tk-contact-title-grad {
    display: block;
    font-style: italic;
    background: linear-gradient(110deg, var(--fm-gold, #B8860B) 0%, var(--fm-green, #2A6041) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Description */
.tk-contact-desc {
    font-size: clamp(.9rem, 1.4vw, 1rem);
    color: var(--text, #3d5166);
    line-height: 1.75;
    margin: 0 0 36px;
}

/* ── CONTACT TILES ── */
.tk-contact-tiles { display: flex; flex-direction: column; gap: 12px; margin-bottom: 36px; }

.tk-tile {
    display: flex; align-items: center; gap: 16px;
    padding: 18px 20px;
    background: var(--white, #fff);
    border: 1.5px solid var(--border, #dde6ef);
    border-radius: var(--radius-lg, 16px);
    text-decoration: none;
    transition: border-color .22s, box-shadow .22s, transform .22s;
}
.tk-tile:hover {
    border-color: var(--fm-gold-rim, #E8C96A);
    box-shadow: 0 8px 24px rgba(184,134,11,.1);
    transform: translateX(4px);
}

.tk-tile-icon {
    width: 46px; height: 46px; min-width: 46px;
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    font-size: 20px;
}
.tk-tile-icon--wa  { background: #e8f8f1; color: #25d366; border: 1px solid #c0edd8; }
.tk-tile-icon--mail{ background: var(--fm-gold-bg, #FBF5E6); color: var(--fm-gold, #B8860B); border: 1px solid var(--fm-gold-rim, #E8C96A); }

.tk-tile-body { flex: 1; display: flex; flex-direction: column; gap: 2px; }
.tk-tile-label { font-size: 11px; text-transform: uppercase; letter-spacing: .08em; color: var(--muted, #7a92a8); font-weight: 600; }
.tk-tile-value { font-size: .95rem; font-weight: 700; color: var(--fm-ink, #111827); }

.tk-tile-arrow {
    font-size: 13px; color: var(--fm-gold-rim, #E8C96A);
    opacity: 0; transform: translateX(-4px);
    transition: opacity .22s, transform .22s;
}
.tk-tile:hover .tk-tile-arrow { opacity: 1; transform: translateX(0); }

/* ── TRUST STRIP ── */
.tk-contact-trust {
    display: flex; align-items: center; gap: 0;
    padding: 20px 0;
    border-top: 1px solid rgba(184,134,11,.15);
}
.tk-trust-item { display: flex; flex-direction: column; gap: 3px; flex: 1; }
.tk-trust-item strong {
    font-family: var(--font-display, 'Playfair Display', serif);
    font-size: 1.6rem; font-weight: 700; line-height: 1;
    background: linear-gradient(120deg, var(--fm-gold, #B8860B), var(--fm-green, #2A6041));
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.tk-trust-item span { font-size: 10.5px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: var(--muted, #7a92a8); }
.tk-trust-div { width: 1px; height: 36px; background: var(--border, #dde6ef); margin: 0 24px; }

/* ════════════════════════════════════════
   RIGHT — FORM
════════════════════════════════════════ */
.tk-contact-form-wrap { position: relative; }

/* Ghost number decoration */
.tk-form-deco {
    position: absolute;
    top: -28px; right: -10px;
    font-family: var(--font-display, 'Playfair Display', serif);
    font-size: 9rem; font-weight: 700; line-height: 1;
    color: rgba(184,134,11,.06);
    pointer-events: none; user-select: none;
    letter-spacing: -.02em;
}

/* Card */
.tk-form-card {
    background: var(--white, #fff);
    border: 1.5px solid var(--border, #dde6ef);
    border-radius: 24px;
    padding: clamp(28px, 4vw, 44px);
    position: relative;
    box-shadow: 0 20px 48px rgba(13,27,42,.06);
}

/* Gold shimmer on top edge */
.tk-form-card::before {
    content: '';
    position: absolute; top: -1.5px; left: 40px; right: 40px; height: 3px;
    background: linear-gradient(90deg, transparent, var(--fm-gold, #B8860B), var(--fm-green, #2A6041), transparent);
    border-radius: 0 0 3px 3px;
}

/* Form header */
.tk-form-header {
    display: flex; align-items: center; gap: 14px;
    padding-bottom: 22px;
    border-bottom: 1px solid var(--border-light, #edf2f7);
    margin-bottom: 28px;
}
.tk-form-header-icon {
    width: 46px; height: 46px; min-width: 46px;
    border-radius: 13px;
    background: var(--fm-gold-bg, #FBF5E6);
    border: 1px solid var(--fm-gold-rim, #E8C96A);
    display: flex; align-items: center; justify-content: center;
    font-size: 18px; color: var(--fm-gold, #B8860B);
}
.tk-form-header h3 { font-size: 1.1rem; font-weight: 700; color: var(--fm-ink, #111827); margin: 0 0 3px; }
.tk-form-header p  { font-size: 13px; color: var(--muted, #7a92a8); margin: 0; }

/* ── FIELDS ── */
.tk-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 16px;
}

.tk-field { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.tk-form-row .tk-field { margin-bottom: 0; }

.tk-field label {
    font-size: 12.5px; font-weight: 700;
    color: var(--fm-ink, #111827);
    letter-spacing: .01em;
}
.tk-optional { font-weight: 400; color: var(--muted, #7a92a8); }

/* Input wrap (icon + input) */
.tk-input-wrap {
    position: relative; display: flex; align-items: center;
}
.tk-input-icon {
    position: absolute; left: 15px;
    font-size: 13px; color: var(--muted, #7a92a8);
    pointer-events: none; z-index: 1;
}

.tk-input-wrap input,
.tk-input-wrap select,
.tk-field textarea {
    width: 100%;
    padding: 13px 16px 13px 40px;
    background: var(--fm-gold-bg, #FBF5E6);
    border: 1.5px solid transparent;
    border-radius: var(--radius-md, 10px);
    font-size: 14px;
    font-family: inherit;
    color: var(--fm-ink, #111827);
    transition: border-color .2s, background .2s, box-shadow .2s;
    box-sizing: border-box;
    appearance: none; -webkit-appearance: none;
}
.tk-field textarea {
    padding: 13px 16px;
    resize: vertical; min-height: 110px;
}

.tk-input-wrap input::placeholder,
.tk-input-wrap select::placeholder,
.tk-field textarea::placeholder { color: var(--muted, #7a92a8); }

.tk-input-wrap input:focus,
.tk-input-wrap select:focus,
.tk-field textarea:focus {
    outline: none;
    border-color: var(--fm-gold, #B8860B);
    background: #fff;
    box-shadow: 0 0 0 4px rgba(184,134,11,.09);
}

/* Select arrow */
.tk-input-wrap--select .tk-select-arrow {
    position: absolute; right: 14px;
    font-size: 11px; color: var(--muted, #7a92a8);
    pointer-events: none;
}

/* ── SUBMIT BUTTON ── */
.tk-submit {
    width: 100%; margin-top: 6px;
    display: flex; align-items: center; justify-content: space-between;
    padding: 0 0 0 24px;
    background: var(--fm-ink, #111827);
    color: #fff;
    border: none; border-radius: 14px;
    font-size: 15px; font-weight: 700;
    font-family: inherit;
    cursor: pointer;
    overflow: hidden;
    transition: background .22s, transform .22s;
}
.tk-submit span { padding: 17px 0; }

.tk-submit-icon {
    width: 54px; height: 54px; min-width: 54px;
    background: var(--fm-gold, #B8860B);
    display: flex; align-items: center; justify-content: center;
    font-size: 16px;
    transition: background .22s, transform .22s;
}

.tk-submit:hover { background: #1a2535; transform: translateY(-2px); }
.tk-submit:hover .tk-submit-icon { background: var(--fm-green, #2A6041); transform: rotate(-12deg) scale(1.1); }

/* ════════════════════════════════════════
   RESPONSIVE
════════════════════════════════════════ */
@media (max-width: 960px) {
    .tk-contact-container { grid-template-columns: 1fr; gap: 52px; }
    .tk-contact-info { max-width: 560px; }
    .tk-form-deco { display: none; }
}

@media (max-width: 560px) {
    .tk-contact { padding: 64px 0; }
    .tk-contact-title { font-size: 1.9rem; }
    .tk-form-row { grid-template-columns: 1fr; gap: 0; }
    .tk-form-card { padding: 24px 20px; border-radius: 18px; }
    .tk-trust-div { margin: 0 16px; }
    .tk-submit-icon { width: 48px; height: 48px; min-width: 48px; }
}


/* ============================================================
   FUTURE MITHILA TECH — FOOTER
   File    : fmt-footer.css
   Prefix  : .ft-*
   Colors  : :root variables (fm-gold, fm-green, fm-ink, etc.)
   Layers  : 0 Banner · 1 Main · 2 Stats · 3 Policy · 4 Copyright
   ============================================================ */

/* ── SHELL ── */
.ft-footer {
    background: var(--ink, #0d1b2a);
    color: #fff;
    font-family: var(--font-body, 'DM Sans', sans-serif);
    position: relative;
    overflow: hidden;
}

/* Radial glow decorations */
.ft-glow {
    position: absolute;
    pointer-events: none;
    border-radius: 50%;
}
.ft-glow--1 {
    width: 500px; height: 500px;
    top: -180px; right: -120px;
    background: radial-gradient(circle, rgba(184,134,11,.05) 0%, transparent 70%);
}
.ft-glow--2 {
    width: 360px; height: 360px;
    bottom: -100px; left: -60px;
    background: radial-gradient(circle, rgba(42,96,65,.07) 0%, transparent 70%);
}

/* Shared container */
.ft-wrap {
    max-width: 1350px;
    margin: 0 auto;
    padding: 0 clamp(20px, 5vw, 60px);
}

/* ════════════════════════════════════════
   LAYER 0 — TRUST BANNER
════════════════════════════════════════ */
.ft-banner {
    background: linear-gradient(90deg, #0a1520 0%, #112236 40%, #0a1a14 100%);
    border-bottom: 1px solid rgba(184,134,11,.2);
    padding: 14px 0;
    position: relative; z-index: 1;
}

.ft-banner-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.ft-banner-left {
    display: flex; align-items: center; gap: 10px;
    font-size: 13px; color: #94a3b8;
}
.ft-banner-left i { color: var(--fm-gold, #B8860B); font-size: 15px; }
.ft-banner-left strong { color: #e2c97e; font-weight: 600; }

.ft-banner-right { display: flex; gap: 24px; }
.ft-banner-right a {
    font-size: 12px; color: #64748b; text-decoration: none;
    display: flex; align-items: center; gap: 6px;
    transition: color .2s;
}
.ft-banner-right a:hover { color: var(--fm-gold-rim, #E8C96A); }
.ft-banner-right i { font-size: 13px; }

/* ════════════════════════════════════════
   LAYER 1 — MAIN CONTENT
════════════════════════════════════════ */
.ft-main {
    padding: clamp(48px, 7vh, 72px) 0 56px;
    border-bottom: 1px solid rgba(255,255,255,.06);
    position: relative; z-index: 1;
}

.ft-main-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1fr 1.3fr;
    gap: clamp(28px, 4vw, 52px);
}

/* ── Brand ── */
.ft-logo-row {
    display: flex; align-items: center; gap: 14px;
    margin-bottom: 20px;
}

.ft-logo-box {
    width: 65px; height: 65px; flex-shrink: 0;
    background: #fff; border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
    padding: 8px;
    transition: .3s cubic-bezier(.175,.885,.32,1.275);
}
.ft-logo-box:hover { transform: rotate(-8deg) scale(1.08); }
.ft-logo-box img { width: 100%; height: 100%; object-fit: contain; }

.ft-brand-name {
    font-family: var(--font-display, 'Playfair Display', serif);
    font-size: 1.2rem; font-weight: 700; color: #fff; line-height: 1.15;
}
.ft-brand-name span { font-style: italic; color: var(--fm-gold-rim, #E8C96A); }

.ft-brand-tag {
    display: block; font-size: 10px; font-weight: 600;
    text-transform: uppercase; letter-spacing: .12em;
    color: #475569; margin-top: 3px;
}

.ft-brand-desc {
    font-size: 13.5px; color: #64748b;
    line-height: 1.75; margin-bottom: 22px;
    max-width: 380px;
}

/* Rating pill */
.ft-rating {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 7px 13px;
    background: rgba(184,134,11,.08);
    border: 1px solid rgba(184,134,11,.18);
    border-radius: 10px; margin-bottom: 22px;
}
.ft-stars { color: var(--fm-gold, #B8860B); font-size: 12px; letter-spacing: 1px; }
.ft-rating-text { font-size: 12px; color: #94a3b8; }
.ft-rating-text strong { color: #e2c97e; font-weight: 700; }

/* Social icons */
.ft-social { display: flex; gap: 8px; }
.ft-soc {
    width: 36px; height: 36px; border-radius: 10px;
    background: rgba(255,255,255,.05);
    border: 1px solid rgba(255,255,255,.07);
    display: flex; align-items: center; justify-content: center;
    color: #64748b; font-size: 14px; text-decoration: none;
    transition: background .22s, border-color .22s, color .22s, transform .22s;
}
.ft-soc:hover {
    background: var(--fm-gold, #B8860B);
    border-color: var(--fm-gold, #B8860B);
    color: #fff; transform: translateY(-3px);
}
.ft-soc.ft-soc--wa:hover { background: #25d366; border-color: #25d366; }

/* ── Nav columns ── */
.ft-col h5 {
    font-size: 11px; font-weight: 700;
    text-transform: uppercase; letter-spacing: .1em;
    color: var(--fm-gold-rim, #E8C96A);
    margin-bottom: 20px;
    display: flex; align-items: center; gap: 8px;
}
.ft-col h5::after {
    content: ''; flex: 1; height: 1px;
    background: rgba(184,134,11,.15);
}

.ft-col ul { list-style: none; }
.ft-col ul li { margin-bottom: 10px; }
.ft-col ul li a {
    font-size: 13.5px; color: #64748b; text-decoration: none;
    display: flex; align-items: center; gap: 7px;
    transition: color .2s, padding-left .2s; line-height: 1.4;
}
.ft-col ul li a i { font-size: 10px; color: rgba(184,134,11,.35); transition: color .2s; }
.ft-col ul li a:hover { color: #e2c97e; padding-left: 4px; }
.ft-col ul li a:hover i { color: var(--fm-gold, #B8860B); }

/* ── Contact tiles ── */
.ft-contact-items { display: flex; flex-direction: column; gap: 10px; }

.ft-citem {
    display: flex; align-items: center; gap: 10px;
    padding: 10px 12px;
    background: rgba(255,255,255,.03);
    border: 1px solid rgba(255,255,255,.05);
    border-radius: 10px; text-decoration: none;
    transition: background .2s, border-color .2s;
}
.ft-citem:hover {
    background: rgba(184,134,11,.07);
    border-color: rgba(184,134,11,.2);
}

.ft-citem-icon {
    width: 32px; height: 32px; border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    font-size: 13px; flex-shrink: 0;
}
.ft-citem-icon--wa   { background: rgba(37,211,102,.12); color: #25d366; border: 1px solid rgba(37,211,102,.2); }
.ft-citem-icon--mail { background: rgba(184,134,11,.12); color: var(--fm-gold-rim, #E8C96A); border: 1px solid rgba(184,134,11,.2); }
.ft-citem-icon--loc  { background: rgba(42,96,65,.2); color: #4ade80; border: 1px solid rgba(42,96,65,.3); }

.ft-citem-body span  { display: block; font-size: 10px; text-transform: uppercase; letter-spacing: .07em; color: #475569; font-weight: 600; }
.ft-citem-body strong { font-size: 12.5px; color: #94a3b8; font-weight: 500; }

/* ── Newsletter ── */
.ft-nl-label {
    font-size: 12.5px; color: #64748b; line-height: 1.6; margin-bottom: 12px;
}

.ft-nl-form {
    display: flex;
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 12px; overflow: hidden;
    transition: border-color .2s;
}
.ft-nl-form:focus-within { border-color: rgba(184,134,11,.4); }

.ft-nl-form input {
    flex: 1; padding: 12px 14px; background: transparent;
    border: none; color: #fff; outline: none;
    font-size: 13px; font-family: inherit;
}
.ft-nl-form input::placeholder { color: #475569; }

.ft-nl-form button {
    width: 40px; height: 40px; flex-shrink: 0;
    background: var(--fm-gold, #B8860B); border: none;
    color: #fff; cursor: pointer; font-size: 13px;
    display: flex; align-items: center; justify-content: center;
    margin: 3px 3px 3px 0; border-radius: 9px;
    transition: background .2s;
}
.ft-nl-form button:hover { background: var(--fm-green, #2A6041); }

.ft-nl-note {
    font-size: 11px; color: #334155; margin-top: 8px;
    display: flex; align-items: center; gap: 5px;
}
.ft-nl-note i { color: var(--fm-green, #2A6041); }

/* ════════════════════════════════════════
   LAYER 2 — STATS BAND
════════════════════════════════════════ */
.ft-stats {
    background: rgba(255,255,255,.02);
    border-top: 1px solid rgba(255,255,255,.06);
    border-bottom: 1px solid rgba(255,255,255,.06);
    padding: 28px 0;
    position: relative; z-index: 1;
}

.ft-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.ft-stat-item {
    text-align: center; padding: 4px 20px;
    position: relative;
}
.ft-stat-item + .ft-stat-item::before {
    content: ''; position: absolute;
    left: 0; top: 50%; transform: translateY(-50%);
    height: 40px; width: 1px;
    background: rgba(255,255,255,.07);
}

.ft-stat-n {
    font-family: var(--font-display, 'Playfair Display', serif);
    font-size: 1.9rem; font-weight: 700; line-height: 1;
    background: linear-gradient(120deg, var(--fm-gold, #B8860B), var(--fm-green, #2A6041));
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    background-clip: text;
}
.ft-stat-l {
    font-size: 11px; text-transform: uppercase;
    letter-spacing: .08em; color: #475569;
    font-weight: 600; margin-top: 5px;
}

/* ════════════════════════════════════════
   LAYER 3 — POLICY + TRUST BADGES
════════════════════════════════════════ */
.ft-sub {
    padding: 20px 0;
    border-bottom: 1px solid rgba(255,255,255,.05);
    position: relative; z-index: 1;
}

.ft-sub-inner {
    display: flex; align-items: center;
    justify-content: space-between;
    gap: 16px; flex-wrap: wrap;
}

.ft-policy { display: flex; flex-wrap: wrap; }
.ft-policy a {
    font-size: 12px; color: #334155;
    text-decoration: none;
    padding: 4px 16px;
    border-right: 1px solid rgba(255,255,255,.07);
    transition: color .2s; white-space: nowrap;
}
.ft-policy a:first-child { padding-left: 0; }
.ft-policy a:last-child  { border-right: none; }
.ft-policy a:hover { color: var(--fm-gold-rim, #E8C96A); }

.ft-sub-badges { display: flex; gap: 8px; }
.ft-badge {
    display: flex; align-items: center; gap: 5px;
    padding: 4px 11px; border-radius: 6px;
    border: 1px solid rgba(255,255,255,.07);
    background: rgba(255,255,255,.03);
    font-size: 11px; color: #475569;
}
.ft-badge--ssl  i { color: #4ade80; }
.ft-badge--gdpr i { color: var(--fm-gold-rim, #E8C96A); }

/* ════════════════════════════════════════
   LAYER 4 — COPYRIGHT
════════════════════════════════════════ */
.ft-bottom {
    padding: 20px 0;
    position: relative; z-index: 1;
}

.ft-bottom-inner {
    display: flex; align-items: center;
    justify-content: space-between;
    gap: 16px; flex-wrap: wrap;
}

.ft-copy { font-size: 12.5px; color: #334155; }
.ft-copy a { color: var(--fm-gold-rim, #E8C96A); text-decoration: none; }
.ft-copy a:hover { color: var(--fm-gold, #B8860B); }

.ft-made {
    font-size: 12px; color: #1e293b;
    display: flex; align-items: center; gap: 6px;
}
.ft-made i { color: #e74c3c; font-size: 12px; }
.ft-made span { color: #334155; }

/* ════════════════════════════════════════
   RESPONSIVE
════════════════════════════════════════ */
@media (max-width: 1024px) {
    .ft-main-grid {
        grid-template-columns: 1fr 1fr 1fr;
    }
    .ft-brand { grid-column: 1 / -1; max-width: 480px; }
}

@media (max-width: 768px) {
    .ft-main-grid { grid-template-columns: 1fr 1fr; }
    .ft-brand      { grid-column: 1 / -1; }
    .ft-stats-grid { grid-template-columns: repeat(2, 1fr); gap: 20px 0; }
    .ft-stat-item:nth-child(3)::before { display: none; }
    .ft-banner-right { display: none; }
}

@media (max-width: 560px) {
    /* Brand full width; Company + Services stay side by side in 2 cols */
    .ft-main-grid { grid-template-columns: 1fr 1fr; }
    .ft-brand,
    .ft-col:nth-child(4),
    .ft-col:nth-child(5) { grid-column: 1 / -1; }

    .ft-stats-grid { grid-template-columns: 1fr 1fr; }

    /* Policy — 2-per-row grid */
.ft-sub-inner { flex-direction: column; align-items: flex-start; gap: 16px; }
.ft-policy {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    width: 100%;
}
.ft-policy a {
    padding: 7px 10px;
    border-right: none;
    border-bottom: 1px solid rgba(255,255,255,.05);
    font-size: 12.5px;
    text-decoration-color: rgba(255,255,255,.12);
}
.ft-policy a:hover {
    text-decoration-color: var(--fm-gold-rim, #E8C96A);
}
.ft-policy a:first-child { padding-left: 10px; }
.ft-policy a:nth-child(7),
.ft-policy a:nth-child(8) { border-bottom: none; }

    /* Copyright — centred */
    .ft-bottom-inner {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 8px;
    }
    .ft-copy { text-align: center; }
    .ft-made { justify-content: center; }
}
/* ============================================================
   REVIEWS SECTION — reviews-section.css
   Design: Inspired by image layout · Golden-green palette
   Classes: .rv-*  |  Uses your root variables
   ============================================================ */

.rv-section {
    padding: clamp(70px,9vh,110px) 0;
    background: #fff;
    position: relative;
}

.rv-wrap {
    max-width: 1350px;
    margin: 0 auto;
    padding: 0 clamp(20px,5vw,40px);
}

/* ── PAGE TITLE ── */
.rv-page-title {
    font-size: clamp(1.5rem,3vw,2rem);
    font-weight: 800;
    color: var(--dark,#111827);
    letter-spacing: -.5px;
    margin-bottom: 28px;
}

/* ── TOP SUMMARY BLOCK ── */
.rv-summary {
    display: flex;
    align-items: flex-start;
    gap: 32px;
    padding-bottom: 28px;
    border-bottom: 1px solid #F0EDE8;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

/* Big score left */
.rv-score-block { display: flex; flex-direction: column; align-items: flex-start; gap: 6px; flex-shrink: 0; min-width: 90px; }
.rv-score-num {
    font-size: 3.4rem; font-weight: 900; line-height: 1;
    color: var(--dark,#111827);
}
.rv-score-stars { display: flex; gap: 4px; }
.rv-score-stars i { font-size: 16px; color: #E5E7EB; }
.rv-score-stars i.on { color: var(--primary,#B8860B); }
.rv-score-total { font-size: 12px; color: #9CA3AF; font-weight: 500; }

/* Bar chart middle */
.rv-bars { flex: 1; min-width: 200px; display: flex; flex-direction: column; gap: 7px; }
.rv-bar-row { display: flex; align-items: center; gap: 10px; }
.rv-bar-lbl { font-size: 12px; font-weight: 600; color: #6B7280; width: 18px; text-align: right; flex-shrink: 0; }
.rv-bar-track {
    flex: 1; height: 8px; background: #F3F4F6; border-radius: 4px; overflow: hidden;
}
.rv-bar-fill {
    height: 100%; border-radius: 4px;
    background: linear-gradient(90deg, var(--primary,#B8860B), #2A6041);
    transform-origin: left;
    animation: rv-grow .8s cubic-bezier(.4,0,.2,1) both;
}
@keyframes rv-grow { from{transform:scaleX(0)} to{transform:scaleX(1)} }
.rv-bar-count { font-size: 11px; color: #9CA3AF; font-weight: 500; width: 70px; flex-shrink: 0; }

/* ── CATEGORY CHIPS ── */
.rv-cats {
    display: flex; flex-wrap: wrap; gap: 8px;
    padding-bottom: 28px;
    border-bottom: 1px solid #F0EDE8;
    margin-bottom: 32px;
}
.rv-cat {
    display: inline-flex; align-items: center; gap: 6px;
    padding: 7px 16px;
    border: 1.5px solid #E5E7EB;
    border-radius: 50px;
    font-size: 13px; font-weight: 600;
    color: var(--dark,#111827);
    background: #fff;
    cursor: default;
    transition: border-color .2s, box-shadow .2s;
}
.rv-cat:hover { border-color: var(--primary,#B8860B); box-shadow: 0 2px 10px rgba(184,134,11,.1); }
.rv-cat-score {
    font-weight: 800; font-size: 13px;
    color: var(--primary,#B8860B);
}

/* ── REVIEW LIST ── */
.rv-list { display: flex; flex-direction: column; gap: 0; }

.rv-item {
    padding: 28px 0;
    border-bottom: 1px solid #F0EDE8;
}
.rv-item:first-child { padding-top: 0; }
.rv-item:last-child  { border-bottom: none; }

/* Reviewer meta row */
.rv-meta {
    display: flex; align-items: center;
    justify-content: space-between;
    gap: 12px; margin-bottom: 12px;
    flex-wrap: wrap;
}
.rv-meta-left { display: flex; align-items: center; gap: 12px; }

.rv-avatar {
    width: 42px; height: 42px; border-radius: 50%; flex-shrink: 0;
    background: linear-gradient(135deg, var(--primary,#B8860B), #2A6041);
    display: flex; align-items: center; justify-content: center;
    color: #fff; font-size: 13px; font-weight: 800; letter-spacing: -.5px;
}
.rv-reviewer-info { display: flex; flex-direction: column; gap: 2px; }
.rv-name  { font-size: 14px; font-weight: 700; color: var(--dark,#111827); }
.rv-when  { font-size: 12px; color: #9CA3AF; font-weight: 400; }

/* Rating right side */
.rv-rating { display: flex; align-items: center; gap: 8px; flex-shrink: 0; }
.rv-rating-num {
    font-size: 15px; font-weight: 800;
    color: var(--dark,#111827);
}
.rv-rating-stars { display: flex; gap: 3px; }
.rv-rating-stars i { font-size: 12px; color: #E5E7EB; }
.rv-rating-stars i.on { color: var(--primary,#B8860B); }

/* Review body */
.rv-body {
    font-size: 14px; line-height: 1.75;
    color: #4B5563; margin: 0;
}

/* ── LOAD MORE ── */
.rv-more {
    display: inline-flex; align-items: center; gap: 7px;
    margin-top: 28px;
    font-size: 14px; font-weight: 700;
    color: var(--primary,#B8860B);
    text-decoration: none;
    border: none; background: none; cursor: pointer;
    padding: 0;
    transition: gap .2s;
}
.rv-more:hover { gap: 10px; }
.rv-more i { font-size: 12px; }

/* ── RESPONSIVE ── */
@media (max-width: 600px) {
    .rv-summary  { gap: 20px; }
    .rv-score-num { font-size: 2.6rem; }
    .rv-cats     { gap: 6px; }
    .rv-cat      { padding: 6px 12px; font-size: 12px; }
    .rv-meta     { flex-direction: column; align-items: flex-start; gap: 8px; }
}

/* ==========================================================================
   BLOG / JOURNAL SECTION — blog-section.css
   Uses your root variables only. No --bn-* custom vars.
   ========================================================================== */

.bn-journal-section {
    padding: 84px 0 92px;
    background: #fff;
}

.bn-container {
    max-width: 1350px;
    margin: 0 auto;
    padding: 0 32px;
}

/* ── HEADER ── */
.bn-header-flex {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 28px;
    gap: 20px;
}

.bn-title-wrap { flex: 1; }

.bn-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: var(--fm-gold-bg);
    color: var(--fm-gold);
    border: 1px solid var(--fm-gold-rim);
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .09em;
    text-transform: uppercase;
    padding: 5px 13px;
    border-radius: 50px;
    margin-bottom: 14px;
}
.bn-eyebrow i { font-size: 11px; }

.bn-main-h2 {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--fm-ink);
    line-height: 1.2;
    margin: 0;
    letter-spacing: -.01em;
}
.bn-main-h2 span { color: var(--fm-gold); }

.bn-link-all {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    background: var(--fm-ink);
    color: #fff;
    border: 1px solid var(--fm-ink);
    padding: 11px 22px;
    border-radius: 50px;
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    white-space: nowrap;
    flex-shrink: 0;
    transition: background .22s, box-shadow .22s, transform .22s;
}
.bn-link-all i { font-size: 12px; transition: transform .22s; }
.bn-link-all:hover {
    background: var(--fm-gold);
    border-color: var(--fm-gold);
    box-shadow: 0 6px 18px rgba(184,134,11,.30);
    transform: translateY(-1px);
}
.bn-link-all:hover i { transform: translateX(4px); }

/* ── DIVIDER ── */
.bn-divider { display:flex; align-items:center; gap:14px; margin-bottom:36px; }
.bn-divider-line { flex:1; height:1px; background:var(--fm-border); }
.bn-divider-dot  { width:7px; height:7px; border-radius:50%; background:var(--fm-gold); flex-shrink:0; }

/* ── GRID ── */
.bn-posts-wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

/* ── CARD ── */
.bn-post-card {
    background: #fff;
    border: 1.5px solid var(--fm-border);
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: transform .3s var(--ease,ease), border-color .3s, box-shadow .3s;
}

.bn-card-link {
    position: absolute;
    inset: 0;
    z-index: 1;
    border-radius: inherit;
}

.bn-post-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--fm-gold), var(--fm-gold-rim));
    opacity: 0;
    transition: opacity .3s;
    z-index: 2;
}

/* ── IMAGE ── */
.bn-img-box {
    position: relative;
    width: 100%;
    height: 210px;
    overflow: hidden;
    flex-shrink: 0;
}
.bn-img-box img {
    width: 100%; height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .5s var(--ease,ease);
}

.bn-cat {
    position: absolute;
    top: 14px; left: 14px;
    font-family: var(--font-body);
    font-size: 10.5px;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: 50px;
    z-index: 3;
    backdrop-filter: blur(4px);
}
.bn-cat--dev    { background:rgba(17,24,39,.75);   color:#E8C96A;  border:1px solid rgba(232,201,106,.3); }
.bn-cat--design { background:rgba(42,96,65,.80);   color:#EBF5EE;  border:1px solid rgba(42,96,65,.2);   }
.bn-cat--biz    { background:rgba(184,134,11,.80); color:#fff;     border:1px solid rgba(184,134,11,.2); }

/* ── CARD BODY ── */
.bn-card-body {
    padding: 20px 22px 0;
    flex: 1;
}

.bn-post-title {
    font-family: var(--font-display);
    font-size: 1.075rem;
    font-weight: 700;
    color: var(--fm-ink);
    line-height: 1.4;
    margin: 0 0 10px;
    transition: color .22s;
}

.bn-post-desc {
    font-family: var(--font-body);
    font-size: .875rem;
    color: var(--fm-muted);
    line-height: 1.65;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* ── META FOOTER ── */
.bn-meta-row {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    padding: 14px 22px 18px;
    margin-top: 14px;
    border-top: 1px solid var(--fm-border);
}
.bn-meta-item {
    font-family: var(--font-body);
    font-size: 12px;
    color: var(--fm-muted);
    display: flex;
    align-items: center;
    gap: 5px;
}
.bn-meta-item i { color: var(--fm-gold); font-size: 11px; }

.bn-read-more {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-left: auto;
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 700;
    color: var(--fm-ink);
    background: var(--fm-gold-bg);
    border: 1px solid var(--fm-gold-rim);
    padding: 5px 13px;
    border-radius: 50px;
    text-decoration: none;
    transition: background .22s, color .22s, border-color .22s;
    position: relative;
    z-index: 2;
}
.bn-read-more i { font-size: 10px; transition: transform .22s; }

/* ── HOVER (desktop mouse only) ── */
@media (hover: hover) {
    .bn-post-card:hover {
        transform: translateY(-6px);
        border-color: var(--fm-gold-rim);
        box-shadow: 0 14px 38px rgba(184,134,11,.10);
    }
    .bn-post-card:hover::before { opacity: 1; }
    .bn-post-card:hover .bn-img-box img { transform: scale(1.05); }
    .bn-post-card:hover .bn-post-title  { color: var(--fm-gold); }
    .bn-post-card:hover .bn-read-more   { background:var(--fm-gold); border-color:var(--fm-gold); color:#fff; }
    .bn-post-card:hover .bn-read-more i { transform: translateX(3px); }
}

/* ── TABLET ── */
@media (max-width: 960px) {
    .bn-posts-wrapper { grid-template-columns: repeat(2,1fr); }
}

/* ==========================================================================
   MOBILE
   ========================================================================== */
@media (max-width: 768px) {

    .bn-journal-section { padding: 48px 0 56px; }
    .bn-container { padding: 0 16px; }

    /* header — h2 left, button right, one row */
    .bn-header-flex {
        flex-direction: row;
        align-items: center;
        gap: 10px;
        margin-bottom: 16px;
    }
    .bn-eyebrow { display: none; }
    .bn-main-h2 {
        font-size: 1.4rem;
        line-height: 1.2;
        white-space: nowrap;
    }
    .bn-link-all {
        padding: 8px 14px;
        font-size: 12px;
    }

    /* single column */
    .bn-posts-wrapper {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    /* ── CARD STRUCTURE ON MOBILE ──
       Outer card = column (default)
       Inside: one flex-row div with image + right-text
       Below that: meta row full width
    ──────────────────────────────── */
    .bn-post-card {
        flex-direction: column;     /* back to column so meta sits below */
        flex-wrap: nowrap;
        border-radius: 14px;
        align-items: stretch;
        overflow: hidden;
    }

    .bn-post-card::before { opacity: 1; }

    /* image area */
    .bn-img-box {
        width: 108px;
        min-width: 108px;
        height: 108px;
        flex-shrink: 0;
        border-radius: 0;
    }
    .bn-cat { display: none; }

    /* card body becomes a horizontal row: image + text */
    .bn-card-body {
        display: flex;
        flex-direction: row;
        align-items: stretch;
        flex: 1;
        min-width: 0;
        padding: 0;
        overflow: hidden;
    }

    /* move the image inside card-body row via CSS reorder trick —
       image is actually .bn-img-box which is BEFORE .bn-card-body in HTML,
       so we use a wrapper approach:
       card = column → [img-box | card-body(row: img clone not needed)]
       Actually img-box IS before card-body, so card needs to be ROW
       for image to sit left of card-body. Use this structure:        */

    /* Re-set card to row so img-box + card-body sit side by side */
    .bn-post-card {
        flex-direction: row;
        flex-wrap: wrap;           /* wrap so meta-row can be full width */
    }

    /* image — left side, fixed size */
    .bn-img-box {
        width: 108px;
        min-width: 108px;
        height: auto;              /* stretches with content height */
        flex-shrink: 0;
        align-self: stretch;
    }

    /* text area — right side of image */
    .bn-card-body {
        flex: 1;
        min-width: 0;
        padding: 11px 13px;
        overflow: hidden;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        gap: 4px;
    }

    /* ROW 1: Title */
    .bn-post-title {
        font-family: var(--font-body);
        font-size: .875rem;
        font-weight: 700;
        line-height: 1.4;
        color: var(--fm-ink) !important;   /* force dark — override any gold */
        margin: 0;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
        white-space: normal;
        flex-shrink: 0;
    }

    /* ROW 2: Desc/subtitle */
    .bn-post-desc {
        font-size: .775rem;
        line-height: 1.5;
        color: var(--fm-muted);
        margin: 0;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
        white-space: normal;
        flex-shrink: 0;
    }

    /* ROW 3: meta — full width below image+text
       flex-basis:100% forces it onto a new line in the wrapping flex */
    .bn-meta-row {
        flex-basis: 100%;
        width: 100%;
        display: flex;
        align-items: center;
        gap: 0;
        flex-wrap: nowrap;
        padding: 8px 13px 11px;
        margin: 0;
        border-top: 1px solid var(--fm-border);
    }

    .bn-meta-item {
        font-size: 11px;
        color: var(--fm-muted);
        gap: 3px;
        white-space: nowrap;
        flex-shrink: 0;
    }

    .bn-meta-item + .bn-meta-item {
        margin-left: 10px;
    }

    .bn-meta-item i { font-size: 10px; color: var(--fm-gold); }

    .bn-meta-date { display: flex; }
    .bn-meta-views { display: flex; }

    /* tighter so all 3 + Read fit one row */
    .bn-meta-item {
        font-size: 12px;
        gap: 3px;
    }

    .bn-meta-item + .bn-meta-item {
        margin-left: 7px;
    }

    .bn-read-more {
        padding: 3px 9px;
        font-size: 12px;
    }

    .bn-read-more {
        margin-left: auto;
        padding: 4px 11px;
        font-size: 11px;
        flex-shrink: 0;
        white-space: nowrap;
        background: var(--fm-gold-bg);
        border: 1px solid var(--fm-gold-rim);
        color: var(--fm-ink);
        border-radius: 50px;
        font-weight: 700;
        text-decoration: none;
        display: inline-flex;
        align-items: center;
        gap: 5px;
    }

    .bn-read-more i { font-size: 9px; }
}


/* ================================================
   PRICING SECTION CSS
   Depends on your existing :root variables only.
   No local :root overrides.
================================================ */

/* ── SECTION ── */
.bn-det-pricing-section {
    padding: 80px 0 70px;
    background: var(--cream);
    overflow-x: hidden;
    font-family: var(--font-body);
    position: relative;
}
.bn-det-pricing-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--fm-gold), transparent);
}

/* ── CONTAINER ── */
.bn-det-container {
    max-width: 1350px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ── HEADER ── */
.bn-det-header-center {
    text-align: center;
    margin-bottom: 50px;
}
.bn-det-tagline {
    font-family: var(--font-body);
    color: var(--fm-green);
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 3px;
    font-size: 11px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
    padding: 7px 18px;
    background: var(--fm-green-l);
    border-radius: 50px;
    border: 1px solid rgba(42,96,65,0.15);
}
.bn-det-tagline-dot {
    width: 5px; height: 5px;
    border-radius: 50%;
    background: var(--fm-gold);
    display: inline-block;
}
.bn-det-main-h2 {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    color: var(--fm-ink);
    font-weight: 700;
    margin: 0 0 12px;
    line-height: 1.2;
}
.bn-det-sub-p {
    color: var(--fm-muted);
    max-width: 500px;
    margin: 0 auto;
    line-height: 1.75;
    font-size: 15px;
}

/* ── DESKTOP GRID ── */
.bn-det-pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    align-items: stretch;
}

/* ── CARD BASE ── */
.bn-det-price-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 32px 28px 28px;
    position: relative;
    transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), border-color 0.35s var(--ease);
    display: flex;
    flex-direction: column;
    overflow: visible;
}
.bn-det-price-card::after {
    content: '';
    position: absolute;
    top: 0; right: 0;
    width: 80px; height: 80px;
    background: radial-gradient(circle at top right, var(--fm-gold-bg), transparent 70%);
    opacity: 0;
    transition: opacity 0.4s var(--ease);
    pointer-events: none;
    border-radius: 0 20px 0 0;
}
.bn-det-price-card:hover {
    transform: translateY(-5px);
    border-color: var(--fm-gold-rim);
}
.bn-det-price-card:hover::after { opacity: 1; }

/* ── FEATURED CARD ── */
.bn-det-featured {
    background: var(--fm-ink);
    border: 2px solid var(--fm-gold);
    transform: translateY(-8px) scale(1.02);
    z-index: 2;
}
.bn-det-featured::after {
    background: radial-gradient(circle at top right, rgba(184,134,11,0.09), transparent 70%);
    opacity: 1;
}
.bn-det-featured:hover {
    transform: translateY(-13px) scale(1.02);
}

/* ── NO SHADOWS anywhere ── */
.bn-det-price-card,
.bn-det-price-card:hover,
.bn-det-featured,
.bn-det-featured:hover {
    box-shadow: none;
}

/* ── POPULAR TAG ── */
.bn-det-popular-tag {
    position: absolute;
    top: -1px; left: 50%;
    transform: translateX(-50%);
    background: var(--fm-gold);
    color: var(--fm-ink);
    padding: 6px 18px;
    border-radius: 0 0 13px 13px;
    font-size: 10px;
    font-weight: 800;
    white-space: nowrap;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 5px;
}
.bn-det-popular-tag i { font-size: 9px; }

/* ── PLAN LABEL ── */
.bn-det-plan-label {
    font-size: 10px;
    font-weight: 800;
    color: var(--fm-muted);
    text-transform: uppercase;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 14px;
}

/* ── ICON + TITLE ROW (horizontal) ── */
.bn-det-icon-title-row {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 8px;
}

/* ── PLAN ICON ── */
.bn-det-plan-icon {
    width: 42px; height: 42px;
    border-radius: 12px;
    background: var(--fm-gold-bg);
    border: 1px solid var(--fm-gold-rim);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--fm-gold);
    font-size: 16px;
    transition: transform 0.3s var(--spring);
    flex-shrink: 0;
}
.bn-det-price-card:hover .bn-det-plan-icon { transform: rotate(-6deg) scale(1.08); }
.featured-icon {
    background: rgba(184,134,11,0.14);
    border-color: rgba(184,134,11,0.38);
    color: var(--fm-gold);
}

/* ── PRICE HEADER h3 (sits right of icon) ── */
.bn-det-price-header h3 {
    font-family: var(--font-display);
    font-size: 1.35rem;
    color: var(--fm-ink);
    margin: 0;
    font-weight: 700;
    line-height: 1.2;
}
.bn-det-featured .bn-det-price-header h3 { color: var(--white); }

.bn-det-plan-desc {
    color: var(--fm-muted);
    font-size: 13px;
    line-height: 1.6;
    margin: 0;
}
.bn-det-featured .bn-det-plan-desc { color: rgba(232,238,244,0.65); }

/* ── AMOUNT AREA ── */
.bn-det-amount-wrap { margin: 18px 0 0; }
.bn-det-amount {
    font-size: 48px;
    font-weight: 900;
    color: var(--fm-ink);
    display: flex;
    align-items: flex-start;
    line-height: 1;
    font-family: var(--font-display);
    letter-spacing: -1.5px;
}
.bn-det-featured .bn-det-amount { color: var(--white); }
.bn-det-currency {
    font-size: 19px;
    margin-top: 8px;
    margin-right: 2px;
    font-weight: 700;
    letter-spacing: 0;
}
.bn-det-discount-info {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 7px;
}
.bn-det-old-price {
    color: var(--muted);
    text-decoration: line-through;
    font-size: 14px;
    font-weight: 500;
}
.bn-det-save-badge {
    background: var(--fm-green-l);
    color: var(--fm-green);
    padding: 3px 10px;
    border-radius: 50px;
    font-size: 10px;
    font-weight: 800;
    border: 1px solid rgba(42,96,65,0.14);
}
.featured-badge {
    background: rgba(42,96,65,0.2);
    color: #6ee7b7;
    border-color: rgba(110,231,183,0.18);
}

/* ── DIVIDER ── */
.bn-det-divider {
    height: 1px;
    background: var(--border);
    margin: 18px 0 16px;
}
.featured-divider { background: rgba(255,255,255,0.1); }

/* ── FEATURES LIST ── */
.bn-det-price-features {
    list-style: none;
    padding: 0;
    margin: 0 0 22px;
    flex-grow: 1;
}
.bn-det-price-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    font-size: 13.5px;
    font-weight: 500;
}

/* included */
.feat-yes { color: var(--text); }
.bn-det-featured .feat-yes { color: var(--navy-light); }

/* not included */
.feat-no {
    opacity: 0.36;
    color: var(--text);
    text-decoration: line-through;
    text-decoration-color: rgba(122,146,168,0.45);
}
.feat-no-f {
    opacity: 0.28;
    color: var(--navy-light);
    text-decoration: line-through;
    text-decoration-color: rgba(232,238,244,0.28);
}

/* icon circle */
.feat-icon {
    width: 20px; height: 20px;
    border-radius: 50%;
    background: var(--fm-green-l);
    color: var(--fm-green);
    font-size: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border: 1px solid rgba(42,96,65,0.11);
}
.feat-icon-f {
    background: rgba(42,96,65,0.2);
    color: #6ee7b7;
    border-color: rgba(110,231,183,0.16);
}
.feat-x {
    background: rgba(192,57,43,0.07);
    color: var(--danger);
    border-color: rgba(192,57,43,0.14);
}
.feat-xf {
    background: rgba(255,255,255,0.05);
    color: rgba(232,238,244,0.38);
    border-color: rgba(255,255,255,0.07);
}

/* ── BUTTON ── */
.bn-det-price-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 13px 22px;
    background: var(--navy-light);
    color: var(--navy);
    border-radius: 12px;
    font-weight: 700;
    text-decoration: none;
    font-size: 13.5px;
    transition: all 0.3s var(--ease);
    border: 1px solid var(--border);
    margin-top: auto;
}
.bn-det-price-btn:hover {
    background: var(--fm-ink);
    color: var(--white);
    border-color: var(--fm-ink);
    gap: 12px;
}
.bn-det-featured .bn-det-price-btn {
    background: var(--fm-gold);
    color: var(--fm-ink);
    border-color: transparent;
}
.bn-det-featured .bn-det-price-btn:hover {
    background: var(--fm-gold-rim);
    gap: 12px;
}

/* ── SCROLL DOTS (hidden on desktop) ── */
.bn-det-scroll-dots {
    display: none;
    justify-content: center;
    gap: 7px;
    margin-top: 20px;
}
.bn-det-scroll-dots .pr-dot {
    width: 7px; height: 7px;
    border-radius: 50%;
    background: var(--border);
    transition: all 0.3s var(--ease);
    cursor: pointer;
    border: none;
    padding: 0;
}
.bn-det-scroll-dots .pr-dot.active {
    width: 22px;
    border-radius: 4px;
    background: var(--fm-gold);
}

/* ══════════════════════════════════
   TABLET  ≤ 900px
══════════════════════════════════ */
@media (max-width: 900px) {
    .bn-det-pricing-grid {
        grid-template-columns: 1fr;
        max-width: 440px;
        margin: 0 auto;
    }
    .bn-det-featured { transform: none; order: -1; }
    .bn-det-featured:hover { transform: translateY(-5px) scale(1); }
}

/* ══════════════════════════════════
   MOBILE SLIDER  ≤ 640px
   Business Pro centred on load.
   Adjacent card edges peek both sides.
══════════════════════════════════ */
@media (max-width: 640px) {

    .bn-det-pricing-section { padding: 52px 0 44px; }

    .bn-det-header-center { margin-bottom: 28px; padding: 0 6px; }
    .bn-det-main-h2      { font-size: 1.7rem; }
    .bn-det-sub-p        { font-size: 13.5px; }

    /* slider track */
    .bn-det-pricing-grid {
        display: flex;
        overflow-x: auto;
        overflow-y: visible;
        scroll-snap-type: x mandatory;
        scroll-padding-inline: calc((100% - 80vw) / 2);
        gap: 13px;
        padding: 28px calc((100% - 80vw) / 2) 24px;
        margin: 0 -24px;
        max-width: none;
        scrollbar-width: none;
        -webkit-overflow-scrolling: touch;
    }
    .bn-det-pricing-grid::-webkit-scrollbar { display: none; }

    /* card */
    .bn-det-price-card {
        min-width: 80vw;
        max-width: 80vw;
        scroll-snap-align: center;
        flex-shrink: 0;
        padding: 28px 20px 24px;
        border-radius: 18px;
    }

    /* featured — no scale, no margin-top (would shrink height), use padding-top instead for tag space */
    .bn-det-featured {
        transform: none !important;
        margin-top: 0;
        padding-top: 36px;   /* extra room for the popular-tag above content */
        order: 0;
        box-shadow: none !important;
    }
    .bn-det-featured:hover { transform: none !important; }

    .bn-det-amount              { font-size: 38px; }
    .bn-det-currency            { font-size: 17px; margin-top: 6px; }
    .bn-det-icon-title-row      { gap: 10px; }
    .bn-det-price-header h3     { font-size: 1.15rem; }
    .bn-det-plan-icon           { width: 36px; height: 36px; font-size: 13px; }
    .bn-det-plan-desc      { font-size: 12.5px; }
    .bn-det-price-features li{ font-size: 13px; margin-bottom: 9px; }
    .feat-icon             { width: 18px; height: 18px; font-size: 8px; }
    .bn-det-price-btn      { padding: 12px 16px; font-size: 13px; border-radius: 10px; }
    .bn-det-popular-tag    { font-size: 9.5px; padding: 5px 14px; }

    /* all cards — no shadow on mobile */
    .bn-det-price-card,
    .bn-det-price-card:hover { box-shadow: none; }

    /* show dots on mobile */
    .bn-det-scroll-dots { display: flex; }
}