/* ===========================================================
   TAURUS SOLUTIONS LTD — GLOBAL STYLESHEET
   =========================================================== */

:root {
  /* Colors */
  --primary: #ff370f;
  --primary-dark: #f22a02;
  --secondary: #1A1A1A;
  --white: #FFFFFF;
  --light-bg: #F7F8FA;
  --border: #E5E7EB;
  --text-body: #374151;
  --text-muted: #6B7280;
  --text-light: #9CA3AF;
  --whatsapp: #25D366;
  --whatsapp-dark: #1DA851;

  /* Spacing */
  --space-1: 8px;
  --space-2: 16px;
  --space-3: 24px;
  --space-4: 32px;
  --space-6: 48px;
  --space-8: 64px;
  --space-10: 80px;
  --space-12: 96px;

  /* Radius */
  --radius-card: 8px;
  --radius-btn: 6px;
  --radius-img: 8px;
  --radius-tag: 4px;
  --radius-input: 6px;

  /* Header */
  --header-height: 72px;
  --topbar-height: 40px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--text-body);
  background: var(--white);
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  animation: pageFadeIn 0.6s ease;
}

@keyframes pageFadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

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

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

ul { list-style: none; }

h1, h2, h3, h4 {
  font-weight: 700;
  color: var(--secondary);
  line-height: 1.2;
}

h1 { font-size: 52px; line-height: 1.1; }
h2 { font-size: 36px; }
h3 { font-size: 20px; line-height: 1.3; }

p { color: var(--text-body); }

.container {
  max-width: 100%;
  /* margin: 0 auto; */
  padding: 0 24px;
}

.section {
  padding: var(--space-10) 0;
}

.section--alt { background: var(--light-bg); }
.section--dark { background: var(--secondary); color: var(--white); }
.section--dark h2, .section--dark h3 { color: var(--white); }

.eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: var(--space-2);
}

.section-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto var(--space-8);
}

.section-head.left { text-align: left; margin-left: 0; }

:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}

/* -----------------------------------------------------------
   BUTTONS
   ----------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-btn);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.15s ease, color 0.2s ease, border-color 0.2s ease;
  min-height: 44px;
}

.btn-primary { background: var(--primary); color: var(--white); }
.btn-primary:hover { background: var(--primary-dark); transform: translateY(-1px); }

.btn-outline-white { background: transparent; border-color: rgba(255,255,255,0.6); color: var(--white); }
.btn-outline-white:hover { background: rgba(255,255,255,0.12); border-color: var(--white); }

.btn-outline { background: transparent; border-color: var(--border); color: var(--secondary); }
.btn-outline:hover { border-color: var(--primary); color: var(--primary); }

.btn-dark { background: var(--secondary); color: var(--white); }
.btn-dark:hover { background: #000; }

.whatsapp-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--whatsapp);
  color: #FFFFFF;
  padding: 14px 28px;
  border-radius: 6px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s ease, transform 0.15s ease;
  min-height: 44px;
}
.whatsapp-btn:hover { background: var(--whatsapp-dark); transform: translateY(-1px); }
.whatsapp-btn svg { width: 22px; height: 22px; fill: #FFFFFF; }

.cta-row { display: flex; gap: var(--space-2); flex-wrap: wrap; margin-top: 30px;}

/* -----------------------------------------------------------
   TOP BAR
   ----------------------------------------------------------- */
.topbar {
  background: var(--primary);
  color: var(--white);
  height: var(--topbar-height);
}
.topbar .container {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 12px;
  font-weight: 500;
}
.topbar-left { display: flex; gap: var(--space-3); align-items: center; }
.topbar-left a { display: inline-flex; align-items: center; gap: 6px; color: var(--white); }
.topbar-left svg { width: 14px; height: 14px; fill: var(--white); }
.topbar-right { display: flex; align-items: center; gap: 6px; }

@media (max-width: 768px) {
  .topbar-right { display: none; }
}
@media (max-width: 480px) {
    .logo img{
         max-height: 30px !important; width: auto;
    }
  .topbar-left span:last-child { display: none; }
}

/* -----------------------------------------------------------
   MAIN NAV
   ----------------------------------------------------------- */
.site-header { position: sticky; top: 0; z-index: 500; }

