.cta-info-row {
    display: flex;
    gap: 28px;
    align-items: center;
    margin-left: 12px;
    margin-top: 8px;
}
.cta-info {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: 1.08rem;
    color: #fff;
    font-weight: 600;
    background: rgba(13,66,134,0.12);
    border-radius: 24px;
    padding: 8px 18px;
    box-shadow: 0 2px 8px rgba(13,66,134,0.07);
    transition: background .2s;
}
.cta-info i {
    color: #fff !important;
    font-size: 1.25rem !important;
    vertical-align: middle;
}
.cta-info .cta-phone-link {
    color: #fff;
    background: #0D4286;
    border-radius: 16px;
    padding: 2px 10px;
    margin-left: 6px;
    font-weight: 500;
    text-decoration: none;
    transition: background .2s, color .2s;
}
.cta-info .cta-phone-link:hover {
    background: #010a1b;
    color: #fff;
}
.cta-info-row .cta-info i {
    color: #fff !important;
    font-size: 1.25rem !important;
    vertical-align: middle;
}

/* CTA Info Row Styles */
.cta-info-row {
    display: flex;
    gap: 28px;
    align-items: center;
    margin-left: 12px;
}
.cta-info {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: 1.08rem;
    color: #eef0f1;
    font-weight: 500;
}
.cta-info i {
    color: #0D4286;
    font-size: 1.15rem;
    vertical-align: middle;
}
/* Reset and Base Styles */
/* Responsive Layouts */
@media (max-width: 1200px) {
    .container {
        max-width: 1000px;
        padding: 0 16px;
    }
    .about-container {
        gap: 24px;
    }
}

@media (max-width: 992px) {
    .container {
        max-width: 800px;
        padding: 0 12px;
    }
    .about-section {
        flex-direction: column;
        padding: 40px 0;
    }
    .about-container {
        flex-direction: column;
        gap: 18px;
    }
    .about-visual {
        margin-bottom: 18px;
    }
}

@media (max-width: 768px) {
    .container {
        max-width: 100%;
        padding: 0 8px;
    }
    .about-section {
        padding: 28px 0;
    }
    .section-title {
        font-size: 1.5rem;
    }
    .about-content {
        max-width: 100%;
        padding: 0;
    }
    .compact-image {
        max-height: 220px;
    }
    .aw-fields, .main-contact-form {
        padding: 0 4px;
    }
    .aw-actions {
        flex-direction: column;
        gap: 8px;
    }
    #orderFormMsg.form-message {
        font-size: 1em;
        min-height: 18px;
        margin-top: 4px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 2px;
    }
    .section-title {
        font-size: 1.1rem;
    }
    .aw-btn, .btn.primary-btn {
        font-size: 1em;
        padding: 10px 0;
        width: 100%;
    }
    .aw-fields, .main-contact-form {
        padding: 0 2px;
    }
    #orderFormMsg.form-message {
        font-size: 0.95em;
        min-height: 16px;
        margin-top: 2px;
    }
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
     --primary-color:#0D4286;
--primary-dark:#082a57; /* added to avoid undefined var */
--secondary-color:#2c3e50;
--accent-color:#e74c3c;
--light-color:#f8f9fa;
--dark-color:#343a40;
--text-color:#333;
--text-light:#777;
--white:#fff;
--gray:#e9ecef;
--transition:all .3s ease;
--badge-bg:rgb(89,238,89);
--badge-text:#000;
--stat-icon-bg:rgba(255,255,255,.2);
--stat-text-color:#fff;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

section {
    padding: 80px 0;
}

h1, h2, h3, h4, h5, h6 {
    font-weight:600;
    line-height: 1.2;
    margin-bottom: 15px;
}

p {
    margin-bottom: 15px;
}

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: var(--transition);
}

ul {
    list-style: none;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 4px;
    font-weight: 500;
    text-transform: capitalize;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    font-size: 16px;
    -webkit-tap-highlight-color: transparent;
}

.btn:active, .primary-btn:active, .secondary-btn:active, .book-now-btn:active {
    transform: scale(0.98);
}

.primary-btn {
    background-color: var(--primary-color);
    color: var(--white);
}

.primary-btn:hover {
    background-color: #3a7bc8;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(74, 144, 226, 0.3);
}

.secondary-btn {
    background-color: transparent;
    border-radius: 30px;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    margin-left: 15px;
}

.secondary-btn:hover {
    background-color: var(--primary-color);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(74, 144, 226, 0.3);
}

.section-title {
    font-size: 36px;
    text-align: center;
    margin-bottom: 15px;
    position: relative;
    color: var(--white);
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--primary-color);
}

.section-subtitle {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 50px;
    font-size: 18px;
}

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 15px 0;
    z-index: 1000;
    background-color: rgba(255, 255, 255, 0.98);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.header.scrolled {
    padding: 12px 0;
    background-color: rgba(255, 255, 255, 0.98);
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-phone-wrap {
    display: flex;
    align-items: center;
    gap: 20px;
}

.logo a {
    font-size: 26px;
    font-weight: 700;
    color: var(--secondary-color);
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo img {
    height: 45px;
    width: auto;
    transition: all 0.3s ease;
}

.navbar .nav-links {
    display: flex;
    align-items: center;
    gap: 20px;
}

.navbar .nav-links li {
    position: relative;
}

.navbar .nav-links a {
    color: var(--secondary-color);
    font-weight: 900;
    font-size: 16px;
    padding: 8px 0;
    transition: all 0.3s ease;
}

/* Phone number styles */
.header-phone-mobile a {
    display: flex;
    align-items: center;
    gap: 5px;
    color: var(--secondary-color);
    font-weight: 500;
    font-size: 14px;
}

.desktop-phone a {
    display: flex;
    align-items: center;
    gap: 5px;
    color: var(--secondary-color);
    font-weight: 500;
}

.book-now-btn {
    padding: 8px 30px;
    border-radius: 5px;
    background-color: var(--primary-color);
    color: white;
    font-weight: 500;
    transition: all 0.3s ease;
}

.book-now-btn:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
}

/* Mobile styles */
@media (max-width: 768px) {
    .navbar .nav-links {
        flex-direction: column;
        align-items: center;
        padding: 20px 0;
    }
    
    .header-phone, .book-now-btn {
        margin-top: 15px;
    }
    
    /* Hide desktop phone in mobile menu */
    .desktop-phone {
        display: none;
    }
    
    /* Show mobile phone in header */
    .header-phone-mobile {
        display: block;
    }
}

.navbar .nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: all 0.3s ease;
    border-radius: 2px;
}

.navbar .nav-links a:hover {
    color: var(--primary-color);
}

.navbar .nav-links a:hover::after {
    width: 100%;
}

.navbar-actions {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-left: 30px;
}

