/* ---------- Base / variables ---------- */
:root{
  --bg: #ffffff;
  --muted: #6b7280;
  --brand-1: #0b61ff;
  --brand-2: #06b6d4;
  --nav-bg: #ffffff;
  --text: #0b1220;
  --white: #fff;
  --shadow: 0 10px 30px rgba(7,12,25,0.06);
  --container-max: 1200px;
}

/* Reset */
*{box-sizing:border-box}
html,body{margin:0;padding:0;font-family:'Lato',system-ui,-apple-system,"Segoe UI",Roboto,Arial;color:var(--text);background:var(--bg)}
a{color:inherit}
img{max-width:100%;height:auto;display:block}

/* Banner (thin top bar) */
.banner{
  background:linear-gradient(90deg,var(--brand-1),var(--brand-2));
  color:var(--white);
  padding:8px 12px;
  text-align:center;
  font-weight:600;
  font-size:0.95rem;
}
.banner a{color:var(--white); text-decoration:none}

/* Navbar wrapper */
.navbar{
  background:var(--nav-bg);
  box-shadow:var(--shadow);
  position:sticky;
  top:0;
  z-index:60;
}
.navbar-wrapper{
  max-width:var(--container-max);
  margin:0 auto;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  padding:12px 14px;
}

/* Logo */
.brand-link{display:flex;align-items:center;gap:10px}
.logo{height:42px;width:auto;display:block}

/* Menu toggle (mobile) */
.menu-toggle{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border:0;
  background:transparent;
  font-size:20px;
  width:44px;height:44px;
  border-radius:8px;
  cursor:pointer;
  color:var(--brand-1);
}

/* Nav links (mobile: hidden off-canvas style) */
.nav-links{
  position:fixed;
  top:70px; /* adjust based on navbar height */
  right:12px;
  width:92%;
  max-width:360px;
  background:var(--white);
  border-radius:12px;
  padding:12px;
  box-shadow:0 18px 44px rgba(6,20,40,0.12);
  transform:translateY(-8px);
  opacity:0;
  pointer-events:none;
  transition:opacity .18s ease, transform .22s ease;
}

/* When open, JS will add .open */
.nav-links.open{
  opacity:1;
  transform:translateY(0);
  pointer-events:auto;
}

/* Nav links list styling */
.nav-links a{
  display:block;
  padding:10px 12px;
  border-radius:8px;
  font-weight:700;
  color:var(--text);
  text-decoration:none;
  margin-bottom:6px;
}
.nav-links a:hover{
  background:rgba(11,18,35,0.03);
  color:var(--brand-1);
}

/* Phone CTA inside nav */
.navbar-button{
  display:inline-block;
  text-align:center;
  width:100%;
  padding:10px 12px;
  border-radius:8px;
  background:linear-gradient(90deg,var(--brand-2),var(--brand-1));
  color:#06223a;
  font-weight:900;
  margin-top:6px;
  box-shadow:0 10px 30px rgba(11,97,255,0.12);
}

/* Desktop: horizontal nav */
@media (min-width:768px){
  .menu-toggle{display:none}
  .nav-links{
    position:static;
    width:auto;
    max-width:none;
    background:transparent;
    padding:0;
    box-shadow:none;
    transform:none;
    opacity:1;
    pointer-events:auto;
    display:flex;
    align-items:center;
    gap:12px;
  }
  .nav-links a{margin:0;padding:8px 10px}
  .navbar-button{width:auto;padding:8px 12px}
}

/* Larger screens */
@media (min-width:1100px){
  .navbar-wrapper{padding:16px 24px}
  .logo{height:54px}
  .nav-links a{font-size:0.97rem}
  .navbar-button{padding:10px 14px}
}