.navbar {
  background: var(--white);
  height: var(--header-height);
  box-shadow: 0 1px 0 rgba(0,0,0,0.08);
}
.navbar .container {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo img { max-height: 45px; width: auto; }

.nav-desktop { display: flex; align-items: center; gap: var(--space-4); }
.nav-desktop > ul { display: flex; align-items: center; gap: var(--space-3); }

.nav-item { position: relative; }
.nav-link {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--secondary);
  padding: 26px 0px;
  position: relative;
}
.nav-link::after {
  content: "";
  position: absolute;
  left: 0px; right: 14px; bottom: 22px;
  height: 2px;
  background: var(--primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.2s ease;
}
.nav-link:hover { color: var(--primary); }
.nav-link:hover::after { transform: scaleX(1); }
.nav-item.active .nav-link { color: var(--primary); }
.nav-item.active .nav-link::after { transform: scaleX(1); }
.nav-link svg { width: 10px; height: 10px; fill: currentColor; transition: transform 0.2s ease; }
.nav-item:hover .nav-link svg { transform: rotate(180deg); }

.nav-header-cta { white-space: nowrap; }

/* Mega Menu */
.mega-menu {
  position: absolute;
  top: 100%;
  left: 150%;
  transform: translate(-50%, -8px);
  width: min(900px, 90vw);
  background: var(--white);
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
  border-radius: var(--radius-card);
  padding: var(--space-4);
  display: grid;
  grid-template-columns: 1fr 1fr 280px;
  gap: var(--space-4);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease, transform 0.2s ease;
  pointer-events: none;
}
.nav-item:hover .mega-menu {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
  pointer-events: auto;
}
.mega-col-title {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: var(--space-2);
}
.mega-menu a.mega-link {
  display: block;
  font-size: 14px;
  font-weight: 500;
  text-transform: none;
  color: var(--secondary);
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
}
.mega-menu a.mega-link:hover { color: var(--primary); }
.mega-contact-box {
  background: var(--light-bg);
  border-radius: var(--radius-card);
  padding: var(--space-3);
}
.mega-contact-box .mega-col-title { color: var(--text-light); }
.mega-contact-box p { font-size: 13px; margin-bottom: 8px; color: var(--text-muted); }
.mega-contact-box a { color: var(--primary); font-weight: 600; font-size: 14px; }

/* Mobile nav toggle */
.nav-toggle {
  display: none;
  width: 44px; height: 44px;
  align-items: center; justify-content: center;
  background: none; border: none; cursor: pointer;
}
.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  display: block;
  width: 24px; height: 2px;
  background: var(--secondary);
  position: relative;
  transition: 0.2s ease;
}
.nav-toggle span::before { content: ""; position: absolute; top: -8px; width: 24px; }
.nav-toggle span::after { content: ""; position: absolute; top: 8px; width: 24px; }
.nav-toggle.is-open span { background: transparent; }
.nav-toggle.is-open span::before { top: 0; transform: rotate(45deg); }
.nav-toggle.is-open span::after { top: 0; transform: rotate(-45deg); }

/* -----------------------------------------------------------
   MOBILE DRAWER
   ----------------------------------------------------------- */
.mobile-drawer {
  position: fixed;
  top: 0; left: 0;
  width: min(340px, 86vw);
  height: 100%;
  background: var(--white);
  z-index: 1000;
  transform: translateX(-100%);
  transition: transform 0.3s ease;
  overflow-y: auto;
  box-shadow: 4px 0 24px rgba(0,0,0,0.15);
}
.mobile-drawer.is-open { transform: translateX(0); }
.drawer-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.4);
  z-index: 999;
  opacity: 0; visibility: hidden;
  transition: opacity 0.3s ease;
}
.drawer-overlay.is-open { opacity: 1; visibility: visible; }

.drawer-head {
  display: flex; align-items: center; justify-content: space-between;
  padding: var(--space-3);
  border-bottom: 1px solid var(--border);
}
.drawer-head img { max-height: 36px; }
.drawer-close { background: none; border: none; font-size: 24px; cursor: pointer; width: 44px; height: 44px; }

.drawer-nav { padding: var(--space-2); }
.drawer-item { border-bottom: 1px solid var(--border); }
.drawer-link {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 8px;
  font-size: 14px; font-weight: 600; text-transform: uppercase;
  color: var(--secondary);
}
.drawer-submenu {
  max-height: 0; overflow: hidden;
  transition: max-height 0.25s ease;
  padding-left: var(--space-2);
}
.drawer-item.is-open .drawer-submenu { max-height: 500px; }
.drawer-submenu a {
  display: block; padding: 10px 8px; font-size: 13px; color: var(--text-muted);
}
.drawer-toggle-icon { transition: transform 0.2s ease; }
.drawer-item.is-open .drawer-toggle-icon { transform: rotate(45deg); }

