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

:root {
  --primary: #0a6eb4;
  --primary-dark: #084a7a;
  --primary-light: #1a8fd8;
  --turquoise: #00b4d8;
  --turquoise-light: #48cae4;
  --turquoise-pale: #90e0ef;
  --accent: #0077b6;
  --dark: #0d1b2a;
  --dark-card: #1b2838;
  --text: #1b2838;
  --text-light: #475569;
  --text-muted: #94a3b8;
  --bg: #f8fafc;
  --bg-alt: #f0f7ff;
  --white: #ffffff;
  --border: #e2e8f0;
  --shadow: 0 4px 24px rgba(10,110,180,0.08);
  --shadow-lg: 0 12px 40px rgba(10,110,180,0.12);
  --radius: 16px;
  --radius-sm: 10px;
  --transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
  --gradient: linear-gradient(135deg, var(--primary) 0%, var(--turquoise) 100%);
  --gradient-dark: linear-gradient(135deg, var(--dark) 0%, var(--primary-dark) 100%);
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: var(--transition); }
ul { list-style: none; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ─── TOP BAR ─── */
.top-bar {
  background: var(--gradient-dark);
  color: var(--white);
  padding: 8px 0;
  font-size: 0.85rem;
}
.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.top-bar a { color: var(--turquoise-pale); }
.top-bar a:hover { color: var(--white); }
.top-bar-left, .top-bar-right { display: flex; align-items: center; gap: 18px; }
.top-bar svg { width: 16px; height: 16px; flex-shrink: 0; }

/* ─── HEADER ─── */
.header {
  background: var(--white);
  box-shadow: 0 2px 16px rgba(0,0,0,0.06);
  position: sticky;
  top: 0;
  z-index: 100;
}
.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 12px;
  padding-bottom: 12px;
}
.logo { display: flex; align-items: center; gap: 12px; }
.logo img { height: 52px; width: 52px; object-fit: contain; }
.logo-text { font-weight: 800; font-size: 1.25rem; color: var(--primary); line-height: 1.2; }
.logo-text small { display: block; font-weight: 500; font-size: 0.75rem; color: var(--text-light); }

/* Nav */
.nav { display: flex; align-items: center; gap: 4px; }
.nav a {
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-light);
}
.nav a:hover, .nav a.active { color: var(--primary); background: var(--bg-alt); }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  margin: 5px 0;
  transition: var(--transition);
  border-radius: 2px;
}

.cta-phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gradient);
  color: var(--white);
  padding: 10px 22px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
  box-shadow: 0 4px 16px rgba(0,180,216,0.3);
  white-space: nowrap;
}
.cta-phone:hover { transform: translateY(-2px); box-shadow: 0 6px 24px rgba(0,180,216,0.4); }
.cta-phone svg { width: 18px; height: 18px; }

/* ─── HERO ─── */
.hero {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--gradient-dark);
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.25;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(13,27,42,0.85) 0%, rgba(10,110,180,0.7) 100%);
  z-index: 1;
}
.hero .container { position: relative; z-index: 2; padding-top: 60px; padding-bottom: 60px; }
.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  color: var(--white);
  margin-bottom: 20px;
  line-height: 1.2;
}
.hero h1 span { color: var(--turquoise-light); }
.hero p { color: rgba(255,255,255,0.85); font-size: 1.15rem; max-width: 600px; margin-bottom: 32px; line-height: 1.8; }
.hero-buttons { display: flex; gap: 16px; flex-wrap: wrap; }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  transition: var(--transition);
  cursor: pointer;
  border: none;
}
.btn-primary {
  background: var(--gradient);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(0,180,216,0.35);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 32px rgba(0,180,216,0.45); }
.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.4);
}
.btn-outline:hover { background: rgba(255,255,255,0.1); border-color: var(--white); }

/* ─── BREADCRUMB ─── */
.breadcrumb {
  background: var(--bg-alt);
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
}
.breadcrumb ol { display: flex; align-items: center; gap: 8px; font-size: 0.88rem; }
.breadcrumb a { color: var(--primary); }
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb .sep { color: var(--text-muted); }
.breadcrumb .current { color: var(--text-light); }

/* ─── SECTIONS ─── */
.section { padding: 80px 0; }
.section-alt { background: var(--bg-alt); }
.section-dark { background: var(--gradient-dark); color: var(--white); }

.section-header { text-align: center; margin-bottom: 48px; }
.section-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  color: var(--text);
  margin-bottom: 12px;
}
.section-dark .section-header h2 { color: var(--white); }
.section-header .underline {
  width: 60px;
  height: 4px;
  background: var(--gradient);
  margin: 0 auto 16px;
  border-radius: 2px;
}
.section-header p { color: var(--text-light); font-size: 1.05rem; max-width: 600px; margin: 0 auto; }
.section-dark .section-header p { color: rgba(255,255,255,0.7); }

