/* ============================================================
   Clean Customs — shared stylesheet
   Extracted from inline styles, common to most pages
   ============================================================ */

/* ── @font-face ── */
@font-face { font-family: 'Orbitron'; font-style: normal; font-weight: 700; font-display: swap; src: url('/fonts/orbitron-v35-latin-700.woff2') format('woff2'); }
@font-face { font-family: 'Orbitron'; font-style: normal; font-weight: 900; font-display: swap; src: url('/fonts/orbitron-v35-latin-900.woff2') format('woff2'); }
@font-face { font-family: 'Rajdhani'; font-style: normal; font-weight: 600; font-display: swap; src: url('/fonts/rajdhani-v17-latin-600.woff2') format('woff2'); }
@font-face { font-family: 'Rajdhani'; font-style: normal; font-weight: 700; font-display: swap; src: url('/fonts/rajdhani-v17-latin-700.woff2') format('woff2'); }
@font-face { font-family: 'DM Sans'; font-style: normal; font-weight: 400; font-display: swap; src: url('/fonts/dm-sans-v17-latin-300.woff2') format('woff2'); }
@font-face { font-family: 'DM Sans'; font-style: normal; font-weight: 400; font-display: swap; src: url('/fonts/dm-sans-v17-latin-regular.woff2') format('woff2'); }
@font-face { font-family: 'DM Sans'; font-style: normal; font-weight: 500; font-display: swap; src: url('/fonts/dm-sans-v17-latin-500.woff2') format('woff2'); }
@font-face { font-family: 'DM Sans'; font-style: normal; font-weight: 600; font-display: swap; src: url('/fonts/dm-sans-v17-latin-600.woff2') format('woff2'); }

    .hover-lift { transition: transform 0.25s, box-shadow 0.25s; }
    .hover-lift:hover { transform: translateY(-5px); box-shadow: 0 12px 38px rgba(0,0,0,0.11); }
    .hover-tint { transition: background 0.18s; }
    .hover-tint:hover { background: #ddeeff !important; }
    .hover-invert { transition: background 0.18s, color 0.18s; }
    .hover-invert:hover { background: var(--blue) !important; color: #fff !important; }

/* ── Main styles ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    :root {
      --navy: #0d1b3e; --blue: #1a3a8f; --sky: #00b4e6;
      --cyan: #29d9f5; --gold: #00b4e6; --gold-light: #29d9f5; --cream: #f0f8ff;
      --white: #ffffff; --gray: #374151; --light-gray: #eef4fb; --text: #1e2d3d;
      --font-display: 'Orbitron', 'Rajdhani', sans-serif;
      --font-body: 'DM Sans', system-ui, sans-serif;
    }
    html { scroll-behavior: smooth; }
    body { font-family: var(--font-body); color: var(--text); background: var(--white); overflow-x: hidden; }

    /* ── NAV ── */
    nav {
      position: relative; top: 0; left: 0; right: 0; z-index: 200;
      background: rgba(10,22,40,0.97); backdrop-filter: blur(14px);
      border-bottom: 1px solid rgba(232,160,32,0.25);
      padding: 0 5%; display: flex; align-items: center; justify-content: space-between; height: 68px;
    }
    .nav-logo { display: flex; align-items: center; text-decoration: none; }
    .nav-logo img { height: 44px; width: auto; display: block; }
    .nav-logo span { display: none; }
    .nav-links { display: flex; gap: 1.6rem; list-style: none; align-items: center; }
    .nav-links a { color: rgba(255,255,255,0.82); text-decoration: none; font-size: 1.05rem; font-weight: 500; transition: color 0.2s; }
    .nav-links a:hover { color: var(--gold); }
    .nav-cta { background: var(--gold) !important; color: var(--navy) !important; padding: 0.45rem 1.1rem !important; border-radius: 4px; font-weight: 700 !important; transition: background 0.2s !important; }
    .nav-cta:hover { background: var(--gold-light) !important; }
    .nav-phone { color: var(--gold) !important; font-weight: 700 !important; font-size: 1rem !important; }
    .hamburger { background: transparent; border: 0; font: inherit; color: inherit; cursor: pointer; }
    .hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 12px; margin: -8px; -webkit-tap-highlight-color: transparent; touch-action: manipulation; }
    .hamburger span { display: block; width: 24px; height: 2px; background: var(--white); border-radius: 2px; transition: all 0.3s; }
    .mobile-nav { display: none; position: fixed; top: 0; left: 0; right: 0; background: var(--navy); z-index: 199; padding: 1.5rem 5%; border-bottom: 3px solid var(--gold); }
    .mobile-nav.open { display: block; }
    .mobile-nav a { display: block; color: rgba(255,255,255,0.85); text-decoration: none; padding: 0.85rem 0; border-bottom: 1px solid rgba(255,255,255,0.07); font-weight: 500; font-size: 1.03rem; }
    .mobile-nav a:hover { color: var(--gold); }
    .mobile-nav .mob-cta { background: var(--gold); color: var(--navy) !important; padding: 0.9rem 1rem !important; border-radius: 6px; text-align: center; font-weight: 700 !important; margin-top: 0.8rem; border-bottom: none !important; display: block; }

    /* ── FLOATING CONTACT BAR ── */
    .float-bar {
      position: fixed; bottom: 0; left: 0; right: 0; z-index: 300;
      display: grid; grid-template-columns: 1fr 1fr;
      height: calc(60px + env(safe-area-inset-bottom)); box-shadow: 0 -4px 20px rgba(0,0,0,0.25);
    
      padding-bottom: env(safe-area-inset-bottom);
    }
    .float-btn {
      display: flex; align-items: center; justify-content: center;
      gap: 0.4rem; text-decoration: none; font-weight: 700;
      font-family: var(--font-body); font-size: 1rem;
      transition: filter 0.15s; border: none; cursor: pointer;
      min-height: 48px;
    }
    .float-btn:hover { filter: brightness(1.1); }
    .float-call { background: var(--navy); color: var(--gold); }
    .float-book { background: var(--gold); color: var(--navy); }
    .float-icon { font-size: 1.1rem; }

    /* ── PAGE HERO ── */
    .page-hero {
      background: linear-gradient(135deg, var(--navy) 0%, #0d2144 100%);
      padding: 158px 5% 65px; text-align: center;
    }
    .hero-label { color: var(--gold); font-size: 0.72rem; font-weight: 700; letter-spacing: 2.5px; text-transform: uppercase; display: block; margin-bottom: 0.8rem; }
    .page-hero h1 { font-family: var(--font-display); font-size: clamp(1.9rem,4.5vw,3.2rem); font-weight: 900; color: var(--white); margin-bottom: 1rem; line-height: 1.12; }
    .page-hero h1 em { font-style: normal; color: var(--gold); }
    .page-hero .hero-sub { color: rgba(255,255,255,0.90); font-size: 1rem; max-width: 580px; margin: 0 auto 2rem; line-height: 1.75; }
    .hero-btns { display: flex; gap: 0.9rem; justify-content: center; flex-wrap: wrap; }
    .btn-gold { background: var(--sky); color: var(--white); padding: 0.88rem 1.9rem; border-radius: 6px; font-size: 1.05rem; font-weight: 700; text-decoration: none; display: inline-flex; align-items: center; gap: 0.5rem; transition: all 0.2s; }
    .btn-gold:hover { background: var(--cyan); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,180,230,0.38); }
    .btn-outline { background: transparent; color: var(--white); border: 2px solid rgba(255,255,255,0.35); padding: 0.88rem 1.9rem; border-radius: 6px; font-size: 1.05rem; font-weight: 600; text-decoration: none; display: inline-flex; align-items: center; gap: 0.5rem; transition: all 0.2s; }
    .btn-outline:hover { border-color: var(--cyan); background: rgba(0,180,230,0.1); }

    /* ── CONTENT ── */
    .content-wrap { max-width: 1120px; margin: 0 auto; padding: 70px 5%; }
    .two-col { display: block; }
    h2.sh2 { font-family: var(--font-display); font-size: clamp(1.65rem,3vw,2.4rem); font-weight: 900; color: var(--navy); margin-bottom: 1rem; line-height: 1.2; }
    .slabel { display: inline-block; font-size: 0.72rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--sky); margin-bottom: 0.55rem; }
    p.bt { color: #2d3748; line-height: 1.85; margin-bottom: 1rem; font-size: 1.05rem; }
    ul.flist { list-style: none; margin: 1.1rem 0; display: flex; flex-direction: column; gap: 0.55rem; }
    ul.flist li { display: flex; align-items: flex-start; gap: 0.65rem; font-size: 1rem; color: var(--text); line-height: 1.5; }
    ul.flist li::before { content: '✓'; color: var(--sky); font-weight: 700; flex-shrink: 0; margin-top: 1px; }
    h3.sh3 { font-family: var(--font-display); font-size: 1.2rem; color: var(--navy); margin: 1.6rem 0 0.8rem; font-weight: 700; }

    /* ── QUOTE PILL ── */
    .quote-pill {
      display: flex; align-items: center; gap: 0.6rem; flex-wrap: wrap;
      background: rgba(232,160,32,0.12); border: 1.5px solid rgba(232,160,32,0.5);
      color: var(--navy); padding: 0.55rem 1.2rem; border-radius: 50px;
      font-size: 1.05rem; font-weight: 700; margin-bottom: 1.3rem; max-width: 100%;
    }
    .quote-pill a { color: var(--sky); text-decoration: none; font-weight: 700; }
    .quote-pill a:hover { text-decoration: underline; }

    /* ── STICKY PANEL ── */
    .sticky-panel {
      display: none;
      background: linear-gradient(145deg, var(--navy), #0f2a55);
      border-radius: 16px; padding: 2rem; color: white; position: static;
      border: 1px solid rgba(255,255,255,0.07);
    }
    .sticky-panel h3 { font-family: var(--font-display); font-size: 1.35rem; font-weight: 900; margin-bottom: 0.3rem; }
    .sp-sub { color: rgba(255,255,255,0.85); font-size: 0.95rem; margin-bottom: 1.4rem; line-height: 1.5; }
    .sp-stat { background: rgba(255,255,255,0.07); border-radius: 8px; padding: 0.85rem 1rem; margin-bottom: 0.7rem; display: flex; align-items: center; gap: 0.85rem; }
    .sp-stat .icon { font-size: 1.3rem; flex-shrink: 0; }
    .sp-stat strong { display: block; font-size: 1.05rem; color: var(--white); line-height: 1.3; }
    .sp-stat span { font-size: 0.76rem; color: rgba(255,255,255,0.82); }
    .sp-divider { border: none; border-top: 1px solid rgba(255,255,255,0.1); margin: 1rem 0; }
    .sp-cta-book { display: block; background: var(--gold); color: var(--navy); text-align: center; padding: 0.88rem; border-radius: 8px; font-weight: 700; text-decoration: none; transition: all 0.2s; font-size: 0.93rem; margin-bottom: 0.6rem; }
    .sp-cta-book:hover { background: var(--gold-light); transform: translateY(-1px); }
    .sp-cta-call { display: block; background: rgba(255,255,255,0.1); color: var(--white); text-align: center; padding: 0.88rem; border-radius: 8px; font-weight: 700; text-decoration: none; transition: all 0.2s; font-size: 0.93rem; margin-bottom: 0.6rem; }
    .sp-cta-call:hover { background: rgba(255,255,255,0.16); }
    .sp-note { font-size: 0.74rem; color: rgba(255,255,255,0.80); text-align: center; margin-top: 0.8rem; line-height: 1.5; }

    /* ── FAQ ── */
    .faq-section { background: var(--cream); padding: 65px 5%; }
    .faq-inner { max-width: 820px; margin: 0 auto; }
    .faq-inner h2 { font-family: var(--font-display); font-size: 1.9rem; font-weight: 900; color: var(--navy); margin-bottom: 2rem; text-align: center; }
    .faq-item { border-bottom: 1px solid #d8e0ec; }
    summary.faq-q::-webkit-details-marker { display: none; } .faq-q { list-style: none; font-weight: 700; color: var(--navy); font-size: 1.02rem; cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 1rem; padding: 1.1rem 0; }
    .faq-q::after { content: '+'; color: var(--sky); font-size: 1.4rem; flex-shrink: 0; transition: transform 0.25s; font-weight: 400; }
    .faq-item[open] .faq-q::after { transform: rotate(45deg); }
    .faq-a { display: block; color: var(--gray); font-size: 1.05rem; line-height: 1.75; padding-bottom: 1.1rem; }
    /* native <details> handles open state */

    /* ── RELATED SERVICES ── */
    .related-section { padding: 55px 5%; background: var(--white); }
    .related-section h2 { font-family: var(--font-display); font-size: 1.8rem; font-weight: 900; color: var(--navy); text-align: center; margin-bottom: 2rem; }
    .rs-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(170px,1fr)); gap: 1rem; max-width: 1000px; margin: 0 auto; }
    .rs-card { background: var(--light-gray); border-radius: 10px; padding: 1.2rem; text-align: center; text-decoration: none; color: var(--navy); transition: all 0.2s; border: 2px solid transparent; }
    .rs-card:hover { background: var(--cream); border-color: var(--gold); transform: translateY(-3px); box-shadow: 0 6px 20px rgba(0,0,0,0.07); }
    .rs-icon { font-size: 1.9rem; display: block; margin-bottom: 0.45rem; }
    .rs-card strong { font-size: 0.84rem; font-weight: 700; }

    /* ── CTA BAND ── */
    .cta-band { background: linear-gradient(135deg, #0d1b3e, #1a3a8f); padding: 60px 5%; text-align: center; }
    .cta-band h2 { font-family: var(--font-display); color: var(--cyan); font-size: clamp(1.6rem,3vw,2.2rem); margin-bottom: 0.5rem; font-weight: 900; letter-spacing: -0.3px; }
    .cta-band p { color: rgba(255,255,255,0.90); margin-bottom: 2rem; font-size: 1.05rem; }
    .btn-dark { background: var(--cyan); color: var(--navy); padding: 0.9rem 2rem; border-radius: 6px; font-size: 1.05rem; font-weight: 700; text-decoration: none; display: inline-flex; align-items: center; gap: 0.5rem; transition: all 0.2s; margin: 0.3rem; }
    .btn-dark:hover { background: var(--gold-light); transform: translateY(-2px); }

    /* ── FOOTER ── */
    footer { background: var(--navy); color: rgba(255,255,255,0.82); padding: 55px 5% 90px; }
    .footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 2.5rem; margin-bottom: 2.5rem; }
    .footer-logo { text-decoration: none; display: block; margin-bottom: 0.9rem; }
    .footer-logo img { height: 50px; width: auto; filter: brightness(0) invert(1); opacity: 0.9; }
    .footer-brand p { font-size: 0.95rem; line-height: 1.7; max-width: 270px; }
    .footer-contact-links { margin-top: 1rem; display: flex; flex-direction: column; gap: 0.5rem; }
    .footer-contact-links a { color: var(--gold); text-decoration: none; font-size: 1rem; font-weight: 600; display: flex; align-items: center; gap: 0.4rem; }
    footer h4 { color: var(--white); font-size: 1rem; font-weight: 700; letter-spacing: 1.2px; text-transform: uppercase; margin-bottom: 1rem; }
    footer ul { list-style: none; display: flex; flex-direction: column; gap: 0.55rem; }
    footer ul a { color: rgba(255,255,255,0.82); text-decoration: none; font-size: 1rem; transition: color 0.2s; }
    footer ul a:hover { color: var(--gold); }
    .footer-bottom { border-top: 1px solid rgba(255,255,255,0.07); padding-top: 1.4rem; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 0.8rem; font-size: 0.85rem; }

    /* ── BLOG STYLES ── */
    .blog-hero { background: linear-gradient(135deg, var(--navy), #0d2144); padding: 158px 5% 65px; }
    .blog-hero .hero-label { color: var(--gold); font-size: 0.72rem; font-weight: 700; letter-spacing: 2.5px; text-transform: uppercase; display: block; margin-bottom: 0.8rem; }
    .blog-hero h1 { font-family: var(--font-display); font-size: clamp(1.9rem,4vw,2.9rem); font-weight: 900; color: var(--white); margin-bottom: 1rem; line-height: 1.15; max-width: 750px; }
    .blog-hero .meta { color: rgba(255,255,255,0.82); font-size: 0.95rem; }
    .blog-body { max-width: 780px; margin: 0 auto; padding: 60px 5%; }
    .blog-body h2 { font-family: var(--font-display); font-size: 1.6rem; font-weight: 900; color: var(--navy); margin: 2.5rem 0 0.9rem; }
    .blog-body h3 { font-family: var(--font-display); font-size: 1.2rem; font-weight: 700; color: var(--navy); margin: 1.8rem 0 0.7rem; }
    .blog-body p { color: var(--gray); line-height: 1.85; margin-bottom: 1rem; font-size: 1.03rem; }
    .blog-body ul, .blog-body ol { color: var(--gray); line-height: 1.85; margin-bottom: 1rem; padding-left: 1.5rem; font-size: 1.03rem; }
    .blog-body ul li, .blog-body ol li { margin-bottom: 0.4rem; }
    .blog-tip { background: var(--cream); border-left: 4px solid var(--gold); padding: 1.2rem 1.5rem; border-radius: 0 8px 8px 0; margin: 1.5rem 0; }
    .blog-tip p { margin: 0; color: var(--navy); font-size: 1rem; }
    .blog-tip strong { color: var(--navy); }
    .blog-cta-inline { background: linear-gradient(135deg, var(--navy), var(--blue)); border-radius: 12px; padding: 2rem; text-align: center; margin: 2.5rem 0; color: white; }
    .blog-cta-inline h3 { font-family: var(--font-display); font-size: 1.4rem; margin-bottom: 0.5rem; color: var(--cyan); }
    .blog-cta-inline p { color: rgba(255,255,255,0.88); font-size: 1.05rem; margin-bottom: 1.2rem; }

    /* ── RESPONSIVE ── */
    @media (max-width: 920px) {
      .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
    }
    @media (max-width: 1100px) {
      .nav-links { display: none; }
      .hamburger { display: flex; }
      .rs-grid { grid-template-columns: repeat(3,1fr); }
      .footer-grid { grid-template-columns: 1fr; }
      .float-btn { font-size: 0.88rem; }
    }

    /* NAV DROPDOWN */
    .nav-dropdown { position:relative; }
    .nav-drop-trigger { display:flex; align-items:center; gap:0.3rem; cursor:pointer; }
    .nav-drop-menu { display:none; position:absolute; top:100%; left:0; background:white; border-radius:12px; box-shadow:0 12px 40px rgba(0,0,0,0.18); padding:0.5rem 0; min-width:230px; z-index:9999; border:1px solid rgba(0,0,0,0.08); margin-top:0; padding-top:8px; }
    .nav-drop-menu li { list-style:none; }
    .nav-drop-menu a { display:flex; align-items:center; gap:0.7rem; padding:0.6rem 1.1rem; color:var(--navy); font-size:0.95rem; font-weight:600; text-decoration:none; transition:background 0.15s; white-space:nowrap; }
    .nav-drop-menu a:hover { background:rgba(0,180,230,0.08); color:var(--sky); }
    .drop-icon { font-size:1.03rem; width:1.3rem; text-align:center; flex-shrink:0; }
    .nav-dropdown:hover .nav-drop-menu,
    .nav-dropdown:focus-within .nav-drop-menu,
    .nav-dropdown.open .nav-drop-menu { display:block; }

    @media (max-width: 480px) {
      body { font-size: 1.05rem; }
      p.bt, .faq-a, p { font-size: 1rem !important; line-height: 1.8 !important; }
      h2.sh2 { font-size: 1.45rem !important; }
      h3.sh3 { font-size: 1.05rem !important; }
      .page-hero h1 { font-size: 1.7rem !important; line-height: 1.15 !important; }
      .page-hero .hero-sub { font-size: 0.92rem !important; }
      .cta-band h2 { font-size: 1.4rem !important; }
      .rs-grid { grid-template-columns: repeat(2,1fr) !important; }
      .btn-gold, .btn-outline, .btn-dark { font-size: 0.92rem !important; padding: 0.75rem 1.2rem !important; }
      .float-btn { font-size: 0.82rem !important; }
      section, .section-pad { padding: 40px 4% !important; }
      .faq-q { font-size: 0.95rem !important; }
      .hero-label, .slabel { font-size: 0.68rem !important; }
    }

    @media (max-width: 768px) {
      .content-wrap { padding: 40px 4% !important; }
      p.bt, p { font-size: 0.95rem !important; line-height: 1.7 !important; }
      h2.sh2 { font-size: 1.4rem !important; }
      h3.sh3 { font-size: 1.05rem !important; }
      .page-hero { padding: 130px 5% 45px !important; }
      .page-hero h1 { font-size: 1.75rem !important; }
      ul.flist li { font-size: 0.9rem !important; }
    }

    @media (min-width: 900px) {
      .two-col { display: grid !important; grid-template-columns: 1.1fr 1fr !important; gap: 4rem !important; }
      .sticky-panel { position: sticky !important; top: 84px !important; }
    }

    @media(max-width:600px){
      .city-photos > div > div[style*="grid-template-columns:repeat(3"] {
        grid-template-columns: 1fr !important;
      }
    }
  
    /* ── PROMO BANNER ── */
    .promo-banner {
      background: linear-gradient(135deg, #0d1b3e 0%, #1a3a8f 60%, #00b4e6 140%);
      color: #ffffff;
      text-align: center;
      padding: 0.85rem 5%;
      font-size: 1.05rem;
      font-weight: 600;
      position: relative;
      z-index: 201;
      letter-spacing: 0.01em;
      box-shadow: 0 2px 10px rgba(0,0,0,0.18);
      border-bottom: 1px solid rgba(41,217,245,0.35);
    }
    .promo-banner strong { color: #29d9f5; font-size: 1.1rem; font-weight: 800; }
    .promo-banner em { color: rgba(255,255,255,0.78); font-style: normal; }
    .promo-banner a {
      background: #00b4e6;
      color: #0d1b3e;
      padding: 0.45rem 1.2rem;
      border-radius: 50px;
      font-weight: 800;
      text-decoration: none;
      margin-left: 1rem;
      font-size: 0.98rem;
      white-space: nowrap;
      display: inline-block;
      transition: background 0.18s, transform 0.18s, box-shadow 0.18s;
      box-shadow: 0 2px 10px rgba(0,180,230,0.45);
    }
    .promo-banner a:hover { background: #29d9f5; transform: translateY(-1px); box-shadow: 0 4px 14px rgba(41,217,245,0.55); }
    .promo-close {
      position: absolute;
      right: 0.9rem;
      top: 50%;
      transform: translateY(-50%);
      background: rgba(255,255,255,0.08);
      border: none;
      color: rgba(255,255,255,0.78);
      font-size: 1.1rem;
      cursor: pointer;
      line-height: 1;
      width: 28px; height: 28px;
      border-radius: 50%;
      transition: background 0.15s, color 0.15s;
    }
    .promo-close:hover { background: rgba(255,255,255,0.18); color: #fff; }
    @media(max-width:600px){
      .promo-banner { font-size: 0.92rem; padding: 0.75rem 2.5rem 0.75rem 1rem; }
      .promo-banner strong { font-size: 0.96rem; }
      .promo-banner a { display: block; margin: 0.55rem auto 0; width: fit-content; font-size: 0.9rem; }
    }
