/* =====================================================================
   SOUMYA ENTERPRISES — SITE STYLESHEET
   Single source of truth for all marketing pages (home, services, about,
   contact, blog, service detail pages, blog post / guide pages).
   Organized by component. Mobile-first responsive rules live with each
   component plus a final breakpoint section for cross-cutting tweaks.
   ===================================================================== */

/* ---------------------------------------------------------------------
   1. DESIGN TOKENS
   --------------------------------------------------------------------- */
:root {
  --bg: #020617;
  --surface: #0a1628;
  --surface-2: #0d1b2a;
  --border: rgba(255, 255, 255, 0.08);
  --border-cyan: rgba(34, 211, 238, 0.15);
  --cyan: #22d3ee;
  --cyan-dark: #06b6d4;
  --cyan-dim: rgba(34, 211, 238, 0.1);
  --text: #e2e8f0;
  --text-strong: #ffffff;
  --muted: #94a3b8;
  --muted-2: #64748b;
  --error: #f87171;
  --success: #34d399;
  --warn: #fbbf24;

  --font-display: 'Syne', Arial, sans-serif;
  --font-body: 'DM Sans', Arial, sans-serif;

  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 20px;

  --shadow-cyan: 0 10px 30px rgba(34, 211, 238, 0.15);
  --container-width: 1200px;

  --transition: 0.25s ease;
}

/* ---------------------------------------------------------------------
   2. RESET & BASE
   --------------------------------------------------------------------- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
}

ul {
  list-style: none;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.25;
  color: var(--text-strong);
}

main {
  display: block;
}

/* Visually-hide content for screen readers while keeping it announced */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Skip-to-content link for keyboard users */
.skip-link {
  position: absolute;
  top: -50px;
  left: 10px;
  background: var(--cyan);
  color: #000;
  padding: 10px 16px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  z-index: 10000;
  transition: top var(--transition);
}

.skip-link:focus {
  top: 10px;
}

/* Consistent focus ring across all interactive elements */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--cyan);
  outline-offset: 2px;
}

/* ---------------------------------------------------------------------
   3. LAYOUT HELPERS
   --------------------------------------------------------------------- */
section {
  padding: 80px 60px;
}

section h2 {
  text-align: center;
  font-size: 32px;
}

.center-text {
  text-align: center;
  color: var(--muted);
  margin-bottom: 30px;
}

.badge {
  display: inline-flex;
  align-items: center;
  background: var(--cyan-dim);
  color: var(--cyan);
  padding: 5px 14px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  border: 1px solid var(--border-cyan);
}

/* ---------------------------------------------------------------------
   4. INTRO SPLASH ANIMATION
   --------------------------------------------------------------------- */
#intro {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100vh;
  background: var(--bg);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.intro-content {
  text-align: center;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeIn 0.8s ease forwards;
}

.intro-content img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  margin: 0 auto 15px;
}

.intro-content p {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--text-strong);
}

#intro.fade-out {
  animation: fadeOut 0.4s ease forwards;
}

@keyframes fadeIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeOut {
  to {
    opacity: 0;
    visibility: hidden;
  }
}

/* Respect users who prefer reduced motion */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .intro-content,
  #intro.fade-out,
  .hero-bg img,
  .marquee-content,
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* ---------------------------------------------------------------------
   5. NAVBAR
   --------------------------------------------------------------------- */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 14px 48px;
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(15, 23, 42, 0.78);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  text-decoration: none;
  color: var(--text-strong);
}

.logo img {
  height: 36px;
  width: 36px;
  object-fit: cover;
  border-radius: 50%;
  background: #fff;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 26px;
  flex-wrap: nowrap;
}

.nav-links a {
  position: relative;
  color: #e2e8f0;
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  transition: color var(--transition);
}

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

.nav-links a:hover,
.nav-links a.active {
  color: var(--cyan);
}

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

.nav-links a.btn::after,
.nav-links a.nav-phone::after {
  display: none;
}

.nav-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  font-weight: 600;
  white-space: nowrap;
}

.nav-phone i {
  width: 16px;
  height: 16px;
}

.nav-phone:hover {
  background: var(--cyan-dim);
  border-color: var(--cyan);
}

.nav-links .btn {
  padding: 9px 20px;
  font-size: 14px;
  border-radius: 8px;
  margin-left: 0;
  line-height: 1;
}

