/* ===== Menu + header + basic hero responsive styles ===== */

/* Variables */
:root{
  --bg: #ffffff;
  --text: #0b1220;
  --muted: #6b7280;
  --accent1: #0b61ff;
  --accent2: #06b6d4;
  --hero-bg: linear-gradient(180deg,#071226 0%, #021025 100%);
  --hero-text: #ffffff;
  --glass: rgba(255,255,255,0.04);
  --container-max: 1200px;
}

/* Reset basics */
*{box-sizing:border-box}
html,body{margin:0;padding:0;font-family:'Lato',system-ui,-apple-system,"Segoe UI",Roboto,Arial;color:var(--text)}
a{color:inherit;text-decoration:none}
img{max-width:100%;height:auto;display:block}

/* Header bar */
.header-bar{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  padding:12px 14px;
  background:#fff;
  box-shadow:0 6px 20px rgba(10,15,30,0.06);
  position:relative;
  z-index:50;
}

/* Logo */
.logo img{display:block}

/* Menu toggle (mobile) */
.menu-toggle{
  display:flex;
  align-items:center;
  justify-content:center;
  width:42px;
  height:42px;
  border-radius:8px;
  background:transparent;
  border:1px solid rgba(11,18,35,0.04);
  color:var(--accent1);
  cursor:pointer;
  font-size:18px;
}

/* Nav drawer - hidden on mobile by default */
.nav-links{
  position:fixed;
  top:72px; /* below header */
  right:12px;
  width:92%;
  max-width:360px;
  background:#ffffff;
  border-radius:12px;
  padding:12px;
  box-shadow:0 18px 44px rgba(6,20,40,0.12);
  opacity:0;
  transform:translateY(-10px) scale(.995);
  pointer-events:none;
  transition:opacity .18s ease, transform .18s ease;
}

/* When JS toggles the menu, add .open on #navbarMenu */
.nav-links.open{
  opacity:1;
  transform:translateY(0) scale(1);
  pointer-events:auto;
}

/* Menu list */
.nav-links ul{list-style:none;margin:0;padding:6px;display:flex;flex-direction:column;gap:6px}
.nav-links li{margin:0}
.nav-links a{
  display:block;
  padding:10px 12px;
  border-radius:8px;
  font-weight:600;
  color:var(--text);
}
.nav-links a:hover,
.nav-links a:focus{background:var(--glass); outline:none}

/* Header call button */
.header-call{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:8px 10px;
  background:linear-gradient(90deg,var(--accent1),var(--accent2));
  color:#fff;
  border-radius:10px;
  font-weight:700;
  box-shadow:0 10px 30px rgba(11,24,60,0.12);
}
.header-call .call-number{font-variant-numeric:tabular-nums;font-weight:700}

/* Hero area (simple responsive layout) */
.hero-container{
  display:flex;
  flex-direction:column;
  gap:16px;
  align-items:center;
  justify-content:center;
  padding:28px 16px 48px;
  background:var(--hero-bg);
  color:var(--hero-text);
}
.hero-image{width:100%; max-width:700px; border-radius:12px; overflow:hidden; box-shadow:0 24px 56px rgba(0,0,0,0.45)}
.hero-content{max-width:720px;text-align:center}
.hero-content h1{font-size:1.4rem;margin:6px 0 10px}
.hero-content p{color:rgba(255,255,255,0.88);margin:0 0 14px}
.cta-button{display:inline-block;padding:10px 14px;border-radius:10px;background:linear-gradient(90deg,var(--accent2),var(--accent1));color:#fff;font-weight:700}

/* Tablet and up: show horizontal nav, hide drawer toggle */
@media (min-width:768px){
  .menu-toggle{display:none}
  .nav-links{
    position:static;
    transform:none;
    opacity:1;
    pointer-events:auto;
    background:transparent;
    box-shadow:none;
    padding:0;
    max-width:1000px;
  }
  .nav-links ul{flex-direction:row;gap:12px;align-items:center}
  .nav-links a{padding:6px 8px;color:var(--text); border-radius:6px}
  .nav-links a:hover{background:transparent;color:var(--accent1)}

  .header-bar{padding:14px 28px}
  .hero-container{
    flex-direction:row;
    align-items:center;
    justify-content:space-between;
    padding:44px 28px 72px;
  }
  .hero-image{width:48%}
  .hero-content{width:48%;text-align:left}
  .hero-content h1{font-size:2rem}
}

/* Large screens */
@media (min-width:1100px){
  .header-bar{padding:18px 48px}
  .hero-container{padding:72px 48px 96px}
  .hero-content h1{font-size:2.6rem}
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce){
  *{transition:none!important}
}
/* Section container */
.features-section{
  padding:32px 16px;
  background:linear-gradient(180deg,#f9fbfe 0%, #ffffff 100%);
}
.features-section .container{
  max-width:var(--container-max);
  margin:0 auto;
}

/* Heading */
.features-section h2{
  font-size:1.35rem;
  margin:0 0 14px;
  text-align:center;
  color:var(--text);
  letter-spacing:-0.01em;
}
@media (min-width:900px){
  .features-section h2{font-size:1.6rem}
}

/* Grid */
.features-grid{
  display:grid;
  grid-template-columns:1fr;
  gap:16px;
  margin-top:12px;
}

/* Feature box */
.feature-box{
  /*display:flex;*/
  align-items:flex-start;
  gap:12px;
  padding:14px;
  border-radius:12px;
  background:linear-gradient(180deg, #fff, #fbfdff);
  box-shadow:var(--shadow);
  border:1px solid rgba(11,18,35,0.04);
  transition:transform .16s ease, box-shadow .16s ease;
}
.feature-box:hover{
  transform:translateY(-6px);
  box-shadow:0 22px 50px rgba(7,12,25,0.12);
}

/* Icon */
.feature-box i{
  width:48px;
  min-width:48px;
  height:48px;
  border-radius:10px;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:20px;
  color:var(--white);
  background:linear-gradient(135deg, var(--accent-1), var(--accent-2));
  box-shadow:0 8px 22px rgba(6,20,60,0.08);
}

/* Title + paragraph */
.feature-box h3{
  margin:0 0 6px;
  font-size:1rem;
  font-weight:700;
  color:var(--text);
}
.feature-box p{
  margin:0;
  color:var(--muted);
  font-size:0.95rem;
  line-height:1.42;
}

/* Make the icon visually separate on small screens (optional stacked look) */
@media (max-width:420px){
  .feature-box{gap:10px;padding:12px}
  .feature-box i{width:44px;height:44px;font-size:18px}
  .feature-box h3{font-size:0.98rem}
  .feature-box p{font-size:0.93rem}
}

/* Larger layouts: 2 columns then 4 */
@media (min-width:700px){
  .features-grid{grid-template-columns:repeat(2, 1fr); gap:18px}
  .features-section{padding:40px 20px}
}

@media (min-width:1100px){
  .features-grid{grid-template-columns:repeat(4, 1fr); gap:22px}
  .features-section{padding:56px 32px}
}

/* Accessibility: reduce motion */
@media (prefers-reduced-motion: reduce){
  .feature-box{transition:none; transform:none}
}

/* Utility: container helper (if you do not already have one) */
.container{width:calc(100% - 32px); max-width:var(--container-max); margin:0 auto}

/* Paragraphs */
.legal-section p{
  margin:0 0 12px;
  color:var(--muted);
  font-size:0.98rem;
  line-height:1.6;
}

/* Link / emphasis utility (if needed inside copy) */
.legal-section a{
  color: #0b61ff;
  text-decoration:underline;
}

/* Slightly bigger layout on tablets */
@media (min-width:720px){
  .legal-section{
    padding:36px 28px;
    margin:24px auto;
    border-radius:12px;
  }
  .legal-section h1{font-size:1.5rem}
  .legal-section p{font-size:1rem}
}

/* Desktop comfortable reading width */
@media (min-width:1100px){
  .legal-section{
    padding:44px 36px;
    max-width:1100px;
  }
  .legal-section h1{font-size:1.65rem}
  .legal-section p{font-size:1.03rem; max-width:980px}
}

/* Print-friendly tweak */
@media print{
  .legal-section{box-shadow:none;border:0;padding:12px}
  .legal-section h1{color:#000}
  .legal-section p{color:#000}
}

/* Reduced motion preference */
@media (prefers-reduced-motion: reduce){
  *{transition:none!important}
}

/* Info Section */
.info-section{
  background:#f9fbfe;
  padding:32px 16px;
}
.info-content{
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  gap:20px;
  max-width:1200px;
  margin:0 auto;
}

/* Text block */
.info-text{
  flex:1;
  text-align:center;
}
.info-text h2{
  font-size:1.35rem;
  margin:0 0 12px;
  font-weight:700;
  color:#0b1220;
}
.info-text p{
  color:#6b7280;
  font-size:0.96rem;
  line-height:1.55;
  margin:0 0 14px;
}
.info-text ul{
  list-style:none;
  padding:0;
  margin:0 0 16px;
  display:flex;
  flex-direction:column;
  gap:8px;
  text-align:left;
}
.info-text li{
  font-size:0.95rem;
  color:#0b1220;
  display:flex;
  align-items:center;
  gap:8px;
}
.info-text li i{
  color:#06b6d4;
  font-size:1rem;
}

/* Call-to-action button */
.info-text .cta-button{
  display:inline-block;
  padding:10px 16px;
  border-radius:8px;
  background:linear-gradient(90deg,#0b61ff,#06b6d4);
  color:#fff;
  font-weight:700;
  box-shadow:0 8px 24px rgba(0,0,0,0.12);
}

/* Image block */
.info-image{
  flex:1;
  max-width:480px;
}
.info-image img{
  width:100%;
  border-radius:12px;
  box-shadow:0 20px 40px rgba(0,0,0,0.12);
}

/* Tablet and up */
@media (min-width:768px){
  .info-content{
    flex-direction:row;
    align-items:center;
    text-align:left;
    gap:32px;
  }
  .info-text h2{font-size:1.6rem}
  .info-text p{font-size:1rem}
}

/* Large screens */
@media (min-width:1100px){
  .info-section{padding:56px 32px}
  .info-text h2{font-size:1.9rem}
  .info-text p{font-size:1.05rem}
}

/* Section wrapper */
.difference-section{
  background:var(--page-bg);
  padding:36px 16px;
}
.difference-section .container{
  max-width:var(--max-width);
  margin:0 auto;
}

/* Heading */
.difference-section h2{
  margin:0;
  font-size:1.35rem;
  font-weight:700;
  text-align:center;
  color:var(--text);
  letter-spacing:-0.01em;
}

/* Grid layout */
.difference-grid{
  margin-top:18px;
  display:grid;
  grid-template-columns:1fr;
  gap:14px;
}

/* Card */
.diff-card{
  /*display:flex;*/
  gap:14px;
  align-items:flex-start;
  padding:14px;
  border-radius:12px;
  background:linear-gradient(180deg,#fff,#fbfdff);
  box-shadow:var(--elev);
  border:1px solid rgba(11,18,35,0.04);
  transition:transform .16s ease, box-shadow .16s ease;
}
.diff-card:hover{
  transform:translateY(-8px);
  box-shadow:0 26px 60px rgba(7,12,25,0.12);
}

/* Icon */
.diff-card i{
  width:56px;
  min-width:56px;
  height:56px;
  border-radius:10px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  font-size:20px;
  color:#fff;
  background:linear-gradient(135deg,var(--accent1),var(--accent2));
  box-shadow:0 10px 26px rgba(6,20,60,0.08);
}

/* Text */
.diff-card h3{
  margin:0 0 6px;
  font-size:1rem;
  font-weight:700;
}
.diff-card p{
  margin:0;
  color:var(--muted);
  font-size:0.95rem;
  line-height:1.5;
}

/* Smaller screens tweak */
@media (max-width:420px){
  .diff-card{padding:12px;gap:10px}
  .diff-card i{width:48px;height:48px;font-size:18px}
  .difference-section{padding:24px 12px}
}

/* Tablet: two columns */
@media (min-width:720px){
  .difference-grid{grid-template-columns:repeat(2,1fr); gap:18px}
  .difference-section{padding:44px 20px}
  .difference-section h2{font-size:1.6rem}
}

/* Desktop: four columns */
@media (min-width:1100px){
  .difference-grid{grid-template-columns:repeat(4,1fr); gap:22px}
  .difference-section{padding:56px 32px}
  .diff-card i{width:64px;height:64px;font-size:22px}
  .diff-card h3{font-size:1.05rem; padding-top: 20px;}
}

/* Accessibility - reduce motion */
@media (prefers-reduced-motion: reduce){
  .diff-card{transition:none; transform:none}
}

/* Parallax CTA section - mobile first */
.parallax-cta{
  position:relative;
  overflow:hidden;
  /* Replace the URL below with your compressed hero image (use WebP when possible) */
  background-image: url("../images/logo/cta.jpg");
  background-size:cover;
  background-position:center;
  background-attachment:fixed; /* lightweight parallax on desktop */
  min-height:320px;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:32px 12px;
}

/* semi-opaque overlay for contrast */
.parallax-cta .overlay{
  width:100%;
  height:100%;
  display:flex;
  align-items:center;
  justify-content:center;
  background:linear-gradient(180deg, rgba(3,6,12,0.48), rgba(3,6,12,0.42));
  /* Backdrop blur for supported browsers (optional visual polish) */
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
  padding:28px 12px;
  box-sizing:border-box;
}

/* Content box */
.parallax-cta .content{
  max-width:980px;
  width:100%;
  text-align:center;
  color:#ffffff;
  padding:18px;
}

/* Headline */
.parallax-cta h2{
  margin:0 0 10px;
  font-size:1.25rem;
  line-height:1.06;
  font-weight:700;
  letter-spacing:-0.01em;
}

/* Paragraph */
.parallax-cta p{
  margin:0 0 16px;
  font-size:0.98rem;
  color: rgba(255,255,255,0.92);
  line-height:1.55;
}

/* CTA button */
.parallax-cta .cta-btn{
  display:inline-block;
  padding:10px 16px;
  border-radius:10px;
  font-weight:700;
  text-decoration:none;
  color:#06223a;
  background:linear-gradient(90deg,#06b6d4,#0b61ff);
  box-shadow:0 10px 28px rgba(6,22,60,0.18);
  transition:transform .16s ease, box-shadow .16s ease;
}
.parallax-cta .cta-btn:focus,
.parallax-cta .cta-btn:hover{
  transform:translateY(-4px);
  box-shadow:0 18px 40px rgba(6,22,60,0.22);
  outline:none;
}

/* Small screens tweak */
@media (max-width:420px){
  .parallax-cta{min-height:280px;padding:22px 10px}
  .parallax-cta .content{padding:12px}
  .parallax-cta h2{font-size:1.05rem}
  .parallax-cta p{font-size:0.95rem}
  .parallax-cta .cta-btn{padding:10px 14px}
}

/* Tablet and up: larger text and remove background-attachment fixed for mobile performance */
@media (min-width:720px){
  .parallax-cta{background-attachment:scroll} /* avoid fixed on many mobile browsers */
  .parallax-cta h2{font-size:1.6rem}
  .parallax-cta p{font-size:1.03rem}
  .parallax-cta .content{text-align:center;padding:22px}
  .parallax-cta .cta-btn{padding:12px 18px}
}

/* Desktop: restore subtle parallax (fixed) for supported browsers */
@media (min-width:1100px){
  .parallax-cta{background-attachment:fixed; min-height:420px; padding:48px 20px}
  .parallax-cta h2{font-size:2.1rem}
  .parallax-cta p{font-size:1.05rem; max-width:780px; margin-left:auto;margin-right:auto}
}

/* Reduced motion preference */
@media (prefers-reduced-motion: reduce){
  .parallax-cta .cta-btn,
  .parallax-cta .overlay,
  .parallax-cta{transition:none!important}
  .parallax-cta{background-attachment:scroll}
}

/* Base */
.testimonials-section{
  padding:32px 16px;
  background:linear-gradient(180deg,#fbfdff 0%, #ffffff 100%);
}
.testimonials-section .container{max-width:var(--max-width);margin:0 auto}
.testimonials-section h2{
  text-align:center;
  margin:0;
  font-size:1.35rem;
  font-weight:700;
  color:var(--text);
  letter-spacing:-0.01em;
}

/* Grid */
.testimonials-grid{
  margin-top:18px;
  display:grid;
  grid-template-columns:1fr;
  gap:14px;
}

/* Card */
.testimonial-card{
  background:var(--card-bg);
  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:10px;
  transition:transform .16s ease, box-shadow .16s ease;
}
.testimonial-card:hover{
  transform:translateY(-6px);
  box-shadow:0 28px 60px rgba(7,12,25,0.12);
}

/* Quote icon */
.testimonial-card i{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:40px;
  height:40px;
  border-radius:8px;
  background:linear-gradient(135deg,var(--accent),#06b6d4);
  font-size:18px;
  box-shadow:0 8px 20px rgba(6,20,60,0.08);
}

/* Text */
.testimonial-card p{
  margin:0;
  color:var(--muted);
  font-size:0.98rem;
  line-height:1.55;
}
.testimonial-card h4{
  margin:0;
  font-size:0.95rem;
  color:var(--text);
  font-weight:700;
  opacity:0.95;
  text-align:right;
}

/* Small screen tweak */
@media (max-width:480px){
  .testimonial-card{padding:14px}
  .testimonial-card i{width:36px;height:36px;font-size:16px}
  .testimonials-section{padding:28px 12px}
}

/* Tablet: two columns */
@media (min-width:720px){
  .testimonials-grid{grid-template-columns:repeat(2,1fr); gap:18px}
  .testimonials-section{padding:44px 20px}
  .testimonials-section h2{font-size:1.6rem}
  .testimonial-card h4{text-align:left}
}

/* Desktop: three columns */
@media (min-width:1100px){
  .testimonials-grid{grid-template-columns:repeat(3,1fr); gap:22px}
  .testimonials-section{padding:56px 32px}
  .testimonial-card{padding:20px}
  .testimonial-card i{width:48px;height:48px;font-size:20px}
}

/* Reduce motion */
@media (prefers-reduced-motion: reduce){
  .testimonial-card{transition:none;transform:none}
}
/* Process Section - How it Works */
.process-modern{
  position:relative;
  overflow:hidden;
  padding:40px 16px;
  color:#fff;
  text-align:center;
}

/* Background image with overlay */
.process-bg{
  position:absolute;
  top:0; left:0;
  width:100%; height:100%;
  z-index:-1;
}
.process-bg img{
  width:100%; height:100%;
  object-fit:cover;
  filter:brightness(0.4); /* darken for text contrast */
}

/* Content */
.process-content{
  max-width:1100px;
  margin:0 auto;
}
.process-content h2{
  font-size:1.5rem;
  margin:0 0 8px;
  font-weight:700;
}
.process-content .subtitle{
  margin:0 0 24px;
  font-size:1rem;
  color:rgba(255,255,255,0.9);
}

/* Steps grid */
.steps{
  display:grid;
  grid-template-columns:1fr;
  gap:18px;
  margin:0 0 28px;
}
.step{
  display:flex;
  align-items:flex-start;
  gap:14px;
  background:rgba(255,255,255,0.08);
  border-radius:12px;
  padding:14px;
  text-align:left;
}
.step-number{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:36px; height:36px;
  min-width:36px;
  border-radius:50%;
  background:linear-gradient(135deg,#06b6d4,#0b61ff);
  font-weight:700;
  font-size:1rem;
  color:#fff;
  box-shadow:0 6px 16px rgba(0,0,0,0.25);
}
.step p{
  margin:0;
  font-size:0.95rem;
  line-height:1.5;
  color:#f1f5f9;
}

/* CTA button */
.process-btn{
  display:inline-block;
  padding:12px 18px;
  border-radius:10px;
  font-weight:700;
  text-decoration:none;
  background:linear-gradient(90deg,#0b61ff,#06b6d4);
  color:#fff;
  box-shadow:0 8px 28px rgba(0,0,0,0.2);
  transition:transform .16s ease, box-shadow .16s ease;
}
.process-btn:hover,
.process-btn:focus{
  transform:translateY(-3px);
  box-shadow:0 14px 36px rgba(0,0,0,0.3);
}

/* Tablet and up */
@media (min-width:720px){
  .process-content h2{font-size:1.9rem}
  .steps{grid-template-columns:repeat(3,1fr); gap:20px; text-align:left}
  .step{flex-direction:column; align-items:flex-start; text-align:left}
  .step-number{margin-bottom:8px}
}

/* Desktop */
@media (min-width:1100px){
  .process-modern{padding:72px 32px}
  .process-content h2{font-size:2.2rem}
  .process-content .subtitle{font-size:1.1rem}
  .step p{font-size:1rem}
}
/* Advantages + FAQ section */
.advantages-faq-section{
  background:#f9fbfe;
  padding:40px 16px;
}
.adv-faq-wrapper{
  display:flex;
  flex-direction:column;
  gap:32px;
  max-width:1200px;
  margin:0 auto;
}

/* Headings */
.advantages-col h2,
.faq-col h2{
  font-size:1.35rem;
  margin:0 0 16px;
  color:#0b1220;
  font-weight:700;
  letter-spacing:-0.01em;
}

/* Advantages list */
.advantages-list{
  list-style:none;
  padding:0;
  margin:0;
  display:flex;
  flex-direction:column;
  gap:12px;
}
.advantages-list li{
  display:flex;
  align-items:flex-start;
  gap:10px;
  font-size:0.96rem;
  color:#374151;
}
.advantages-list i{
  width:32px; height:32px;
  display:flex; align-items:center; justify-content:center;
  border-radius:8px;
  font-size:14px;
  color:#fff;
  background:linear-gradient(135deg,#0b61ff,#06b6d4);
  box-shadow:0 6px 16px rgba(0,0,0,0.1);
  flex-shrink:0;
}

/* FAQ styles */
.faq-item{
  border-bottom:1px solid rgba(0,0,0,0.08);
  padding:10px 0;
}
.faq-question{
  width:100%;
  text-align:left;
  background:none;
  border:0;
  font-size:1rem;
  font-weight:600;
  padding:10px 0;
  cursor:pointer;
  color:#0b1220;
  display:flex;
  justify-content:space-between;
  align-items:center;
}
.faq-question:after{
  content:"+";
  font-weight:700;
  transition:transform .2s ease;
}
.faq-item.active .faq-question:after{
  content:"−";
}
.faq-answer{
  max-height:0;
  overflow:hidden;
  font-size:0.95rem;
  color:#6b7280;
  line-height:1.5;
  transition:max-height .3s ease, padding .3s ease;
}
.faq-item.active .faq-answer{
  max-height:200px;
  padding:8px 0 12px;
}

/* Tablet and up */
@media (min-width:768px){
  .adv-faq-wrapper{
    flex-direction:row;
    align-items:flex-start;
    gap:40px;
  }
  .advantages-col, .faq-col{
    flex:1;
  }
  .advantages-col h2,
  .faq-col h2{font-size:1.6rem}
}

/* Desktop */
@media (min-width:1100px){
  .advantages-faq-section{padding:56px 32px}
  .advantages-col h2,
  .faq-col h2{font-size:1.9rem}
  .advantages-list li{font-size:1rem}
}

/* Footer - mobile-first */
.site-footer{
  --bg: #071226;
  --muted: #b4c1cc;
  --muted-2: #9fb2c8;
  --accent: #06b6d4;
  --accent-2: #0b61ff;
  --max-w: 1200px;
  background: linear-gradient(180deg, #051227 0%, #071426 100%);
  color: #e6f2fb;
  padding:20px 12px 80px; /* extra bottom for call bar */
  position:relative;
  box-sizing:border-box;
  font-size:0.95rem;
}

/* Container */
.footer-content{
  max-width:var(--max-w);
  margin:0 auto;
  display:flex;
  flex-direction:column;
  gap:18px;
}

/* Disclaimer */
.site-footer .disclaimer{
  background:rgba(255,255,255,0.03);
  border-radius:10px;
  padding:12px;
  color:var(--muted);
  line-height:1.6;
  font-size:0.95rem;
  border:1px solid rgba(255,255,255,0.03);
}
.site-footer .disclaimer strong{color:#fff}

/* Company info */
.company-info{
  display:flex;
  flex-direction:column;
  gap:6px;
  color:var(--muted-2);
  font-size:0.95rem;
}
.company-info a{color:#fff;text-decoration:underline}

/* Footer links */
.footer-links{
  display:flex;
  gap:8px;
  flex-wrap:wrap;
  align-items:center;
  color:var(--muted-2);
  font-weight:600;
}
.footer-links a{
  color:var(--muted-2);
  text-decoration:none;
  padding:6px 8px;
  border-radius:6px;
}
.footer-links a:hover{color:#fff;background:rgba(255,255,255,0.03)}
.footer-links .sep{opacity:0.35; margin:0 6px; color:var(--muted-2)}

/* Fixed call bar (mobile-first visible) */
.call-now-bar{
  position:fixed;
  left:12px;
  right:12px;
  bottom:12px;
  z-index:9999;
  display:flex;
  justify-content:center;
  pointer-events:auto;
}
.call-now-bar .call-link{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  width:100%;
  max-width:820px;
  padding:12px 16px;
  border-radius:12px;
  background:linear-gradient(90deg,var(--accent),var(--accent-2));
  color:#06223a;
  font-weight:800;
  text-decoration:none;
  box-shadow:0 14px 40px rgba(6,22,60,0.22);
  transform:translateY(0);
  transition:transform .18s ease, box-shadow .18s ease;
}
.call-now-bar{
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 9999; /* stays on top */
  background: linear-gradient(90deg, #0b61ff, #06b6d4); /* brand gradient */
  text-align: center;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.15);
}

.call-now-bar a{
  display: block;
  width: 100%;
  padding: 14px 20px;
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
}

.call-now-bar a:hover{
  background: linear-gradient(90deg, #06b6d4, #0b61ff);
}

/* Desktop layout: three-column footer, hide fixed call bar (or show less prominent) */
@media (min-width:768px){
  .site-footer{padding:28px 20px 32px}
  .footer-content{
    display:grid;
    grid-template-columns: 1.6fr 1fr 1fr;
    gap:24px;
    align-items:start;
  }
  .call-now-bar{right:32px;left:auto;bottom:18px;width:auto;pointer-events:none; /* keep visually, but not clickable overlay */ }
  .call-now-bar .call-link{pointer-events:auto; width:auto; min-width:220px}
}

/* Large desktop: align center and reduce prominence of call bar */
@media (min-width:1100px){
  .site-footer{padding:36px 40px 40px}
  .footer-content{grid-template-columns:2fr 1fr 1fr; gap:36px}
  .disclaimer{padding:18px}
  /* move call bar to bottom-right as a subtle pill */
  .call-now-bar{left:auto; right:32px; bottom:28px; width:auto}
  .call-now-bar .call-link{padding:10px 14px; box-shadow:0 10px 28px rgba(6,22,60,0.12)}
}

/* Print styles */
@media print{
  .site-footer{background:#fff;color:#000;padding:12px}
  .call-now-bar{display:none}
  .disclaimer, .company-info, .footer-links{box-shadow:none;border:none}
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce){
  .call-now-bar .call-link{transition:none}
}

/* Contact Section */
.contact-section{
  background:#f9fbfe;
  padding:40px 16px;
}
.contact-wrapper{
  display:flex;
  flex-direction:column;
  gap:32px;
  max-width:1200px;
  margin:0 auto;
}

/* Contact Info */
.contact-info h3{
  font-size:1.3rem;
  margin:0 0 16px;
  font-weight:700;
  color:#0b1220;
}
.contact-info p{
  margin:0 0 12px;
  color:#374151;
  font-size:0.95rem;
  line-height:1.5;
}
.contact-info i{
  color:#0b61ff;
  margin-right:8px;
}

/* Contact Form */
.contact-form h3{
  font-size:1.3rem;
  margin:0 0 16px;
  font-weight:700;
  color:#0b1220;
}
.contact-form form{
  display:flex;
  flex-direction:column;
  gap:14px;
}
.form-group input,
.form-group textarea{
  width:100%;
  padding:12px;
  border:1px solid #d1d5db;
  border-radius:8px;
  font-size:0.95rem;
  font-family:inherit;
  transition:border-color .2s ease, box-shadow .2s ease;
}
.form-group input:focus,
.form-group textarea:focus{
  border-color:#0b61ff;
  box-shadow:0 0 0 3px rgba(11,97,255,0.15);
  outline:none;
}
.contact-btn{
  background:linear-gradient(90deg,#0b61ff,#06b6d4);
  color:#fff;
  padding:12px;
  font-weight:700;
  font-size:1rem;
  border:none;
  border-radius:8px;
  cursor:pointer;
  transition:transform .15s ease, box-shadow .15s ease;
}
.contact-btn:hover{
  transform:translateY(-2px);
  box-shadow:0 6px 18px rgba(0,0,0,0.15);
}

/* Tablet and up */
@media (min-width:768px){
  .contact-wrapper{flex-direction:row;gap:40px}
  .contact-info,.contact-form{flex:1}
  .contact-info h3,
  .contact-form h3{font-size:1.5rem}
}

/* Desktop */
@media (min-width:1100px){
  .contact-section{padding:56px 32px}
  .form-group input,
  .form-group textarea{font-size:1rem}
  .contact-btn{font-size:1.05rem;padding:14px}
}
