/* =========================
   RASNA GLOBAL SERVICES
   PREMIUM RESPONSIVE CSS
========================= */

:root{
  --primary:#0b2e59;
  --primary-dark:#071d38;
  --gold:#c89b3c;
  --gold-dark:#a77d1f;
  --white:#ffffff;
  --light:#f7f9fc;
  --text:#1f2937;
  --muted:#64748b;
  --border:#e5e7eb;
  --shadow:0 10px 30px rgba(11,46,89,.10);
  --shadow-lg:0 20px 50px rgba(11,46,89,.16);
  --radius:20px;
  --radius-sm:14px;
  --transition:all .3s ease;
}

*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

html{
  scroll-behavior:smooth;
}

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

img{
  max-width:100%;
  display:block;
}

a{
  text-decoration:none;
  color:inherit;
}

ul{
  list-style:none;
}

.container{
  width:min(1180px,92%);
  margin:auto;
}

.section{
  padding:90px 0;
}

.section-head{
  margin-bottom:50px;
}

.section-head.center{
  text-align:center;
}

.section-tag{
  display:inline-block;
  padding:8px 16px;
  border-radius:999px;
  background:rgba(200,155,60,.12);
  color:var(--gold-dark);
  font-weight:600;
  font-size:.92rem;
  margin-bottom:14px;
}

h1,h2,h3,h4{
  line-height:1.2;
  color:var(--primary);
}

h2{
  font-family:'Playfair Display',serif;
  font-size:clamp(2rem,5vw,3.2rem);
  margin-bottom:18px;
}

.section-head p{
  max-width:720px;
  margin:auto;
  color:var(--muted);
}

/* NAVBAR */
.navbar{
  position:sticky;
  top:0;
  z-index:1000;
  background:rgba(255,255,255,.92);
  backdrop-filter:blur(12px);
  border-bottom:1px solid rgba(11,46,89,.08);
}

.nav-wrap{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:14px 0;
}

.brand{
  display:flex;
  align-items:center;
  gap:12px;
}

.logo{
  width:54px;
  height:54px;
  object-fit:contain;
}

.brand h1{
  font-size:1.1rem;
  margin:0;
}

.brand p{
  font-size:.82rem;
  color:var(--muted);
}

.nav-menu{
  display:flex;
  align-items:center;
  gap:24px;
}

.nav-menu a{
  font-weight:500;
  color:var(--primary);
  position:relative;
}

.nav-menu a::after{
  content:"";
  position:absolute;
  left:0;
  bottom:-6px;
  width:0;
  height:2px;
  background:var(--gold);
  transition:var(--transition);
}

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

.nav-btn{
  padding:10px 18px;
  border-radius:999px;
  background:var(--primary);
  color:var(--white)!important;
  box-shadow:var(--shadow);
}

.nav-btn::after{
  display:none;
}

.menu-btn{
  display:none;
  width:44px;
  height:44px;
  border:none;
  border-radius:12px;
  background:var(--primary);
  color:#fff;
  font-size:1.1rem;
  cursor:pointer;
}

/* HERO */
.hero{
  position:relative;
  padding:110px 0 90px;
  overflow:hidden;
  background:
    radial-gradient(circle at top right, rgba(200,155,60,.18), transparent 28%),
    linear-gradient(135deg,#0b2e59 0%,#123f78 55%,#0b2e59 100%);
  color:#fff;
}

.hero-bg{
  position:absolute;
  inset:0;
  background-image:
    linear-gradient(rgba(255,255,255,.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.05) 1px, transparent 1px);
  background-size:60px 60px;
  opacity:.25;
}

.hero-grid{
  position:relative;
  display:grid;
  grid-template-columns:1.15fr .85fr;
  gap:48px;
  align-items:center;
}

.hero-badge{
  display:inline-block;
  padding:10px 16px;
  border-radius:999px;
  background:rgba(255,255,255,.12);
  border:1px solid rgba(255,255,255,.18);
  font-size:.92rem;
  margin-bottom:18px;
}

.hero h2{
  color:#fff;
  margin-bottom:20px;
  font-size:clamp(2.4rem,6vw,4.6rem);
}

.hero h2 span{
  color:var(--gold);
}

.hero p{
  color:rgba(255,255,255,.92);
  margin-bottom:16px;
  font-size:1.02rem;
}

.hero-points{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:12px;
  margin:28px 0;
}

.hero-points div{
  display:flex;
  align-items:flex-start;
  gap:10px;
  background:rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.12);
  border-radius:16px;
  padding:14px;
  font-weight:500;
}