.drawer-footer {
  padding: var(--space-3);
  border-top: 1px solid var(--border);
  font-size: 13px;
  color: var(--text-muted);
}
.drawer-footer a { color: var(--primary); font-weight: 600; display: block; margin-top: 6px; }

@media (max-width: 1400px) {
  .nav-desktop { display: none; }
  .nav-toggle { display: flex; }
}

/* -----------------------------------------------------------
   HERO
   ----------------------------------------------------------- */
.hero {
  position: relative;
  min-height: min(90vh, 700px);
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
  color: var(--white);
}
.hero::before {
  content: "";
  position: absolute; inset: 0;
  background: rgba(0,0,0,0.5);
}
.hero-content { position: relative; z-index: 2; max-width: 720px; }
.hero .eyebrow { color: #FFD9B3; }
.hero h1 { color: var(--white); font-size: 52px; margin-bottom: var(--space-2); }
.hero-sub { font-size: 18px; color: rgba(255,255,255,0.85); margin-bottom: var(--space-4); max-width: 600px; }

@media (max-width: 768px) {
  .hero h1 { font-size: 32px; }
  .hero { min-height: 80vh; text-align: left; }
}

/* Page hero (inner pages) */
.page-hero {
  background: var(--light-bg);
  padding: var(--space-6) 0 var(--space-4);
}
.page-hero h1 { font-size: 40px; }
@media (max-width: 768px) { .page-hero h1 { font-size: 28px; } }

.breadcrumb {
  display: flex; gap: 6px; align-items: center;
  font-size: 13px; color: var(--text-muted);
  margin-top: var(--space-2);
  flex-wrap: wrap;
}
.breadcrumb a { color: var(--text-muted); }
.breadcrumb a:hover { color: var(--primary); }
.breadcrumb .sep { color: var(--text-light); }
.breadcrumb .current { color: var(--secondary); font-weight: 500; }

/* -----------------------------------------------------------
   STATS
   ----------------------------------------------------------- */
.stats-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.stat-item {
  text-align: center;
  padding: var(--space-6) var(--space-2);
  border-right: 1px solid var(--border);
}
.stat-item:last-child { border-right: none; }
.stat-num { font-size: 40px; font-weight: 700; color: var(--primary); line-height: 1; }
.stat-label { font-size: 14px; color: var(--text-muted); margin-top: 8px; }

.section--dark .stat-label { color: rgba(255,255,255,0.7); }
.section--dark .stat-item { border-color: rgba(255,255,255,0.12); }

@media (max-width: 768px) {
  .stats-bar { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2) { border-right: none; }
  .stat-item { border-bottom: 1px solid var(--border); }
}

/* -----------------------------------------------------------
   CARDS / GRIDS
   ----------------------------------------------------------- */
.grid {
  display: grid;
  gap: var(--space-4);
}
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.grid-6 { grid-template-columns: repeat(3, 1fr); }

@media (max-width: 1024px) {
  .grid-3, .grid-4, .grid-6 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .grid-2, .grid-3, .grid-4, .grid-6 { grid-template-columns: 1fr; }
}

.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: 0 8px 24px rgba(0,0,0,0.12); }
.card-img { overflow: hidden; aspect-ratio: 3/2; }
.card-img img { width: 100%; height: 100%; object-fit: contain; transition: transform 0.3s ease; }
.card:hover .card-img img { transform: scale(1.03); }
.card-body { padding: var(--space-3); }
.card-body h3 { margin-bottom: 8px; }
.card-body p { font-size: 14px; color: var(--text-muted); margin-bottom: var(--space-2); }
.card-link { font-size: 14px; font-weight: 600; color: var(--primary); }

.icon-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  padding: var(--space-4);
}
.icon-card .icon-wrap {
  width: 48px; height: 48px;
  border-radius: var(--radius-card);
  background: rgba(242,104,12,0.1);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: var(--space-2);
}
.icon-card .icon-wrap svg { width: 24px; height: 24px; fill: var(--primary); }
.icon-card h3 { margin-bottom: 8px; }
.icon-card p { font-size: 14px; color: var(--text-muted); }

/* Tag pills */
.tag-row { display: flex; gap: 6px; flex-wrap: wrap; padding: 0 var(--space-3); margin-top: 10px; margin-bottom: 10px; }
.tag-pill {
  font-size: 12px; font-weight: 600;
  background: rgba(242,104,12,0.1);
  color: var(--primary);
  padding: 4px 10px;
  border-radius: var(--radius-tag);
}

