/*
===========================================
SMI Services - Premium Immigration Website
Mobile Responsive CSS
===========================================
*/

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&display=swap');

/* ============================================
   ANIMATION KEYFRAMES
   ============================================ */

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(50px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeLeft {
  from { opacity: 0; transform: translateX(-50px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes fadeRight {
  from { opacity: 0; transform: translateX(50px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes floatY {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-14px); }
}
@keyframes floatYSlow {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  50%       { transform: translateY(-20px) rotate(3deg); }
}
@keyframes shimmer {
  0%   { background-position: -200% center; }
  100% { background-position: 200% center; }
}
@keyframes gradientMove {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
@keyframes pulseDot {
  0%, 100% { box-shadow: 0 0 0 0 rgba(242,251,154,0.5); }
  50%       { box-shadow: 0 0 0 12px rgba(242,251,154,0); }
}
@keyframes rotateGlobe {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}
@keyframes scaleIn {
  from { opacity: 0; transform: scale(0.85); }
  to   { opacity: 1; transform: scale(1); }
}
@keyframes slideInDown {
  from { opacity: 0; transform: translateY(-30px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes borderGlow {
  0%, 100% { border-color: rgba(44,122,110,0.3); }
  50%       { border-color: rgba(242,251,154,0.8); box-shadow: 0 0 20px rgba(242,251,154,0.3); }
}
@keyframes countUp {
  from { opacity: 0; transform: translateY(15px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes typewriter {
  from { width: 0; }
  to   { width: 100%; }
}
@keyframes blink {
  50% { border-color: transparent; }
}
@keyframes marqueeScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
@keyframes ripple {
  0%   { transform: scale(0); opacity: 1; }
  100% { transform: scale(4); opacity: 0; }
}
@keyframes heroParticle {
  0%   { transform: translateY(100vh) scale(0); opacity: 0; }
  10%  { opacity: 0.6; }
  90%  { opacity: 0.3; }
  100% { transform: translateY(-10vh) scale(1.2); opacity: 0; }
}

/* ============================================
   SCROLL REVEAL BASE STATES
   ============================================ */
.fade-up {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.75s cubic-bezier(0.16, 1, 0.3, 1), transform 0.75s cubic-bezier(0.16, 1, 0.3, 1);
}
.fade-up.visible { opacity: 1; transform: translateY(0); }

.fade-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: opacity 0.75s cubic-bezier(0.16, 1, 0.3, 1), transform 0.75s cubic-bezier(0.16, 1, 0.3, 1);
}
.fade-left.visible { opacity: 1; transform: translateX(0); }

.fade-right {
  opacity: 0;
  transform: translateX(50px);
  transition: opacity 0.75s cubic-bezier(0.16, 1, 0.3, 1), transform 0.75s cubic-bezier(0.16, 1, 0.3, 1);
}
.fade-right.visible { opacity: 1; transform: translateX(0); }

/* Staggered delays */
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }
.delay-6 { transition-delay: 0.6s; }

:root {
  --primary-dark: #1a3d6b;      /* deep navy — logo dominant */
  --primary: #1e65a8;           /* royal blue — logo mid */
  --primary-light: #3594d4;     /* sky blue — logo accent */
  --accent: #f5c518;            /* gold — complements navy beautifully */
  --accent-hover: #e0b010;
  --bg-gradient: linear-gradient(135deg, #e8eef6 0%, #edf2f8 50%, #eff2f8 100%);
  --bg-light: #f4f7fb;
  --white: #ffffff;
  --text-dark: #111827;
  --text-gray: #4b5563;
  --border-color: rgba(26, 61, 107, 0.1);

  --section-padding: 80px 0;
  --container-width: 1300px;
  
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-pc: 50px;

  --shadow-sm: 0 4px 10px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 20px 40px rgba(0, 0, 0, 0.12);
}

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

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

h1, h2, h3, h4, h5, h6 {
  color: var(--text-dark);
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 15px;
}

h1 { font-size: 3.5rem; letter-spacing: -1px; }
h2 { font-size: 2.5rem; letter-spacing: -0.5px; }
h3 { font-size: 1.8rem; }
h4 { font-size: 1.3rem; }

p { margin-bottom: 1rem; }
a { text-decoration: none; color: var(--primary); transition: all 0.3s ease; }
img { max-width: 100%; height: auto; display: block; object-fit: cover; }
ul { list-style: none; }

.container { width: 100%; max-width: var(--container-width); margin: 0 auto; padding: 0 20px; }
.section { padding: var(--section-padding); }
.section-dark-green { background: var(--primary-dark); color: var(--white); }
.section-dark-green h2, .section-dark-green p { color: var(--white); }

/* Globals */
.badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(7, 46, 39, 0.08); color: var(--primary-dark);
  padding: 8px 18px; border-radius: var(--radius-pc);
  font-size: 0.85rem; font-weight: 600; margin-bottom: 20px;
  border: 1px solid rgba(7,46,39,0.12);
  animation: slideInDown 0.6s cubic-bezier(0.16, 1, 0.3, 1) both;
}
.badge i { animation: pulseDot 2s ease-in-out infinite; }
.badge-light {
  background: rgba(255,255,255,0.12); color: var(--white);
  border-color: rgba(255,255,255,0.2);
  backdrop-filter: blur(10px);
}

/* BUTTONS — premium with ripple + glow */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 15px 32px; border-radius: var(--radius-pc);
  font-weight: 600; font-size: 0.95rem; cursor: pointer; border: none; gap: 9px;
  transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative; overflow: hidden; letter-spacing: 0.02em;
}
.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.12);
  opacity: 0;
  transition: opacity 0.3s;
}
.btn:hover::after { opacity: 1; }
.btn:active { transform: scale(0.96); }

.btn-primary {
  background: var(--primary-dark); color: var(--white);
  box-shadow: 0 4px 20px rgba(7,46,39,0.3);
}
.btn-primary:hover {
  background: var(--accent); color: var(--primary-dark);
  box-shadow: 0 8px 30px rgba(242,251,154,0.4);
  transform: translateY(-2px);
}
.btn-accent {
  background: var(--accent); color: var(--primary-dark);
  box-shadow: 0 4px 20px rgba(242,251,154,0.35);
}
.btn-accent:hover {
  background: var(--primary-dark); color: var(--white);
  box-shadow: 0 8px 30px rgba(7,46,39,0.3);
  transform: translateY(-2px);
}
.btn-outline {
  border: 2px solid var(--primary-dark); background: transparent; color: var(--text-dark);
}
.btn-outline:hover { background: var(--primary-dark); color: var(--white); transform: translateY(-2px); }
.btn-primary-small {
  background: var(--primary-light); color: var(--white);
  padding: 10px 22px; border-radius: var(--radius-pc); font-size: 0.85rem; border: none;
  transition: all 0.3s ease;
}
.btn-primary-small:hover { background: var(--primary-dark); transform: translateY(-1px); }
.btn-dark { background: var(--primary-dark); color: var(--white); }

.flex-title-row { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 40px; }
.flex-title-row .left-t { max-width: 600px; }

/* 0. Header */
.header { position: absolute; top:0; left:0; width: 100%; padding: 18px 0; z-index: 100; transition: all 0.4s ease; }
.header .container { display: flex; justify-content: space-between; align-items: center; }

/* LOGO — bigger, animated */
.logo { display: flex; align-items: center; }
.logo img {
  height: 68px;
  width: auto;
  object-fit: contain;
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1), filter 0.3s ease;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.08));
}
.logo img:hover { transform: scale(1.07); filter: drop-shadow(0 4px 16px rgba(7,46,39,0.2)); }

.nav-menu { display: flex; gap: 30px; }
.nav-menu a {
  color: var(--text-dark); font-weight: 500; font-size: 0.95rem;
  position: relative; padding-bottom: 4px;
}
.nav-menu a::after {
  content: ''; position: absolute; left: 0; bottom: 0;
  width: 0; height: 2px; background: var(--primary);
  border-radius: 2px; transition: width 0.3s ease;
}
.nav-menu a:hover::after, .nav-menu a.active::after { width: 100%; }
.nav-menu a.active { color: var(--primary); font-weight: 600; }

/* 1. Hero Home */
.hero-home {
  background: var(--bg-gradient);
  padding: 160px 0 110px;
  position: relative;
  overflow: hidden;
}

/* Decorative animated blobs in hero background */
.hero-home::before {
  content: '';
  position: absolute;
  top: -120px; right: -120px;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(44,122,110,0.12) 0%, transparent 70%);
  animation: floatYSlow 8s ease-in-out infinite;
  pointer-events: none;
}
.hero-home::after {
  content: '';
  position: absolute;
  bottom: -80px; left: -80px;
  width: 350px; height: 350px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(242,251,154,0.15) 0%, transparent 70%);
  animation: floatYSlow 10s ease-in-out infinite reverse;
  pointer-events: none;
}

.hero-home-inner { display: flex; gap: 40px; align-items: center; }
.hero-content-left { flex: 1; padding-right: 50px; animation: fadeLeft 0.9s cubic-bezier(0.16, 1, 0.3, 1) both; }
.hero-p { font-size: 1.1rem; margin-bottom: 30px; }
.hero-buttons { display: flex; gap: 15px; margin-bottom: 50px; }

.hero-image-right { flex: 1; position: relative; animation: fadeRight 0.9s 0.2s cubic-bezier(0.16, 1, 0.3, 1) both; }
.h-img-1 img {
  border-radius: var(--radius-lg) 0px var(--radius-lg) 0px;
  max-height: 500px; width: 100%;
  box-shadow: var(--shadow-lg);
  transition: transform 0.5s ease, box-shadow 0.5s ease;
}
.h-img-1 img:hover { transform: scale(1.02) translateY(-6px); box-shadow: 0 30px 60px rgba(0,0,0,0.18); }

.hero-floating-cards { display: flex; gap: 20px; margin-top: 20px; }
.hero-f-card {
  background: var(--primary-dark); color: var(--white); padding: 30px;
  border-radius: var(--radius-md); box-shadow: var(--shadow-md); width: 100%; max-width: 450px;
  animation: floatY 4s ease-in-out infinite;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  border: 1px solid rgba(255,255,255,0.06);
}
.hero-f-card:nth-child(2) { animation-delay: -2s; }
.hero-f-card:hover { transform: translateY(-8px) !important; box-shadow: 0 25px 50px rgba(0,0,0,0.25); }
.hero-f-card h4 { color: var(--white); margin-bottom: 10px; }
.hero-f-card p { color: rgba(255,255,255,0.7); font-size: 0.9rem; }
.f-icon {
  width: 45px; height: 45px; background: var(--accent); color: var(--primary-dark);
  display: flex; align-items: center; justify-content: center; border-radius: 50%;
  margin-bottom: 15px; font-size: 1.2rem;
  animation: pulseDot 2.5s ease-in-out infinite;
}
.f-stats { display: flex; gap: 30px; margin-top: 20px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,0.1); }
.f-stats span { color: var(--accent); font-weight: 700; font-size: 1.5rem; }

/* 2. Logo Strip */
.trust-strip { background: var(--white); padding: 30px 0; border-bottom: 1px solid var(--border-color); }
.trust-inner { display: flex; justify-content: center; gap: 50px; align-items: center; flex-wrap: wrap; }
.trust-text { color: var(--text-dark); margin-right: 20px; }

/* 3. About Dark Green */
.about-grid { display: flex; gap: 60px; align-items: center; margin-bottom: 60px; }
.about-text { flex: 1; }
.about-img { flex: 1; position: relative; }
.about-img img {
  border-radius: var(--radius-lg); width: 100%;
  transition: transform 0.5s ease, box-shadow 0.5s ease;
  box-shadow: var(--shadow-lg);
}
.about-img img:hover { transform: scale(1.02); box-shadow: 0 30px 60px rgba(0,0,0,0.2); }
.about-img::after {
  content: '';
  position: absolute;
  inset: -8px -8px 8px 8px;
  border-radius: var(--radius-lg);
  border: 2px solid var(--accent);
  opacity: 0.35;
  pointer-events: none;
}
.about-stats-row {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px;
  text-align: center; border-top: 1px solid rgba(255,255,255,0.2); padding-top: 40px;
}
.stat-col { transition: transform 0.3s ease; }
.stat-col:hover { transform: translateY(-4px); }
.stat-col h3 {
  color: var(--accent); font-size: 2.4rem; margin-bottom: 5px;
  animation: countUp 0.6s ease both;
}

/* 4. Banner Feature */
.banner-feature { position: relative; width: 100%; padding: 0 20px; margin-top: -60px; z-index: 5; margin-bottom: 60px; }
.banner-bg { position: relative; max-width: var(--container-width); margin: 0 auto; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); }
.banner-bg img { width: 100%; height: 350px; object-fit: cover; }
.banner-card-right { 
  position: absolute; right: 0; top: 0; bottom: 0; width: 45%; 
  background: var(--white); padding: 50px; 
  display: flex; flex-direction: column; justify-content: center;
}
.banner-icon { margin-bottom: 20px; font-size: 2rem; color: var(--primary-light); }