.hero-points i{
  color:var(--gold);
  margin-top:3px;
}

.hero-buttons{
  display:flex;
  flex-wrap:wrap;
  gap:14px;
  margin-top:8px;
}

.hero-buttons.center{
  justify-content:center;
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding:14px 22px;
  border-radius:999px;
  font-weight:600;
  transition:var(--transition);
  border:1px solid transparent;
  min-width:170px;
}

.btn.primary{
  background:var(--gold);
  color:#111827;
}

.btn.primary:hover{
  background:#d8aa45;
  transform:translateY(-2px);
}

.btn.whatsapp{
  background:#25d366;
  color:#fff;
}

.btn.whatsapp:hover{
  background:#1ebe5d;
  transform:translateY(-2px);
}

.btn.outline{
  background:transparent;
  color:#fff;
  border-color:rgba(255,255,255,.35);
}

.btn.outline:hover{
  background:rgba(255,255,255,.10);
}

.glass-card{
  background:rgba(255,255,255,.12);
  border:1px solid rgba(255,255,255,.18);
  backdrop-filter:blur(16px);
  border-radius:28px;
  padding:30px;
  box-shadow:var(--shadow-lg);
}

.card-top{
  display:flex;
  align-items:center;
  gap:12px;
  margin-bottom:18px;
  color:var(--gold);
  font-weight:600;
}

.glass-card h3{
  color:#fff;
  margin-bottom:20px;
  font-size:1.5rem;
}

.glass-card ul{
  display:grid;
  gap:14px;
}

.glass-card li{
  display:flex;
  align-items:center;
  gap:12px;
  color:rgba(255,255,255,.95);
}

.glass-card li i{
  color:var(--gold);
}

.countries{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-top:24px;
}

.countries span{
  background:rgba(255,255,255,.12);
  border:1px solid rgba(255,255,255,.16);
  padding:10px 14px;
  border-radius:999px;
  font-size:.92rem;
}

/* STATS */
.stats{
  margin-top:-38px;
  position:relative;
  z-index:2;
}

.stats-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:18px;
}

.stat-card{
  background:#fff;
  border-radius:22px;
  padding:28px 22px;
  text-align:center;
  box-shadow:var(--shadow);
  border:1px solid rgba(11,46,89,.06);
}

.stat-card h3{
  font-size:2.2rem;
  color:var(--gold);
  margin-bottom:8px;
}

.stat-card p{
  color:var(--muted);
  font-weight:500;
}

/* ABOUT */
.about-grid{
  display:grid;
  grid-template-columns:.9fr 1.1fr;
  gap:48px;
  align-items:center;
}

.image-placeholder{
  min-height:430px;
  border-radius:28px;
  background:linear-gradient(135deg,#eef3fb,#f8fafc);
  border:2px dashed rgba(11,46,89,.15);
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  text-align:center;
  padding:15px;
  box-shadow:var(--shadow);
}

.image-placeholder i{
  font-size:4rem;
  color:var(--gold);
  margin-bottom:16px;
}

.image-placeholder p{
  color:var(--muted);
}

.about-content p{
  margin-bottom:18px;
}

.about-features{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:14px;
  margin-top:26px;
}

.about-features div{
  background:var(--light);
  border:1px solid var(--border);
  border-radius:16px;
  padding:14px;
  font-weight:600;
  display:flex;
  align-items:center;
  gap:10px;
}

.about-features i{
  color:var(--gold);
}

/* SERVICES */
.services-section{
  background:var(--light);
}

.services-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:24px;
}