/* Hamburger toggle — hidden on desktop */
.nav-toggle {
  display: none;
  width: 40px;
  height: 40px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.04);
  cursor: pointer;
  align-items: center;
  justify-content: center;
}

.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  content: "";
  display: block;
  width: 20px;
  height: 2px;
  background: var(--text-strong);
  position: relative;
  transition: transform var(--transition), opacity var(--transition);
}

.nav-toggle span::before {
  position: absolute;
  top: -6px;
}

.nav-toggle span::after {
  position: absolute;
  top: 6px;
}

.nav-toggle[aria-expanded="true"] span {
  background: transparent;
}

.nav-toggle[aria-expanded="true"] span::before {
  transform: translateY(6px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span::after {
  transform: translateY(-6px) rotate(-45deg);
}

/* ---------------------------------------------------------------------
   6. HERO (generic page hero used on about / contact / service pages)
   --------------------------------------------------------------------- */
.hero {
  position: relative;
  overflow: hidden;
  text-align: center;
  padding: 140px 20px;
  min-height: 50vh;
  background: radial-gradient(circle at center, #0f172a 0%, #020617 70%);
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.hero-bg img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0;
  transition: opacity 0.8s ease;
}

.hero-bg img.active {
  opacity: 1;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(2, 6, 23, 0.72);
  z-index: 1;
}

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

.hero-eyebrow {
  display: inline-block;
  color: var(--cyan);
  background: var(--cyan-dim);
  border: 1px solid var(--border-cyan);
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 18px;
}

.hero h1 {
  font-size: 52px;
  margin-bottom: 20px;
  color: var(--text-strong);
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.9);
}

.hero p {
  color: #f1f5f9;
  max-width: 700px;
  margin: 0 auto;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.8);
}

.hero-buttons {
  margin-top: 25px;
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* Trust metrics row under hero */
.trust-metrics {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 25px;
  margin-top: 40px;
  flex-wrap: wrap;
}

.metric {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 12px 16px;
  border-radius: var(--radius-md);
  min-width: 160px;
  transition: var(--transition);
}

.metric:hover {
  transform: translateY(-5px);
  background: var(--cyan-dim);
  border-color: var(--cyan);
}

.metric i {
  color: var(--cyan);
  width: 28px;
  height: 28px;
  flex-shrink: 0;
}

.metric strong {
  display: block;
  color: var(--text-strong);
  font-size: 18px;
  font-weight: 700;
}

.metric span {
  color: var(--muted);
  font-size: 14px;
}

/* ---------------------------------------------------------------------
   7. MARQUEE
   --------------------------------------------------------------------- */
.marquee {
  width: 100%;
  overflow: hidden;
  background: var(--bg);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 15px 0;
  mask-image: linear-gradient(to right, transparent, white 10%, white 90%, transparent);
}

.marquee-content {
  display: flex;
  width: max-content;
  animation: scrollText 25s linear infinite;
}

.marquee span {
  font-size: 16px;
  color: var(--cyan);
  margin-right: 50px;
  white-space: nowrap;
  text-shadow: 0 0 8px rgba(34, 211, 238, 0.3);
}

@keyframes scrollText {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ---------------------------------------------------------------------
   8. BUTTONS
   --------------------------------------------------------------------- */
.btn {
  padding: 12px 26px;
  background: linear-gradient(135deg, var(--cyan), var(--cyan-dark));
  border: none;
  border-radius: 10px;
  color: #000;
  font-weight: 700;
  text-decoration: none;
  display: inline-block;
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition);
  box-shadow: 0 0 15px rgba(34, 211, 238, 0.35);
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-3px);
  box-shadow: 0 0 25px rgba(34, 211, 238, 0.7);
}

.btn.secondary {
  background: transparent;
  color: var(--text-strong);
  border: 1px solid var(--border-cyan);
  box-shadow: none;
}

.btn.secondary:hover {
  background: var(--cyan-dim);
  border-color: var(--cyan);
  box-shadow: 0 0 20px rgba(34, 211, 238, 0.25);
}

.btn-outline {
  padding: 10px 18px;
  border: 1px solid var(--cyan);
  border-radius: 10px;
  color: var(--cyan);
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  display: inline-block;
  transition: var(--transition);
}

.btn-outline:hover {
  background: var(--cyan);
  color: #000;
}

/* ---------------------------------------------------------------------
   9. FILTER BUTTONS (services page)
   --------------------------------------------------------------------- */
.filter-buttons {
  text-align: center;
  margin-bottom: 30px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
}

.filter-buttons button {
  background: var(--surface);
  color: var(--text);
  border: 1px solid #1e293b;
  padding: 8px 16px;
  border-radius: 20px;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 14px;
  transition: var(--transition);
}

.filter-buttons button.active,
.filter-buttons button:hover,
.filter-buttons button:focus-visible {
  background: var(--cyan);
  color: #000;
  border-color: var(--cyan);
}

/* ---------------------------------------------------------------------
   10. CARD GRID (services / why-choose / core values)
   --------------------------------------------------------------------- */
.cards {
  max-width: var(--container-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

.card {
  background: linear-gradient(145deg, var(--surface), var(--surface-2));
  border-radius: var(--radius-lg);
  padding: 22px;
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  min-height: 200px;
  transition: var(--transition);
}

.card:hover {
  transform: translateY(-8px);
  border-color: var(--cyan);
  box-shadow: var(--shadow-cyan);
}

.card-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}

.card .icon {
  font-size: 26px;
  color: var(--cyan);
}

.card i[data-lucide] {
  color: var(--cyan);
  width: 28px;
  height: 28px;
}

.card h3 {
  margin: 10px 0;
  font-size: 18px;
}

.card .desc {
  color: var(--muted);
  font-size: 14px;
}

.card ul {
  margin: 15px 0;
}

.card ul li {
  margin-bottom: 6px;
  color: #cbd5f5;
  font-size: 14px;
}

.card .btn {
  margin-top: auto;
}

.card-buttons {
  display: flex;
  gap: 10px;
  margin-top: auto;
  flex-wrap: wrap;
}

/* Core value / "why choose" cards used on the about page */
.core-card {
  text-align: center;
  padding: 30px 25px;
  min-height: 200px;
}

.core-card i {
  font-size: 32px;
  color: var(--cyan);
  margin: 0 auto 15px;
}

/* ---------------------------------------------------------------------
   11. EXPORT SERVICES PREVIEW (home page)
   --------------------------------------------------------------------- */
.export-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  max-width: var(--container-width);
  margin: 0 auto;
}

.gradient-text {
  background: linear-gradient(135deg, var(--cyan), #818cf8);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.export-text h2 {
  text-align: left;
  margin-bottom: 16px;
}

.export-text p {
  color: var(--text);
  margin-bottom: 20px;
}

.export-list li {
  margin-bottom: 10px;
  padding-left: 26px;
  position: relative;
  color: var(--text);
}

.export-list li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: var(--cyan);
}

.export-img img {
  width: 100%;
  border-radius: var(--radius-md);
}

/* ---------------------------------------------------------------------
   12. CTA SECTIONS
   --------------------------------------------------------------------- */
.cta-section {
  text-align: center;
  padding: 80px 20px;
  background: linear-gradient(180deg, var(--bg), var(--surface-2));
}

.cta-section h2 {
  font-size: 28px;
  margin-bottom: 12px;
}

.cta-section p {
  color: var(--muted);
  font-size: 16px;
  margin-bottom: 24px;
}

.cta-section .btn {
  margin-top: 0;
}

.cta-box {
  padding: 60px 20px;
}

.cta-card {
  max-width: 900px;
  margin: 0 auto;
  padding: 25px 30px;
  border-radius: 14px;
  text-align: center;
  background: linear-gradient(145deg, var(--surface), var(--surface-2));
  border: 1px solid var(--border-cyan);
  box-shadow: 0 10px 30px rgba(34, 211, 238, 0.08);
}

.cta-card h3 {
  margin-bottom: 10px;
  font-size: 20px;
}

.cta-card p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

.cta-card a {
  color: var(--cyan);
  text-decoration: none;
  font-weight: 600;
}

.cta-card a:hover {
  text-decoration: underline;
}

/* ---------------------------------------------------------------------
   13. FOOTER
   --------------------------------------------------------------------- */
.footer {
  background: var(--surface);
  padding: 60px 20px 20px;
  color: #cbd5e1;
}

.footer-container {
  max-width: var(--container-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.footer-logo img {
  height: 28px;
  width: 28px;
  border-radius: 50%;
  object-fit: cover;
}

.footer-logo span {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--text-strong);
}

.footer-col h4 {
  margin-bottom: 15px;
  font-size: 16px;
}

.footer-col p {
  font-size: 14px;
  line-height: 1.8;
  color: #cbd5e1;
}

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

.footer-col ul li a {
  text-decoration: none;
  color: #cbd5e1;
  transition: color var(--transition);
}

.footer-col ul li a:hover {
  color: var(--cyan);
}

.footer-bottom {
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
  text-align: center;
  font-size: 13px;
  color: var(--muted-2);
}

/* ---------------------------------------------------------------------
   14. ABOUT PAGE
   --------------------------------------------------------------------- */
.about-hero {
  position: relative;
  height: 400px;
  background:
    linear-gradient(rgba(2, 6, 23, 0.6), rgba(2, 6, 23, 0.75)),
    url('https://images.unsplash.com/photo-1521737604893-d14cc237f11d') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 20px;
  overflow: visible;
}

.about-hero::after {
  content: none;
}

.about-hero .hero-content {
  max-width: 800px;
}

.about-hero h1 {
  font-size: 42px;
  margin-bottom: 10px;
}

.about-hero p {
  color: var(--muted);
  text-shadow: none;
}

.team-section {
  max-width: 1400px;
  margin: 0 auto;
  padding: 80px 20px;
  text-align: center;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-top: 20px;
}

.team-card {
  background: linear-gradient(145deg, var(--surface), var(--surface-2));
  border: 1px solid var(--border);
  border-radius: 25px;
  padding: 45px;
  text-align: left;
  transition: var(--transition);
}

.team-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-cyan);
}