/* -----------------------------------------------------------
   ABOUT STRIP / TWO COL
   ----------------------------------------------------------- */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-8);
  align-items: center;
}
.two-col img { border-radius: var(--radius-img); width: 100%; }
.two-col.reverse .col-img { order: 2; }
@media (max-width: 900px) {
  .two-col { grid-template-columns: 1fr; gap: var(--space-4); }
  .two-col.reverse .col-img { order: 0; }
}

/* -----------------------------------------------------------
   PARTNERS MARQUEE
   ----------------------------------------------------------- */
.marquee-wrap { overflow: hidden; position: relative; }
.marquee-track {
  display: flex;
  gap: var(--space-8);
  width: max-content;
  animation: marquee 28s linear infinite;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
.marquee-track img {
  height: 200px; width: auto;
  filter: grayscale(100%);
  opacity: 0.6;
  transition: filter 0.2s ease, opacity 0.2s ease;
}
.marquee-track img:hover { filter: grayscale(0%); opacity: 1; }

.partner-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: var(--space-4);
  align-items: center;
}
.partner-grid img { filter: grayscale(100%); opacity: 0.7; transition: 0.2s ease; }
.partner-grid img:hover { filter: grayscale(0); opacity: 1; }
@media (max-width: 768px) { .partner-grid { grid-template-columns: repeat(2, 1fr); } }

/* -----------------------------------------------------------
   TESTIMONIALS
   ----------------------------------------------------------- */
.testimonial-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  padding: var(--space-4);
}
.testimonial-card .stars { display: flex; gap: 2px; margin-bottom: var(--space-2); }
.testimonial-card .stars svg { width: 16px; height: 16px; fill: var(--primary); }
.testimonial-card p.quote { font-size: 15px; color: var(--text-body); margin-bottom: var(--space-3); }
.testimonial-person { display: flex; align-items: center; gap: 12px; }
.testimonial-person img { width: 44px; height: 44px; border-radius: 50%; }
.testimonial-person span { font-weight: 600; font-size: 14px; }

/* -----------------------------------------------------------
   CTA BANNER
   ----------------------------------------------------------- */
.cta-banner {
  position: relative;
  background-size: cover;
  background-position: center;
  padding: var(--space-10) 0;
  text-align: center;
  color: var(--white);
}
.cta-banner::before { content: ""; position: absolute; inset: 0; background: rgba(26,26,26,0.78); }
.cta-banner .container { position: relative; z-index: 2; }
.cta-banner h2 { color: var(--white); margin-bottom: 12px; }
.cta-banner p { color: rgba(255,255,255,0.8); margin-bottom: var(--space-4); }
.cta-banner .cta-row { justify-content: center; }

/* -----------------------------------------------------------
   STEPS
   ----------------------------------------------------------- */
.steps-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-4);
}
.step-item { text-align: center; padding: var(--space-3); }
.step-num {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 18px;
  margin: 0 auto var(--space-2);
}
@media (max-width: 768px) { .steps-row { grid-template-columns: 1fr; } }

/* -----------------------------------------------------------
   FORM PLACEHOLDER
   ----------------------------------------------------------- */
.form-placeholder {
  border: 2px dashed var(--border);
  border-radius: var(--radius-card);
  padding: 40px;
  text-align: center;
  color: var(--text-light);
  font-size: 14px;
  background: var(--light-bg);
}

/* -----------------------------------------------------------
   CONTACT PAGE
   ----------------------------------------------------------- */
.contact-info-list { margin-bottom: var(--space-4); }
.contact-info-item {
  display: flex; gap: 12px; align-items: flex-start;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
}
.contact-info-item .icon-wrap {
  width: 40px; height: 40px; flex-shrink: 0;
  border-radius: var(--radius-card);
  background: rgba(242,104,12,0.1);
  display: flex; align-items: center; justify-content: center;
}
.contact-info-item .icon-wrap svg { width: 20px; height: 20px; fill: var(--primary); }
.contact-info-item h4 { font-size: 14px; margin-bottom: 4px; }
.contact-info-item p { font-size: 14px; color: var(--text-muted); }

.map-embed { border-radius: var(--radius-card); overflow: hidden; border: 1px solid var(--border); }
.map-embed iframe { width: 100%; height: 320px; border: 0; display: block; }

/* -----------------------------------------------------------
   FOOTER
   ----------------------------------------------------------- */