.service-card{
  background:#fff;
  border-radius:24px;
  padding:28px;
  box-shadow:var(--shadow);
  border:1px solid rgba(11,46,89,.06);
  transition:var(--transition);
}

.service-card:hover{
  transform:translateY(-6px);
  box-shadow:var(--shadow-lg);
}

.service-icon{
  width:64px;
  height:64px;
  border-radius:18px;
  display:grid;
  place-items:center;
  font-size:1.8rem;
  background:rgba(200,155,60,.12);
  margin-bottom:18px;
}

.service-card h3{
  margin-bottom:16px;
}

.service-card ul{
  display:grid;
  gap:10px;
}

.service-card li{
  position:relative;
  padding-left:22px;
}

.service-card li::before{
  content:"•";
  position:absolute;
  left:0;
  top:0;
  color:var(--gold);
  font-size:1.2rem;
}

.service-card.full-width{
  grid-column:1/-1;
}

.country-list{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  margin:18px 0 22px;
}

.country-list span{
  padding:10px 16px;
  border-radius:999px;
  background:var(--light);
  border:1px solid var(--border);
  font-weight:600;
}

.two-col{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:10px 22px;
}

/* WHY */
.why-grid{
  display:grid;
  grid-template-columns:repeat(5,1fr);
  gap:18px;
}

.why-card{
  background:#fff;
  border:1px solid rgba(11,46,89,.06);
  border-radius:22px;
  padding:24px 18px;
  text-align:center;
  box-shadow:var(--shadow);
  transition:var(--transition);
}

.why-card:hover{
  transform:translateY(-5px);
}

.why-card i{
  font-size:2rem;
  color:var(--gold);
  margin-bottom:12px;
}

.why-card span{
  display:block;
  font-weight:600;
  color:var(--primary);
  font-size:.95rem;
}

/* PROCESS */
.process-section{
  background:linear-gradient(180deg,#fff,#f7f9fc);
}

.process-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:26px;
}

.process-card{
  background:#fff;
  border-radius:24px;
  padding:30px;
  box-shadow:var(--shadow);
}

.process-card h3{
  margin-bottom:24px;
  display:flex;
  align-items:center;
  gap:10px;
}

.process-card h3 i{
  color:var(--gold);
}

.timeline{
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:12px;
}

.timeline span{
  width:100%;
  text-align:center;
  padding:12px 14px;
  border-radius:14px;
  background:var(--light);
  border:1px solid var(--border);
  font-weight:600;
}

.timeline i{
  color:var(--gold);
}

/* TESTIMONIALS */
.testimonials{
  background:var(--light);
}

.testimonial-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:22px;
}

.testimonial-card{
  background:#fff;
  border-radius:22px;
  padding:28px;
  box-shadow:var(--shadow);
  border:1px solid rgba(11,46,89,.06);
}

.stars{
  color:#f59e0b;
  letter-spacing:2px;
  margin-bottom:14px;
}

.testimonial-card p{
  font-style:italic;
  margin-bottom:18px;
  color:var(--text);
}

.testimonial-card h4{
  color:var(--primary);
}

/* FAQ */
.faq-list{
  display:grid;
  gap:16px;
}

.faq-list details{
  background:#fff;
  border:1px solid rgba(11,46,89,.08);
  border-radius:18px;
  padding:18px 22px;
  box-shadow:var(--shadow);
}

.faq-list summary{
  cursor:pointer;
  font-weight:600;
  color:var(--primary);
  list-style:none;
  position:relative;
  padding-right:26px;
}

.faq-list summary::-webkit-details-marker{
  display:none;
}

.faq-list summary::after{
  content:"+";
  position:absolute;
  right:0;
  top:0;
  font-size:1.4rem;
  color:var(--gold);
}