.team-card img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  border-radius: 17px;
  margin-bottom: 20px;
}

.team-card h3 {
  margin-bottom: 8px;
}

.team-card p {
  color: var(--muted);
  font-size: 14px;
}

.about-highlight {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px 80px;
}

.mv-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-bottom: 50px;
}

.mv-card {
  background: linear-gradient(145deg, var(--surface), var(--surface-2));
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 25px;
  transition: var(--transition);
}

.mv-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-cyan);
}

.mv-card i {
  color: var(--cyan);
  margin-bottom: 10px;
  width: 28px;
  height: 28px;
}

.mv-card h3 {
  margin-bottom: 15px;
}

.mv-card p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
}

.why-card {
  max-width: 1400px;
  margin: 0 auto;
  padding: 40px;
  border-radius: var(--radius-xl);
  text-align: center;
  background: linear-gradient(145deg, var(--surface), var(--surface-2));
  border: 1px solid var(--border-cyan);
}

.why-card h2 {
  margin-bottom: 10px;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  margin-top: 30px;
}

.why-col {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.why-col p {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 12px;
  text-align: left;
  color: #cbd5e1;
  font-size: 16px;
  line-height: 1.6;
}

.why-col i {
  color: var(--cyan);
  flex-shrink: 0;
}

/* ---------------------------------------------------------------------
   15. CONTACT PAGE
   --------------------------------------------------------------------- */
.contact-section {
  padding-top: 60px;
}

.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 50px;
  max-width: var(--container-width);
  margin: 0 auto;
  align-items: start;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.info-card {
  display: flex;
  gap: 15px;
  align-items: flex-start;
  background: linear-gradient(145deg, var(--surface), var(--surface-2));
  padding: 18px;
  border-radius: 14px;
  border: 1px solid var(--border);
  transition: var(--transition);
}

.info-card:hover {
  border-color: var(--border-cyan);
  transform: translateY(-3px);
}

.info-card i {
  color: var(--cyan);
  flex-shrink: 0;
}

.info-card h3 {
  margin-bottom: 5px;
  font-size: 16px;
}

.info-card p {
  color: var(--muted);
  font-size: 14px;
}

.info-card a {
  color: var(--muted);
  text-decoration: none;
}

.info-card a:hover {
  color: var(--cyan);
}

.contact-form-box {
  background: linear-gradient(145deg, var(--surface), var(--surface-2));
  padding: 30px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
}

.contact-form-box h2 {
  margin-bottom: 20px;
  text-align: left;
  font-size: 24px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.contact-form label {
  display: block;
  margin-top: 15px;
  font-size: 13px;
  color: #cbd5f5;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 12px;
  margin-top: 6px;
  border-radius: 10px;
  border: 1px solid #1e293b;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 14px;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--cyan);
  box-shadow: 0 0 0 3px rgba(34, 211, 238, 0.15);
}

.contact-form textarea {
  height: 140px;
  resize: vertical;
}

.contact-form .btn {
  margin-top: 20px;
  width: 100%;
  border: none;
}

.contact-form .error {
  color: var(--error);
  font-size: 12px;
  margin-top: 5px;
  display: block;
}

/* ---------------------------------------------------------------------
   16. SERVICE DETAIL PAGES (service-*.html)
   --------------------------------------------------------------------- */
.back-link {
  display: block;
  width: fit-content;
  align-items: center;
  gap: 8px;
  color: var(--cyan);
  text-decoration: none;
  font-size: 14px;
  padding: 24px 40px 0;
}

.back-link:hover {
  text-decoration: underline;
}

.service-hero {
  background: linear-gradient(135deg, var(--surface) 0%, var(--bg) 60%, var(--surface-2) 100%);
  padding: 60px 40px;
  text-align: center;
  border-bottom: 1px solid var(--border-cyan);
}

.service-hero .icon-large {
  font-size: 52px;
  margin-bottom: 16px;
  display: block;
}

.service-hero .badge {
  margin-bottom: 18px;
}

.service-hero h1 {
  font-size: 42px;
  margin-bottom: 16px;
}

.service-hero p {
  color: var(--muted);
  max-width: 680px;
  margin: 0 auto;
  font-size: 16px;
  line-height: 1.7;
}

.service-detail {
  max-width: var(--container-width);
  margin: 60px auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 40px;
  align-items: start;
}

.detail-main h2 {
  text-align: left;
  font-size: 24px;
  margin-bottom: 16px;
  color: var(--cyan);
}

.detail-main p {
  color: #cbd5e1;
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 20px;
}

.benefits-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 20px 0;
}

.benefit-item {
  background: linear-gradient(145deg, var(--surface), var(--surface-2));
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 18px;
  display: flex;
  gap: 12px;
  align-items: flex-start;
  transition: var(--transition);
}

.benefit-item:hover {
  border-color: var(--border-cyan);
  transform: translateY(-3px);
}

.benefit-icon {
  font-size: 22px;
  flex-shrink: 0;
}

.benefit-item h4 {
  font-size: 14px;
  margin-bottom: 4px;
}

.benefit-item p {
  color: var(--muted);
  font-size: 13px;
  margin: 0;
}

.steps {
  margin: 30px 0;
}

.steps h2 {
  text-align: left;
  font-size: 22px;
  margin-bottom: 20px;
  color: var(--cyan);
}

.step {
  display: flex;
  gap: 18px;
  margin-bottom: 22px;
  align-items: flex-start;
}

.step-num {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--cyan-dim);
  border: 1px solid var(--cyan);
  color: var(--cyan);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
  flex-shrink: 0;
}