/* 5. Services Grid */
.section-title-center { text-align: center; margin-bottom: 55px; }
.section-title-center h2 { position: relative; display: inline-block; }
.section-title-center h2::after {
  content: '';
  display: block;
  width: 60px; height: 3px;
  background: var(--accent);
  border-radius: 2px;
  margin: 12px auto 0;
}

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

.svc-card {
  background: var(--white); border-radius: var(--radius-md); overflow: hidden;
  box-shadow: var(--shadow-sm); border: 1px solid var(--border-color);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease, border-color 0.4s ease;
  position: relative;
}
.svc-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-md);
  border: 2px solid transparent;
  transition: border-color 0.4s ease;
  pointer-events: none;
  z-index: 1;
}
.svc-card:hover { transform: translateY(-10px); box-shadow: 0 20px 50px rgba(7,46,39,0.14); }
.svc-card:hover::before { border-color: var(--accent); }

.svc-img { overflow: hidden; }
.svc-img img {
  width: 100%; height: 230px;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.svc-card:hover .svc-img img { transform: scale(1.08); }

.svc-content { padding: 30px; }
.svc-content h4 { margin-bottom: 10px; transition: color 0.3s; }
.svc-card:hover .svc-content h4 { color: var(--primary); }

/* 6. Process Step */
.process-grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.proc-card {
  background: var(--primary-dark); color: var(--white);
  border-radius: var(--radius-md); padding: 30px; position: relative;
  border: 1px solid rgba(255,255,255,0.06);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease, border-color 0.4s;
  overflow: hidden;
}
.proc-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}
.proc-card:hover { transform: translateY(-8px); box-shadow: 0 25px 50px rgba(0,0,0,0.3); border-color: rgba(242,251,154,0.2); }
.proc-card:hover::after { transform: scaleX(1); }
.proc-card h4 { color: var(--white); font-size: 1.1rem; margin-bottom: 10px; }
.proc-card p { font-size: 0.85rem; color: rgba(255,255,255,0.7); }
.proc-num {
  font-size: 2.8rem; font-weight: 800; color: rgba(255,255,255,0.15);
  margin-bottom: 20px; line-height: 1;
  transition: color 0.3s;
}
.proc-card:hover .proc-num { color: var(--accent); }
.proc-icon {
  position: absolute; top: 25px; right: 25px;
  width: 38px; height: 38px; background: var(--accent); color: var(--primary-dark);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s;
}
.proc-card:hover .proc-icon { transform: scale(1.2) rotate(15deg); box-shadow: 0 6px 20px rgba(242,251,154,0.4); }