/* Accessibility: reduce motion */
@media (prefers-reduced-motion: reduce){
  *{transition:none!important}
}
:root{
  --bg-grad: linear-gradient(180deg, #ffffff, #f9fbfe);
  --text: #0b1220;
  --muted: #4b5563;
  --accent1: #0b61ff;
  --accent2: #06b6d4;
  --white: #ffffff;
  --radius: 14px;
  --shadow: 0 12px 30px rgba(0,0,0,0.08);
  --max: 1200px;
}

/* Hero */
.hero{
  background: var(--bg-grad);
  color: var(--text);
  padding: 40px 16px;
}
.hero-wrapper{
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

/* Left Column */
.hero-left h1{
  margin: 0 0 10px;
  font-size: 2rem;
  line-height: 1.2;
}
.hero-left .highlight{
  color: var(--accent1);
  font-weight: 900;
}
.hero-left .italic-text{font-style: italic; font-weight: 600}
.tagline{
  color: var(--muted);
  margin: 8px 0 16px;
  font-size: 1rem;
  max-width: 48ch;
}
.cta-button{
  display: inline-block;
  margin-bottom: 16px;
  padding: 12px 16px;
  border-radius: 10px;
  background: linear-gradient(90deg,var(--accent2),var(--accent1));
  color: #fff;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 6px 18px rgba(0,0,0,0.15);
  transition: transform .16s ease, box-shadow .16s ease;
}
.cta-button:hover{
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(0,0,0,0.2);
}

.deals-heading{
  margin: 18px 0 10px;
  font-size: 1.2rem;
  font-weight: 800;
}
.features-list{
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}
.features-list li{
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text);
  font-size: 0.98rem;
}
.features-list i{
  width: 32px; height: 32px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 8px;
  font-size: 15px;
  color: #fff;
  background: linear-gradient(135deg,var(--accent1),var(--accent2));
  box-shadow: 0 6px 16px rgba(0,0,0,0.15);
}

/* Right Column (Form) */
.hero-right{display: grid; place-items: center}
.hero-form-wrapper{
  width: 100%;
  max-width: 420px;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 20px;
}
.form h3{margin: 0 0 6px; font-size: 1.3rem}
.form p{margin: 0 0 14px; color: var(--muted); font-size: 0.95rem}
.form label{display: block; margin: 10px 0 6px; font-weight: 600; font-size: 0.92rem}
.form input[type="text"],
.form input[type="tel"],
.form input[type="email"]{
  width: 100%;
  padding: 12px;
  border-radius: 8px;
  border: 1px solid #d1d5db;
  background: #f9fafb;
  font: inherit;
}
.form input:focus{
  border-color: var(--accent1);
  outline: none;
  box-shadow: 0 0 0 3px rgba(11,97,255,0.15);
}
.submit-button{
  width: 100%;
  margin-top: 14px;
  padding: 12px;
  border-radius: 8px;
  border: none;
  background: linear-gradient(90deg,var(--accent1),var(--accent2));
  color: #fff;
  font-weight: 700;
  cursor: pointer;
  transition: transform .16s ease, box-shadow .16s ease;
}
.submit-button:hover{
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(0,0,0,0.2);
}

/* Tablet */
@media (min-width: 768px){
  .hero-wrapper{flex-direction: row; align-items: flex-start; gap: 40px}
  .hero-left{flex: 1}
  .hero-right{flex: 1}
  .hero-left h1{font-size: 2.4rem}
  .features-list{grid-template-columns: repeat(2,1fr)}
}

/* Desktop */
@media (min-width: 1100px){
  .hero-left h1{font-size: 2.8rem}
  .tagline{font-size: 1.05rem}
}
/* Pricing section - mobile-first */
:root{
  --max-w: 1200px;
  --bg: #ffffff;
  --muted: #6b7280;
  --text: #0b1220;
  --card-bg: #fff;
  --accent-1: #0b61ff;
  --accent-2: #06b6d4;
  --radius: 12px;
  --shadow: 0 14px 40px rgba(7,12,25,0.06);
}

/* Section basics */
.pricing-section{
  background: var(--bg);
  padding: 32px 16px;
  box-sizing: border-box;
}
.centered-heading{
  text-align: center;
  margin: 0;
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--text);
}
.centered-subtext{
  text-align: center;
  margin: 8px 0 18px;
  color: var(--muted);
  font-size: 0.98rem;
  max-width: 60ch;
  margin-left: auto;
  margin-right: auto;
}

/* Grid */
.pricing-grid{
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  max-width: var(--max-w);
  margin: 18px auto 0;
}

/* Card */
.pricing-card-three{
  background: var(--card-bg);
  border-radius: var(--radius);
  padding: 18px;
  border: 1px solid rgba(11,18,35,0.04);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: transform .16s ease, box-shadow .16s ease;
}
.pricing-card-three:hover{
  transform: translateY(-6px);
  box-shadow: 0 26px 60px rgba(7,12,25,0.12);
}