.step-text h4 {
  margin-bottom: 5px;
  font-size: 15px;
}

.step-text p {
  color: var(--muted);
  font-size: 14px;
  margin: 0;
}

.detail-sidebar {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.sidebar-card {
  background: linear-gradient(145deg, var(--surface), var(--surface-2));
  border: 1px solid var(--border-cyan);
  border-radius: var(--radius-lg);
  padding: 24px;
}

.sidebar-card h3 {
  font-size: 16px;
  margin-bottom: 16px;
  color: var(--cyan);
}

.sidebar-card p {
  color: var(--muted);
  font-size: 14px;
  margin-bottom: 12px;
}

.sidebar-card ul li {
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
  color: #cbd5e1;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.sidebar-card ul li:last-child {
  border-bottom: none;
}

.sidebar-card .btn {
  width: 100%;
  text-align: center;
  margin-top: 10px;
  display: block;
}

.eligibility-list li::before {
  content: "✔";
  color: var(--cyan);
  font-weight: 700;
}

.docs-list li::before {
  content: "📄";
}

/* ---------------------------------------------------------------------
   17. BLOG LISTING PAGE
   --------------------------------------------------------------------- */
.blog-hero {
  text-align: center;
  padding: 100px 20px 60px;
  background: radial-gradient(ellipse at top, var(--surface) 0%, var(--bg) 70%);
  border-bottom: 1px solid var(--border-cyan);
}

.blog-hero h1 {
  font-size: 46px;
  margin-bottom: 14px;
}

.blog-hero p {
  color: var(--muted-2);
  max-width: 580px;
  margin: 0 auto;
  font-size: 16px;
  text-shadow: none;
}

.blog-grid-section {
  max-width: var(--container-width);
  margin: 60px auto;
  padding: 0 40px;
}

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

.blog-card {
  background: var(--surface);
  border: 1px solid var(--border-cyan);
  border-radius: var(--radius-xl);
  overflow: hidden;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
}

.blog-card:hover {
  transform: translateY(-6px);
  border-color: var(--cyan);
  box-shadow: 0 16px 40px rgba(34, 211, 238, 0.12);
}

.blog-card-img {
  height: 180px;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--border-cyan);
}