/* 7. Testimonials (Split) */
.testimonial-split { display: flex; flex-wrap: wrap; overflow: hidden; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); }
.testimo-left { flex: 1; min-width: 300px; display: flex; overflow: hidden; }
.testimo-left img {
  width: 100%; object-fit: cover;
  transition: transform 0.6s ease;
}
.testimonial-split:hover .testimo-left img { transform: scale(1.04); }
.testimo-right {
  flex: 1; padding: 80px 50px; background: var(--primary-dark); color: var(--white);
  display: flex; flex-direction: column; justify-content: center;
}
.testimo-right h2 { color: var(--white); margin-bottom: 40px; }
.testimo-card {
  background: var(--white); color: var(--text-dark); padding: 40px;
  border-radius: var(--radius-md); position: relative; margin-left: -50px;
  box-shadow: var(--shadow-lg);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  border-top: 4px solid var(--accent);
}
.testimo-card:hover { transform: translateY(-6px); box-shadow: 0 25px 60px rgba(0,0,0,0.25); }
.quote-icon {
  font-size: 2.2rem; color: var(--accent); margin-bottom: 15px;
  animation: floatY 3s ease-in-out infinite;
  display: inline-block;
}
.client-info { display: flex; gap: 15px; align-items: center; margin-top: 20px; border-top: 1px solid #eee; padding-top: 20px; }
.c-avatar { font-size: 2.5rem; color: #ccc; }
.c-details strong { display: block; }

/* 8. CTA Gradient Banner */
.cta-gradient-banner { background: linear-gradient(135deg, #d3e5eb, #e7dbec); padding: 80px 20px; }
.cta-gradient-banner h2 { max-width: 600px; margin: 0 auto 20px; }
.cta-gradient-banner p { max-width: 500px; margin: 0 auto 30px; color: var(--text-dark); }
.cta-btns { display: flex; justify-content: center; gap: 15px; }

/* 9. Blog */
.blog-grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.blog-card {
  border-radius: var(--radius-md); overflow: hidden; box-shadow: var(--shadow-md);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease;
}
.blog-card:hover { transform: translateY(-12px); box-shadow: 0 25px 60px rgba(0,0,0,0.18); }
.b-img { overflow: hidden; }
.b-img img {
  width: 100%; height: 210px;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.blog-card:hover .b-img img { transform: scale(1.08); }
.b-content { padding: 30px; background: var(--primary-dark); color: var(--white); }
.b-content h4 { color: var(--white); margin-bottom: 20px; line-height: 1.4; }
.b-date {
  font-size: 0.8rem; color: var(--accent); text-transform: uppercase;
  letter-spacing: 1px; display: block; margin-bottom: 10px;
}
.read-more {
  color: var(--white); border-bottom: 1px solid rgba(255,255,255,0.4);
  padding-bottom: 2px; font-weight: 500; font-size: 0.9rem;
  transition: color 0.3s, border-color 0.3s;
  display: inline-flex; align-items: center; gap: 6px;
}
.read-more:hover { color: var(--accent); border-color: var(--accent); }

/* 10. FAQ */
.faq-home-split { display: flex; gap: 50px; align-items: center; }
.faq-left { flex: 1; }
.faq-right { flex: 1; }
.accordion-wrapper { margin-top: 30px; }
.acc-item { background: var(--primary-dark); border-radius: var(--radius-sm); margin-bottom: 15px; color: var(--white); overflow: hidden; }
.acc-head { padding: 20px; display: flex; justify-content: space-between; font-weight: 500; cursor: pointer; }
.acc-body { padding: 0 20px 20px; color: rgba(255,255,255,0.7); font-size: 0.95rem; }
.faq-float-card { position: absolute; bottom: -30px; left: 30px; background: var(--white); padding: 30px; border-radius: var(--radius-md); box-shadow: var(--shadow-lg); }

/* 11. Footer Light */
.footer-light { background: var(--bg-gradient); padding-top: 80px; position: relative; margin-top: 100px; }
.f-light-top { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 40px; padding-bottom: 50px; }

/* FOOTER LOGO — bigger */
.fl-logo {
  height: 70px;
  width: auto;
  object-fit: contain;
  margin-bottom: 20px;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.1));
  transition: transform 0.35s ease, filter 0.3s ease;
}
.fl-logo:hover { transform: scale(1.05); filter: drop-shadow(0 4px 16px rgba(7,46,39,0.2)); }

.fl-widget h4 { margin-bottom: 20px; color: var(--text-dark); font-weight: 700; }
.fl-widget ul li { margin-bottom: 12px; }
.fl-widget ul a {
  color: var(--text-gray);
  transition: color 0.25s ease, padding-left 0.25s ease;
  display: inline-block;
}
.fl-widget ul a:hover { color: var(--primary); padding-left: 5px; }
.fl-contact li {
  display: flex; gap: 10px; color: var(--text-gray); margin-bottom: 14px;
  align-items: flex-start;
}
.fl-contact li i { color: var(--primary-light); margin-top: 4px; flex-shrink: 0; }
.fl-subscribe {
  display: flex; margin-top: 20px; background: var(--white);
  padding: 5px; border-radius: var(--radius-pc); box-shadow: var(--shadow-sm);
  transition: box-shadow 0.3s;
}
.fl-subscribe:focus-within { box-shadow: 0 0 0 3px rgba(44,122,110,0.2); }
.fl-subscribe input { border: none; outline: none; padding: 10px 20px; width: 100%; border-radius: var(--radius-pc); }

.f-dark-bottom {
  background: var(--primary-dark); border-radius: var(--radius-md);
  padding: 25px 40px; display: flex; justify-content: space-between; align-items: center;
  color: var(--white); margin-bottom: 20px; transform: translateY(20px);
}
.social-circles { display: flex; gap: 10px; }
.social-circles a {
  width: 38px; height: 38px; background: rgba(255,255,255,0.1); color: var(--accent);
  display: flex; align-items: center; justify-content: center; border-radius: 50%;
  font-size: 0.9rem;
  transition: background 0.3s ease, transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1), color 0.3s;
}
.social-circles a:hover { background: var(--accent); color: var(--primary-dark); transform: translateY(-4px) scale(1.15); }
.copy-text { font-size: 0.9rem; color: rgba(255,255,255,0.6); }

/* Visa Services & Generic Subpages */
.page-header-light {
  background: linear-gradient(135deg, #e8edf3 0%, #f3f5f8 50%, #eaeff5 100%);
  background-size: 200% 200%;
  animation: gradientMove 10s ease infinite;
  padding: 160px 0 90px; text-align: center;
  position: relative; overflow: hidden;
}
.page-header-light::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background:
    radial-gradient(circle at 20% 50%, rgba(44,122,110,0.08) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(242,251,154,0.12) 0%, transparent 40%);
  pointer-events: none;
}
.page-header-light h1 {
  animation: fadeUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) both;
  position: relative; z-index: 1;
}
.page-header-light > .container > div {
  animation: fadeUp 0.8s 0.15s cubic-bezier(0.16, 1, 0.3, 1) both;
  position: relative; z-index: 1;
}

/* Hero title highlight text */
.hero-title .highlight {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* 8. CTA Gradient Banner enhanced */
.cta-gradient-banner {
  background: linear-gradient(135deg, #d3e5eb 0%, #e7dbec 50%, #d3e5eb 100%);
  background-size: 200% 200%;
  animation: gradientMove 8s ease infinite;
  padding: 90px 20px;
  position: relative; overflow: hidden;
}
.cta-gradient-banner::before {
  content: '';
  position: absolute;
  top: -30%; left: -30%;
  width: 160%; height: 160%;
  background: radial-gradient(circle, rgba(44,122,110,0.06) 0%, transparent 60%);
  animation: rotateGlobe 15s linear infinite;
  pointer-events: none;
}
.cta-gradient-banner h2 { max-width: 600px; margin: 0 auto 20px; position: relative; z-index: 1; }
.cta-gradient-banner p { max-width: 500px; margin: 0 auto 35px; color: var(--text-dark); position: relative; z-index: 1; }
.cta-btns { display: flex; justify-content: center; gap: 15px; position: relative; z-index: 1; }

.services-page-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.services-page-grid .svc-card { display: flex; flex-direction: column; }
.services-page-grid .svc-content { flex: 1; display: flex; flex-direction: column; }
.services-page-grid .svc-content p { flex: 1; }

/* Header Scrolled State */
.header.scrolled {
  position: fixed;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 2px 30px rgba(0,0,0,0.08);
  padding: 10px 0;
  animation: slideInDown 0.4s ease both;
}
.header.scrolled .nav-menu a { color: var(--text-dark); }
.header.scrolled .nav-menu a.active { color: var(--primary); }

/* Mobile Hamburger */
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; z-index: 101; padding: 5px; }
.hamburger span { width: 24px; height: 2px; background: var(--text-dark); transition: all 0.3s; border-radius: 2px; }
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translateY(5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translateY(-5px); }

/* CTA Strip — animated gradient */
.cta-strip {
  background: linear-gradient(135deg, #072e27 0%, #0f4b43 40%, #1a6b5c 70%, #072e27 100%);
  background-size: 300% 300%;
  animation: gradientMove 8s ease infinite;
  padding: 80px 20px; text-align: center;
  position: relative; overflow: hidden;
}
.cta-strip::before {
  content: '';
  position: absolute;
  top: -50%; left: -50%;
  width: 200%; height: 200%;
  background: radial-gradient(circle, rgba(242,251,154,0.06) 0%, transparent 60%);
  animation: rotateGlobe 20s linear infinite;
  pointer-events: none;
}
.cta-strip h2 { color: var(--white); max-width: 600px; margin: 0 auto 15px; }
.cta-strip p { color: rgba(255,255,255,0.75); max-width: 500px; margin: 0 auto 30px; }

/* Contact Page */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: start; }
.contact-box { background: var(--primary-dark); padding: 40px; border-radius: var(--radius-md); }
.contact-box h3 { color: var(--white); margin-bottom: 10px; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; color: rgba(255,255,255,0.8); font-size: 0.9rem; font-weight: 500; margin-bottom: 8px; }
.form-control { width: 100%; padding: 12px 16px; border: 1px solid rgba(255,255,255,0.15); background: rgba(255,255,255,0.08); color: var(--white); border-radius: var(--radius-sm); font-family: 'Outfit', sans-serif; font-size: 0.95rem; transition: border 0.3s; }
.form-control:focus { outline: none; border-color: var(--accent); background: rgba(255,255,255,0.12); }
.form-control::placeholder { color: rgba(255,255,255,0.4); }
textarea.form-control { resize: vertical; min-height: 100px; }

/* Contact Info Cards */
.contact-info-card {
  background: var(--primary-dark); color: var(--white); padding: 28px;
  border-radius: var(--radius-md); display: flex; align-items: center; gap: 20px;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s ease;
  border: 1px solid rgba(255,255,255,0.06);
}
.contact-info-card:hover { transform: translateY(-5px); box-shadow: 0 20px 45px rgba(0,0,0,0.25); }
.contact-info-card .card-icon {
  width: 58px; height: 58px; background: var(--accent); border-radius: 50%;
  color: var(--primary-dark); display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; flex-shrink: 0;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.contact-info-card:hover .card-icon { transform: scale(1.15) rotate(10deg); }
.contact-info-card h4 { color: var(--white); margin-bottom: 4px; font-size: 1.1rem; }
.contact-info-card p { margin: 0; color: rgba(255,255,255,0.75); font-size: 0.95rem; }

/* Credentials Section */
.credentials-section { background: var(--bg-light); }
.credentials-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; margin-top: 30px; }
.credential-card {
  background: var(--white); padding: 35px; border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm); border: 1px solid var(--border-color);
  display: flex; gap: 20px; align-items: flex-start;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease, border-color 0.4s;
  position: relative; overflow: hidden;
}
.credential-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 4px; height: 100%;
  background: var(--accent);
  border-radius: 4px 0 0 4px;
  transform: scaleY(0);
  transition: transform 0.4s ease;
  transform-origin: bottom;
}
.credential-card:hover { transform: translateY(-6px); box-shadow: 0 20px 50px rgba(7,46,39,0.12); border-color: rgba(7,46,39,0.15); }
.credential-card:hover::before { transform: scaleY(1); }
.credential-card .cred-icon {
  width: 62px; height: 62px; background: var(--primary-dark); color: var(--accent);
  display: flex; align-items: center; justify-content: center;
  border-radius: var(--radius-sm); font-size: 1.6rem; flex-shrink: 0;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), background 0.3s;
}
.credential-card:hover .cred-icon { transform: scale(1.12) rotate(-5deg); background: var(--primary); }
.credential-card h4 { margin-bottom: 8px; }
.credential-card p { margin: 0; font-size: 0.95rem; }