.mobile-menu-btn {
    display: none; /* Hide by default on desktop */
    font-size: 24px;
    cursor: pointer;
    color: var(--secondary-color);
    padding: 10px;
    border-radius: 5px;
    transition: all 0.3s ease;
    background-color: var(--light-color);
    width: 40px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.mobile-menu-btn:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

@media (max-width: 768px) {
    .header {
        padding: 12px 0;
        background-color: var(--white);
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    }

    .logo a {
        font-size: 22px;
    }

    .logo img {
        height: 35px;
    }

    .navbar {
        position: relative;
    }

    .navbar .nav-links {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background-color: var(--white);
        flex-direction: column;
        align-items: center;
        padding: 40px 0;
        transition: all 0.4s ease;
        box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
        z-index: 1000;
    }

    .navbar .nav-links.active {
        left: 0;
    }

    .navbar .nav-links li {
        margin: 8px 0;
        width: 100%;
        text-align: center;
        opacity: 0;
        transform: translateY(20px);
        transition: all 0.3s ease;
    }

    .navbar .nav-links.active li {
        opacity: 1;
        transform: translateY(0);
    }

    .navbar .nav-links li:nth-child(1) { transition-delay: 0.1s; }
    .navbar .nav-links li:nth-child(2) { transition-delay: 0.2s; }
    .navbar .nav-links li:nth-child(3) { transition-delay: 0.3s; }
    .navbar .nav-links li:nth-child(4) { transition-delay: 0.4s; }
    .navbar .nav-links li:nth-child(5) { transition-delay: 0.5s; }

    .navbar .nav-links a {
        font-size: 18px;
        display: block;
        width: 100%;
        color: var(--secondary-color);
        font-weight: 500;
        transition: all 0.3s ease;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    }

    .navbar .nav-links a:hover {
        background-color: var(--light-color);
        color: var(--primary-color);
        padding-left: 30px;
    }

    .navbar .nav-links a::after {
        display: none;
    }

    .mobile-menu-btn {
        display: flex;
        margin-left: 15px;
    }

    /* Add overlay when menu is open */
    .navbar .nav-links::before {
        content: '';
        position: fixed;
        top: 70px;
        left: 0;
        width: 100%;
        height: 100vh;
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        z-index: -1;
    }

    .navbar .nav-links.active::before {
        opacity: 1;
        visibility: visible;
    }

    .navbar-actions {
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
        margin: 20px 0 0 0;
        gap: 10px;
    }
}

/* Desktop styles */
@media (min-width: 769px) {
    .mobile-menu-btn {
        display: none;
    }

    .navbar .nav-links {
        display: flex;
    }
    
    /* Hide mobile phone on desktop */
    .header-phone-mobile {
        display: none;
    }
    
    /* Show desktop phone in nav */
    .desktop-phone {
        display: block;
    }
}

@media (max-width: 480px) {
    .header {
        padding: 10px 0;
    }

    .logo a {
        font-size: 20px;
    }

    .logo img {
        height: 30px;
    }
    
    .header-phone-mobile a {
        font-size: 12px;
    }
}

/* ===========================
   Affordable Writing - HERO
   Complete, paste-ready CSS
   =========================== */

/* ---- Variables & Base ---- */
:root{
  --bg1:#163777; --bg2:#0f3f9f; --bg3:#113c90; --bg4:#0e2f77;
  --white:#fff; --text:#0e1b3d;
  --muted:#dbe8ff; --gold:#ffb300;
  --chip:rgba(41,71,135,.35); --chip-b:rgba(72,116,186,.45);
  --soft:#e5e9f2; --soft-blue:rgba(20,80,200,.12);
  --green:#28b76b; --green-deep:#0a6a2a;

  /* Sticky header height on mobile – adjust if needed */
  --hdrH: 84px;
}
*{box-sizing:border-box}
html,body{height:100%}
html{scroll-padding-top:var(--hdrH);}
body{
  margin:0;
  font-family:Inter,system-ui,-apple-system,"Segoe UI",Roboto,Arial,sans-serif;
  color:#eaf2ff;
  -webkit-font-smoothing:antialiased;
  -moz-osx-font-smoothing:grayscale;
}

/* ---- Hero ---- */
.aw-hero{
  min-height:100vh;
  margin-top: 20px;
  padding:82px 0 84px;
  isolation:isolate;
  position:relative;
  background:
    radial-gradient(1200px 640px at 10% 14%, rgba(255,255,255,.06), transparent 60%),
    radial-gradient(900px 520px at 90% 10%, rgba(187,222,251,.18), transparent 55%),
    linear-gradient(135deg, var(--bg1) 0%, var(--bg2) 45%, var(--bg3) 70%, var(--bg4) 100%);
}
.aw-wrap{
  max-width:1240px;
  margin:0 auto;
  padding:0 28px;
  display:grid;
  grid-template-columns:minmax(560px,1fr) 520px;
  gap:40px;
  align-items:start;
}

/* ---- Left column ---- */
.aw-left h1{
  margin:0 0 10px;
  font-weight:800;
  font-size:clamp(34px,4vw,38px);
  line-height:1.1;
  letter-spacing:.2px;
  text-shadow:0 1px 0 rgba(0,0,0,.25);
  color:#eaf2ff;
}
.aw-sub{
  color:#eaf2ff;
  margin:0 0 20px;
  max-width:62ch;
  line-height:1.65;
  font-size:clamp(15px,1.2vw,18px);
}
.aw-grid{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:18px 26px;
  margin:12px 0 16px;
  max-width:720px;
}
.aw-feat{display:flex; align-items:center; gap:12px}
.aw-ico{
  width:40px;height:40px;border-radius:50%;
  display:grid;place-items:center;
  background:rgba(255,255,255,.10);
  border:1px solid rgba(255,255,255,.18);
}
.aw-ico i{width:20px;height:20px;color:#eaf2ff}
.aw-feat b{color:#fff; font-size:16px}

.aw-ratings{display:flex;flex-wrap:wrap;gap:16px;margin:18px 0 12px}
.aw-chip{
  display:flex;align-items:center;gap:12px;
  padding:12px 16px;border-radius:12px;
  background:var(--chip);border:1px solid var(--chip-b);
  box-shadow:inset 0 0 0 1px rgb(255, 255, 255);
}
.aw-chip .aw-brand{ font-weight:800; color:#f0f2f5; letter-spacing:.2px }
.aw-val{font-weight:900;color:#222;display:inline-block}
.aw-stars svg{width:20px;height:20px;fill:var(--gold)}

.aw-trust{
  display:flex;align-items:center;gap:10px;
  margin:10px 0 12px;font-size:15px;color:#eaf2ff
}
.aw-tick{
  width:18px;height:18px;border-radius:50%;
  display:grid;place-items:center;
  background:rgba(47,229,137,.18);
  border:1px solid rgba(47,229,137,.55)
}
.aw-tick svg{width:12px;height:12px;fill:#2fe589}

/* ---- Right column (Form Card) ---- */
.aw-right{position:relative; z-index:1;}
.aw-card{
  background:var(--white); color:var(--text);
  border-radius:16px; border:1px solid rgba(8,20,70,.08);
  box-shadow:0 22px 55px rgba(8,22,54,.55);
  overflow:visible; position:relative;
  padding:70px 26px 20px; /* space for ribbon only (price bar removed) */
}
/* Price bar */
.aw-price{
  position:absolute; left:16px; right:16px; top:2px; height:40px;
  display:flex; align-items:center; justify-content:center; gap:6px;
  border-radius:12px; border:2px solid var(--soft-blue);
  border-color:#133D90;
  background:#f5f9ff; color:#173a8b;
  font-weight:900; letter-spacing:.02em;
  box-shadow:0 18px 28px #11409faf;
}
.aw-price b{color:#19a95c}

/* Ribbon */
.aw-ribbon{
  position:absolute; top:22px; left:50%; transform:translateX(-50%);
  height:46px; width:380px; display:flex; align-items:stretch; z-index:3;
  filter: drop-shadow(0 8px 14px rgba(16,63,159,.18));
}
.aw-rib-left{
  background:linear-gradient(180deg,#6a6dff,#5256ff);
  color:#fff; padding:0 18px; display:flex; align-items:center; font-weight:900;
  border-radius:10px 0 0 10px; box-shadow:0 10px 20px rgba(20,20,120,.25); position:relative;
}
.aw-rib-left .aw-pct{font-size:16px; font-weight:900; margin-right:6px}
.aw-rib-left .aw-txt{letter-spacing:.4px}
.aw-rib-left:after{
  content:""; position:absolute; right:-16px; top:0;
  border-top:22px solid transparent; border-bottom:22px solid transparent; border-left:16px solid #5256ff;
}
.aw-rib-right{
  background:#2ac05a; color:#073b17; padding:4px 14px; border-radius:0 10px 10px 0;
  display:flex; flex-direction:column; justify-content:center; text-align:center; font-weight:900; line-height:1.05; min-width:186px
}
.aw-rib-right small{font-weight:800; display:block}

/* Fields */
.aw-fields{margin-top:10px}
.aw-group{margin-bottom:12px}
.aw-label{display:block;font-weight:800;font-size:13px;color:#384766;margin:4px 0}
.aw-in{
  display:flex;align-items:center;gap:10px;
  border:1px solid var(--soft);background:#f7f9ff;
  border-radius:12px;padding:14px 16px
}
.aw-in:focus-within{box-shadow:inset 0 0 0 1.5px #3aa0ff;background:#fff}
.aw-in svg{width:20px;height:20px;fill:#7a88b8}
.aw-in .flag{width:20px;height:14px;border-radius:3px;box-shadow:0 0 0 1px rgba(0,0,0,.06);flex:0 0 auto}
.aw-in input,.aw-in select{
  border:0;outline:0;background:transparent;width:100%;
  font:600 15px Inter,system-ui;color:#0e1b3d; min-height:22px
}
.aw-in input::placeholder{ color:#9aa6c7 }
/* Country code select inside phone field */
/* remove old manual country code select styles (replaced by intl-tel-input) */

/* intl-tel-input inside our input row */
.iti{ width:100%; }
.iti--allow-dropdown input{ padding-left:88px !important; }
.iti__selected-flag{ border-radius:8px; background:#eef4ff; box-shadow:0 0 0 1px #d7e2ff inset; }
.iti__country-list{ z-index:10000; }

/* Ensure hero inputs never draw inner borders from global form styles */
.aw-fields .aw-in input[type="text"],
.aw-fields .aw-in input[type="email"],
.aw-fields .aw-in input[type="tel"],
.aw-fields .aw-in select{
  border:0 !important;
  background:transparent !important;
  box-shadow:none !important;
  padding:0 !important;
}
.aw-actions{margin-top:10px; margin-bottom:0; padding-bottom:0; position:relative;}
.aw-btn{
  width:100%; padding:16px 18px; border:none; border-radius:12px; cursor:pointer;
  font-weight:900; letter-spacing:.02em; color:#032d17;
  background:linear-gradient(180deg,#1fc074,var(--green));
  box-shadow:0 16px 28px rgba(22,163,74,.35)
}
.aw-btn:active{transform:translateY(1px)}
.aw-lowest{
  display:flex; align-items:center; gap:8px; justify-content:center;
  margin-top:8px; color:#5c6aa6; font-weight:800; font-size:14px
}
.aw-shield{
  width:20px;height:20px;border-radius:4px;background:#e8f2ff;
  color:#2f66ff;display:inline-flex;align-items:center;justify-content:center;font-size:14px;
  box-shadow:0 2px 6px rgba(47,102,255,.15); flex-shrink:0
}

/* ---- Desktop → Tablet breakpoints ---- */
@media (max-width:1180px){
  .aw-wrap{grid-template-columns:1fr 520px}
}
@media (max-width:1024px){
  .aw-wrap{grid-template-columns:1fr}
  .aw-right{max-width:min(560px,100%); margin-inline:auto}
}

/* ---- Mobile layout: explicit rows (no overlap) ---- */
@media (max-width:720px){

  /* keep H1 clear of sticky header */
  .aw-hero{ padding-top: calc(10px + var(--hdrH)); padding-bottom:68px; }

  /* Build explicit rows:
     title → form → sub → features → ratings → trust */
     .aw-left h1{
    grid-area: title;       /* keep it in the title row */
    text-align: center;     /* center text */
    margin: 0 auto 6px;     /* center block + small bottom gap */
    max-width: 22ch;        /* optional: nicer line length on phones */
  }
  .aw-wrap{
    display:grid;
    grid-template-columns:1fr;
    grid-template-areas:
      "title"
      "form"
      "sub"
      "features"
      "ratings"
      "trust";
    gap:20px;
  }

  /* Make left's children addressable on the grid */
  .aw-left{ display:contents; }

  .aw-left h1{ grid-area:title; margin:0; font-size:clamp(26px,7vw,34px); }
  .aw-right{ grid-area:form; }

  .aw-left .aw-sub{ grid-area:sub; }
  .aw-left .aw-grid{ grid-area:features; }
  .aw-left .aw-ratings{ grid-area:ratings; }
  .aw-left .aw-trust{ grid-area:trust; }

  /* Card & ribbon tighter on phones */
  .aw-card{ padding:66px 16px 16px; }
  .aw-price{ left:12px; right:12px; }
  .aw-ribbon{
    width: clamp(240px, 72vw, 320px);
    top:44px; left:50%; transform:translateX(-50%);
  }
  .aw-rib-left{ padding:0 12px; font-size:12px; }
  .aw-rib-left:after{ right:-12px; border-left-width:12px; }
  .aw-rib-right{ min-width:150px; padding:4px 10px; font-size:12px; }
  .aw-rib-right small{ font-size:11px; }

  /* ===== MOBILE SPECIFIC LAYOUT REQUESTS ===== */

  /* (1) Features: 2 per row on phones */
  .aw-grid{
    grid-template-columns: repeat(2, minmax(0,1fr));
    gap: 12px 16px;
  }
  .aw-feat{
    padding:10px 8px;
    border-radius:12px;
    background:rgba(255,255,255,.06);
    border:1px solid rgba(255,255,255,.12);
  }
  .aw-ico{ width:34px; height:34px; }
  .aw-ico i{ width:18px; height:18px; }
  .aw-feat b{ font-size:15px; line-height:1.25; }

  /* (2) Ratings: two chips side-by-side on phones */
  .aw-ratings{
    display:grid;
    grid-template-columns: repeat(2, minmax(0,1fr));
    gap:12px 16px;
    margin:16px 0 8px;
  }
  .aw-ratings > a,
  .aw-ratings > div{ width:100%; }
  .aw-ratings > a .aw-chip,
  .aw-ratings > div.aw-chip{
    width:100%;
    justify-content:space-between;
  }
}

/* ---- Ultra-small phones: fall back to 1 per row ---- */
/* ===== Mobile: stack rating chips (1 per row) ===== */
@media (max-width: 720px){
  .aw-ratings{
    display: grid;
    grid-template-columns: 1fr;   /* <- one column on phones */
    gap: 12px;
  }
}



/* =========================
   Services Section
   ========================= */
.services {
  background-color: var(--white); /* keep section clean white */
  padding: 80px 20px;
}

.services .section-title {
  text-align: center;
  font-size: 32px;
  font-weight: 800;
  color: #0f1e3a; /* dark heading */
  margin-bottom: 10px;
}

.services .section-subtitle {
  text-align: center;
  font-size: 16px;
  color: #4b5563;
  max-width: 720px;
  margin: 0 auto 40px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 30px;
}

/* === Service Card === */
.service-card {
background: linear-gradient(145deg, var(--bg1) 0%, var(--bg2) 45%, var(--bg3) 70%, var(--bg4) 100%);
  padding: 30px;
  border-radius: 12px;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 6px 16px rgba(0,0,0,0.25);
  border: 1px solid rgba(187, 222, 251, 0.25);
  color: #fff;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(21, 101, 192, 0.45);
}

/* === Icon === */
.service-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #1976d2, #1565c0);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 30px;
  transition: all 0.4s ease;
  box-shadow: 0 6px 16px rgba(21, 101, 192, 0.35);
}

.service-card:hover .service-icon {
  background: linear-gradient(135deg, #00bfa5, #00897b); /* teal accent */
  transform: rotate(360deg);
}

/* === Headings & Text === */
.service-card h3 {
  font-size: 20px;
  margin-bottom: 15px;
  color: #eaf4ff !important; /* light heading like hero titles */
  font-weight: 700;
}

.service-card p {
  color: rgba(255, 255, 255, 0.85)!important; /* light text for contrast */
  font-size: 14px;
  line-height: 1.6;
}

/* === Responsive === */
@media (max-width: 768px) {
  .services {
    padding: 60px 15px;
  }
  .services .section-title {
    font-size: 26px;
  }
  .services .section-subtitle {
    font-size: 14px;
  }
  .service-card {
    padding: 24px;
  }
  .service-icon {
    width: 70px;
    height: 70px;
    font-size: 26px;
  }
}


/* Ad Section */
.ad-section {
    padding: 30px 0;
    background-color: var(--gray);
}

.ad-container {
    background-color: var(--white);
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.ad-placeholder {
    padding: 30px;
    background-color: #f1f1f1;
    border-radius: 4px;
    color: #999;
}

/* Services Section */
.services {
    background-color: var(--white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.service-card {
    background-color: var(--light-color);
    padding: 30px;
    border-radius: 8px;
    text-align: center;
    transition: var(--transition);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px #071E2F;
}

.service-icon {
    width: 80px;
    height: 80px;
    background-color: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 30px;
    transition: var(--transition);
}

.service-card:hover .service-icon {
    background-color: var(--secondary-color);
    transform: rotate(360deg);
}

.service-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.service-card p {
    color: var(--text-light);
    font-size: 14px;
}
/* Optimized About Section Styling */


.about-section {
    padding: 60px 0;
    background: linear-gradient(135deg, #f5f7fa 0%, #e4f0fe 100%);
    display: flex;
    align-items: center;
    min-height: auto;
    box-sizing: border-box;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.about-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    height: 100%;
}

.about-content {
    flex: 1;
    max-width: 550px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about-visual {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.compact-image {
    max-height: 480px;
    width: 100%;
    object-fit: contain;
}

.section-header {
    margin-bottom: 25px;
}

.section-subtitle {
    display: block;
    font-size: 16px;
    font-weight: 700;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 12px;
}

.section-title {
    font-size: 2.2rem;
    font-weight: 800;
    color: #2b2d42;
    line-height: 1.2;
    margin-bottom: 16px;
}

.section-title .highlight {
    color: var(--primary-color);
    position: relative;
    display: inline-block;
}

.section-title .highlight::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 8px;
    background: rgba(67, 97, 238, 0.2);
    z-index: -1;
    border-radius: 4px;
}

.section-description {
    font-size: 1rem;
    line-height: 1.6;
    color: #6c757d;
    margin-bottom: 20px;
}

.section-description br {
    display: none;
}

.features-compact {
    margin: 20px 0;
}

.feature-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 12px;
    gap: 10px;
}

.feature-item {
    display: flex;
    align-items: center;
    font-size: 0.95rem;
    font-weight: 600;
    color: #2b2d42;
    background: rgba(255, 255, 255, 0.7);
    padding: 10px 12px;
    border-radius: 8px;
    flex: 1;
    min-width: 0;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    justify-content: center; /* Added this line */
    text-align: center; /* Added this line */
}

.feature-item i {
    color: var(--primary-color);
    margin-right: 8px;
    font-size: 1rem;
    min-width: 20px;
    text-align: center;
}

.cta-compact {
    display: flex;
    gap: 12px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.primary-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-color);
    color: white;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(67, 97, 238, 0.2);
    border: none;
    font-size: 1rem;
    flex: 1;
    min-width: 200px;
}

.primary-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(67, 97, 238, 0.3);
    background: var(--secondary-color);
}

.phone-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: white;
    color: var(--primary-color);
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 700;
    text-decoration: none;
    border: 2px solid var(--primary-color);
    transition: all 0.3s ease;
    font-size: 1rem;
    flex: 1;
    min-width: 200px;
}

.phone-cta:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-3px);
}

/* Responsive Adjustments */
@media (max-width: 1200px) {
    .about-container {
        gap: 30px;
    }
    .section-title {
        font-size: 2rem;
    }
}

@media (max-width: 992px) {
    .about-container {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }
    .about-content, .about-visual {
        max-width: 100%;
    }
    .feature-row {
        justify-content: center;
        flex-wrap: wrap;
    }
    .feature-item {
        flex: none;
        width: calc(33.333% - 10px);
    }
    .cta-compact {
        justify-content: center;
    }
    .compact-image {
        max-height: 350px;
    }
}

@media (max-width: 768px) {
    .about-section {
        padding: 40px 0;
    }
    .section-title {
        font-size: 1.8rem;
    }
    .section-subtitle {
        font-size: 15px;
    }
    .feature-item {
        flex-direction: column; /* Stack icon and text vertically */
        align-items: center;
        justify-content: center;
        padding: 8px 5px; /* Adjusted padding */
        text-align: center;
    }
    
    .feature-item i {
        margin-right: 0;
        margin-bottom: 5px; /* Space between icon and text */
    }
    
    .feature-row {
        justify-content: center;
    }
    .cta-compact {
        flex-direction: column;
        gap: 10px;
    }
    .primary-cta, .phone-cta {
        width: 100%;
    }
    .compact-image {
        max-height: 280px;
    }
}

@media (max-width: 576px) {
    .about-section {
        padding: 30px 0;
    }
    .section-title {
        font-size: 1.5rem;
    }
    .section-description {
        font-size: 0.95rem;
    }
    .feature-item {
        width: 100%;
    }
    .compact-image {
        max-height: 220px;
    }
    .section-title .highlight::after {
        height: 6px;
        bottom: 3px;
    }
}

@media (max-width: 400px) {
    .section-title {
        font-size: 1.3rem;
    }
    .section-subtitle {
        font-size: 14px;
    }
    .primary-cta, .phone-cta {
        padding: 10px 15px;
        font-size: 0.9rem;
    }
}

:root{
    --awt-blue-1:#0f1e3a; --awt-blue-2:#102a66; --awt-blue-3:#0f3f9f; --awt-blue-4:#1847c7;
    --awt-white:#fff; --awt-text:#0e1b3d; --awt-gold:#ffb300; --awt-border:rgba(8,20,70,.10);
    --awt-gap:16px;               /* gaps between cards */
    --awt-card-w:260px;           /* base card width (JS will autosize) */
    --awt-card-pad:16px;          /* base padding */
    --awt-radius:16px;
    --awt-ribbon-h:28px;          /* verified pill height */
  }

  body{margin:0; font-family:Inter,system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif; background:#f7f9fc; color:#0f1e3a}

  /* ===== Section ===== */
  .aw-testimonials{padding:56px 0;background:#fff;position:relative;isolation:isolate}
  .aw-testimonials .awt-wrap{max-width:1100px;margin:0 auto;padding:0 20px}
  .awt-header{text-align:center;margin-bottom:22px}
  .awt-title{font:900 clamp(22px,3vw,32px)/1.1 Inter,system-ui;color:#0f1e3a;margin:0 0 6px}
  .awt-sub{color:#374b74;opacity:.9;max-width:680px;margin:0 auto}

  /* ===== Carousel shell ===== */
  .awt-carousel{position:relative}
  .awt-viewport{overflow:hidden; outline:none}
  .awt-track{
    display:flex; align-items:stretch; gap:var(--awt-gap);
    will-change:transform; transition:transform .55s cubic-bezier(.2,.8,.2,1);
    touch-action:pan-y;
  }

  /* ===== Card ===== */
  .awt-card{
    flex:0 0 auto; width:var(--awt-card-w);
    color:#eef6ff; border-radius:var(--awt-radius);
    padding: calc(var(--awt-card-pad) + var(--awt-ribbon-h) + 6px) var(--awt-card-pad) var(--awt-card-pad);
    position:relative; isolation:isolate;
    background:
      radial-gradient(120% 140% at 0% 0%, rgba(255,255,255,.08), rgba(255,255,255,0) 40%),
      linear-gradient(135deg,var(--awt-blue-1) 0%,var(--awt-blue-2) 45%,var(--awt-blue-3) 70%,var(--awt-blue-4) 100%);
    border:1px solid rgba(187,222,251,.22);
    box-shadow: 0 6px 16px rgba(3,14,35,.16), inset 0 1px 0 rgba(255,255,255,.14);
    backdrop-filter: blur(4px);
    transform:translateZ(0);
  }
  .awt-card::after{
    content:""; position:absolute; inset:0; border-radius:inherit; pointer-events:none;
    background:linear-gradient(180deg, rgba(255,255,255,.18), rgba(255,255,255,0) 40%);
    mix-blend-mode:screen; opacity:.65;
  }
  .awt-card:hover{ box-shadow:0 10px 26px rgba(21,101,192,.38); transform:translateY(-2px); transition:.25s ease; }

  /* Verified ribbon with gold star */
  .awt-ribbon{
    position:absolute; top:10px; right:10px; z-index:2;
    height:var(--awt-ribbon-h);
    display:inline-flex; align-items:center; gap:6px;
    padding:0 10px; border-radius:999px;
    font-size:.72rem; font-weight:700; letter-spacing:.2px;
    color:#0e2f77; background:#fff; border:1px solid rgba(14,47,119,.12);
    box-shadow:0 4px 10px rgba(0,0,0,.10);
  }
  .awt-ribbon-star{ width:14px; height:14px; fill:var(--awt-gold); }

  /* Quote ghost bottom-left */
  .awt-quote{ position:absolute; bottom:-6px; left:-6px; opacity:.16 }
  .awt-quote svg{ width:56px; height:56px; fill:#eaf4ff }

  /* Text + client */
  .awt-text{
    font-size:.98rem; line-height:1.55; color:#f2f8ff; margin:4px 0 12px; font-style:italic;

    /* 3-line clamp */
    display:-webkit-box;
    -webkit-line-clamp:3;
    line-clamp:3;
    -webkit-box-orient:vertical;
    overflow:hidden;
    text-overflow:ellipsis;
    max-height: calc(1.55em * 3);
  }
  .awt-client{display:flex;align-items:center;gap:12px}
  .awt-avatar{
    width:44px;height:44px;border-radius:50%;display:grid;place-items:center;
    background:rgba(255,255,255,.16);flex:0 0 44px;border:1px solid rgba(255,255,255,.25)
  }
  .awt-avatar svg{width:24px;height:24px;fill:#eaf4ff}
  .awt-name{font-weight:800;margin:0 0 1px; line-height:1}
  .awt-prog{font-size:.82rem;color:#d9ecff;margin:0 0 4px}
  .awt-stars{color:var(--awt-gold);letter-spacing:2px;font-size:.88rem}

  /* Arrows */
  .awt-nav{
    position:absolute; top:50%; transform:translateY(-50%); z-index:2;
    width:40px;height:40px;border-radius:50%;border:0;cursor:pointer;
    background:linear-gradient(180deg,#ffffff,#f3f7ff); color:#1847c7;
    display:grid;place-items:center; box-shadow:0 8px 18px rgba(0,0,0,.16); transition:.2s ease; user-select:none;
  }
  .awt-nav:hover{background:#1847c7;color:#fff;transform:translateY(-50%) translateY(-1px)}
  .awt-prev{left:-30px} .awt-next{right:-20px}
  .awt-nav svg{width:20px;height:20px;fill:currentColor}

  /* Dots */
  .awt-dots{display:flex;gap:8px;justify-content:center;margin-top:14px}
  .awt-dot{
    width:8px;height:8px;border-radius:50%;background:#cbd5e1;cursor:pointer;transition:transform .2s ease, background .2s ease;
    outline: none;border:0;
  }
  .awt-dot.is-active{background:#1e88e5; transform:scale(1.25); box-shadow:0 0 0 4px rgba(30,136,229,.15)}

  /* Active slide bump */
  .awt-card.is-active{
    transform:translateY(-4px);
    box-shadow:0 14px 30px rgba(24,71,199,.40);
  }

  /* Responsiveness */
  @media (max-width: 1024px){ .awt-prev{left:-4px} .awt-next{right:-4px} }
  @media (max-width: 780px){
    .aw-testimonials{padding:44px 0}
    .awt-title{font-size:26px}
    .awt-card{--awt-card-w: 78vw}
    .awt-nav{width:38px;height:38px}
    .awt-text{ font-size:1rem; }
  }
  @media (max-width: 420px){
    .awt-card{--awt-card-w:86vw}
  }

  /* Reduced motion */
  @media (prefers-reduced-motion: reduce){
    .awt-track, .awt-card, .awt-dot{transition:none}
  }

/* contact form css*/
/* CSS for Exclusive Desktop Buttons and Mobile Dropdown */
.contact {
    background-color: var(--light-color);
    padding: 30px 5px;
}


.contact-container {
    display: flex;
    flex-wrap: wrap;
    background-color: var(--white);
    border-radius: 12px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.contact-info-column {
    flex: 1;
    background: linear-gradient(145deg, var(--bg1) 0%, var(--bg2) 45%, var(--bg3) 70%, var(--bg4) 100%);
    color: var(--white);
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-form-column {
    flex: 1.5;
    background-color: var(--white);
    padding: 30px;
}

.info-item {
    display: flex;
    margin-bottom: 25px;
}

.info-item i {
    font-size: 24px;
    color: var(--dark-color);
    margin-right: 15px;
    min-width: 30px;
    text-align: center;
}

.info-item h3 {
    margin: 0;
    font-size: 18px;
}

.info-item p {
    margin: 4px 0 0;
    color: rgba(255, 255, 255, 0.8);
    font-size: 15px;
}

.form-heading {
    margin-top: 0;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
}

/* Desktop Button Group (shown only on desktop) */
.program-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 25px;
}

.program-btn {
    padding: 10px 16px;
    background-color: var(--light-color);
    border: 1px solid var(--primary-color);
    border-radius: 6px;
    font-size: 14px;
    cursor: pointer;
    transition: 0.3s;
}

.program-btn:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

/* Mobile Dropdown (shown only on mobile) */
.program-dropdown {
    display: none;
    margin-bottom: 25px;
}

.program-select {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--gray);
    border-radius: 6px;
    font-size: 16px;
    background-color: var(--light-color);
    color: var(--dark-color);
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 10px center;
    background-size: 1em;
}

.program-select:focus {
    border-color: var(--primary-color);
    outline: none;
}

/* Form Styles */
.form-group {
    margin-bottom: 20px;
}

input[type="text"],
input[type="email"],
input[type="tel"] {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--gray);
    border-radius: 6px;
    font-size: 16px;
    transition: border-color 0.3s;
}

input:focus {
    border-color: var(--primary-color);
    outline: none;
}

.primary-btn {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 12px 20px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.3s;
}

.primary-btn:hover {
    background-color: var(--secondary-color);
}

/* Responsive Design */
@media (max-width: 991px) {
    .contact-container {
        flex-direction: column;
    }

    .contact-info-column,
    .contact-form-column {
        padding: 30px 20px;
    }
}

@media (max-width: 767px) {
    /* Hide buttons and show dropdown on mobile */
    .program-buttons {
        display: none;
    }
    
    .program-dropdown {
        display: block;
    }
}

@media (max-width: 575px) {
    .form-heading {
        font-size: 16px;
    }

    .primary-btn {
        width: 100%;
    }
}

/* FAQ Section */
.faq {
    background: linear-gradient(145deg, var(--bg1) 0%, var(--bg2) 45%, var(--bg3) 70%, var(--bg4) 100%);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 15px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.faq-question {
    padding: 20px;
    background-color: var(--light-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: var(--transition);
    -webkit-tap-highlight-color: transparent;
}

/* FAQ Styles */
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    padding: 0 15px;
}

.faq-item.active .faq-answer {
    max-height: 500px; /* Adjust based on your content */
    padding: 15px;
    
}

.faq-item.active .fa-plus {
    transform: rotate(45deg);
}

.faq-question i {
    transition: transform 0.3s ease;
}

.faq-question:hover {
    background-color: #e9ecef;
}

.faq-question h3 {
    margin-bottom: 0;
    color: var(--secondary-color);
}

.faq-question i {
    color: var(--primary-color);
    transition: var(--transition);
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background-color: var(--white);
}

.faq-item.active .faq-answer {
    padding: 20px;
    max-height: 300px;
}

.faq-item.active .faq-question i {
    transform: rotate(45deg);
}

/* =============================
   Section layout
   ============================= */
.premium-cta{
  padding: 5rem 1rem;
  background: var(--white);
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Inter, Arial, sans-serif;
}
.premium-cta .cta-container{
  max-width: 1200px; margin: 0 auto;
}

/* =============================
   Nursing Blue Tokens (local)
   ============================= */
.premium-cta{
  --white:#ffffff;
  --ink:#0b1324;

  /* Brand blues (match your Service cards) */
  --nb-slate:#0f1e3a;
  --nb-blue:#1e88e5;
  --nb-blue-600:#1976d2;
  --nb-blue-700:#1565c0;

  /* Accent teal for hovers */
  --nb-teal:#00bfa5;
  --nb-teal-700:#00897b;

  /* Shadows */
  --nb-shadow-1: 0 6px 16px rgba(3,14,35,.25);
  --nb-shadow-2: 0 12px 32px rgba(3,14,35,.35);
  --nb-shadow-3: 0 18px 44px rgba(21,101,192,.50);

  /* Gradients */
  --nb-card-grad: linear-gradient(145deg, rgba(15,30,58,0.92), rgba(30,136,229,0.92)); /* = service card */
  --nb-primary-grad: linear-gradient(90deg, var(--nb-blue-600), var(--nb-blue-700));
  --nb-teal-grad: linear-gradient(90deg, var(--nb-teal), var(--nb-teal-700));
}
.premium-cta .cta-card{
  position: relative;
  overflow: hidden;
  background: linear-gradient(145deg, var(--bg1) 0%, var(--bg2) 45%, var(--bg3) 70%, var(--bg4) 100%);         /* << matches Services cards */
  border: 1px solid rgba(187, 222, 251, 0.25);
  border-radius: 18px;
  padding: clamp(1.5rem, 4vw, 3rem);
  text-align: center;
  color: var(--white);
  box-shadow: var(--nb-shadow-2);
  max-width: 980px;
  margin: 0 auto;

  /* subtle glass edge */
  outline: 1px solid rgba(255,255,255,.05);
}

/* Decorative left ribbon (kept from your original but upgraded) */
.premium-cta .cta-card::before{
  content: "";
  position: absolute; inset: 0 auto 0 0;
  width: 5px;
  background: var(--nb-primary-grad);
  opacity: .9;
}

/* Soft spotlight */
.premium-cta .cta-spotlight{
  position: absolute; inset: -20% -10% auto -10%;
  height: 70%;
  background:
    radial-gradient(600px 260px at 30% 10%, rgba(255,255,255,.20), transparent 60%),
    radial-gradient(600px 260px at 80% 0%, rgba(187,222,251,.20), transparent 60%);
  pointer-events: none;
}

/* Floating glow orbs */
.premium-cta .cta-orb{
  position:absolute; width:220px; height:220px; border-radius:50%;
  filter: blur(14px); opacity:.25; pointer-events:none;
}
.premium-cta .orb-1{
  right:-70px; top:-60px;
  background: radial-gradient(closest-side, rgba(187,222,251,.8), transparent 70%);
}
.premium-cta .orb-2{
  left:-80px; bottom:-70px;
  background: radial-gradient(closest-side, rgba(30,136,229,.7), transparent 70%);
}

/* =============================
   Typography
   ============================= */
.premium-cta .cta-title{
  color: #f6fbff;
  font-size: clamp(1.6rem, 3vw, 2.25rem);
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: .2px;
  margin: 0 0 1rem;
}
.premium-cta .cta-textt{
  font-size: clamp(1rem, 1.6vw, 1.125rem);
  color: #eaf4ff;
  max-width: 720px;
  margin: 0 auto 2rem;
  line-height: 1.65;
}

/* =============================
   CTA Button (premium)
   ============================= */
.premium-cta .cta-button{
  display:inline-flex; align-items:center; justify-content:center; gap:.75rem;
  padding: 1rem 2.25rem;
  border-radius: 999px;
  color:#fff; text-decoration:none; font-weight: 800; letter-spacing:.3px;

  /* gradient border ring + inner fill */
  background:
    linear-gradient(180deg, rgba(255,255,255,.12), rgba(255,255,255,0)) padding-box,
    var(--nb-primary-grad) border-box;
  border: 1.5px solid transparent;

  box-shadow: var(--nb-shadow-1), inset 0 1px 0 rgba(255,255,255,.22);
  transition: transform .18s ease, box-shadow .22s ease, filter .22s ease;
}
.premium-cta .cta-button:hover{
  transform: translateY(-2px);
  box-shadow: var(--nb-shadow-3), inset 0 1px 0 rgba(255,255,255,.25);
  filter: saturate(1.05);
}
.premium-cta .cta-button svg{ transition: transform .22s ease; }
.premium-cta .cta-button:hover svg{ transform: translateX(4px); }

/* Optional: teal hover alt (uncomment to swap on hover) */
/*
.premium-cta .cta-button:hover{
  background:
    linear-gradient(180deg, rgba(255,255,255,.12), rgba(255,255,255,0)) padding-box,
    var(--nb-teal-grad) border-box;
}
*/

/* =============================
   Responsive
   ============================= */
@media (max-width: 768px){
  .premium-cta{ padding: 3.25rem 1rem; }
  .premium-cta .cta-card{ padding: 2.25rem 1.5rem; }
}
@media (max-width: 480px){
  .premium-cta .cta-title{ font-size: 1.5rem; }
  .premium-cta .cta-button{
    padding: .875rem 1.75rem; font-size: .95rem;
  }
}
/* Footer */
.footer {
    background: linear-gradient(145deg, var(--bg1) 0%, var(--bg2) 45%, var(--bg3) 70%, var(--bg4) 100%);
    color: var(--white);
    padding: 80px 0 0;
}

/* Ensure hero section form message is visible and styled */
#orderFormMsg.form-message {
    display: none;
    margin-top: 6px;
    font-size: 1.08rem;
    color: #148a08;
    text-align: left;
    font-weight: 600;
    min-height: 22px;
    width: 100%;
    background: none;
    border-radius: 0;
    box-shadow: none;
    padding: 0;
    position: static;
    z-index: 1;
}
#orderFormMsg.form-message:not(:empty) {
    display: block !important;
}

#orderFormMsg.form-message[style*="color: red"] {
    color: #d32f2f !important;
}
#orderFormErrorMsg.form-message.error-message {
    display: none;
    margin-top: 8px;
    font-size: 1.08rem;
    color: #d32f2f;
    text-align: left;
    font-weight: 600;
    min-height: 22px;
    background: none;
    border-radius: 0;
    box-shadow: none;
    padding: 0;
    position: static;
    z-index: 1;
    max-width: 100%;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.footer-col h3 {
    color: var(--white);
    font-size: 20px;
    margin-bottom: 25px;
    position: relative;
}

.footer-col h3::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--primary-color);
}

.footer-col p {
    color: rgba(255, 255, 255, 0.925);
    margin-bottom: 20px;
}

.footer-col ul li {
    margin-bottom: 15px;
}

.footer-col ul li a {
    color: rgb(255, 255, 255);
    transition: var(--transition);
    display: block;
}

.footer-col ul li a:hover {
    color: var(--dark-color);
    padding-left: 5px;
}

.footer-col ul li i {
    margin-right: 10px;
    color: var(--dark-color);
    width: 20px;
    text-align: center;
}

.social-links {
    display: flex;
    margin-top: 20px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
    color: var(--white);
    transition: var(--transition);
    -webkit-tap-highlight-color: transparent;
}

.social-links a:hover {
    background-color: var(--dark-color);
    transform: translateY(-3px);
}

.footer-bottom {
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    color: rgb(255, 255, 255);
    font-size: 14px;
}

.footer-links {
    margin-top: 10px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.footer-links a {
    color: rgb(255, 255, 255);
    margin: 0 10px;
    font-size: 14px;
}

.footer-links a:hover {
    color: var(--dark-color);
}

/* Sticky Book Now Button */
.sticky-book-now {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
}

/* Add these new styles */
.book-now-btn {
    /* Your existing button styles */
    background-color: var(--primary-color);
    color: white;
    border: none;
    padding: 15px 25px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(231, 76, 60, 0.3);
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
    -webkit-tap-highlight-color: transparent;
    
    /* New positioning styles */
    position: fixed;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1000;
}

/* For mobile responsiveness */
@media (max-width: 768px) {
    .book-now-btn {
        position: relative;
        left: auto;
        top: auto;
        transform: none;
        width: 100%;
        margin: 10px 0;
        text-align: center;
    }
}

.book-now-btn:hover {
    background-color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(131, 199, 211, 0.4);
}

/* Popup Form */
 .popup-form-overlay {
     position: fixed;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     background-color: rgba(0, 0, 0, 0.7);
     display: flex;
     justify-content: center;
     align-items: center;
     z-index: 1000;
     opacity: 0;
     visibility: hidden;

/* =========================
     Gradient Card CTA Section
     ========================= */
.secondary-cta {
    background: #fff !important;
    padding: 64px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #1a2a3a !important;
}

.s-cta-container {
    max-width: 700px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

.s-cta-card {
    background: linear-gradient(120deg, #eaf4ff 0%, #f8f9fa 100%) !important;
    border-radius: 22px;
    box-shadow: 0 8px 32px rgba(13, 66, 134, 0.10), 0 1.5px 0 rgba(30,136,229,0.08);
    border: 1.5px solid var(--primary-color);
    padding: 48px 36px;
    text-align: center;
    position: relative;
    color: #1a2a3a !important;
}

.s-cta-title {
    color: var(--primary-color) !important;
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 16px;
    letter-spacing: .2px;
}

.s-cta-text {
    color: var(--secondary-color) !important;
    font-size: 1.15rem;
    margin-bottom: 32px;
    font-weight: 500;
}

.s-cta-actions {
    display: flex;
    gap: 18px;
    justify-content: center;
    flex-wrap: wrap;
}

.s-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    font-size: 1rem;
    border-radius: 999px;
    padding: 14px 32px;
    text-decoration: none;
    transition: background .2s, color .2s, box-shadow .2s, transform .15s;
    box-shadow: 0 4px 16px rgba(13, 66, 134, 0.08);
    border: none;
    cursor: pointer;
}
.s-cta-btn svg {
    margin-left: 6px;
    vertical-align: middle;
}
.s-cta-btn--primary {
    background: linear-gradient(90deg, var(--primary-color), var(--primary-dark));
    color: var(--white);
}
.s-cta-btn--primary:hover {
    background: linear-gradient(90deg, var(--primary-dark), var(--primary-color));
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(13, 66, 134, 0.13);
}
.s-cta-btn--secondary {
    background: var(--white);
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}
.s-cta-btn--secondary:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(13, 66, 134, 0.13);
}

@media (max-width: 768px) {
    .secondary-cta {
        padding: 40px 0;
    }
    .s-cta-card {
        padding: 32px 12px;
    }
    .s-cta-title {
        font-size: 1.3rem;
    }
    .s-cta-actions {
        flex-direction: column;
        gap: 12px;
    }
}
    transition: all 0.3s ease;
}

.popup-form-overlay.active {
    opacity: 1;
    visibility: visible;
}

.popup-form-container {
    background-color: white;
    padding: 30px;
    border-radius: 10px;
    width: 90%;
    max-width: 600px;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.popup-form-overlay.active .popup-form-container {
    transform: translateY(0);
}

.popup-form-container h2 {
    text-align: center;
    margin-bottom: 10px;
    color: var(--secondary-color);
}

.popup-form-container .section-subtitle {
    text-align: center;
    margin-bottom: 20px;
}

.close-popup {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 24px;
    cursor: pointer;
    color: var(--text-light);
    transition: var(--transition);
    -webkit-tap-highlight-color: transparent;
}

.close-popup:hover {
    color: var(--primary-color);
}

.popup-form-container .contact-form {
    background: transparent;
    box-shadow: none;
    padding: 0;
}

.popup-form-container .form-group {
    margin-bottom: 20px;
}

.popup-form-container input,
.popup-form-container textarea {
    width: 100%;
    padding: 12px 0;
    border: none;
    border-bottom: 1px solid var(--gray);
    border-radius: 0;
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    transition: all 0.3s ease;
    background-color: transparent;
}

.popup-form-container input::placeholder,
.popup-form-container textarea::placeholder {
    color: var(--text-light);
    opacity: 0.8;
}

.popup-form-container input:focus,
.popup-form-container textarea:focus {
    outline: none;
    border-color: transparent;
    box-shadow: none;
    border-bottom: 2px solid var(--primary-color);
}

.popup-form-container textarea {
    min-height: 150px;
    resize: vertical;
}

/* Styles for the new popup contact form structure */
.popup-contact-form h3 {
    font-size: 15px;
    margin-top: 25px;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.popup-contact-form h3:first-child {
    margin-top: 0;
}

.popup-contact-form p {
    font-size: 15px;
    color: var(--text-light);
    margin-bottom: 20px;
}

.program-selection {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 25px;
}

.program-btn {
    background-color: var(--gray);
    color: var(--text-color);
    border: none;
    border-radius: 25px;
    padding: 10px 20px;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    -webkit-tap-highlight-color: transparent;
}

.program-btn:hover {
    background-color: #dcdcdc;
}

.program-btn.selected {
    background-color: var(--primary-color);
    color: var(--white);
}

.popup-contact-form .form-group {
    margin-bottom: 20px;
}

.popup-contact-form .form-group label {
    display: block;
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 5px;
}

.popup-contact-form input[type="text"],
.popup-contact-form input[type="email"],
.popup-contact-form input[type="tel"] {
    width: 100%;
    padding: 10px 0;
    border: none;
    border-bottom: 1px solid var(--gray);
    border-radius: 0;
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    transition: all 0.3s ease;
    background-color: transparent;
}

.popup-contact-form input[type="text"]::placeholder,
.popup-contact-form input[type="email"]::placeholder,
.popup-contact-form input[type="tel"]::placeholder {
    color: var(--text-light);
    opacity: 0.8;
}

.popup-contact-form input[type="text"]:focus,
.popup-contact-form input[type="email"]:focus,
.popup-contact-form input[type="tel"]:focus {
    outline: none;
    border-color: transparent;
    box-shadow: none;
    border-bottom: 2px solid var(--primary-color);
}

.info-icon {
    font-size: 16px;
    color: var(--text-light);
    margin-left: 5px;
    cursor: pointer;
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
    box-shadow: 0 5px 15px rgba(74, 144, 226, 0.3);
    -webkit-tap-highlight-color: transparent;
}

.back-to-top.active {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background-color: var(--secondary-color);
    transform: translateY(-5px);
}

/* Mobile Styles for Sticky Book Now Button */
@media (max-width: 768px) {
    .sticky-book-now {
        position: fixed;
        bottom: 20px;
        left: 50%;
        transform: translateX(-50%);
        width: 90%;
        max-width: 300px;
        z-index: 999;
    }

    .book-now-btn {
        width: 100%;
        text-align: center;
        padding: 12px 20px;
        font-size: 15px;
    }

    .back-to-top {
        display: none; /* Hide back to top button on mobile */
    }
}

@media (max-width: 480px) {
    .sticky-book-now {
        bottom: 10px;
        width: 30%;
        left: 10pc;
       
    }

    .book-now-btn {
        margin-right: 80px;
        font-size: 14px;
    }
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .container {
        max-width: 960px;
    }
    
    .hero-content h1 {
        font-size: 42px;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media (max-width: 992px) {
    .container {
        max-width: 720px;
    }
    
    .hero {
        padding: 150px 0 80px;
        background-attachment: scroll; /* Better performance on mobile */
    }
    
    .hero .container {
        flex-direction: column;
        text-align: center;
    }
    
    .hero-content {
        padding-right: 0;
        margin-bottom: 40px;
    }
    
    .hero-content h1 {
        font-size: 36px;
        line-height: 1.4;
    }
    
    .hero-content p {
        font-size: 16px;
        margin: 0 auto 30px;
        max-width: 600px;
    }
    
    .cta-buttons {
        justify-content: center;
        flex-wrap: wrap;
        gap: 15px;
    }
    
    .hero-image {
        width: 100%;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .about .container {
        flex-direction: column;
    }
    
    .about-image {
        margin-bottom: 40px;
    }
    
    .about-content {
        text-align: center;
    }
    
    .about-features ul {
        display: inline-block;
        text-align: left;
    }
    
    .contact-container {
        flex-direction: column;
    }
    
    .contact-info {
        margin-bottom: 40px;
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }

    .navbar-actions {
        margin-left: 0;
        gap: 10px;
    }
}

@media (max-width: 768px) {
    .container {
        max-width: 540px;
    }
    
    .section-title {
        font-size: 32px;
    }
    
    .hero {
        padding: 130px 0 60px;
        background-attachment: scroll;
        background-image: none;
        background: linear-gradient(135deg, #52708b 0%, #071E2F 100%);
        color: var(--white);
        position: relative;
        overflow: hidden;
    }

    .hero::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: 
            radial-gradient(circle at 20% 20%, rgba(74, 144, 226, 0.15) 0%, transparent 50%),
            radial-gradient(circle at 80% 80%, rgba(231, 76, 60, 0.15) 0%, transparent 50%);
        z-index: 1;
    }

    .hero::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-image: 
            linear-gradient(45deg, rgba(255, 255, 255, 0.05) 25%, transparent 25%),
            linear-gradient(-45deg, rgba(255, 255, 255, 0.05) 25%, transparent 25%);
        background-size: 60px 60px;
        z-index: 1;
    }

    .hero .container {
        position: relative;
        z-index: 2;
    }
    
    .hero-content h1 {
        font-size: 32px;
        color: var(--white);
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
    }
    
    .hero-content p {
        font-size: 15px;
        color: rgba(255, 255, 255, 0.9);
    }

    .hero-content .cta-buttons {
        position: relative;
        z-index: 2;
    }

    .hero-content .primary-btn {
        background-color: var(--primary-color);
        border: none;
        box-shadow: 0 4px 15px rgba(120, 202, 216, 0.918);
    }

    .hero-content .secondary-btn {
        width: 90%;
        border-radius: 30px;
        align-items: center;
        justify-content: center;
        margin-left: 5%;
        margin-right: 5%;
    }

    .hero-content .secondary-btn:hover {
        background-color: var(--white);
        color: var(--secondary-color);
    }
    
    /* Hero CTA buttons mobile responsiveness */
    .hero-content .cta-buttons {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 15px;
        margin-top: 20px;
    }
    
    .hero-content .cta-buttons .btn {
        width: 100%;
        max-width: 280px;
        text-align: center;
        padding: 15px 20px;
        font-size: 16px;
        font-weight: 600;
    }
    
    .hero-content .cta-buttons .primary-btn {
        margin-bottom: 10px;
    }
    
    .hero-content .cta-buttons .secondary-btn {
        width: 100%;
        max-width: 280px;
        margin: 0;
        text-align: center;
    }
    
    /* Hero Action Buttons Mobile Responsive */
    .hero-action-buttons {
        justify-content: center;
        gap: 15px;
        margin-top: 20px;
    }
    
    .hero-btn {
        padding: 12px 24px;
        font-size: 1rem;
        min-width: 140px;
        text-align: center;
    }
    
    /* Enhanced mobile button styles for very small screens */
    @media (max-width: 576px) {
        .hero-content .cta-buttons {
            gap: 12px;
            margin-top: 15px;
        }
        
        .hero-content .cta-buttons .btn {
            max-width: 260px;
            padding: 14px 18px;
            font-size: 15px;
        }
        
            .hero-content .cta-buttons .secondary-btn {
        max-width: 260px;
    }
    
    /* Hero Action Buttons Mobile Responsive */
    .hero-action-buttons {
        flex-direction: column;
        align-items: center;
        gap: 12px;
        margin-top: 15px;
    }
    
    .hero-btn {
        width: 100%;
        max-width: 280px;
        padding: 14px 20px;
        font-size: 15px;
    }
    
    @media (max-width: 480px) {
        .hero-action-buttons {
            gap: 10px;
            margin-top: 12px;
        }
        
        .hero-btn {
            max-width: 260px;
            padding: 12px 16px;
            font-size: 14px;
        }
    }
    }
    
    @media (max-width: 480px) {
        .hero-content .cta-buttons {
            gap: 10px;
            margin-top: 12px;
        }
        
        .hero-content .cta-buttons .btn {
            max-width: 240px;
            padding: 12px 16px;
            font-size: 14px;
        }
        
        .hero-content .cta-buttons .secondary-btn {
            max-width: 240px;
        }
    }
    
    .navbar .nav-links {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background-color: var(--white);
        flex-direction: column;
        align-items: center;
        padding: 40px 0;
        transition: var(--transition);
        gap: 0 !important;
    }
    
    .navbar .nav-links.active {
        left: 0;
    }
    
    .navbar .nav-links li {
        margin: 15px 0;
    }
    
    .navbar .nav-links a {
        font-size: 18px;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .testimonial-slider {
        padding: 0 20px;
    }
    
    .testimonial-content p {
        font-size: 16px;
    }
    
    .cta h2 {
        font-size: 28px;
    }
    
    .popup-form-container {
        width: 95%;
        padding: 25px 20px;
        margin: 20px;
    }

    .navbar-actions {
        flex-direction: column;
        align-items: flex-start;
        width: 80%;
        margin: 20px 0 0 0;
        gap: 10px;
    }
}

@media (max-width: 576px) {
    section {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .hero-content h1 {
        font-size: 28px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .service-card {
        padding: 20px;
    }
    
    .service-icon {
        width: 70px;
        height: 70px;
        font-size: 26px;
    }
    
    .contact-info,
    .contact-form {
        width: 100%;
    }
    
    .form-group input,
    .form-group textarea {
        padding: 10px 12px;
        font-size: 15px;
    }
    
    .btn, .primary-btn, .secondary-btn {
        width: 100%;
        margin: 5px 0;
        text-align: center;
    }
    
    .footer {
        padding: 60px 0 20px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-col {
        text-align: center;
    }
    
    .footer-col h3::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .social-links {
        justify-content: center;
    }
    
    .book-now-btn {
        width: 120%;
        align-items: center;
        justify-content: center;
        margin-left: 5%;
        margin-right: 5%;
        
       
    }
    
    .popup-form-container {
        width: 95%;
        padding: 20px 15px;
    }
    
    .popup-form-container h2 {
        font-size: 24px;
    }
    
    .popup-form-container .section-subtitle {
        font-size: 14px;
    }
    
    .popup-form-container textarea {
        height: 120px;
    }
    
    .close-popup {
        top: 10px;
        right: 10px;
    }
}

/* Additional Responsive Fixes */
@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 24px;
    }
    
    .section-title {
        font-size: 24px;
    }
    
    .service-card h3 {
        font-size: 20px;
    }
    
    .about-features li {
        font-size: 14px;
    }
    
    .testimonial-content p {
        font-size: 14px;
    }
    
    .client-info h4 {
        font-size: 16px;
    }
    
    .footer-col h3 {
        font-size: 18px;
    }
    
    .footer-col p,
    .footer-col ul li {
        font-size: 14px;
    }
}

/* Fix for very small devices */
@media (max-width: 360px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-content h1 {
        font-size: 22px;
    }
    
    .hero-content p {
        font-size: 14px;
    }
    
    .btn {
        padding: 10px 20px;
        font-size: 14px;
    }
    
    .section-title {
        font-size: 22px;
    }
    
    .service-card {
        padding: 15px;
    }
    
    .service-icon {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
}
/* Styles for the main contact form to match popup */
.main-contact-form h3 {
    font-size: 20px;
    margin-top: 0; /* No top margin for the first heading */
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.main-contact-form h3:not(:first-child) {
    margin-top: 25px; /* Add top margin to subsequent headings */
}

.main-contact-form p {
    font-size: 15px;
    color: var(--text-light);
    margin-bottom: 20px;
}

.main-contact-form .program-selection {
    display: flex;
    flex-wrap: wrap;
    gap: 10px; /* Spacing between buttons */
    margin-bottom: 25px;
}

.main-contact-form .form-group {
    margin-bottom: 20px; /* Spacing between form groups */
}

.main-contact-form .form-group label {
    display: block;
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 5px;
}

.main-contact-form input[type="text"],
.main-contact-form input[type="email"],
.main-contact-form input[type="tel"],
.main-contact-form textarea {
    width: 100%;
    padding: 10px 0; /* Adjust padding for underline style */
    border: none;
    border-bottom: 1px solid var(--gray); /* Underline border */
    border-radius: 0; /* No border radius for underline */
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    transition: all 0.3s ease;
    background-color: transparent; /* Ensure transparent background */
}

.main-contact-form input[type="text"]::placeholder,
.main-contact-form input[type="email"]::placeholder,
.main-contact-form input[type="tel"]::placeholder,
.main-contact-form textarea::placeholder {
    color: var(--text-light);
    opacity: 0.8;
}

.main-contact-form input[type="text"]:focus,
.main-contact-form input[type="email"]:focus,
.main-contact-form input[type="tel"]:focus,
.main-contact-form textarea:focus {
    outline: none;
    border-color: transparent; /* Remove default focus border */
    box-shadow: none; /* Remove default focus shadow */
    border-bottom: 2px solid var(--primary-color); /* Highlight underline */
}

.main-contact-form .btn.primary-btn {
    margin-top: 20px; /* Spacing above button */
    width: auto; /* Button width based on content */
    padding: 12px 30px; /* Match other primary buttons */
    font-size: 16px; /* Match other primary buttons */
}

/* Success Popup Styles */
.success-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1001; /* Higher than other popups */
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.success-popup-overlay.active {
    opacity: 1;
    visibility: visible;
}

.success-popup-container {
    background-color: white;
    padding: 40px;
    border-radius: 10px;
    width: 90%;
    max-width: 400px;
    text-align: center;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.success-popup-overlay.active .success-popup-container {
    transform: translateY(0);
}

.success-popup-container h2 {
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.success-popup-container p {
    color: var(--text-light);
    margin-bottom: 0;
}

.success-icon {
    font-size: 60px;
    color: #28a745; /* Green color for success */
    margin-bottom: 20px;
}

.close-success-popup {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 24px;
    cursor: pointer;
    color: var(--text-light);
    transition: var(--transition);
    -webkit-tap-highlight-color: transparent;
}

.close-success-popup:hover {
    color: var(--primary-color);
}

/* Ensure responsive styles for contact section are correct */
@media (max-width: 992px) {
    .contact-container {
        flex-direction: column; /* Stack columns on smaller screens */
    }

    .contact-info-column {
        padding: 30px;
    }

    .contact-form-column {
        padding: 30px;
    }
}

@media (max-width: 576px) {
    .contact {
        padding: 60px 0; /* Adjust section padding */
    }
    .contact-container {
        border-radius: 8px; /* Slightly less rounded corners on smaller screens */
        margin-top: 30px; /* Adjust top margin */
    }
    
    .contact-info-column {
        padding: 25px;
    }

    .contact-form-column {
        padding: 25px;
    }

    .contact-info .info-item {
        margin-bottom: 20px;
    }

    .contact-info .info-item i {
        font-size: 20px;
        margin-right: 15px;
    }

    .contact-info .info-item h3 {
        font-size: 16px;
    }

    .contact-info .info-item p {
        font-size: 14px;
    }

    .main-contact-form h3 {
        font-size: 18px; /* Adjust heading size */
    }

    .main-contact-form p {
         font-size: 14px; /* Adjust paragraph size */
    }

    .main-contact-form .program-selection {
        gap: 8px; /* Adjust button gap */
        margin-bottom: 20px; /* Adjust margin */
    }

    .main-contact-form .form-group {
         margin-bottom: 15px; /* Adjust form group spacing */
    }

    .main-contact-form .form-group label {
        font-size: 13px; /* Adjust label size */
    }

    .main-contact-form input[type="text"],
    .main-contact-form input[type="email"],
    .main-contact-form input[type="tel"],
    .main-contact-form textarea {
         font-size: 15px; /* Adjust input font size */
         padding: 8px 0; /* Adjust input padding */
    }

     .main-contact-form .btn.primary-btn {
        font-size: 15px; /* Adjust button font size */
        padding: 10px 20px; /* Adjust button padding */
        width: 100%; /* Full width button on small screens */
     }
}


.logo-phone-wrap {
    display: flex;
    align-items: center;
    gap: 16px;
}

.header-phone-mobile {
    display: none;
}

@media (max-width: 768px) {
    .logo-phone-wrap {
        width: 100%;
        justify-content: space-between;
    }
    .header-phone-mobile {
        display: block;
    }
    .header-phone-mobile a {
        color: var(--primary-color);
        font-weight: 600;
        font-size: 11px;
        display: flex;
        align-items: center;
        gap: 6px;
        background: #fff;
        padding: 6px 12px;
        border-radius: 20px;
        box-shadow: 0 2px 8px rgba(44,62,80,0.07);
        text-decoration: none;
    }
    /* Hide the phone number in the nav menu on mobile */
    .navbar .nav-links .header-phone {
        display: none !important;
    }
}
/* Terms of Service and Fraud Policy Pages Styles */

/* Hero Section Styles */
.fraud-hero {
    background:
        linear-gradient(135deg, var(--primary-color) 60%, #38b6ff 100%),
        repeating-linear-gradient(0deg, rgba(255,255,255,0.04) 0px, rgba(255,255,255,0.04) 1px, transparent 1px, transparent 40px),
        repeating-linear-gradient(90deg, rgba(255,255,255,0.04) 0px, rgba(255,255,255,0.04) 1px, transparent 1px, transparent 40px);
    padding: 120px 0 80px 0;
    text-align: center;
    margin-bottom: 50px;
    position: relative;
    width: 100vw;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    overflow: hidden;
    padding-top: 140px;
}
.fraud-hero-tagline {
    color: #ffffff;
    font-size: 18px;
}

.fraud-hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.fraud-hero-icon {
    font-size: 48px;
    color: #ffffff;
    margin-bottom: 20px;
}

.fraud-hero-title {
    font-size: 36px;
    color: #333;
    margin-bottom: 15px;
    font-weight: 600;
}

.fraud-hero-subtitle {
    font-size: 18px;
    color: #ffffff;
    line-height: 1.6;
}

/* Policy Cards Section */
.fraud-policy-section {
    padding: 50px 0;
    background-color: #fff;
}

.fraud-policy-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    padding: 20px;
}

.fraud-card {
    background: var(--primary-color);
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.fraud-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.fraud-card-icon {
    font-size: 32px;
    color: var(--secondary-color);
    margin-bottom: 20px;
    text-align: center;
}

.fraud-card h3 {
    font-size: 20px;
    color: #ffffff;
    margin-bottom: 15px;
    font-weight: 600;
}

.fraud-card p {
    color: #ffffff;
    line-height: 1.6;
    margin-bottom: 15px;
}

.fraud-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.fraud-card ul li {
    color: #ffffff;
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
}

.fraud-card ul li i {
    position: absolute;
    left: 0;
    top: 4px;
    color: var(--secondary-color);
}

/* Responsive Styles */
@media (max-width: 768px) {
    .fraud-hero {
        padding: 60px 0;
        margin-top: 40px;
    }

    .fraud-hero-title {
        font-size: 28px;
    }

    .fraud-hero-subtitle {
        font-size: 16px;
    }

    .fraud-policy-cards {
        grid-template-columns: 1fr;
        padding: 15px;
    }

    .fraud-card {
        padding: 20px;
    }
}

/* Additional Utility Classes */
.text-center {
    text-align: center;
}

.mb-20 {
    margin-bottom: 20px;
}

.mb-30 {
    margin-bottom: 30px;
}

/* Animation for Cards */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fraud-card {
    animation: fadeInUp 0.5s ease-out forwards;
}

/* Staggered Animation for Cards */
.fraud-card:nth-child(1) { animation-delay: 0.1s; }
.fraud-card:nth-child(2) { animation-delay: 0.2s; }
.fraud-card:nth-child(3) { animation-delay: 0.3s; }
.fraud-card:nth-child(4) { animation-delay: 0.4s; }
.fraud-card:nth-child(5) { animation-delay: 0.5s; }
.fraud-card:nth-child(6) { animation-delay: 0.6s; }
.fraud-card:nth-child(7) { animation-delay: 0.7s; }
.fraud-card:nth-child(8) { animation-delay: 0.8s; }




/* Professional CTA Section Styling */
.cta-section {
    background: var(--primary-color);
    color: white;
    padding: 60px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
  }
  
  .cta-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none"><path fill="rgba(255,255,255,0.03)" d="M0,0 L100,0 L100,100 L0,100 Z" /></svg>');
    background-size: cover;
    opacity: 0.1;
  }
  
  .cta-container {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
  }
  
  .cta-icon {
    margin-bottom: 20px;
  }
  
  .cta-icon svg {
    stroke: white;
    opacity: 0.9;
    width: 48px;
    height: 48px;
  }
  
  .cta-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.3;
    letter-spacing: -0.5px;
  }
  
  .cta-text {
    color: #f5f7fa;
    font-size: 1.15rem;
    margin-bottom: 30px;
    opacity: 0.9;
    line-height: 1.6;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
  }
  
  .cta-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 30px;
  }
  
  .cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 24px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    font-size: 1rem;
    border: none;
    cursor: pointer;
    min-width: 180px;
  }
  
  .cta-button svg {
    margin-right: 8px;
    width: 18px;
    height: 18px;
  }
  
  .cta-button.primary {
    background: white;
    color: var(--secondary-color);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  }
  
  .cta-button.primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 7px 14px rgba(0, 0, 0, 0.15);
  }
  
  .cta-button.secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(5px);
  }
  
  .cta-button.secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
    box-shadow: 0 7px 14px rgba(0, 0, 0, 0.1);
  }
  
  .cta-assurance {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 30px;
    font-size: 0.9rem;
  }
  
  .assurance-item {
    display: flex;
    align-items: center;
    gap: 8px;
    opacity: 0.85;
  }
  
  .assurance-item svg {
    stroke: #4cc9f0;
    width: 16px;
    height: 16px;
  }
  
  /* Responsive Design */
  @media (max-width: 768px) {
    .cta-section {
      padding: 50px 20px;
    }
    
    .cta-title {
      font-size: 1.8rem;
      margin-bottom: 15px;
    }
    
    .cta-text {
      font-size: 1.05rem;
      margin-bottom: 25px;
      line-height: 1.5;
    }
    
    .cta-buttons {
      flex-direction: column;
      align-items: center;
      gap: 12px;
      margin-bottom: 25px;
    }
    
    .cta-button {
      width: 100%;
      max-width: 260px;
      padding: 12px 20px;
      font-size: 0.95rem;
    }
    
    .cta-assurance {
      flex-direction: column;
      gap: 12px;
      margin-top: 25px;
    }
  }
  
  @media (max-width: 480px) {
    .cta-section {
      padding: 40px 15px;
    }
    
    .cta-title {
      font-size: 1.6rem;
      letter-spacing: -0.3px;
    }
    
    .cta-text {
      font-size: 1rem;
      margin-bottom: 20px;
    }
    
    .cta-icon {
      margin-bottom: 15px;
    }
    
    .cta-icon svg {
      width: 40px;
      height: 40px;
    }
    
    .cta-button {
      max-width: 240px;
    }
    
    .assurance-item {
      font-size: 0.85rem;
    }
  }
  
  @media (max-width: 360px) {
    .cta-title {
      font-size: 1.5rem;
    }
    
    .cta-text {
      font-size: 0.95rem;
    }
    
    .cta-button {
      padding: 10px 16px;
      font-size: 0.9rem;
    }
  }



/* hero form validation css*/
/* Form error states */
.form-group.error input,
.form-group.error select {
    border-color: #f44336 !important;
}

.form-group.error::after {
    content: "This field is required";
    color: #f44336;
    font-size: 12px;
    display: block;
    margin-top: 5px;
}

/* Message styles */
.form-message {
#orderFormMsg.form-message {
    display: none;
    margin-top: 6px;
    font-size: 1.08rem;
    text-align: left;
    font-weight: 600;
    min-height: 22px;
    width: 100%;
    background: none;
    border-radius: 0;
    box-shadow: none;
    padding: 0;
    position: static;
    z-index: 1;
    transition: opacity 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    opacity: 0;
}
#orderFormMsg.form-message.show.success {
    color: #148a08;
    opacity: 1;
    display: block !important;
}
#orderFormMsg.form-message.show.error {
    color: #d32f2f;
    opacity: 1;
    display: block !important;
}
#orderFormMsg.form-message.show.success {
    color: #148a08;
    opacity: 1;
    display: block !important;
}
#orderFormMsg.form-message.show.error {
    color: #d32f2f;
    opacity: 1;
    display: block !important;
}
}

.form-message.success {
    background: #4CAF50;
}

.form-message.error {
    background: #f44336;
}




        @media (max-width: 768px) {
            .hero-content p {
                display: none;
            }
            
            .hero-content .cta-buttons {
                display: none;
            }
        }

        /* Hero Animation Styles */
        .hero-content h1 {
            opacity: 0;
            transform: translateY(30px) scale(0.95);
            filter: blur(10px);
            transition: all 1.2s cubic-bezier(0.16, 1, 0.3, 1);
        }

        .hero-content p {
            opacity: 0;
            transform: translateY(30px) scale(0.95);
            filter: blur(10px);
            transition: all 1.2s cubic-bezier(0.16, 1, 0.3, 1);
            transition-delay: 0.4s;
        }

        .hero-content .cta-buttons {
            opacity: 0;
            transform: translateY(20px);
            filter: blur(5px);
            transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
            transition-delay: 0.8s;
        }

        .hero-content h1.animate {
            opacity: 1;
            transform: translateY(0) scale(1);
            filter: blur(0);
        }

        .hero-content p.animate {
            opacity: 1;
            transform: translateY(0) scale(1);
            filter: blur(0);
        }

        .hero-content .cta-buttons.animate {
            opacity: 1;
            transform: translateY(0);
            filter: blur(0);
        }

        /* Professional animation keyframes */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px) scale(0.95);
                filter: blur(10px);
            }
            to {
                opacity: 1;
                transform: translateY(0) scale(1);
                filter: blur(0);
            }
        }

        @keyframes subtleFloat {
            0% { transform: translateY(0); }
            50% { transform: translateY(-8px); }
            100% { transform: translateY(0); }
        }

        @keyframes glowPulse {
            0% { text-shadow: 0 0 10px rgba(255,255,255,0.1); }
            50% { text-shadow: 0 0 20px rgba(255,255,255,0.2); }
            100% { text-shadow: 0 0 10px rgba(255,255,255,0.1); }
        }

        .hero-content h1.animate {
            animation: 
                fadeInUp 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards,
                subtleFloat 6s ease-in-out infinite,
                glowPulse 4s ease-in-out infinite;
        }

        .hero-content p.animate {
            animation: fadeInUp 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
        }

        .hero-content .cta-buttons.animate {
            animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
        }

        /* Add smooth hover effects */
        .hero-content .cta-buttons a {
            transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1),
                        box-shadow 0.3s cubic-bezier(0.16, 1, 0.3, 1);
        }

        .hero-content .cta-buttons a:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
    



        
/* ===============================
   CTA: Same-to-Same (Images + Copy)
   Picture-Perfect Mobile Responsive
   =============================== */

/* ===============================
   CTA: Same-to-Same (Images + Copy)
   Picture-Perfect Mobile Responsive
   =============================== */

:root{
  --wrap-bg:  #f3f8ff;
  --title:    #0c1b33;
  --blue:     #2a57ff;
  --muted:    #5b6677;
  --border-blue: #103A8D;
  --divider:  #cfd8ea;

  /* Desktop tuning */
  --ribbon-w: 306px;   /* ribbon PNG width */
  --deal-w:   236px;   /* 50% card PNG width */
  --left-col: 330px;   /* left grid column width */
  --gap-x:    26px;

  /* Button */
  --btn:      #2ecb71;
  --btn-h:    #24b963;
}

/* ===== Shell ===== */
.cta-hero-s2s{
  background: var(--wrap-bg);
  border-radius: 14px;
  border: 2px solid var(--border-blue);
  padding: clamp(18px, 2.2vw, 28px) clamp(14px, 2vw, 24px);
  display: grid;
  grid-template-columns: var(--left-col) 1fr;
  gap: var(--gap-x);
  align-items: center;
  margin: 20px auto;
  max-width: 1200px;
}

.cta-left {
  display: flex;
  flex-direction: column;
  align-items:flex-start;
  gap:16px;
  min-width: calc(var(--left-col) - 6px);
}
.cta-left .img-ribbon,
.cta-left .img-deal{
  display:block;
  height:auto;
  max-width:100%;
  image-rendering:-webkit-optimize-contrast;
}
.cta-left .img-ribbon{
  width: var(--ribbon-w);
  filter: drop-shadow(0 10px 16px rgba(32, 76, 210, .18));
}
.cta-left .img-deal{
  width: var(--deal-w);
  border-radius: 16px; /* if PNG is square */
  box-shadow: 0 12px 26px rgba(46, 203, 113, .28);
}

/* ===== RIGHT: content ===== */
.cta-right{ margin-top: 6px; }

.cta-right .cta-title{
  margin: 0 0 10px 0;
  font-weight: 800;
  color: var(--title);
  text-transform: uppercase;
  letter-spacing: .2px;
  font-size: clamp(26px, 2vw + 16px, 36px);
  line-height: 1.22;
}
.cta-right .cta-title .accent{ color: var(--blue); }

.cta-right .cta-lead{
  margin: 0 0 16px 0;
  color: var(--muted);
  font-size: clamp(16px, .7vw + 14px, 18px);
  line-height: 1.7;
  max-width: 960px;
}

/* green swoosh underline (keeps performance-friendly) */
.cta-right .swoosh{
  position: relative;
  white-space: nowrap;           /* stay on one line on large screens */
  padding-bottom: 2px;
}
.cta-right .swoosh::after{
  content:"";
  position:absolute; left:0; right:0; bottom:-2px; height:10px;
  background-repeat:no-repeat;
  background-position: 0 100%;
  background-size: 100% 10px;
  background-image: url("data:image/svg+xml;utf8,\
    <svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 300 12' preserveAspectRatio='none'>\
      <path d='M2 9 Q120 2 238 9 T 298 9' fill='none' stroke='%2332c37a' stroke-width='6' stroke-linecap='round'/>\
    </svg>");
}

/* ===== Actions (button + meta row) ===== */
.cta-actions{
  display:flex;
  flex-direction: column;
  gap: 12px;
}

/* Order Now button */
.btn-order{
  display:inline-block;
  background: var(--btn);
  color:#fff; font-weight:800;
  padding: 14px 22px;
  border-radius: 14px;
  text-decoration: none;
  box-shadow: 0 12px 24px rgba(46, 203, 113, .28);
  transition: background .15s ease, transform .15s ease, box-shadow .15s ease;
  width: fit-content;
  font-size: 16px;
  line-height: 1.1;
  touch-action: manipulation;     /* better tap on mobile */
}
.btn-order:hover{
  background: var(--btn-h);
  transform: translateY(-1px);
  box-shadow: 0 14px 28px rgba(36, 185, 99, .28);
}

/* Meta row (desktop: stay on one line) */
.meta{
  display:flex;
  align-items:center;
  gap: 14px 18px;
  font-size: 16px;
  color:#0f172a;
  flex-wrap: nowrap;
  white-space: nowrap;
}
.meta .meta-item{
  display:inline-flex;
  align-items:center;
  gap:8px;
  white-space: nowrap;
}
.meta .meta-item svg{ opacity:.9; flex:0 0 auto; }
.meta .tel{
  color: var(--blue);
  font-weight:900;
  text-decoration:none;
  white-space: nowrap;
  font-size: 16px;
}

/* Desktop/laptop upscaling for CTA controls */
@media (min-width: 1024px){
  .btn-order{ padding: 18px 32px; font-size: 20px; border-radius: 18px; }
  .meta{ font-size: 20px; }
  .meta .tel{ font-size: 20px; }
  .meta .meta-item svg{ width:22px; height:22px; }
}
.meta .divider{
  width:1px; height:24px; background: var(--divider); display:inline-block;
  flex:0 0 1px;
}

/* ===== Breakpoints ===== */
@media (max-width: 1199.98px){
  :root{
    --ribbon-w: 290px;
    --deal-w:   226px;
    --left-col: 320px;
    --gap-x:    22px;
  }
}

@media (max-width: 991.98px){
  :root{
    --ribbon-w: 260px;
    --deal-w:   210px;
    --left-col: 290px;
    --gap-x:    18px;
  }
  .meta .divider{ height:20px; }
}

/* ===== Mobile (picture perfect) ===== */
@media (max-width: 767.98px){
  .cta-hero-s2s{
    display: grid;
    grid-template-columns: 1fr;
    row-gap: 16px;
    padding: 18px 14px;
    text-align: center;                 /* center text on phones */
  }

  /* Stack order: images first, then content */
  .cta-left{
    display: flex;
    align-items:center;                 /* center images */
    min-width: 0;
    order: 1;
  }
  .cta-left .img-ribbon{ width: min(88vw, 320px); }
  .cta-left .img-deal{ width: min(66vw, 260px); }

  .cta-right{ order: 2; }
  .cta-right .cta-title{
    text-transform: none;
    font-size: clamp(19px, 5.2vw, 24px);
    line-height: 1.26;
    margin-bottom: 6px;
  }
  .cta-right .cta-lead{
    margin: 6px auto 12px;
    max-width: 30ch;                    /* tidy line length on phones */
  }
  .cta-right .swoosh{ white-space: normal; }

  /* Full-width button on mobile */
  .btn-order{
    width: 100%;
    text-align:center;
    padding: 14px 18px;                 /* taller tap target */
    font-size: 16px;
    border-radius: 14px;
  }

  /* Meta row: wrap nicely */
  .meta{
    justify-content:center;
    flex-wrap: wrap;
    white-space: normal;
    row-gap: 10px;
    column-gap: 14px;
  }
  .meta .divider{ display:none; }
}

/* Very small phones */
@media (max-width: 380px){
  .cta-left .img-ribbon{ width: 84vw; }
  .cta-left .img-deal{ width: 62vw; }
  .cta-right .cta-lead{ font-size: 14px; max-width: 28ch; }
}

/* Motion-safe polish */
@media (prefers-reduced-motion: reduce){
  .btn-order{ transition:none; }
}

/* ========================================
   COMPREHENSIVE MOBILE RESPONSIVENESS
   ======================================== */

/* Tablet Landscape (1024px - 1199px) */
@media (max-width: 1199px) and (min-width: 1024px) {
    .container {
        max-width: 960px;
        padding: 0 20px;
    }
    
    .aw-wrap {
        padding: 0 24px;
    }
}

/* Tablet Portrait (768px - 1023px) */
@media (max-width: 1023px) and (min-width: 768px) {
    .container {
        max-width: 720px;
        padding: 0 16px;
    }
    
    .aw-wrap {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 0 20px;
    }
    
    .aw-right {
        max-width: 100%;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
    
    .about-container {
        flex-direction: column;
        gap: 30px;
    }
}

/* Mobile Large (576px - 767px) */
@media (max-width: 767px) and (min-width: 576px) {
    .container {
        max-width: 540px;
        padding: 0 15px;
    }
    
    section {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .contact-container {
        flex-direction: column;
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

/* Mobile Medium (480px - 575px) */
@media (max-width: 575px) and (min-width: 480px) {
    .container {
        padding: 0 12px;
    }
    
    section {
        padding: 50px 0;
    }
    
    .section-title {
        font-size: 24px;
    }
    
    .aw-card {
        padding: 60px 18px 18px;
    }
    
    .btn, .primary-btn, .aw-btn {
        width: 100%;
        padding: 14px 20px;
        font-size: 15px;
    }
}

/* Mobile Small (360px - 479px) */
@media (max-width: 479px) and (min-width: 360px) {
    .container {
        padding: 0 10px;
    }
    
    section {
        padding: 40px 0;
    }
    
    .section-title {
        font-size: 22px;
    }
    
    .aw-hero {
        padding: calc(10px + var(--hdrH)) 0 50px;
    }
    
    .aw-card {
        padding: 56px 14px 14px;
    }
    
    .service-card {
        padding: 20px 15px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
}

/* Mobile Extra Small (< 360px) */
@media (max-width: 359px) {
    .container {
        padding: 0 8px;
    }
    
    section {
        padding: 35px 0;
    }
    
    .section-title {
        font-size: 20px;
    }
    
    .aw-hero {
        padding: calc(8px + var(--hdrH)) 0 40px;
    }
    
    .aw-card {
        padding: 52px 12px 12px;
    }
    
    .aw-ribbon {
        width: clamp(220px, 68vw, 280px);
        top: 40px;
    }
    
    .btn, .primary-btn, .aw-btn {
        font-size: 14px;
        padding: 12px 16px;
    }
}

/* Ensure images are always responsive */
img {
    max-width: 100%;
    height: auto;
}

/* Prevent horizontal scroll on all devices */
body {
    overflow-x: hidden;
}

.container, .aw-wrap, .awt-wrap {
    overflow-x: hidden;
}

/* Touch-friendly tap targets (minimum 44x44px) */
@media (max-width: 768px) {
    button, .btn, a.btn, .aw-btn, .primary-btn, .secondary-btn {
        min-height: 44px;
        min-width: 44px;
    }
    
    /* Improve form inputs on mobile */
    input, select, textarea {
        font-size: 16px !important; /* Prevents zoom on iOS */
    }
    
    /* Stack CTA buttons vertically on mobile */
    .cta-buttons, .cta-actions, .hero-action-buttons {
        flex-direction: column;
        gap: 12px;
        width: 100%;
    }
    
    .cta-buttons .btn, 
    .cta-actions .btn,
    .hero-action-buttons .btn {
        width: 100%;
        max-width: 100%;
    }
}

/* Landscape orientation adjustments for mobile */
@media (max-width: 896px) and (orientation: landscape) {
    .aw-hero {
        padding: 60px 0 40px;
    }
    
    section {
        padding: 50px 0;
    }
    
    .header {
        padding: 10px 0;
    }
}

/* High DPI displays */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    img {
        image-rendering: -webkit-optimize-contrast;
        image-rendering: crisp-edges;
    }
}