.blog-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.blog-card:hover .blog-card-img img {
  transform: scale(1.06);
}

.blog-card-body {
  padding: 22px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.blog-meta {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-bottom: 12px;
  flex-wrap: wrap;
}

.blog-tag {
  padding: 3px 10px;
  border-radius: 20px;
  background: var(--cyan-dim);
  color: var(--cyan);
  border: 1px solid var(--border-cyan);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.4px;
}

.blog-date {
  color: var(--muted-2);
  font-size: 12px;
}

.blog-card h3 {
  font-size: 17px;
  margin-bottom: 10px;
  line-height: 1.4;
}

.blog-card p {
  color: var(--muted-2);
  font-size: 14px;
  line-height: 1.6;
  flex: 1;
}

.blog-read-more {
  margin-top: 16px;
  color: var(--cyan);
  font-size: 13px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 6px;
}

.featured-card {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.featured-card .blog-card-img {
  height: 100%;
  min-height: 260px;
}

.featured-card .blog-card-body {
  padding: 36px;
}

.featured-card h3 {
  font-size: 24px;
}

.featured-card p {
  font-size: 15px;
}

/* ---------------------------------------------------------------------
   18. BLOG POST / GUIDE PAGES
   --------------------------------------------------------------------- */
.post-hero-img {
  width: 100%;
  max-height: 420px;
  object-fit: cover;
  border-bottom: 1px solid var(--border-cyan);
}

.post-hero {
  padding: 60px 20px 50px;
  background: radial-gradient(ellipse at top, var(--surface), var(--bg));
  border-bottom: 1px solid var(--border-cyan);
  text-align: center;
}

.post-hero h1 {
  font-size: 36px;
  max-width: 800px;
  margin: 0 auto 16px;
  line-height: 1.25;
}

.post-meta {
  color: var(--muted-2);
  font-size: 14px;
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 12px;
}

.post-body {
  max-width: 780px;
  margin: 60px auto;
  padding: 0 24px;
}

.post-body h2 {
  text-align: left;
  font-size: 22px;
  color: var(--cyan);
  margin: 36px 0 14px;
}

.post-body p {
  color: #cbd5e1;
  font-size: 15px;
  line-height: 1.85;
  margin-bottom: 16px;
}

.post-body ul {
  margin: 12px 0 20px 20px;
  list-style: disc;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.post-body ul li {
  color: #cbd5e1;
  font-size: 15px;
}

.post-body a {
  color: var(--cyan);
  text-decoration: none;
}

.post-body a:hover {
  text-decoration: underline;
}

.post-body strong {
  color: var(--text-strong);
}

.post-cta {
  background: linear-gradient(135deg, var(--surface), #0d2540);
  border: 1px solid var(--border-cyan);
  border-radius: var(--radius-lg);
  padding: 32px;
  text-align: center;
  margin: 50px 0;
}

.post-cta h3 {
  font-size: 20px;
  margin-bottom: 10px;
}

.post-cta p {
  color: var(--muted-2);
  font-size: 14px;
  margin-bottom: 20px;
}

.related,
.related-guides {
  max-width: 780px;
  margin: 0 auto 60px;
  padding: 0 24px;
}

.related h3,
.related-guides h3 {
  font-size: 18px;
  margin-bottom: 20px;
}

.related-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.related-card {
  background: var(--surface);
  border: 1px solid var(--border-cyan);
  border-radius: var(--radius-md);
  padding: 18px;
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

.related-card:hover {
  border-color: var(--cyan);
  transform: translateY(-3px);
}

.related-card .rtag {
  font-size: 11px;
  color: var(--cyan);
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.related-card h4 {
  font-size: 14px;
  line-height: 1.4;
}

.related-guides ul {
  list-style: disc;
  padding-left: 20px;
}

.related-guides a {
  text-decoration: none;
  color: var(--cyan);
}

.related-guides a:hover {
  text-decoration: underline;
}

/* ---------------------------------------------------------------------
   19. FLOATING WIDGETS — WhatsApp + Chat
   --------------------------------------------------------------------- */
.whatsapp-btn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #25d366;
  color: #fff;
  padding: 12px 18px;
  border-radius: 50px;
  text-decoration: none;
  z-index: 9000;
  font-weight: 600;
  font-size: 14px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  transition: var(--transition);
}

.whatsapp-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.chat-btn {
  position: fixed;
  bottom: 20px;
  left: 20px;
  background: var(--cyan);
  color: #000;
  width: 50px;
  height: 50px;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  z-index: 9000;
  font-size: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  transition: var(--transition);
}

.chat-btn:hover {
  transform: translateY(-3px) scale(1.05);
}

.chat-box {
  position: fixed;
  bottom: 80px;
  left: 20px;
  background: var(--surface);
  padding: 18px;
  border: 1px solid var(--border-cyan);
  border-radius: var(--radius-md);
  width: 260px;
  color: var(--text);
  z-index: 9000;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.chat-box[hidden] {
  display: none;
}

.chat-box p {
  margin-bottom: 10px;
  font-size: 14px;
  line-height: 1.5;
}

.chat-box button {
  width: 100%;
  margin-top: 8px;
  padding: 10px;
  border: none;
  background: var(--cyan);
  color: #000;
  border-radius: 8px;
  font-weight: 600;
  font-family: var(--font-body);
  cursor: pointer;
  transition: var(--transition);
}

.chat-box button:hover {
  background: var(--cyan-dark);
}

/* =====================================================================
   20. RESPONSIVE — single consolidated breakpoint set (mobile-first)
   ===================================================================== */
@media (max-width: 1024px) {
  .cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  section {
    padding: 50px 20px;
  }

  .navbar {
    padding: 14px 20px;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    width: min(78vw, 300px);
    background: rgba(10, 22, 40, 0.98);
    backdrop-filter: blur(16px);
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 22px;
    padding: 90px 28px 28px;
    transform: translateX(100%);
    transition: transform var(--transition);
    border-left: 1px solid var(--border);
  }

  .nav-links.open {
    transform: translateX(0);
  }

  .nav-links a {
    font-size: 17px;
  }

  .nav-links .btn,
  .nav-phone {
    width: 100%;
    justify-content: center;
  }

  .hero {
    padding: 80px 20px;
    min-height: auto;
  }

  .hero h1 {
    font-size: 30px;
  }

  .hero p {
    font-size: 15px;
  }

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

  .hero-buttons .btn {
    width: 100%;
    text-align: center;
  }

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

  .export-section {
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: center;
  }

  .export-text h2,
  .export-text .center-text {
    text-align: center;
  }

  .marquee span {
    font-size: 14px;
    margin-right: 30px;
  }

  .footer-container {
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: center;
  }

  .footer-logo {
    justify-content: center;
  }

  .contact-wrapper,
  .form-row,
  .contact-container,
  .team-grid,
  .mv-grid,
  .why-grid,
  .service-detail,
  .benefits-grid,
  .related-grid {
    grid-template-columns: 1fr;
  }

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

  .featured-card {
    grid-template-columns: 1fr;
  }

  .blog-hero h1 {
    font-size: 30px;
  }

  .post-hero h1 {
    font-size: 26px;
  }

  .service-hero h1 {
    font-size: 30px;
  }

  .about-hero h1 {
    font-size: 30px;
  }

  .team-card img {
    height: 220px;
  }

  .team-card {
    padding: 25px;
  }

  .why-col p {
    font-size: 15px;
  }
}

@media (max-width: 480px) {
  .logo span {
    display: none;
  }

  .hero h1 {
    font-size: 26px;
  }

  .chat-box {
    width: calc(100vw - 40px);
  }
}