/* Legal Pages */
.legal-content { max-width: 800px; margin: 0 auto; line-height: 1.9; }
.legal-content h1 { margin-bottom: 10px; }
.legal-content .legal-date { color: var(--text-gray); margin-bottom: 30px; }
.legal-content h3 { margin-top: 35px; margin-bottom: 15px; color: var(--primary-dark); }

/* Map Embed */
.map-wrapper { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); }
.map-wrapper iframe { width: 100%; height: 350px; border: 0; display: block; }

/* -- RESPONSIVE SPECIFICS -- */
@media (max-width: 1024px) {
  .services-page-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-home-inner { flex-direction: column; text-align: center; }
  .hero-content-left { padding-right: 0; }
  .hero-buttons { justify-content: center; }
  .hero-floating-cards { justify-content: center; }
  .about-grid { flex-direction: column; text-align: center; }
  .banner-card-right { width: 100%; position: relative; padding: 30px; }
  .services-home-grid { grid-template-columns: 1fr; }
  .process-grid-4 { grid-template-columns: repeat(2, 1fr); }
  .testimonial-split { flex-direction: column; }
  .testimo-card { margin-left: 0; margin-top: -30px; }
  .blog-grid-3 { grid-template-columns: 1fr; }
  .faq-home-split { flex-direction: column; }
  .f-light-top { grid-template-columns: 1fr 1fr; }
  .flex-title-row { flex-direction: column; align-items: flex-start; gap: 20px; }
  .contact-grid { grid-template-columns: 1fr; }
  .credentials-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  h1 { font-size: 2.5rem; }
  .hamburger { display: flex; }
  .nav-menu { display: none; position: fixed; top: 0; left: 0; width: 100%; height: 100vh; background: var(--white); flex-direction: column; align-items: center; justify-content: center; gap: 25px; z-index: 100; }
  .nav-menu.active { display: flex; }
  .nav-menu a { font-size: 1.2rem; }
  .header .btn { display: none; }
  .about-stats-row { grid-template-columns: repeat(2, 1fr); gap: 30px; }
  .process-grid-4 { grid-template-columns: 1fr; }
  .f-light-top { grid-template-columns: 1fr; }
  .f-dark-bottom { flex-direction: column; gap: 20px; text-align: center; }
  .trust-strip .trust-inner { gap: 20px; }
  .hero-home { padding: 120px 0 60px; }
  .services-page-grid { grid-template-columns: 1fr; }
  .page-header-light { padding: 120px 0 50px; }
  .page-header-light h1 { font-size: 2.2rem; }
}