.site-footer { background: var(--secondary); color: rgba(255,255,255,0.75); }
.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: var(--space-4);
  padding: var(--space-10) 0 var(--space-6);
}
.footer-col h4 {
  color: var(--white);
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: var(--space-2);
}
.footer-col img { max-height: 70px; margin-bottom: var(--space-2); }
.footer-col p { font-size: 14px; color: rgba(255,255,255,0.6); margin-bottom: 8px; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { font-size: 14px; color: rgba(255,255,255,0.7); }
.footer-col ul li a:hover { color: var(--primary); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: var(--space-3) 0;
  display: flex; justify-content: space-between;
  font-size: 13px; color: rgba(255,255,255,0.5);
  flex-wrap: wrap; gap: 8px;
}
.footer-bottom a { color: rgba(255,255,255,0.7); }

@media (max-width: 1024px) { .footer-top { grid-template-columns: 1fr 1fr; } }
@media (max-width: 640px) { .footer-top { grid-template-columns: 1fr; } }

/* -----------------------------------------------------------
   FLOATING BUTTONS
   ----------------------------------------------------------- */
.floating-whatsapp, .back-to-top {
  position: fixed;
  bottom: 24px;
  width: 52px; height: 52px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  z-index: 600;
  opacity: 0; visibility: hidden;
  transform: translateY(16px);
  transition: opacity 0.25s ease, transform 0.25s ease, background 0.2s ease;
  box-shadow: 0 6px 18px rgba(0,0,0,0.2);
  cursor: pointer;
  border: none;
}
.floating-whatsapp { right: 24px; background: var(--whatsapp); }
.floating-whatsapp svg { width: 26px; height: 26px; fill: var(--white); }
.floating-whatsapp:hover { background: var(--whatsapp-dark); }

.back-to-top { left: 24px; background: var(--secondary); }
.back-to-top svg { width: 20px; height: 20px; fill: var(--white); }
.back-to-top:hover { background: #000; }

.floating-whatsapp.is-visible, .back-to-top.is-visible {
  opacity: 1; visibility: visible; transform: translateY(0);
}

/* -----------------------------------------------------------
   SCROLL REVEAL
   ----------------------------------------------------------- */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* -----------------------------------------------------------
   RESPONSIVE SECTION PADDING
   ----------------------------------------------------------- */
@media (max-width: 768px) {
  .btn {padding: 3px 8px;font-size: 12px;}
  .section { padding: var(--space-6) 0; }
  h2 { font-size: 26px; }
  .two-col { gap: var(--space-4); }
}

/* -----------------------------------------------------------
   PRINT
   ----------------------------------------------------------- */
@media print {
  .site-header, .site-footer, .floating-whatsapp, .back-to-top, .whatsapp-btn, .mobile-drawer, .drawer-overlay {
    display: none !important;
  }
}
/* ===========================================
   PREMIUM HEADER CTA
=========================================== */

.nav-header-cta{
    position:relative;
    overflow:hidden;
    isolation:isolate;
    transition:all .35s cubic-bezier(.22,1,.36,1);
    animation:ctaPulse 2.8s infinite;
    box-shadow:
        0 10px 25px rgba(168,121,44,.22),
        0 0 0 0 rgba(168,121,44,.45);
}

/* Moving shine */
.nav-header-cta::before{
    content:"";
    position:absolute;
    top:0;
    left:-120%;
    width:60%;
    height:100%;
    background:linear-gradient(
        120deg,
        transparent,
        rgba(255,255,255,.45),
        transparent
    );
    transform:skewX(-25deg);
    animation:ctaShine 3.5s infinite;
    z-index:1;
}

/* Animated glowing border */
.nav-header-cta::after{
    content:"";
    position:absolute;
    inset:-3px;
    border-radius:inherit;
    border:2px solid rgba(249,249,215,.45);
    opacity:0;
    animation:ctaRing 2.8s infinite;
    z-index:-1;
}

.nav-header-cta:hover{

    transform:translateY(-3px) scale(1.04);

    box-shadow:
        0 18px 40px rgba(168,121,44,.35);

}

.nav-header-cta:active{
    transform:scale(.97);
}

/* ===========================================
   Animations
=========================================== */

@keyframes ctaPulse{

    0%,100%{
        transform:scale(1);
        box-shadow:
            0 10px 25px rgba(168,121,44,.22),
            0 0 0 0 rgba(168,121,44,.40);
    }

    50%{
        transform:scale(1.03);
        box-shadow:
            0 16px 38px rgba(168,121,44,.35),
            0 0 0 10px rgba(168,121,44,0);
    }

}

@keyframes ctaShine{

    0%{
        left:-140%;
    }

    45%{
        left:160%;
    }

    100%{
        left:160%;
    }

}

@keyframes ctaRing{

    0%{
        opacity:0;
        transform:scale(.9);
    }

    20%{
        opacity:.8;
    }

    70%{
        opacity:0;
        transform:scale(1.12);
    }

    100%{
        opacity:0;
        transform:scale(1.12);
    }

}