/* Duration label */
.pricing-card-three .duration{
  font-size: 0.82rem;
  color: var(--muted);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

/* Title & price */
.pricing-card-three h3{
  margin: 0;
  font-size: 1.05rem;
  display:flex;
  align-items:center;
  gap:10px;
  color: var(--text);
}
.pricing-card-three p{margin:0;font-size:1rem;color:var(--muted)}
.text-span-2{
  font-weight:900;
  font-size:1.18rem;
  color:var(--text);
}

/* Features list */
.pricing-features{
  list-style:none;
  padding:0;
  margin: 6px 0 0;
  display:flex;
  flex-direction:column;
  gap:8px;
}
.pricing-features li{
  display:flex;
  align-items:center;
  gap:10px;
  color:var(--text);
  font-size:0.95rem;
}
.pricing-features i{
  width:28px;height:28px;
  display:inline-flex;align-items:center;justify-content:center;
  border-radius:6px;
  color:#fff;
  background: linear-gradient(135deg,var(--accent-1),var(--accent-2));
  box-shadow:0 8px 20px rgba(6,20,60,0.08);
  flex-shrink:0;
}

/* Button */
.pricing-btn{
  display:inline-flex;
  align-items:center;
  gap:10px;
  justify-content:center;
  padding:10px 12px;
  border-radius:10px;
  background:linear-gradient(90deg,var(--accent-2),var(--accent-1));
  color:#fff;
  font-weight:800;
  text-decoration:none;
  border:0;
  margin-top:8px;
  box-shadow: 0 10px 30px rgba(6,22,60,0.12);
  transition: transform .14s ease;
}
.pricing-btn:hover{transform:translateY(-3px)}

/* Small screens: full-width buttons */
@media (max-width:420px){
  .pricing-btn{width:100%}
}

/* Tablet: 2 columns */
@media (min-width:720px){
  .pricing-grid{grid-template-columns:repeat(2,1fr); gap:20px}
  .centered-heading{font-size:1.6rem}
}

/* Desktop: 4 columns */
@media (min-width:1100px){
  .pricing-grid{grid-template-columns:repeat(4,1fr); gap:24px}
  .pricing-section{padding:44px 32px}
  .pricing-card-three{padding:22px}
  .text-span-2{font-size:1.2rem}
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce){
  .pricing-card-three, .pricing-btn{transition:none}
}

/* Wrapper */
.quality-section{
  background:var(--bg);
  padding:36px 16px;
  box-sizing:border-box;
}
.quality-section .container{max-width:var(--max-w);margin:0 auto}

/* Layout */
.quality-wrapper{
  display:flex;
  flex-direction:column;
  gap:20px;
  align-items:center;
}

/* Image */
.quality-image{width:100%; max-width:720px; border-radius:12px; overflow:hidden; box-shadow:var(--shadow)}
.quality-image img{width:100%;height:auto;display:block;object-fit:cover}

/* Content */
.quality-content{width:100%; text-align:center; padding:6px 4px}
.quality-content h2{margin:0 0 8px;font-size:1.4rem;color:var(--text);line-height:1.12}
.quality-subtext{margin:0 0 16px;color:var(--muted);font-size:0.98rem;max-width:58ch;margin-left:auto;margin-right:auto}

/* Feature row */
.quality-feature{
  display:flex;
  align-items:flex-start;
  gap:12px;
  margin:12px 0 18px;
  justify-content:center;
  max-width:820px;
}
.quality-feature i{
  width:48px; height:48px; min-width:48px;
  display:flex; align-items:center; justify-content:center;
  border-radius:10px;
  color:#fff;
  background:linear-gradient(135deg,var(--accent-1),var(--accent-2));
  box-shadow:0 10px 26px rgba(6,20,60,0.08);
  font-size:20px;
}
.quality-feature h3{margin:0 0 6px;font-size:1.05rem;color:var(--text)}
.quality-feature p{margin:0;color:var(--muted);font-size:0.96rem;line-height:1.5}

/* CTA */
.quality-btn{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:10px 14px;
  border-radius:10px;
  background:linear-gradient(90deg,var(--accent-2),var(--accent-1));
  color:#fff;
  font-weight:800;
  text-decoration:none;
  box-shadow:0 10px 30px rgba(6,22,60,0.12);
  transition:transform .14s ease, box-shadow .14s ease;
}
.quality-btn:hover{transform:translateY(-3px);box-shadow:0 18px 44px rgba(6,22,60,0.18)}

/* Small screen tweaks */
@media (max-width:520px){
  .quality-feature{gap:10px;padding:0 8px;flex-direction:row;align-items:center}
  .quality-feature i{width:40px;height:40px;font-size:18px}
  .quality-content h2{font-size:1.2rem}
  .quality-subtext{font-size:0.95rem}
}

/* Tablet and desktop: image left, content right */
@media (min-width:768px){
  .quality-wrapper{
    flex-direction:row;
    align-items:center;
    justify-content:space-between;
    gap:28px;
  }
  .quality-image{width:48%}
  .quality-content{width:50%;text-align:left;padding:0}
  .quality-feature{justify-content:flex-start}
}

/* Larger screens */
@media (min-width:1100px){
  .quality-section{padding:56px 32px}
  .quality-content h2{font-size:1.7rem}
  .quality-feature i{width:56px;height:56px;font-size:22px}
  .quality-btn{padding:12px 16px}
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce){
  .quality-btn{transition:none}
}
/* Promo section - mobile-first */
:root{
  --promo-bg: #ffffff;
  --card-bg: #f8fbff;
  --text: #0b1220;
  --muted: #6b7280;
  --accent-1: #0b61ff;
  --accent-2: #06b6d4;
  --accent-text: #06223a;
  --radius: 14px;
  --shadow: 0 16px 40px rgba(7,12,25,0.06);
  --container-max: 1100px;
}

.promo-section{
  background: var(--promo-bg);
  padding: 28px 16px;
  box-sizing: border-box;
}
.promo-section .container{
  max-width: var(--container-max);
  margin: 0 auto;
}

/* Promo box */
.promo-box{
  background: linear-gradient(180deg, var(--card-bg), #ffffff);
  border-radius: var(--radius);
  padding: 20px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(11,18,35,0.04);
  text-align: center;
}

/* Headings & text */
.promo-heading{
  margin: 0 0 6px;
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.01em;
}
.promo-subheading{
  margin: 0 0 12px;
  color: var(--muted);
  font-weight: 600;
  font-size: 0.98rem;
}
.promo-desc{
  margin: 0 0 12px;
  color: var(--text);
  line-height: 1.5;
  font-size: 0.98rem;
}
.promo-price{
  margin: 8px 0 14px;
  font-size: 1.05rem;
  color: var(--text);
}
.promo-price strong{font-weight:900}

/* CTA button */
.promo-btn{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:12px 16px;
  border-radius:10px;
  background: linear-gradient(90deg, var(--accent-2), var(--accent-1));
  color: #fff;
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 10px 30px rgba(6,22,60,0.12);
  transition: transform .14s ease, box-shadow .14s ease;
}
.promo-btn i{font-size:1rem}
.promo-btn:hover{transform: translateY(-3px); box-shadow: 0 18px 40px rgba(6,22,60,0.18)}

/* Terms */
.promo-terms{
  margin:12px 0 0;
  color: var(--muted);
  font-size:0.82rem;
  line-height:1.4;
}

/* Small screens: full-width CTA */
@media (max-width:420px){
  .promo-box{padding:16px}
  .promo-btn{width:100%; justify-content:center}
  .promo-heading{font-size:1.2rem}
  .promo-desc{font-size:0.95rem}
}

/* Tablet and up */
@media (min-width:720px){
  .promo-box{
    padding:28px;

    align-items:center;
    gap:24px;
    text-align:left;
  }
  .promo-content{
    flex:1;
  }
  .promo-heading{font-size:1.6rem}
  .promo-subheading{font-size:1.03rem}
  .promo-btn{min-width:220px}
}

/* Desktop */
@media (min-width:1100px){
  .promo-box{padding:34px 36px; border-radius:18px}
  .promo-heading{font-size:1.8rem}
  .promo-desc{font-size:1rem}
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce){
  .promo-btn{transition:none}
}
/* Heading */
.section-heading{
  text-align:center;
  margin:0;
  font-size:1.5rem;
  font-weight:800;
  color:var(--text);
}
.section-subtext{
  text-align:center;
  margin:8px 0 18px;
  color:var(--muted);
  max-width:64ch;
  margin-left:auto;
  margin-right:auto;
  font-size:0.98rem;
}

/* Grid */
.why-choose-grid{
  display:grid;
  grid-template-columns:1fr;
  gap:16px;
  margin-top:16px;
}

/* Card */
.why-card{
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:12px;
  padding:18px;
  border-radius:var(--radius);
  background:linear-gradient(180deg, var(--card-bg), #fbfdff);
  box-shadow:var(--shadow);
  border:1px solid rgba(11,18,35,0.04);
  text-align:center;
  transition:transform .16s ease, box-shadow .16s ease;
}
.why-card:hover{
  transform:translateY(-6px);
  box-shadow:0 26px 60px rgba(7,12,25,0.12);
}

/* Icon */
.why-card i{
  width:56px;
  height:56px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border-radius:12px;
  font-size:20px;
  color:#fff;
  background:linear-gradient(135deg,var(--accent-1),var(--accent-2));
  box-shadow:0 10px 26px rgba(6,20,60,0.08);
  flex-shrink:0;
}

/* Text */
.why-card h3{
  margin:0;
  font-size:1.02rem;
  font-weight:800;
  color:var(--text);
}
.why-card p{
  margin:0;
  color:var(--muted);
  font-size:0.95rem;
  line-height:1.45;
}

/* Mobile tweaks */
@media (max-width:420px){
  .why-card{padding:14px}
  .why-card i{width:48px;height:48px;font-size:18px}
  .section-heading{font-size:1.35rem}
}

/* Tablet: 2 columns */
@media (min-width:720px){
  .why-choose-grid{grid-template-columns:repeat(2,1fr); gap:20px}
  .why-choose-section{padding:44px 20px}
  .section-heading{font-size:1.7rem}
}

/* Desktop: 4 columns */
@media (min-width:1100px){
  .why-choose-grid{grid-template-columns:repeat(4,1fr); gap:24px}
  .why-choose-section{padding:56px 32px}
  .why-card{padding:22px}
  .why-card i{width:64px;height:64px;font-size:22px}
  .why-card h3{font-size:1.05rem}
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce){
  .why-card{transition:none;transform:none}
}

/* Hero bottom promo — mobile-first */
.hero-bottom-wrapper{
  background: linear-gradient(180deg,#fbfdff,#ffffff);
  padding: 20px 12px;
  box-sizing: border-box;
}
.w-layout-blockcontainer{max-width:1200px;margin:0 auto}
.hero-bottom-section{
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:14px;
  justify-content:center;
  text-align:center;
  padding:12px;
}

/* Heading & subtext */
.heading-10{
  margin:0 0 6px;
  font-size:1.25rem;
  line-height:1.08;
  font-weight:800;
  color:#0b1220;
}
.hero-subtext{
  margin:0 0 8px;
  color:#556073;
  font-size:0.98rem;
  max-width:64ch;
}

/* Button */
.hero-button{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:10px 14px;
  border-radius:10px;
  background: linear-gradient(90deg, #06b6d4, #0b61ff);
  color:#fff;
  font-weight:800;
  text-decoration:none;
  box-shadow:0 10px 30px rgba(6,22,60,0.12);
  transition: transform .16s ease, box-shadow .16s ease;
}
.hero-button i{
  width:36px;height:36px;display:inline-flex;align-items:center;justify-content:center;
  background:rgba(255,255,255,0.12);color:#fff;border-radius:8px;font-size:16px;
}
.hero-button-text{font-size:0.98rem}

/* Hover / focus */
.hero-button:hover,
.hero-button:focus{
  transform:translateY(-3px);
  box-shadow:0 18px 40px rgba(6,22,60,0.18);
  outline:none;
}

/* Small screens tweak */
@media (max-width:480px){
  .heading-10{font-size:1.05rem}
  .hero-subtext{font-size:0.95rem}
  .hero-button{padding:10px 12px}
  .hero-button i{width:32px;height:32px;font-size:14px}
}

/* Tablet & desktop: inline layout */
@media (min-width:720px){
  .hero-bottom-section{
    flex-direction:row;
    align-items:center;
    justify-content:space-between;
    text-align:left;
    gap:24px;
    padding:18px 8px;
  }
  .div-block-9{flex:1}
  .hero-button{flex:0 0 auto; min-width:200px; margin-left:12px}
  .heading-10{font-size:1.5rem}
  .hero-subtext{font-size:1rem}
}

/* Larger screens */
@media (min-width:1100px){
  .hero-bottom-wrapper{padding:30px 20px}
  .heading-10{font-size:1.75rem}
  .hero-subtext{font-size:1.05rem}
  .hero-button{padding:12px 18px}
}

/* Reduced motion preference */
@media (prefers-reduced-motion: reduce){
  .hero-button{transition:none}
}


/* Section basics */
.padding-section{
  background: linear-gradient(180deg,#fbfdff,#ffffff);
  padding:28px 14px;
  box-sizing:border-box;
}
.w-layout-blockcontainer{max-width:var(--container-max);margin:0 auto;padding:0 8px}
.what-we-do-wrapper{
  display:flex;
  flex-direction:column;
  gap:18px;
  align-items:center;
}

/* Left content */
.div-block-8{width:100%;max-width:780px;text-align:center}
.heading-7{
  margin:0 0 10px;
  font-size:1.5rem;
  color:var(--text);
  font-weight:800;
  line-height:1.08;
}
.text-block-7{
  color:var(--muted);
  margin-bottom:14px;
  font-size:1rem;
  line-height:1.6;
  max-width:48ch;
}

/* CTA button */
.button-2.w-button{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:10px 14px;
  border-radius:10px;
  background:linear-gradient(90deg,var(--accent-2),var(--accent-1));
  color:#fff;
  font-weight:800;
  text-decoration:none;
  box-shadow:0 12px 32px rgba(6,22,60,0.12);
  transition:transform .14s ease, box-shadow .14s ease;
}
.button-2.w-button i{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:26px;height:26px;border-radius:6px;
  background:rgba(255,255,255,0.12);
  color:#fff;font-size:14px;
}
.button-2.w-button:hover{transform:translateY(-3px);box-shadow:0 20px 44px rgba(6,22,60,0.18)}

/* Image block (placeholder) */
.satellite-img{
  width:100%;
  max-width:720px;
  height:220px;
  border-radius:12px;
  background-image: url('../images/enjoying.webp');
  background-size:cover;
  background-position:center;
  box-shadow:var(--shadow);
  border:1px solid rgba(11,18,35,0.04);
}

/* Tablet & up: two-column layout */
@media (min-width:768px){
  .what-we-do-wrapper{
    flex-direction:row;
    align-items:center;
    justify-content:space-between;
    gap:28px;
  }
  .div-block-8{width:48%;text-align:left}
  .satellite-img{width:48%;height:320px}
  .heading-7{font-size:1.9rem}
  .text-block-7{font-size:1.02rem;max-width:40ch}
}

/* Desktop */
@media (min-width:1100px){
  .padding-section{padding:44px 20px}
  .satellite-img{height:420px}
  .heading-7{font-size:2.2rem}
  .button-2.w-button{padding:12px 16px}
}

/* Small screen adjustments */
@media (max-width:420px){
  .heading-7{font-size:1.25rem}
  .text-block-7{font-size:0.95rem}
  .satellite-img{height:180px}
  .button-2.w-button{width:100%;justify-content:center}
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce){
  .button-2.w-button{transition:none}
}

/* Testimonials - mobile-first */
:root{
  --max-w:1200px;
  --bg: #ffffff;
  --card-bg: #fff;
  --text: #0b1220;
  --muted: #556073;
  --accent: #0b61ff;
  --radius: 12px;
  --shadow: 0 14px 36px rgba(7,12,25,0.06);
}

/* Section wrapper */
.testimonials.padding-section{
  background: var(--bg);
  padding: 28px 16px;
  box-sizing: border-box;
}
.w-container{max-width:var(--max-w);margin:0 auto}

/* Heading */
.testimonial-heading{
  text-align:center;
  margin:0;
  font-size:1.45rem;
  font-weight:800;
  color:var(--text);
}
.testimonial-wrapper{margin-top:16px;display:grid;gap:14px;grid-template-columns:1fr}

/* Card */
.testimonial-card{
  background: linear-gradient(180deg, var(--card-bg), #fbfdff);
  border-radius:var(--radius);
  padding:16px;
  box-shadow:var(--shadow);
  border:1px solid rgba(11,18,35,0.04);
  display:flex;
  flex-direction:column;
  gap:12px;
  transition:transform .14s ease, box-shadow .14s ease;
}
.testimonial-card:hover{transform:translateY(-6px);box-shadow:0 26px 60px rgba(7,12,25,0.12)}

/* Quote text */
.testimonial-text{
  margin:0;
  color:var(--muted);
  font-size:0.98rem;
  line-height:1.6;
  font-style:normal;
}

/* Author row */
.testimonial-author{
  display:flex;
  gap:12px;
  align-items:center;
}
.testimonial-icon{
  width:52px;height:52px;display:inline-flex;align-items:center;justify-content:center;
  font-size:28px;border-radius:10px;
  color:#fff;background:linear-gradient(135deg,var(--accent),#06b6d4);
  box-shadow:0 10px 26px rgba(6,20,60,0.08);
  flex-shrink:0;
}
.testimonial-author h4{margin:0;font-size:1rem;color:var(--text);font-weight:700}
.testimonial-author span{display:block;font-size:0.9rem;color:var(--muted)}

/* Stars */
.stars{display:flex;gap:6px;margin-top:6px}
.stars i{color:#f6c85f;font-size:14px}

/* Small screens adjustments */
@media (max-width:420px){
  .testimonial-card{padding:14px}
  .testimonial-icon{width:44px;height:44px;font-size:22px}
  .testimonial-heading{font-size:1.25rem}
}

/* Tablet: two columns */
@media (min-width:720px){
  .testimonial-wrapper{grid-template-columns:repeat(2,1fr);gap:18px}
  .testimonials.padding-section{padding:36px 20px}
}

/* Desktop: three columns */
@media (min-width:1100px){
  .testimonial-wrapper{grid-template-columns:repeat(3,1fr);gap:22px}
  .testimonials.padding-section{padding:46px 32px}
  .testimonial-card{padding:18px}
  .testimonial-icon{width:56px;height:56px;font-size:30px}
  .testimonial-text{font-size:1rem}
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce){
  .testimonial-card{transition:none;transform:none}
}

/* Padding helper already used elsewhere */
.padding-section{padding:28px 16px;box-sizing:border-box}

/* Disclaimer section */
.disclaimer-section{
  background: linear-gradient(180deg,#fbfdff,#ffffff);
  padding-top:24px;
  padding-bottom:24px;
}
.disclaimer-heading{
  margin:0 0 8px;
  text-align:center;
  font-size:1.25rem;
  font-weight:800;
  color:var(--text);
}
.disclaimer-text{
  margin:0 auto;
  max-width:980px;
  color:var(--muted);
  font-size:0.95rem;
  line-height:1.6;
  text-align:left;
  padding:4px 12px;
}

/* Footer main */
.site-footer{
  background:#f6f6f6;
  color:var(--footer-text);
  padding:22px 12px 22px; /* bottom space for fixed call button */
  box-sizing:border-box;
}
.footer-inner{
  max-width:var(--max-w);
  margin:0 auto;
  display:flex;
  flex-direction:column;
  gap:12px;
  align-items:center;
  text-align:center;
}

/* Footer links */
.footer-links{
  display:flex;
  gap:10px;
  align-items:center;
  flex-wrap:wrap;
  font-weight:700;
  color:var(--footer-text);
}
.footer-links a{
  color:var(--footer-text);
  text-decoration:none;
  padding:6px 8px;
  border-radius:8px;
}
.footer-links a:hover{background:rgba(255,255,255,0.03)}
.footer-links .sep{opacity:0.35}

/* Footer info */
.footer-info{max-width:980px;color:rgba(230,242,251,0.9);font-size:0.95rem;line-height:1.5}
.footer-info a{color:#fff;text-decoration:underline}

/* Fixed Call Now button - full width at bottom */
.call-now-btn{
  position:fixed;
  left:0;
  right:0;
  bottom:0;
  z-index:99999;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:12px;
  padding:14px 18px;
  background: linear-gradient(90deg,var(--accent-2),var(--accent-1));
  color:#fff;
  font-weight:900;
  text-decoration:none;
  box-shadow: 0 -8px 30px rgba(2,8,23,0.24);
  transition: transform .12s ease, box-shadow .12s ease;
}
.call-now-btn i{font-size:18px;color:#fff;background:rgba(255,255,255,0.12);padding:8px;border-radius:8px}
.call-now-btn .phone-number{background:rgba(255,255,255,0.12);padding:6px 10px;border-radius:8px;color:#fff;margin-left:6px}
.call-now-btn:active{transform:translateY(1px)}

/* Make sure page content doesn't hide behind the fixed bar on small screens:
   (Applied earlier on footer via padding-bottom; add extra body bottom padding if needed) */
body{padding-bottom:72px}

/* Tablet and up: footer becomes multi-column, call button stays full width (optional change) */
@media (min-width:768px){
  .footer-inner{
    display:grid;
    grid-template-columns: 1fr auto;
    align-items:start;
    text-align:left;
    gap:20px;
  }
  .footer-links{order:2; justify-self:end}
  .footer-info{order:1}
  /* keep the call button full width on tablet as requested; if you want it to shrink on larger screens, override here */
  /* Example: to make it a fixed pill on the right on desktop, uncomment and adjust:
  .call-now-btn{left:auto;right:18px;bottom:18px;width:auto;padding:12px 16px;border-radius:12px}
  body{padding-bottom:0}
  */
}

/* Desktop larger screens */
@media (min-width:1100px){
  .disclaimer-text{font-size:1rem}
  .footer-info{font-size:0.96rem}
}

/* Print */
@media print{
  .call-now-btn{display:none}
  .site-footer{background:#fff;color:#000;padding:12px}
  .footer-links a{color:#000}
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce){
  .call-now-btn{transition:none}
}

/* Contact section - mobile first */
:root{
  --max-w:1200px;
  --bg: #ffffff;
  --muted: #586674;
  --text: #0b1220;
  --accent-1: #0b61ff;
  --accent-2: #06b6d4;
  --card-radius:12px;
  --shadow: 0 12px 36px rgba(7,12,25,0.06);
}

/* Helpers */
.padding-section{padding:28px 16px;box-sizing:border-box}
.sr-only{position:absolute!important;height:1px;width:1px;overflow:hidden;clip:rect(1px,1px,1px,1px);white-space:nowrap}

/* Wrapper */
.contact-wrapper{
  max-width:var(--max-w);
  margin:0 auto;
  display:flex;
  flex-direction:column;
  gap:28px;
}

/* Contact info */
.contact-info{
  background:linear-gradient(180deg,#fbfdff,#ffffff);
  padding:18px;
  border-radius:var(--card-radius);
  box-shadow:var(--shadow);
  border:1px solid rgba(11,18,35,0.04);
}
.contact-info h2{margin:0 0 8px;font-size:1.35rem;color:var(--text)}
.contact-info p{margin:0 0 12px;color:var(--muted)}
.contact-list{list-style:none;padding:0;margin:0;display:flex;flex-direction:column;gap:8px}
.contact-list li{display:flex;align-items:center;gap:10px;color:var(--text);font-size:0.96rem}
.contact-list a{color:var(--accent-1);text-decoration:none;font-weight:700}
.contact-list i{color:var(--white);display:inline-flex;align-items:center;justify-content:center;width:36px;height:36px;border-radius:8px;background:linear-gradient(135deg,var(--accent-1),var(--accent-2));flex-shrink:0}

/* Contact form */
.contact-form{
  background:linear-gradient(180deg,#fff,#fbfdff);
  padding:18px;
  border-radius:var(--card-radius);
  box-shadow:var(--shadow);
  border:1px solid rgba(11,18,35,0.04);
}
.contact-form h2{margin:0 0 8px;font-size:1.35rem;color:var(--text)}
.contact-form form{display:flex;flex-direction:column;gap:12px}
.form-row input[type="text"],
.form-row input[type="email"],
.form-row input[type="tel"],
.form-row textarea{
  width:100%;
  padding:12px;
  border-radius:10px;
  border:1px solid #e2e8f0;
  background:#fbfdff;
  font:inherit;
  font-size:0.96rem;
  color:var(--text);
  outline:none;
  transition:border-color .14s ease, box-shadow .14s ease;
}
.form-row input::placeholder,
.form-row textarea::placeholder{color:#94a3b8}
.form-row input:focus, .form-row textarea:focus{
  border-color: var(--accent-1);
  box-shadow:0 0 0 4px rgba(11,97,255,0.08);
}
.contact-btn{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:12px 14px;
  border-radius:10px;
  background:linear-gradient(90deg,var(--accent-2),var(--accent-1));
  color:#fff;
  font-weight:800;
  border: none;
  cursor:pointer;
  width:fit-content;
  transition:transform .12s ease, box-shadow .12s ease;
}
.contact-btn i{color:#fff;background:rgba(255,255,255,0.12);padding:6px;border-radius:8px}
.contact-btn:hover{transform:translateY(-2px);box-shadow:0 14px 36px rgba(6,22,60,0.12)}

/* Map */
.contact-map{margin-top:18px;border-radius:10px;overflow:hidden;box-shadow:var(--shadow);border:1px solid rgba(11,18,35,0.04)}

/* Layout on tablet+ */
@media (min-width:768px){
  .contact-wrapper{flex-direction:row;align-items:flex-start;gap:24px}
  .contact-info{flex:0 0 38%}
  .contact-form{flex:1}
  .contact-map{margin-top:24px}
}

/* Desktop */
@media (min-width:1100px){
  .padding-section{padding:44px 32px}
  .contact-info h2,.contact-form h2{font-size:1.5rem}
  .form-row input,.form-row textarea{font-size:1rem}
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce){
  *{transition:none!important}
}