/* ===========================================================
   Good Night Fabrics — Wholesale Manufacturing & Distribution
   Shared stylesheet
   =========================================================== */

   :root {
    /* Rebrand palette: deep navy + wholesale red, per updated homepage design */
    --navy: #0a1a33;
    --navy-2: #0d2547;
    --steel: #14315c;
    --steel-light: #234a82;
    --amber: #e4433a;
    --amber-2: #d9201f;
    --red-dark: #7a1015;
    --ink: #10202f;
    --slate: #526174;
    --slate-light: #7c8ba0;
    --line: #e3e8ee;
    --bg: #f7f9fb;
    --bg-alt: #f2f3f6;
    --white: #ffffff;
    --radius: 14px;
    --radius-sm: 8px;
    --shadow-sm: 0 2px 10px rgba(11, 31, 51, 0.06);
    --shadow-md: 0 10px 30px rgba(11, 31, 51, 0.10);
    --shadow-lg: 0 20px 50px rgba(11, 31, 51, 0.16);
    --maxw: 1200px;
    --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  }
  
  * { box-sizing: border-box; }
  html { scroll-behavior: smooth; overflow-x: clip; }
  
  body {
    margin: 0;
    font-family: var(--font);
    color: var(--ink);
    background: var(--bg);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: clip;
  }
  
  img { max-width: 100%; display: block; }
  a { color: inherit; text-decoration: none; }
  ul { list-style: none; margin: 0; padding: 0; }
  h1, h2, h3, h4 { line-height: 1.2; margin: 0 0 .5em; font-weight: 700; letter-spacing: -0.01em; }
  p { margin: 0 0 1em; color: var(--slate); }
  
  .container { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
  .section { padding: 88px 0; }
  .section-tight { padding: 56px 0; }
  .section-alt { background: var(--white); }
  
  .eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--amber-2);
    margin-bottom: 14px;
  }
  .eyebrow::before {
    content: '';
    width: 24px;
    height: 2px;
    background: var(--amber-2);
    display: inline-block;
  }
  
  .section-head { max-width: 680px; margin-bottom: 48px; }
  .section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
  .section-head h2 { font-size: clamp(28px, 3.4vw, 40px); color: var(--navy); }
  .section-head p { font-size: 17px; }
  
  /* Buttons */
  .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 999px;
    font-weight: 600;
    font-size: 15px;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all .2s ease;
    white-space: nowrap;
  }
  .btn-primary {background: var(--amber-2);color: var(--white);border-radius: 10px;}
  .btn-primary:hover { background: var(--amber); transform: translateY(-2px); box-shadow: var(--shadow-md); }
  .btn-outline { border-color: rgba(255,255,255,0.4); color: var(--white); }
  .btn-outline:hover { background: rgba(255,255,255,0.12); }
  .btn-navy { background: var(--navy); color: var(--white); }
  .btn-navy:hover { background: var(--navy-2); transform: translateY(-2px); box-shadow: var(--shadow-md); }
  .btn-ghost { border-color: var(--line); color: var(--navy); background: var(--white); }
  .btn-ghost:hover { border-color: var(--steel); color: var(--steel); }
  .btn-sm { padding: 10px 20px; font-size: 14px; }
  
  /* Header */
  .site-header {
    position: sticky; top: 0; z-index: 100;
    background: rgba(11, 31, 51, 0.96);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid rgba(255,255,255,0.06);
  }
  .topbar {
    background: var(--navy-2);
    color: rgba(255,255,255,0.85);
    font-size: 13px;
  }
  .topbar .container { display: flex; align-items: center; justify-content: space-between; padding-top: 8px; padding-bottom: 8px; }
  .topbar-links { display: flex; gap: 20px; }
  .topbar-links span, .topbar-links a { display: inline-flex; align-items: center; gap: 6px; }
  .topbar-cta { color: var(--amber); font-weight: 600; }
  
  .navbar { display: flex; align-items: center; justify-content: space-between; padding: 16px 0; }
  .brand { display: flex; align-items: center; gap: 12px; color: var(--white); }
  .brand-mark {
    width: 44px; height: 44px; border-radius: 10px;
    flex-shrink: 0;
    display: block;
  }
  .brand-mark img { width: 100%; height: 100%; display: block; }
  .brand-text .brand-name { font-weight: 800; font-size: 18px; letter-spacing: -0.01em; }
  .brand-text .brand-sub { font-size: 11px; text-transform: uppercase; letter-spacing: 0.08em; color: var(--slate-light); }
  
  .nav-links { display: flex; align-items: center; gap: 4px; }
  .nav-links a {
    color: rgba(255,255,255,0.82);
    font-weight: 500;
    font-size: 15px;
    padding: 10px 16px;
    border-radius: 999px;
    transition: all .2s ease;
  }
  .nav-links a:hover, .nav-links a.active { background: rgba(255,255,255,0.08); color: var(--white); }
  .nav-cta { display: flex; align-items: center; gap: 12px; }
  
  .nav-toggle {
    display: none;
    background: none; border: none; color: var(--white);
    font-size: 24px; cursor: pointer;
  }
  
  @media (max-width: 960px) {
    .topbar-links span:nth-child(2) { display: none; }
    .nav-links {
      position: fixed; inset: 0; top: 0;
      background: var(--navy);
      flex-direction: column;
      justify-content: flex-start;
      padding: 100px 32px 32px;
      gap: 8px;
      transform: translateX(100%);
      transition: transform .3s ease;
      z-index: 90;
    }
    .nav-links.open { transform: translateX(0); }
    .nav-links a { width: 100%; padding: 14px 16px; font-size: 18px; }
    .nav-toggle { display: block; z-index: 95; }
    .nav-cta .btn-outline { display: none; }
  }
  
  /* Hero */
  .hero {
    background: radial-gradient(1200px 600px at 80% -10%, rgba(74,144,194,0.35), transparent),
                linear-gradient(160deg, var(--navy) 0%, var(--navy-2) 55%, #0d2740 100%);
    color: var(--white);
    padding: 90px 0 100px;
    position: relative;
    overflow: hidden;
  }
  .hero::after {
    content: '';
    position: absolute; right: -120px; bottom: -160px;
    width: 460px; height: 460px; border-radius: 50%;
    background: radial-gradient(circle, rgba(242,153,74,0.18), transparent 70%);
  }
  .hero-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 56px; align-items: center; position: relative; z-index: 1; }
  .hero h1 { font-size: clamp(34px, 4.6vw, 54px); color: var(--white); }
  .hero .lead { font-size: 18px; color: rgba(255,255,255,0.78); max-width: 540px; }
  .hero-cta { display: flex; gap: 14px; flex-wrap: wrap; margin: 28px 0 36px; }
  .hero-badges { display: flex; gap: 28px; flex-wrap: wrap; }
  .hero-badges div { font-size: 13px; color: rgba(255,255,255,0.65); }
  .hero-badges strong { display: block; font-size: 26px; color: var(--white); font-weight: 800; }
  
  .hero-panel {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.14);
    border-radius: var(--radius);
    padding: 28px;
    backdrop-filter: blur(6px);
  }
  .hero-panel h3 { color: var(--white); font-size: 18px; margin-bottom: 16px; }
  .hero-panel ul li {
    display: flex; align-items: flex-start; gap: 10px;
    padding: 10px 0; border-bottom: 1px solid rgba(255,255,255,0.08);
    color: rgba(255,255,255,0.85); font-size: 14.5px;
  }
  .hero-panel ul li:last-child { border-bottom: none; }
  .hero-panel .tick { color: var(--amber); font-weight: 800; }
  
  @media (max-width: 860px) {
    .hero-grid { grid-template-columns: 1fr; }
  }
  
  /* Breadcrumb / page hero (inner pages) */
  .page-hero {
    background: linear-gradient(160deg, var(--navy) 0%, var(--navy-2) 100%);
    color: var(--white);
    padding: 64px 0 72px;
  }
  .page-hero h1 { color: var(--white); font-size: clamp(30px, 4vw, 42px); }
  .page-hero p { color: rgba(255,255,255,0.75); max-width: 620px; font-size: 16.5px; }
  .breadcrumb { font-size: 13px; color: rgba(255,255,255,0.55); margin-bottom: 14px; }
  .breadcrumb a { color: rgba(255,255,255,0.85); }
  .breadcrumb a:hover { color: var(--amber); }
  
  /* Stats strip */
  .stats-strip {
    background: var(--white);
    border-bottom: 1px solid var(--line);
  }
  .stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; padding: 32px 0; }
  .stat-item { text-align: center; border-right: 1px solid var(--line); }
  .stat-item:last-child { border-right: none; }
  .stat-item strong { display: block; font-size: 30px; color: var(--navy); font-weight: 800; }
  .stat-item span { font-size: 13px; color: var(--slate); text-transform: uppercase; letter-spacing: 0.05em; }
  @media (max-width: 760px) {
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .stat-item:nth-child(2) { border-right: none; }
  }
  
  /* Cards / grids */
  .grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
  .grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
  .grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
  @media (max-width: 960px) { .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); } }
  @media (max-width: 620px) { .grid-3, .grid-4, .grid-2 { grid-template-columns: 1fr; } }
  
  .card {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 30px;
    transition: all .25s ease;
  }
  .card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); border-color: transparent; }
  .card-icon {
    width: 52px; height: 52px; border-radius: 12px;
    background: linear-gradient(135deg, var(--steel), var(--navy));
    display: flex; align-items: center; justify-content: center;
    color: var(--white); font-size: 22px; margin-bottom: 18px;
  }
  .card h3 { font-size: 18px; color: var(--navy); }
  .card p { font-size: 14.5px; margin-bottom: 0; }
  
  /* Product cards */
  .product-card {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    overflow: hidden;
    transition: all .25s ease;
    display: flex; flex-direction: column;
  }
  .product-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-6px); }
  .product-media {
    height: 180px;
    background: linear-gradient(135deg, var(--steel-light), var(--navy));
    display: flex; align-items: center; justify-content: center;
    color: rgba(255,255,255,0.9); font-size: 42px;
    position: relative;
  }
  .product-media .moq-tag {
    position: absolute; top: 14px; right: 14px;
    background: rgba(11,31,51,0.55);
    color: var(--white); font-size: 11px; font-weight: 700;
    padding: 6px 12px; border-radius: 999px; letter-spacing: 0.03em;
  }
  .product-body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
  .product-body h3 { color: var(--navy); font-size: 19px; }
  .product-body p { font-size: 14.5px; flex: 1; }
  .product-specs { display: flex; flex-wrap: wrap; gap: 8px; margin: 14px 0; }
  .spec-chip {
    font-size: 12px; font-weight: 600; color: var(--steel);
    background: #eef4f9; padding: 6px 12px; border-radius: 999px;
  }
  .product-foot { display: flex; align-items: center; justify-content: space-between; margin-top: 8px; }
  
  /* Timeline / process */
  .process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; counter-reset: step; }
  .process-item { position: relative; padding-top: 8px; }
  .process-item::before {
    counter-increment: step;
    content: counter(step, decimal-leading-zero);
    font-size: 34px; font-weight: 800; color: var(--line);
    -webkit-text-stroke: 1px var(--steel);
    display: block; margin-bottom: 10px;
  }
  .process-item h4 { color: var(--navy); font-size: 16.5px; }
  .process-item p { font-size: 14px; }
  @media (max-width: 860px) { .process-grid { grid-template-columns: repeat(2, 1fr); } }
  
  /* Testimonials */
  .testi-card {
    background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
    padding: 28px;
  }
  .testi-stars { color: var(--amber-2); font-size: 15px; margin-bottom: 12px; letter-spacing: 2px; }
  .testi-quote { font-size: 15px; color: var(--ink); margin-bottom: 18px; }
  .testi-name { font-weight: 700; color: var(--navy); font-size: 14.5px; }
  .testi-role { font-size: 13px; color: var(--slate-light); }
  
  /* CTA band */
  .cta-band {
    background: linear-gradient(135deg, var(--navy) 0%, var(--steel) 130%);
    color: var(--white);
    border-radius: var(--radius);
    padding: 48px;
    display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap;
  }
  .cta-band h3 { color: var(--white); font-size: 24px; margin-bottom: 6px; }
  .cta-band p { color: rgba(255,255,255,0.78); margin-bottom: 0; }
  
  /* Gallery */
  .gallery-filters { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 36px; }
  .filter-chip {
    padding: 9px 18px; border-radius: 999px; font-size: 13.5px; font-weight: 600;
    border: 1px solid var(--line); color: var(--slate); background: var(--white); cursor: pointer;
    transition: all .2s ease;
  }
  .filter-chip:hover { border-color: var(--steel); color: var(--steel); }
  .filter-chip.active { background: var(--navy); color: var(--white); border-color: var(--navy); }
  .gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
  .gallery-item {
    aspect-ratio: 4/3; border-radius: var(--radius-sm); overflow: hidden;
    background: linear-gradient(135deg, var(--steel-light), var(--navy-2));
    display: flex; align-items: flex-end; padding: 14px; position: relative; cursor: pointer;
    transition: transform .25s ease;
  }
  .gallery-item:hover { transform: scale(1.03); }
  .gallery-item img {
    position: absolute !important; top: 0; left: 0; right: 0; bottom: 0;
    width: 100% !important; height: 100% !important; object-fit: cover; z-index: 0;
    max-width: none; flex: none; pointer-events: none;
  }
  .gallery-item::after {
    content: ''; position: absolute; inset: 0; z-index: 0;
    background: linear-gradient(to top, rgba(10,20,30,0.75), rgba(10,20,30,0) 55%);
  }
  .gallery-item.no-photo::after { display: none; }
  .gallery-item span {
    color: var(--white); font-size: 13px; font-weight: 700; position: relative; z-index: 1;
    background: rgba(11,31,51,0.5); padding: 5px 10px; border-radius: 6px;
    max-width: calc(100% - 20px); white-space: normal; word-break: normal; line-height: 1.35;
  }
  @media (max-width: 960px) { .gallery-grid { grid-template-columns: repeat(3, 1fr); } }
  @media (max-width: 620px) { .gallery-grid { grid-template-columns: repeat(2, 1fr); } }
  
  /* Forms */
  .form-card {
    background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
    padding: 32px;
  }
  .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
  .form-row.full { grid-template-columns: 1fr; }
  .field label { display: block; font-size: 13.5px; font-weight: 600; color: var(--navy); margin-bottom: 6px; }
  .field input, .field select, .field textarea {
    width: 100%; padding: 12px 14px; border-radius: var(--radius-sm);
    border: 1px solid var(--line); font-family: var(--font); font-size: 14.5px;
    background: var(--bg); transition: border-color .2s ease;
  }
  .field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--steel); background: var(--white); }
  @media (max-width: 620px) { .form-row { grid-template-columns: 1fr; } }
  
  /* Contact info list */
  .info-list li { display: flex; gap: 14px; padding: 16px 0; border-bottom: 1px solid var(--line); }
  .info-list li:last-child { border-bottom: none; }
  .info-ico {
    width: 42px; height: 42px; border-radius: 10px; background: #eef4f9; color: var(--steel);
    display: flex; align-items: center; justify-content: center; font-size: 18px; flex-shrink: 0;
  }
  .info-list h4 { margin: 0 0 4px; font-size: 14.5px; color: var(--navy); }
  .info-list p { margin: 0; font-size: 14px; }
  
  .map-embed {
    border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line);
    height: 260px; background: linear-gradient(135deg, #d9e4ee, #c3d5e4);
    display: flex; align-items: center; justify-content: center; color: var(--slate);
    font-size: 14px; font-weight: 600;
  }
  
  /* Footer */
  .site-footer { background: var(--navy); color: rgba(255,255,255,0.7); padding: 64px 0 24px; }
  .footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.3fr; gap: 40px; margin-bottom: 48px; }
  .footer-grid h4 { color: var(--white); font-size: 15px; margin-bottom: 16px; }
  .footer-grid p { font-size: 14px; color: rgba(255,255,255,0.6); }
  .footer-grid ul li { margin-bottom: 10px; }
  .footer-grid ul li a { font-size: 14px; color: rgba(255,255,255,0.65); transition: color .2s; }
  .footer-grid ul li a:hover { color: var(--amber); }
  .footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1); padding-top: 24px;
    display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px;
    font-size: 13px; color: rgba(255,255,255,0.5);
  }
  .social-row { display: flex; gap: 10px; }
  .social-row a {
    width: 36px; height: 36px; border-radius: 50%; border: 1px solid rgba(255,255,255,0.2);
    display: flex; align-items: center; justify-content: center; font-size: 14px; color: var(--white);
    transition: all .2s;
  }
  .social-row a:hover { background: var(--amber-2); border-color: var(--amber-2); }
  @media (max-width: 860px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
  
  /* Sticky Get Quote tab — right center, all pages */
  .float-quote {
    position: fixed; right: 0; top: 50%; z-index: 199;
    transform: translateY(-50%);
    display: inline-flex; align-items: center; justify-content: center;
    background: var(--amber-2); color: var(--white);
    padding: 16px 10px; border-radius: 10px 0 0 10px;
    box-shadow: var(--shadow-lg);
    font-weight: 800; font-size: 13px; letter-spacing: 0.08em;
    text-transform: uppercase; text-decoration: none;
    writing-mode: vertical-rl; text-orientation: mixed;
    transition: background .2s ease, padding .2s ease, transform .2s ease;
  }
  .float-quote span { transform: rotate(180deg); }
  .float-quote:hover {
    background: var(--amber);
    padding-right: 14px;
    color: var(--white);
  }

  /* Floating action buttons (Contact / Call / WhatsApp) */
  .float-actions {
    position: fixed; right: 24px; bottom: 24px; z-index: 200;
    display: flex; flex-direction: column; align-items: center; gap: 12px;
  }
  .float-btn {
    width: 50px; height: 50px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: var(--white); box-shadow: var(--shadow-lg);
    transition: transform .2s ease, box-shadow .2s ease;
  }
  .float-btn:hover { transform: translateY(-2px) scale(1.04); box-shadow: 0 12px 28px rgba(8,16,26,.28); }
  .float-btn svg { display: block; width: 22px; height: 22px; }
  .float-contact { background: var(--navy); }
  .float-contact:hover { background: var(--navy-2); }
  .float-call { background: var(--amber-2); }
  .float-call:hover { background: var(--amber); }
  .float-wa { background: #25D366; }
  .float-wa:hover { background: #1ebe57; }
  .float-wa svg { width: 23px; height: 23px; }
  @media (max-width: 600px) {
    .float-quote { padding: 12px 8px; font-size: 11px; }
    .float-actions { right: 16px; bottom: 16px; gap: 10px; }
    .float-btn { width: 45px; height: 45px; }
    .float-btn svg { width: 20px; height: 20px; }
    .float-wa svg { width: 21px; height: 21px; }
  }
  
  /* Utility */
  .text-center { text-align: center; }
  .mt-0 { margin-top: 0; }
  
  /* Gallery lightbox */
  .gallery-item.has-photo { cursor: zoom-in; }
  .lightbox-overlay {
    position: fixed; inset: 0; z-index: 500;
    background: rgba(8, 16, 26, 0.92);
    display: flex; align-items: center; justify-content: center;
    padding: 40px 24px;
    opacity: 0; visibility: hidden;
    transition: opacity .25s ease;
  }
  .lightbox-overlay.active { opacity: 1; visibility: visible; }
  .lightbox-content {
    position: relative; max-width: min(90vw, 1000px); max-height: 88vh;
    display: flex; flex-direction: column; align-items: center; gap: 14px;
  }
  .lightbox-content img {
    max-width: 100%; max-height: 78vh; width: auto; height: auto;
    border-radius: var(--radius-sm); box-shadow: var(--shadow-lg);
    background: var(--navy);
  }
  .lightbox-caption {
    color: rgba(255,255,255,0.9); font-size: 14.5px; font-weight: 600; text-align: center;
  }
  .lightbox-close {
    position: absolute; top: -18px; right: -18px;
    width: 40px; height: 40px; border-radius: 50%;
    background: var(--amber-2); color: var(--white); border: none;
    font-size: 20px; line-height: 1; cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    box-shadow: var(--shadow-md);
  }
  .lightbox-close:hover { background: var(--amber); }
  .lightbox-nav {
    position: absolute; top: 50%; transform: translateY(-50%);
    width: 46px; height: 46px; border-radius: 50%;
    background: rgba(255,255,255,0.12); border: 1px solid rgba(255,255,255,0.3); color: var(--white);
    font-size: 20px; cursor: pointer; display: flex; align-items: center; justify-content: center;
    transition: background .2s ease;
  }
  .lightbox-nav:hover { background: rgba(255,255,255,0.25); }
  .lightbox-prev { left: -60px; }
  .lightbox-next { right: -60px; }
  @media (max-width: 760px) {
    .lightbox-prev { left: 6px; }
    .lightbox-next { right: 6px; }
    .lightbox-close { top: -44px; right: 0; }
  }
  
  /* ===========================================================
     V2 rebrand — utility bar, header, homepage sections
     =========================================================== */
  
  /* Utility bar */
  .utility-bar {
    background: var(--navy);
    color: rgba(255,255,255,0.85);
    font-size: 12.5px;
    font-weight: 600;
  }
  .utility-bar .container {
    display: flex; align-items: stretch; justify-content: space-between;
    padding: 0; gap: 0;
  }
  .utility-left { display: flex; align-items: center; gap: 16px; white-space: nowrap; padding: 9px 22px 9px 0; }
  .utility-left span:not(.u-divider) { display: inline-flex; align-items: center; gap: 8px; }
  .u-ico { width: 18px; height: 18px; display: inline-flex; flex-shrink: 0; color: rgba(255,255,255,0.85); }
  .u-ico svg { width: 100%; height: 100%; }
  .u-divider { width: 1px; height: 14px; background: rgba(255,255,255,0.25); align-self: center; }
  .utility-ticker {
    flex: 1;
    display: flex; align-items: stretch; justify-content: center;
    min-width: 0;
  }
  .utility-ticker span {
    display: flex; align-items: center; justify-content: center;
    width: 100%; max-width: 640px;
    background: linear-gradient(90deg, var(--amber-2), var(--amber));
    color: var(--white); font-weight: 800; letter-spacing: 0.04em;
    padding: 9px 40px; font-size: 13px; white-space: nowrap;
    overflow: hidden; text-overflow: ellipsis;
    clip-path: polygon(22px 0, 100% 0, calc(100% - 22px) 100%, 0 100%);
  }
  .utility-right { display: flex; align-items: center; gap: 10px; white-space: nowrap; padding: 9px 0 9px 22px; }
  .utility-social { display: flex; gap: 8px; }
  .utility-social a {
    width: 23px; height: 23px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center; color: var(--white);
  }
  .utility-social a svg { width: 12px; height: 12px; }
  .utility-social .soc-fb { background: #1877F2; }
  @media (max-width: 860px) {
    .utility-left, .utility-right span:first-child { display: none; }
    .utility-ticker span { clip-path: none; padding: 9px 16px; }
  }
  
  /* V2 header */
  .site-header-v2 { background: var(--white); border-bottom: 1px solid var(--line); }
  .navbar-v2 { display: flex; align-items: center; justify-content: space-between; padding: 14px 0; gap: 16px; }
  .brand-v2 { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
  .brand-v2 .brand-mark {
    width: 84px; height: 54px; border-radius: 10px; flex-shrink: 0;
    overflow: hidden; background: transparent;
  }
  .brand-v2 .brand-mark img { width: 100%; height: 100%; display: block; object-fit: contain; }
  .brand-v2 .brand-name { font-weight: 800; font-size: 21px; color: var(--navy); line-height: 1.1; }
  .brand-v2 .brand-name span { color: var(--amber-2); }
  .brand-v2 .brand-sub { font-size: 11px; font-weight: 700; letter-spacing: 0.08em; color: var(--amber-2); text-transform: uppercase; }
  .footer-logo {
    width: 68px; height: 44px; border-radius: 8px; object-fit: contain; background: transparent; display: block;
  }
  
  .nav-links-v2 { display: flex; align-items: center; gap: 2px; flex: 1; justify-content: center; min-width: 0; }
  .nav-links-v2 a {
    color: var(--navy); font-weight: 700; font-size: 13px; letter-spacing: 0.02em;
    padding: 10px 12px; border-radius: 6px; transition: all .2s ease; text-transform: uppercase;
    white-space: nowrap; flex-shrink: 0;
  }
  .nav-links-v2 a:hover, .nav-links-v2 a.active { background: var(--bg-alt); color: var(--amber-2); }
  
  .header-cta-v2 { display: flex; align-items: center; gap: 14px; flex-shrink: 0; }
  .header-phone { display: flex; align-items: center; gap: 8px; font-weight: 800; color: var(--navy); font-size: 15px; white-space: nowrap; }
  .header-phone .ico { color: var(--amber-2); font-size: 17px; }
  .btn-quote {
    background: var(--amber-2); color: var(--white); font-weight: 800; font-size: 12.5px;
    padding: 12px 16px; border-radius: 6px; letter-spacing: 0.03em; white-space: nowrap;
    text-transform: uppercase; transition: background .2s ease;
  }
  .btn-quote:hover { background: var(--amber); }
  
  @media (max-width: 1100px) {
    .nav-links-v2 {
      position: fixed; inset: 0; top: 0; background: var(--navy);
      flex-direction: column; padding: 100px 32px 32px; gap: 6px;
      transform: translateX(100%); transition: transform .3s ease; z-index: 90;
      flex: none; justify-content: flex-start;
    }
    .nav-links-v2.open { transform: translateX(0); }
    .nav-links-v2 a { width: 100%; padding: 14px 16px; font-size: 17px; color: var(--white); }
    .header-phone { display: none; }
    .btn-quote { display: none; }
    .navbar-v2 { gap: 12px; }
    .brand-v2 { min-width: 0; }
    .brand-v2 .brand-name { font-size: 16px; }
    .brand-v2 .brand-mark { width: 68px; height: 44px; }
    .site-header-v2 .nav-toggle {
      display: block;
      position: relative;
      z-index: 100;
      color: var(--navy);
      font-size: 28px;
      line-height: 1;
      padding: 4px;
    }
    /* White close icon over the navy open menu */
    .nav-links-v2.open ~ .header-cta-v2 .nav-toggle { color: var(--white); }
  }
  
  /* Hero v2 */
  .hero-v2 {
    position: relative; color: var(--white);
    background:
      linear-gradient(100deg, rgba(8,20,38,0.94) 0%, rgba(8,20,38,0.82) 40%, rgba(8,20,38,0.55) 70%, rgba(8,20,38,0.72) 100%),
      url('img/gallery/sliding-01-window-sliding-mesh.jpg') center / cover no-repeat, var(--navy);
    padding: 64px 0 0;
  }
  .hero-v2-grid { display: grid; grid-template-columns: 1.25fr 0.9fr; gap: 40px; align-items: start; position: relative; z-index: 1; }
  .hero-v2 .kicker {font-size: 30px;font-weight: 800;line-height: 30px;}
  .hero-v2 h1 {font-size: 80px;color: var(--white);text-shadow: 0 2px 18px rgba(0,0,0,0.35);}
  .hero-v2 h1 em {font-style: normal;display: block;font-size: 30px;}
  .hero-v2 .sub { font-size: 18px; font-weight: 700; color: rgba(255,255,255,0.92); margin-bottom: 22px; }
  .hero-check-list { list-style: none; margin: 0 0 26px; padding: 0; }
  .hero-check-list li { display: flex; align-items: center; gap: 10px; padding: 6px 0; font-weight: 600; font-size: 15px; text-shadow: 0 1px 8px rgba(0,0,0,0.3); }
  .hero-check-list .tick {
    width: 24px;
    height: 24px;
    border-radius: 12px;
    background: var(--amber-2);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    flex-shrink: 0;
  }
  .supply-ribbon {
    background: linear-gradient(100deg, var(--amber-2), var(--amber));
    padding: 35px 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: -34px;
    position: relative;
    z-index: 2;
    box-shadow: var(--shadow-lg);
    max-width: 620px;
    clip-path: polygon(70px 0, 100% 0, calc(100% - 70px) 100%, 0 100%);
  }
  .supply-ribbon .line1 {font-size: 24px;font-weight: 700;}
  .supply-ribbon .line2 {font-size: 32px;font-weight: 900;color: #fff566;letter-spacing: 0.01em;}
  .supply-ribbon .truck-ico {width: 60px;height: 60px;color: var(--white);flex-shrink: 0;}
  .supply-ribbon .truck-ico svg { width: 100%; height: 100%; }
  
  /* Enquiry form card */
  .enquiry-card {
    background: var(--navy-2); border-radius: var(--radius); padding: 26px;
    box-shadow: var(--shadow-lg); position: relative; z-index: 2; margin-top: 6px;
    border: 1px solid rgba(255,255,255,0.08);
  }
  .enquiry-card h3 {
    text-align: center; color: var(--white); font-size: 16px; letter-spacing: 0.04em;
    margin-bottom: 18px; text-transform: uppercase;
  }
  .enquiry-card .field { margin-bottom: 12px; position: relative; }
  .enquiry-card .field-ico {
    position: absolute; left: 14px; top: 50%; transform: translateY(-50%);
    width: 17px; height: 17px; color: var(--slate-light); pointer-events: none;
  }
  .enquiry-card .field-ico svg { width: 100%; height: 100%; }
  .enquiry-card textarea ~ .field-ico, .enquiry-card .field-ico.top { top: 15px; transform: none; }
  .enquiry-card input, .enquiry-card select, .enquiry-card textarea {
    width: 100%; padding: 13px 14px 13px 40px; border-radius: 8px; border: 1px solid var(--line);
    font-family: var(--font); font-size: 14px; background: var(--white); color: var(--ink);
  }
  .enquiry-card select { padding-left: 40px; appearance: none; background-image: none; }
  .enquiry-card input:focus, .enquiry-card select:focus, .enquiry-card textarea:focus { outline: none; border-color: var(--amber-2); background: var(--white); }
  .enquiry-card input::placeholder, .enquiry-card textarea::placeholder { color: var(--slate-light); }
  .enquiry-card .btn-primary { width: 100%; padding: 15px; font-size: 15px; letter-spacing: 0.03em; text-transform: uppercase; }
  .enquiry-whatsapp {
    display: flex; align-items: center; justify-content: center; gap: 8px;
    margin-top: 14px; font-size: 13.5px; font-weight: 700; color: rgba(255,255,255,0.75);
  }
  .enquiry-whatsapp .wa-dot {
    width: 22px; height: 22px; border-radius: 50%; background: #25D366; color: #fff;
    display: inline-flex; align-items: center; justify-content: center; flex-shrink: 0;
  }
  .enquiry-whatsapp .wa-dot svg { display: block; }
  
  /* Feature strip v2 */
  .feature-strip-v2 { background: var(--navy); padding: 22px 0; }
  .feature-strip-v2 .container { display: grid; grid-template-columns: repeat(6, 1fr); gap: 12px; padding-top: 34px; }
  .feature-item-v2 { display: flex; align-items: center; gap: 12px; color: rgba(255,255,255,0.9); }
  .feature-item-v2 .ico {
    width: 26px; height: 26px; color: rgba(255,255,255,0.92);
    display: flex; align-items: center; justify-content: center; flex-shrink: 0;
  }
  .feature-item-v2 .ico svg { width: 100%; height: 100%; }
  .feature-item-v2 span { font-size: 12px; font-weight: 700; text-transform: uppercase; line-height: 1.25; }
  @media (max-width: 960px) { .feature-strip-v2 .container { grid-template-columns: repeat(3, 1fr); } }
  @media (max-width: 620px) { .feature-strip-v2 .container { grid-template-columns: repeat(2, 1fr); } }
  
  /* Product grid v2 (kept for other pages) */
  .section-title-v2 { text-align: center; margin-bottom: 6px; font-size: clamp(24px, 3vw, 32px); color: var(--navy); font-weight: 900; letter-spacing: 0.01em; }
  .section-title-v2 span { color: var(--amber-2); }
  .section-sub-v2 { text-align: center; color: var(--slate); font-size: 15px; margin-bottom: 36px; }
  .product-grid-v2 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
  @media (max-width: 960px) { .product-grid-v2 { grid-template-columns: repeat(2, 1fr); } }
  .product-card-v2 {
    border: 1px solid var(--line); border-radius: 10px; overflow: hidden; background: var(--white);
    transition: all .25s ease; text-align: center;
  }
  .product-card-v2:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
  .product-card-v2 .thumb { aspect-ratio: 4/3; overflow: hidden; background: linear-gradient(135deg, var(--steel-light), var(--navy)); }
  .product-card-v2 .thumb img { width: 100%; height: 100%; object-fit: cover; }
  .product-card-v2 .thumb.fallback-thumb {
    display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.85); font-size: 40px;
  }
  .product-card-v2 .body { padding: 16px; }
  .product-card-v2 h4 { font-size: 14.5px; color: var(--navy); font-weight: 800; text-transform: uppercase; margin-bottom: 2px; }
  .product-card-v2 .sub { font-size: 11.5px; color: var(--slate-light); text-transform: uppercase; font-weight: 700; letter-spacing: 0.04em; margin-bottom: 12px; }
  .btn-view {
    display: inline-block; border: 2px solid var(--amber-2); color: var(--amber-2);
    font-size: 12px; font-weight: 800; padding: 8px 18px; border-radius: 5px; letter-spacing: 0.04em;
    text-transform: uppercase; transition: all .2s ease;
  }
  .btn-view:hover { background: var(--amber-2); color: var(--white); }

  /* Homepage products showcase — Z-pattern feature rows */
  .products-showcase {
    background: var(--white);
    padding-top: 72px;
    padding-bottom: 72px;
  }
  .products-showcase .section-sub-v2 { margin-bottom: 56px; }
  .product-feature {
    display: grid;
    grid-template-columns: 1fr 1.15fr;
    gap: 56px;
    align-items: center;
    margin-bottom: 72px;
  }
  .product-feature:last-child { margin-bottom: 0; }
  .product-feature-reverse { grid-template-columns: 1.15fr 1fr; }
  .product-feature-reverse .product-feature-copy { order: 2; }
  .product-feature-reverse .product-feature-stage { order: 1; }
  .product-feature-copy h3 {
    font-size: clamp(28px, 3.4vw, 42px);
    color: var(--navy);
    font-weight: 800;
    letter-spacing: -0.02em;
    margin: 0 0 18px;
    line-height: 1.15;
  }
  .product-feature-copy p {
    font-size: 16.5px;
    line-height: 1.65;
    color: var(--slate);
    margin: 0;
    max-width: 440px;
  }

  .product-feature-stage {
    position: relative;
    background: #eef1f5;
    border-radius: 28px;
    min-height: 320px;
    padding: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .product-stage-card {
    background: var(--white);
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 18px 50px rgba(10, 26, 51, 0.12);
  }
  .product-stage-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }
  .product-stage-main {
    width: min(100%, 440px);
    aspect-ratio: 4 / 3;
    position: relative;
  }
  .product-stage-label {
    position: absolute;
    left: 0; right: 0; bottom: 0;
    padding: 14px 16px;
    background: linear-gradient(transparent, rgba(10, 26, 51, 0.82));
    color: var(--white);
  }
  .product-stage-label strong {
    display: block;
    font-size: 14px;
    font-weight: 800;
  }
  .product-stage-label span {
    font-size: 12px;
    opacity: 0.85;
  }

  @media (max-width: 960px) {
    .product-feature,
    .product-feature-reverse {
      grid-template-columns: 1fr;
      gap: 28px;
      margin-bottom: 56px;
    }
    .product-feature-reverse .product-feature-copy,
    .product-feature-reverse .product-feature-stage { order: initial; }
    .product-feature-stage { min-height: 240px; padding: 24px; border-radius: 22px; }
    .product-feature-copy p { max-width: none; }
  }
  
  /* Process steps */
  .process-strip {
    display: flex; align-items: flex-start; justify-content: space-between; gap: 4px; flex-wrap: nowrap;
  }
  .process-step { display: flex; flex-direction: column; align-items: center; text-align: center; flex: 1 1 0; min-width: 0; }
  .process-circle {
    width: 68px; height: 68px; border-radius: 50%; background: var(--navy); color: var(--white);
    display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 3px;
    margin-bottom: 14px; flex-shrink: 0;
  }
  .process-circle .p-ico { width: 24px; height: 24px; }
  .process-circle .p-ico svg { width: 100%; height: 100%; }
  .process-circle .num {
    font-size: 8.5px; font-weight: 800; color: rgba(255,255,255,0.55); letter-spacing: 0.04em;
  }
  .process-step h5 { font-size: 12px; font-weight: 800; color: var(--navy); text-transform: uppercase; margin: 0 0 5px; letter-spacing: 0.01em; }
  .process-step p { font-size: 11px; color: var(--slate); margin: 0; line-height: 1.4; padding: 0 4px; }
  .process-arrow {
    color: var(--ink); font-size: 20px; font-weight: 700; flex-shrink: 0;
    margin-top: 24px; display: flex; align-items: center;
  }
  @media (max-width: 960px) {
    .process-strip { flex-wrap: wrap; justify-content: center; }
    .process-step { flex: 0 0 30%; margin-bottom: 20px; }
    .process-arrow { display: none; }
  }
  @media (max-width: 560px) { .process-step { flex: 0 0 45%; } }
  
  /* Tamil Nadu supply section */
  .supply-map-grid { display: grid; grid-template-columns: 0.95fr 1fr 1.05fr; gap: 36px; align-items: center; }
  .tn-map-wrap { position: relative; }
  .tn-map-wrap img { width: 100%; height: auto; display: block; border-radius: var(--radius-sm); }
  
  .supply-heading-navy { font-size: clamp(24px, 2.6vw, 32px); font-weight: 900; color: var(--navy); line-height: 1.15; margin-bottom: 10px; text-transform: uppercase; }
  .supply-heading-red { font-size: clamp(24px, 2.8vw, 34px); font-weight: 900; color: var(--amber-2); line-height: 1.15; margin-bottom: 14px; text-transform: uppercase; }
  
  .supply-feature-row { display: flex; flex-wrap: wrap; gap: 18px 22px; margin-top: 22px; }
  .supply-feature { display: flex; align-items: center; gap: 9px; font-size: 13px; font-weight: 700; color: var(--navy); }
  .supply-feature .ico {
    width: 30px; height: 30px; border-radius: 50%; border: 1.5px solid var(--navy); color: var(--navy);
    display: flex; align-items: center; justify-content: center; flex-shrink: 0; padding: 6px; box-sizing: border-box;
  }
  .supply-feature .ico svg { width: 100%; height: 100%; }
  
  .supply-truck-col { display: flex; align-items: center; justify-content: center; }
  .supply-truck-col svg { width: 100%; height: auto; display: block; }
  @media (max-width: 1180px) { .supply-map-grid { grid-template-columns: 1fr 1fr; } .supply-truck-col { display: none; } }
  
  /* Dealer network band */
  .dealer-band {display: grid;grid-template-columns: 1fr 1.4fr;border-radius: var(--radius);overflow: hidden;box-shadow: var(--shadow-md);border: 5px solid #0b1a33;}
  .dealer-left { background: var(--navy); color: var(--white); padding: 40px; }
  .dealer-left .eyebrow { color: var(--amber); }
  .dealer-left h3 { font-size: 24px; color: var(--white); margin-bottom: 18px; }
  .dealer-check-list { list-style: none; margin: 0 0 22px; padding: 0; }
  .dealer-check-list li { display: flex; align-items: center; gap: 10px; padding: 6px 0; font-size: 14.5px; font-weight: 600; }
  .dealer-check-list .tick { width: 18px; height: 18px; color: var(--amber); flex-shrink: 0; display: inline-flex; }
  .dealer-check-list .tick svg { width: 100%; height: 100%; }
  .dealer-right { background: var(--bg-alt); display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px; padding: 20px; }
  .dealer-stat {
    padding: 26px 14px;
    text-align: center;
    background: var(--white);
    border-radius: var(--radius-sm);
    box-shadow: 0 2px 10px rgba(15,28,51,0.05);
    border: 1px solid var(--line);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
  }
  .dealer-stat .ico { width: 34px; height: 34px; margin: 0 auto 14px; color: var(--ink); }
  .dealer-stat .ico svg { width: 100%; height: 100%; }
  .dealer-stat strong { display: block; font-size: 21px; color: var(--navy); font-weight: 900; margin-bottom: 4px; white-space: nowrap; }
  .dealer-stat span { font-size: 10.5px; color: var(--slate-light); text-transform: uppercase; font-weight: 700; letter-spacing: 0.02em; }
  @media (max-width: 960px) { .dealer-band { grid-template-columns: 1fr; } .dealer-right { grid-template-columns: repeat(3,1fr); } }
  @media (max-width: 620px) { .dealer-right { grid-template-columns: repeat(2,1fr); } }
  
  /* Factory gallery strip */
  .factory-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 14px; }
  @media (max-width: 960px) { .factory-grid { grid-template-columns: repeat(3, 1fr); } }
  @media (max-width: 620px) { .factory-grid { grid-template-columns: repeat(2, 1fr); } }
  .factory-tile { border-radius: var(--radius-sm); overflow: hidden; position: relative; aspect-ratio: 4/3; }
  .factory-tile img { width: 100%; height: 100%; object-fit: cover; }
  .factory-tile .fallback {
    width: 100%; height: 100%; background: linear-gradient(135deg, var(--steel-light), var(--navy));
    display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.6); font-size: 26px;
  }
  .factory-tile span {
    position: absolute; bottom: 0; left: 0; right: 0; background: rgba(10,26,51,0.75); color: var(--white);
    font-size: 11px; font-weight: 700; text-align: center; padding: 6px 4px; text-transform: uppercase;
  }
  
  @media (max-width: 860px) {
    .container { padding: 0 16px; }
    .hero-v2-grid { grid-template-columns: 1fr; }
    .hero-v2 { padding: 36px 0 0; overflow: hidden; }
    .hero-v2 .kicker { font-size: clamp(16px, 5vw, 22px); line-height: 1.2; }
    .hero-v2 h1 {
      font-size: clamp(36px, 12vw, 56px);
      word-break: break-word;
      overflow-wrap: anywhere;
    }
    .hero-v2 h1 em { font-size: clamp(16px, 4.5vw, 22px); }
    .supply-map-grid { grid-template-columns: 1fr; }
    .supply-ribbon {
      max-width: 100%;
      clip-path: none;
      padding: 18px 16px;
      gap: 12px;
      margin-left: 0;
    }
    .supply-ribbon .line1 { font-size: 14px; }
    .supply-ribbon .line2 { font-size: 18px; }
    .supply-ribbon .truck-ico { width: 40px; height: 40px; }
    .utility-right {
      display: none;
    }
    nav.navbar-v2.container {
      padding: 14px 16px;
    }
  }
  @media (min-width: 1000px) { 
    .supply-ribbon {
        margin-left: -70px;
    }
  }
/* ===========================================================
   Added for the WordPress conversion
   =========================================================== */

.gnf-form-notice {
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  font-size: 13.5px;
  font-weight: 600;
  margin-bottom: 16px;
}
.gnf-form-success { background: #e7f7ee; color: #146c3f; border: 1px solid #b7e6cb; }
.gnf-form-error { background: #fdecec; color: #9c2626; border: 1px solid #f5c2c2; }

.gallery-item:not(.has-photo) {
  background: linear-gradient(135deg, var(--steel-light), var(--navy-2));
}

.gnf-editable-content p:last-child { margin-bottom: 0; }

/* ===========================================================
   Fluent Forms styling — matches the brand look on both the
   homepage enquiry-card (dark navy panel) and the contact page
   form-card (white panel). Class names below were confirmed by
   inspecting the actual rendered form on the live site (Fluent
   Forms 5.x markup): .fluentform > form.frm-fluent-form, each
   field wrapped in .ff-el-group > .ff-el-input--label (label) +
   .ff-el-input--content (the input, class .ff-el-form-control),
   Name/Address fields additionally wrapped in a grid
   (.ff-t-container > .ff-t-cell per column), and the button is
   button.ff-btn.ff-btn-submit.
   =========================================================== */

.enquiry-card .fluentform,
.form-card .fluentform { width: 100%; }

/* Tight field rhythm — Fluent Forms defaults to ~20px + visible label space */
.enquiry-card .ff-el-group,
.form-card .ff-el-group {
  margin-bottom: 12px !important;
  margin-top: 0 !important;
}
.enquiry-card .ff-el-group.ff_submit_btn_wrapper,
.form-card .ff-el-group.ff_submit_btn_wrapper {
  margin-bottom: 0 !important;
  margin-top: 2px !important;
}
.enquiry-card .ff-el-input--content,
.form-card .ff-el-input--content {
  margin: 0 !important;
  padding: 0 !important;
}

/* --- Labels: fully remove from layout (FF uses stronger defaults) --- */
.enquiry-card .ff-el-input--label,
.enquiry-card .ff-el-input--label.ff-el-is-required,
.enquiry-card .ff-el-input--label.asterisk-right,
.form-card .ff-el-input--label,
.form-card .ff-el-input--label.ff-el-is-required,
.form-card .ff-el-input--label.asterisk-right {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: 0 !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  clip-path: inset(50%) !important;
  white-space: nowrap !important;
  border: 0 !important;
  display: block !important;
}
.enquiry-card .ff-el-group,
.form-card .ff-el-group {
  position: relative;
}

/* --- Force every field (including the Name field's and Address field's
   internal ff-t-container/ff-t-cell grid, which Fluent Forms renders
   side-by-side by default) to stack full-width, single column — matching
   the original design where every field is its own full-width row --- */
.enquiry-card .ff-t-container,
.form-card .ff-t-container {
  display: block;
}
.enquiry-card .ff-t-cell,
.form-card .ff-t-cell {
  width: 100%;
}
.enquiry-card .ff-name-address-wrapper .ff-t-cell,
.form-card .ff-name-address-wrapper .ff-t-cell {
  margin-bottom: 14px;
}

/* --- Inputs / selects / textareas --- */
.enquiry-card .fluentform input[type="text"],
.enquiry-card .fluentform input[type="tel"],
.enquiry-card .fluentform input[type="email"],
.enquiry-card .fluentform input[type="number"],
.enquiry-card .fluentform select,
.enquiry-card .fluentform textarea,
.enquiry-card .fluentform .ff-el-form-control,
.form-card .fluentform input[type="text"],
.form-card .fluentform input[type="tel"],
.form-card .fluentform input[type="email"],
.form-card .fluentform input[type="number"],
.form-card .fluentform select,
.form-card .fluentform textarea,
.form-card .fluentform .ff-el-form-control {
  width: 100%;
  padding: 13px 14px 13px 42px;
  border-radius: 8px;
  border: 1px solid var(--line);
  font-family: var(--font);
  font-size: 14px;
  background-color: var(--white);
  background-repeat: no-repeat;
  background-position: 14px 50%;
  background-size: 16px 16px;
  color: var(--ink);
  transition: border-color .2s ease;
}
.enquiry-card .fluentform textarea,
.form-card .fluentform textarea,
.enquiry-card .fluentform textarea.ff-el-form-control,
.form-card .fluentform textarea.ff-el-form-control {
  background-position: 14px 14px !important;
  min-height: 110px;
  resize: vertical;
  padding-top: 13px;
}

/* Field icons (design: person / phone / pin / message) */
.enquiry-card .fluentform input[name="your_name"],
.form-card .fluentform input[name="your_name"] {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2394a3b8' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 21v-2a4 4 0 0 0-4-4H8a4 4 0 0 0-4 4v2'/%3E%3Ccircle cx='12' cy='7' r='4'/%3E%3C/svg%3E");
}
.enquiry-card .fluentform input[name="phone"],
.form-card .fluentform input[name="phone"] {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2394a3b8' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M22 16.92v3a2 2 0 0 1-2.18 2 19.79 19.79 0 0 1-8.63-3.07 19.5 19.5 0 0 1-6-6A19.79 19.79 0 0 1 2.12 4.18 2 2 0 0 1 4.11 2h3a2 2 0 0 1 2 1.72c.13.81.36 1.6.68 2.35a2 2 0 0 1-.45 2.11L8.09 9.91a16 16 0 0 0 6 6l1.27-1.27a2 2 0 0 1 2.11-.45c.75.32 1.54.55 2.35.68A2 2 0 0 1 22 16.92z'/%3E%3C/svg%3E");
}
.enquiry-card .fluentform input[name="city_location"],
.form-card .fluentform input[name="city_location"] {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2394a3b8' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M21 10c0 7-9 13-9 13s-9-6-9-13a9 9 0 0 1 18 0z'/%3E%3Ccircle cx='12' cy='10' r='3'/%3E%3C/svg%3E");
}
.enquiry-card .fluentform textarea[name="message"],
.form-card .fluentform textarea[name="message"] {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2394a3b8' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M21 15a2 2 0 0 1-2 2H7l-4 4V5a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2z'/%3E%3C/svg%3E");
  background-position: 14px 14px !important;
}
.enquiry-card .fluentform input:focus,
.enquiry-card .fluentform select:focus,
.enquiry-card .fluentform textarea:focus,
.form-card .fluentform input:focus,
.form-card .fluentform select:focus,
.form-card .fluentform textarea:focus {
  outline: none;
  border-color: var(--amber-2);
  background-color: var(--white);
}
.enquiry-card .fluentform ::placeholder,
.form-card .fluentform ::placeholder { color: var(--slate-light); }

/* Hide the up/down spinner on number-type fields (e.g. a Phone field
   built with Fluent Forms' "Numeric Field" type) to match the plain
   text-input look of the rest of the form */
.enquiry-card .fluentform input[type="number"],
.form-card .fluentform input[type="number"] {
  -moz-appearance: textfield;
}
.enquiry-card .fluentform input[type="number"]::-webkit-outer-spin-button,
.enquiry-card .fluentform input[type="number"]::-webkit-inner-spin-button,
.form-card .fluentform input[type="number"]::-webkit-outer-spin-button,
.form-card .fluentform input[type="number"]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* --- Submit button, styled like the rest of the site's primary button --- */
.enquiry-card .fluentform button[type="submit"],
.enquiry-card .fluentform .ff-btn-submit,
.form-card .fluentform button[type="submit"],
.form-card .fluentform .ff-btn-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 14px 28px;
  border-radius: 10px;
  border: none;
  background: var(--amber-2);
  color: var(--white);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all .2s ease;
}
.enquiry-card .fluentform button[type="submit"]:hover,
.enquiry-card .fluentform .ff-btn-submit:hover,
.form-card .fluentform button[type="submit"]:hover,
.form-card .fluentform .ff-btn-submit:hover {
  background: var(--amber);
  transform: translateY(-2px);
}

/* --- Validation + success/error messages --- */
.enquiry-card .fluentform .error,
.enquiry-card .fluentform .text-danger,
.form-card .fluentform .error,
.form-card .fluentform .text-danger {
  color: #ffb4b4;
  font-size: 12.5px;
  margin-top: 4px;
  display: block;
}
.form-card .fluentform .text-danger { color: #c0392b; }

.enquiry-card .fluentform [class*="success"],
.form-card .fluentform [class*="success"] {
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  font-size: 13.5px;
  font-weight: 600;
  margin-bottom: 16px;
  background: #e7f7ee;
  color: #146c3f;
  border: 1px solid #b7e6cb;
}