.faq-list details[open] summary::after{
  content:"−";
}

.faq-list p{
  margin-top:12px;
  color:var(--muted);
}

/* CONTACT */
.contact-section{
  background:linear-gradient(180deg,#f7f9fc,#fff);
}

.contact-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:32px;
}

.contact-info p{
  margin-bottom:16px;
}

.contact-item{
  display:flex;
  gap:16px;
  align-items:flex-start;
  padding:18px;
  border-radius:18px;
  background:#fff;
  border:1px solid rgba(11,46,89,.06);
  box-shadow:var(--shadow);
  margin-bottom:16px;
}

.contact-item i{
  width:52px;
  height:52px;
  border-radius:16px;
  display:grid;
  place-items:center;
  background:rgba(200,155,60,.12);
  color:var(--gold-dark);
  font-size:1.2rem;
}

.contact-item h4{
  margin-bottom:4px;
}

.contact-item a{
  color:var(--primary);
  font-weight:500;
}

.contact-card{
  background:#fff;
  border-radius:28px;
  padding:32px;
  box-shadow:var(--shadow-lg);
  border:1px solid rgba(11,46,89,.06);
}

.contact-card h3{
  margin-bottom:22px;
}

.contact-card form{
  display:grid;
  gap:16px;
}

.contact-card input,
.contact-card select,
.contact-card textarea{
  width:100%;
  padding:15px 16px;
  border-radius:14px;
  border:1px solid var(--border);
  font:inherit;
  background:#fff;
  transition:var(--transition);
}

.contact-card input:focus,
.contact-card select:focus,
.contact-card textarea:focus{
  outline:none;
  border-color:var(--gold);
  box-shadow:0 0 0 4px rgba(200,155,60,.15);
}

.full{
  width:100%;
}

/* CTA */
.cta-section{
  padding:40px 0 90px;
}