/* ─── SERVICE CARDS ─── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}
.service-card {
  background: var(--white);
  padding: 32px 24px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  text-align: center;
  transition: var(--transition);
  border: 1px solid transparent;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--turquoise-pale);
}
.service-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 16px;
  background: var(--bg-alt);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.service-icon svg { width: 28px; height: 28px; color: var(--primary); }
.service-card h3 { font-size: 1.05rem; margin-bottom: 8px; color: var(--text); }
.service-card p { font-size: 0.9rem; color: var(--text-light); }

/* ─── FEATURES / WHY US ─── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
}
.feature-item {
  text-align: center;
  padding: 24px;
}
.feature-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 14px;
  background: rgba(0,180,216,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.section-dark .feature-icon { background: rgba(0,180,216,0.25); }
.feature-icon svg { width: 24px; height: 24px; color: var(--turquoise); }
.section-dark .feature-icon svg { color: var(--turquoise-light); }
.feature-item h3 { font-size: 0.95rem; margin-bottom: 6px; }
.section-dark .feature-item h3 { color: var(--white); }
.feature-item p { font-size: 0.85rem; color: var(--text-muted); }

/* ─── PROCESS STEPS ─── */
.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 32px;
  counter-reset: step;
}
.process-step {
  text-align: center;
  position: relative;
  counter-increment: step;
}
.process-step::before {
  content: counter(step);
  width: 48px;
  height: 48px;
  background: var(--gradient);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.1rem;
  margin: 0 auto 14px;
}
.process-step h3 { font-size: 0.95rem; margin-bottom: 6px; }
.process-step p { font-size: 0.85rem; color: var(--text-light); }

/* ─── REGION LINKS ─── */
.regions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
}
.region-card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 18px 20px;
  background: var(--white);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow);
  transition: var(--transition);
  border: 1px solid transparent;
}
.region-card:hover {
  transform: translateY(-3px);
  border-color: var(--turquoise);
  box-shadow: var(--shadow-lg);
}
.region-card svg { width: 20px; height: 20px; color: var(--turquoise); flex-shrink: 0; }
.region-card span { font-weight: 600; font-size: 0.95rem; color: var(--text); }

/* ─── CONTENT BLOCK ─── */
.content-block { max-width: 800px; margin: 0 auto; }
.content-block h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  margin-bottom: 16px;
  color: var(--text);
}
.content-block p { margin-bottom: 16px; color: var(--text-light); }
.content-block ul { margin: 16px 0; padding-left: 0; }
.content-block ul li {
  padding: 8px 0 8px 28px;
  position: relative;
  color: var(--text-light);
}
.content-block ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 16px;
  width: 8px;
  height: 8px;
  background: var(--turquoise);
  border-radius: 50%;
}

/* ─── CONTACT INFO ─── */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.contact-card {
  background: var(--white);
  padding: 28px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.contact-card .icon-wrap {
  width: 48px;
  height: 48px;
  background: var(--bg-alt);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-card .icon-wrap svg { width: 22px; height: 22px; color: var(--primary); }
.contact-card h3 { font-size: 0.95rem; margin-bottom: 4px; }
.contact-card p { font-size: 0.9rem; color: var(--text-light); }
.contact-card a { color: var(--primary); font-weight: 500; }
.contact-card a:hover { color: var(--turquoise); }

/* ─── IMAGE SECTION ─── */
.image-text-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.image-text-section img { border-radius: var(--radius); box-shadow: var(--shadow-lg); }

/* ─── CTA BANNER ─── */
.cta-banner {
  background: var(--gradient);
  padding: 60px 0;
  text-align: center;
}
.cta-banner h2 { font-family: 'Playfair Display', serif; font-size: 2rem; color: var(--white); margin-bottom: 12px; }
.cta-banner p { color: rgba(255,255,255,0.85); margin-bottom: 24px; font-size: 1.05rem; }
.cta-banner .btn {
  background: var(--white);
  color: var(--primary);
  font-weight: 700;
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}
.cta-banner .btn:hover { transform: translateY(-2px); box-shadow: 0 8px 32px rgba(0,0,0,0.2); }

/* ─── FOOTER ─── */
.footer {
  background: var(--dark);
  color: rgba(255,255,255,0.7);
  padding: 60px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
.footer h4 { color: var(--white); font-size: 1rem; margin-bottom: 18px; }
.footer-about .logo { margin-bottom: 14px; }
.footer-about .logo img { height: 48px; width: 48px; }
.footer-about p { font-size: 0.88rem; line-height: 1.7; }
.footer-links a {
  display: block;
  padding: 5px 0;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.6);
}
.footer-links a:hover { color: var(--turquoise-light); padding-left: 4px; }
.footer-contact p {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  margin-bottom: 10px;
}
.footer-contact svg { width: 16px; height: 16px; color: var(--turquoise); flex-shrink: 0; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px 0;
  text-align: center;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.4);
}

/* ─── FLOATING CTA ─── */
.floating-cta {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 999;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.fab {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
  transition: var(--transition);
  border: none;
  cursor: pointer;
}
.fab:hover { transform: scale(1.1); }
.fab-phone { background: var(--gradient); color: var(--white); }
.fab-whatsapp { background: #25d366; color: var(--white); }
.fab svg { width: 24px; height: 24px; }

/* ─── ANIMATIONS ─── */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ─── RESPONSIVE ─── */
@media (max-width: 968px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .image-text-section { grid-template-columns: 1fr; }
  .hero h1 { font-size: 2.4rem; }
}

@media (max-width: 768px) {
  .top-bar .container { justify-content: center; text-align: center; }
  .top-bar-right { display: none; }

  .nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 16px;
    box-shadow: var(--shadow-lg);
    border-top: 1px solid var(--border);
  }
  .nav.open { display: flex; }
  .nav a { width: 100%; padding: 12px 16px; }
  .nav-toggle { display: block; }
  .cta-phone span { display: none; }
  .cta-phone { padding: 10px 14px; }

  .hero { min-height: 400px; }
  .hero h1 { font-size: 1.9rem; }
  .hero p { font-size: 1rem; }

  .section { padding: 50px 0; }
  .section-header h2 { font-size: 1.7rem; }

  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .process-steps { grid-template-columns: repeat(2, 1fr); gap: 20px; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 1.5rem; }
  .hero-buttons { flex-direction: column; }
  .btn { width: 100%; justify-content: center; }
  .process-steps { grid-template-columns: 1fr; }
}