.cta-box{
  background:linear-gradient(135deg,#0b2e59,#123f78);
  color:#fff;
  border-radius:32px;
  padding:54px 36px;
  text-align:center;
  box-shadow:var(--shadow-lg);
}

.cta-box h2{
  color:#fff;
  margin-bottom:14px;
}

.cta-box p{
  max-width:700px;
  margin:0 auto 26px;
  color:rgba(255,255,255,.88);
}

/* FOOTER */
.footer{
  background:#071d38;
  color:#cbd5e1;
  padding-top:70px;
}

.footer-grid{
  display:grid;
  grid-template-columns:1.3fr 1fr 1fr 1fr;
  gap:28px;
  padding-bottom:40px;
}

.footer h3,
.footer h4{
  color:#fff;
  margin-bottom:16px;
}

.footer p,
.footer li{
  color:#cbd5e1;
  margin-bottom:10px;
}

.footer li{
  position:relative;
  padding-left:18px;
}

.footer li::before{
  content:"•";
  position:absolute;
  left:0;
  color:var(--gold);
}

.footer-bottom{
  border-top:1px solid rgba(255,255,255,.10);
  text-align:center;
  padding:22px 0;
  color:#94a3b8;
  font-size:.95rem;
}

/* FLOATING BUTTONS */
.float{
  position:fixed;
  right:18px;
  width:58px;
  height:58px;
  border-radius:50%;
  display:grid;
  place-items:center;
  color:#fff;
  font-size:1.4rem;
  box-shadow:0 12px 30px rgba(0,0,0,.25);
  z-index:1200;
}

.whatsapp-float{
  bottom:88px;
  background:#25d366;
}

.call-float{
  bottom:20px;
  background:var(--primary);
}

.scroll-top{
  position:fixed;
  left:18px;
  bottom:20px;
  width:52px;
  height:52px;
  border:none;
  border-radius:50%;
  background:var(--gold);
  color:#111827;
  font-size:1.1rem;
  box-shadow:var(--shadow);
  cursor:pointer;
  opacity:0;
  visibility:hidden;
  transform:translateY(10px);
  transition:var(--transition);
  z-index:1200;
}

.scroll-top.show{
  opacity:1;
  visibility:visible;
  transform:translateY(0);
}

/* =========================
   RESPONSIVE
========================= */

/* Large tablets */
@media (max-width:1024px){

  .hero-grid,
  .about-grid,
  .contact-grid{
    grid-template-columns:1fr;
  }

  .hero-card{
    order:-1;
  }

  .stats-grid{
    grid-template-columns:repeat(2,1fr);
  }

  .why-grid{
    grid-template-columns:repeat(3,1fr);
  }

  .testimonial-grid{
    grid-template-columns:1fr;
  }

  .footer-grid{
    grid-template-columns:repeat(2,1fr);
  }
}

/* Tablets */
@media (max-width:768px){

  .section{
    padding:70px 0;
  }

  .menu-btn{
    display:grid;
    place-items:center;
  }

  .nav-menu{
    position:absolute;
    top:100%;
    left:0;
    right:0;
    background:#fff;
    border-top:1px solid rgba(11,46,89,.08);
    flex-direction:column;
    align-items:flex-start;
    gap:0;
    padding:10px 4%;
    max-height:0;
    overflow:hidden;
    transition:max-height .35s ease;
  }

  .nav-menu.open{
    max-height:420px;
  }

  .nav-menu a{
    width:100%;
    padding:14px 0;
    border-bottom:1px solid rgba(11,46,89,.06);
  }

  .nav-btn{
    width:100%;
    text-align:center;
    margin-top:8px;
  }

  .hero{
    padding:96px 0 72px;
  }

  .hero-points{
    grid-template-columns:1fr;
  }

  .hero-buttons{
    flex-direction:column;
  }

  .btn{
    width:100%;
  }

  .services-grid,
  .process-grid{
    grid-template-columns:1fr;
  }

  .two-col{
    grid-template-columns:1fr;
  }

  .why-grid{
    grid-template-columns:repeat(2,1fr);
  }

  .footer-grid{
    grid-template-columns:1fr;
  }

  .stats-grid{
    grid-template-columns:1fr 1fr;
  }
}

/* Mobile phones */
@media (max-width:480px){

  .container{
    width:94%;
  }

  .hero{
    padding:88px 0 64px;
  }

  .hero h2{
    font-size:2.25rem;
  }

  .glass-card,
  .service-card,
  .process-card,
  .contact-card,
  .testimonial-card{
    padding:22px;
  }

  .stats-grid{
    grid-template-columns:1fr;
  }

  .why-grid{
    grid-template-columns:1fr;
  }

  .about-features{
    grid-template-columns:1fr;
  }

  .country-list{
    justify-content:center;
  }

  .float{
    width:54px;
    height:54px;
    right:14px;
  }

  .whatsapp-float{
    bottom:80px;
  }

  .call-float{
    bottom:14px;
  }

  .scroll-top{
    left:14px;
    bottom:14px;
  }
}
/* ==========================================================
   FINAL RESPONSIVE + MOBILE UX PATCH
   - Fixed/sticky navigation on every device
   - Eliminates horizontal page scrolling
   - Safer mobile typography and card sizing
   - Font Awesome country/service icons
   - Countries We Cover section
========================================================== */

html,
body{
  width:100%;
  max-width:100%;
  overflow-x:hidden;
}

body{
  padding-top:82px;
}

*,
*::before,
*::after{
  min-width:0;
}

section[id]{
  scroll-margin-top:100px;
}

.navbar{
  position:fixed;
  top:0;
  left:0;
  right:0;
  width:100%;
  z-index:2000;
}

.nav-wrap{
  min-height:82px;
}

.brand{
  min-width:0;
  max-width:calc(100% - 60px);
}

.brand > div{
  min-width:0;
}

.brand h1,
.brand p{
  overflow-wrap:anywhere;
}

.nav-menu{
  min-width:0;
}

.hero-grid,
.about-grid,
.contact-grid,
.services-grid,
.process-grid,
.stats-grid,
.why-grid,
.testimonial-grid,
.footer-grid{
  min-width:0;
}

.hero-content,
.hero-card,
.service-card,
.process-card,
.contact-info,
.contact-card,
.covered-country{
  min-width:0;
  max-width:100%;
}

.hero-badge{
  max-width:100%;
  white-space:normal;
  overflow-wrap:anywhere;
}

.glass-card{
  width:100%;
  max-width:100%;
}

.countries span,
.country-list span{
  display:inline-flex;
  align-items:center;
  gap:8px;
}

.countries i,
.country-list i{
  color:var(--gold);
  font-size:.95rem;
}

.service-icon{
  color:var(--gold-dark);
}

.service-icon i{
  font-size:1.65rem;
}

.service-highlight{
  display:flex;
  align-items:center;
  gap:10px;
  margin-top:18px;
  padding:12px 14px;
  border-radius:14px;
  background:linear-gradient(135deg,rgba(200,155,60,.10),rgba(11,46,89,.04));
  border:1px solid rgba(200,155,60,.24);
  color:var(--primary);
  font-weight:700;
  font-size:.92rem;
}

.service-highlight i{
  flex:0 0 auto;
  color:var(--gold-dark);
  font-size:1.05rem;
}

.countries-section{
  background:
    radial-gradient(circle at 10% 10%,rgba(200,155,60,.08),transparent 25%),
    linear-gradient(180deg,#f7f9fc,#ffffff);
}

.covered-countries-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:22px;
}

.covered-country{
  overflow:hidden;
  background:#fff;
  border:1px solid rgba(11,46,89,.08);
  border-radius:24px;
  box-shadow:var(--shadow);
  transition:var(--transition);
}

.covered-country:hover{
  transform:translateY(-7px);
  box-shadow:var(--shadow-lg);
}

.country-image{
  min-height:190px;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  gap:10px;
  background:
    linear-gradient(135deg,rgba(11,46,89,.96),rgba(18,63,120,.88));
  color:#fff;
  text-align:center;
}

.country-image i{
  font-size:3.2rem;
  color:var(--gold);
}

.country-image span{
  font-size:.82rem;
  color:rgba(255,255,255,.72);
}

.country-content{
  padding:22px;
}

.country-number{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:34px;
  height:34px;
  border-radius:50%;
  background:rgba(200,155,60,.12);
  color:var(--gold-dark);
  font-size:.78rem;
  font-weight:700;
  margin-bottom:10px;
}

.country-content h3{
  margin-bottom:8px;
}

.country-content p{
  color:var(--muted);
  font-size:.92rem;
}

.footer-country-icon{
  color:var(--gold);
  margin-right:7px;
  width:16px;
}

.footer .country-item::before{display:none;}

.contact-item a,
.footer p,
.footer li{
  overflow-wrap:anywhere;
  word-break:break-word;
}

/* ==========================================================
   TABLET
========================================================== */
@media (max-width:1024px){

  .covered-countries-grid{
    grid-template-columns:repeat(2,1fr);
  }

  .hero-grid{
    gap:36px;
  }
}

/* ==========================================================
   MOBILE / TABLET NAVIGATION
========================================================== */
@media (max-width:768px){

  body{
    padding-top:76px;
  }

  section[id]{
    scroll-margin-top:88px;
  }

  .nav-wrap{
    min-height:76px;
    padding:10px 0;
  }

  .logo{
    width:48px;
    height:48px;
    flex:0 0 48px;
  }

  .brand{
    gap:9px;
  }

  .brand h1{
    font-size:.98rem;
    line-height:1.15;
  }

  .brand p{
    font-size:.72rem;
    line-height:1.25;
  }

  .menu-btn{
    flex:0 0 44px;
  }

  .nav-menu{
    position:absolute;
    top:100%;
    left:0;
    right:0;
    width:100%;
    max-width:100%;
    background:#fff;
    box-shadow:0 18px 30px rgba(7,29,56,.12);
    border-top:1px solid rgba(11,46,89,.08);
    padding:0 18px;
    max-height:0;
    overflow:hidden;
    transition:max-height .35s ease,padding .35s ease;
  }

  .nav-menu.open{
    max-height:520px;
    padding-top:8px;
    padding-bottom:14px;
    overflow-y:auto;
  }

  .nav-menu a{
    padding:13px 0;
  }

  .hero{
    padding:58px 0 64px;
  }

  .hero-grid{
    grid-template-columns:1fr;
    gap:30px;
  }

  .hero-content{
    order:1;
  }

  .hero-card{
    order:2;
  }

  .hero h2{
    font-size:clamp(2.15rem,10vw,3.2rem);
    overflow-wrap:anywhere;
  }

  .hero p{
    font-size:.98rem;
  }

  .hero-points{
    grid-template-columns:1fr;
  }

  .hero-points div{
    width:100%;
  }

  .hero-buttons{
    width:100%;
  }

  .btn{
    min-width:0;
  }

  .glass-card{
    padding:24px;
    border-radius:24px;
  }

  .glass-card h3{
    font-size:1.35rem;
    overflow-wrap:anywhere;
  }

  .about-grid,
  .contact-grid{
    grid-template-columns:1fr;
  }

  .covered-countries-grid{
    grid-template-columns:repeat(2,1fr);
  }

  .country-image{
    min-height:165px;
  }
}

/* ==========================================================
   SMALL PHONES
========================================================== */
@media (max-width:480px){

  .container{
    width:calc(100% - 28px);
    max-width:100%;
  }

  .section{
    padding:64px 0;
  }

  .nav-wrap{
    width:calc(100% - 28px);
  }

  .brand{
    max-width:calc(100% - 54px);
  }

  .brand h1{
    font-size:.92rem;
  }

  .brand p{
    font-size:.68rem;
  }

  .hero{
    padding:46px 0 58px;
  }

  .hero-badge{
    display:block;
    width:100%;
    padding:12px 14px;
    font-size:.82rem;
    line-height:1.5;
  }

  .hero h2{
    font-size:2.15rem;
    line-height:1.08;
  }

  .hero p{
    font-size:.94rem;
    line-height:1.7;
  }

  .hero-points{
    gap:10px;
    margin:22px 0;
  }

  .hero-points div{
    padding:13px;
    font-size:.9rem;
  }

  .hero-buttons{
    gap:10px;
  }

  .btn{
    width:100%;
    padding:13px 18px;
  }

  .glass-card{
    padding:20px;
  }

  .glass-card li{
    align-items:flex-start;
    font-size:.94rem;
  }

  .countries{
    gap:8px;
  }

  .countries span{
    flex:1 1 calc(50% - 8px);
    justify-content:center;
    min-width:0;
    padding:9px 10px;
    font-size:.82rem;
  }

  .service-card,
  .process-card,
  .contact-card,
  .testimonial-card{
    padding:21px;
  }

  .service-highlight{
    font-size:.83rem;
    line-height:1.45;
  }

  .country-list{
    display:grid;
    grid-template-columns:1fr 1fr;
  }

  .country-list span{
    justify-content:center;
    padding:9px 10px;
    font-size:.82rem;
  }

  .two-col{
    grid-template-columns:1fr;
  }

  .covered-countries-grid{
    grid-template-columns:1fr;
    gap:18px;
  }

  .country-image{
    min-height:170px;
  }

  .footer{
    padding-top:58px;
  }

  .float{
    width:54px;
    height:54px;
    right:14px;
  }
}


/* ==========================================================
   FINAL COUNTRY SECTION + MOBILE OVERFLOW FIX v3
   ========================================================== */

html, body {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden !important;
}

body {
  margin: 0;
}

.container {
  width: min(1180px, calc(100% - 32px));
  max-width: 1180px;
}

.countries-section {
  width: 100%;
  overflow: hidden;
}

.countries-section .section-head {
  width: 100%;
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
}

.countries-section .section-head h2 {
  overflow-wrap: normal;
  word-break: normal;
}

.covered-countries-grid {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
  align-items: stretch;
}

.covered-country {
  min-width: 0;
  width: 100%;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.country-image {
  position: relative;
  width: 100%;
  min-height: 210px;
  flex: 0 0 auto;
  overflow: hidden;
}

.country-image i {
  display: block;
  line-height: 1;
  font-size: 3.2rem;
}

.country-image span {
  display: block;
  max-width: 100%;
  overflow-wrap: anywhere;
  text-align: center;
}

.country-content {
  flex: 1;
  min-width: 0;
}

.country-content h3,
.country-content p {
  overflow-wrap: anywhere;
}

.country-content p {
  margin: 0;
}

.country-number {
  flex: 0 0 auto;
}

/* If real country photos are added later, use:
   <img src="images/canada.jpg" alt="Canada">
*/
.country-image img {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
}

.country-image.has-image {
  padding: 0;
  background: #0b2e59;
}

.country-image.has-image img {
  height: 100%;
  min-height: 210px;
}

/* Use a consistent Font Awesome icon treatment everywhere. */
.countries i,
.country-list i,
.footer-country-icon {
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-style: normal;
}

/* Footer country rows */
.footer .country-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding-left: 0;
}

.footer .country-item::before {
  display: none !important;
}

.footer-country-icon {
  width: 20px;
  min-width: 20px;
  margin: 0;
  color: var(--gold);
}

/* Prevent long email/text from creating horizontal overflow. */
.contact-item,
.contact-item > div,
.contact-item a,
.footer,
.footer-grid {
  min-width: 0;
  max-width: 100%;
}

.contact-item a,
.footer p,
.footer li {
  overflow-wrap: anywhere;
  word-break: break-word;
}

/* ==========================================================
   TABLET
   ========================================================== */
@media (max-width: 1024px) {
  .covered-countries-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* ==========================================================
   MOBILE
   ========================================================== */
@media (max-width: 768px) {
  .countries-section {
    padding-left: 0;
    padding-right: 0;
  }

  .countries-section .container {
    width: calc(100% - 28px);
    max-width: none;
  }

  .countries-section .section-head {
    margin-bottom: 34px;
  }

  .countries-section .section-head h2 {
    font-size: clamp(2rem, 8vw, 2.7rem);
    line-height: 1.15;
  }

  .countries-section .section-head p {
    font-size: 0.92rem;
    line-height: 1.65;
  }

  .covered-countries-grid {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }

  .country-image {
    min-height: 145px;
  }

  .country-image i {
    font-size: 2.5rem;
  }

  .country-image span {
    font-size: 0.72rem;
    line-height: 1.4;
  }

  .country-content {
    padding: 18px;
  }

  .country-number {
    width: 30px;
    height: 30px;
    font-size: 0.72rem;
    margin-bottom: 8px;
  }

  .country-content h3 {
    font-size: 1.15rem;
  }

  .country-content p {
    font-size: 0.82rem;
    line-height: 1.6;
  }
}

/* ==========================================================
   SMALL PHONES
   ========================================================== */
@media (max-width: 480px) {
  .countries-section .container {
    width: calc(100% - 24px);
  }

  .countries-section .section-head {
    text-align: center;
  }

  .countries-section .section-head h2 {
    font-size: 2rem;
    white-space: normal;
  }

  .countries-section .section-head p {
    font-size: 0.88rem;
  }

  .covered-countries-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .covered-country {
    border-radius: 20px;
  }

  .country-image {
    min-height: 175px;
  }

  .country-image i {
    font-size: 3rem;
  }

  .country-content {
    padding: 20px;
  }

  .country-content h3 {
    font-size: 1.3rem;
  }

  .country-content p {
    font-size: 0.88rem;
  }
}
