/* =============================================
   EMERGENT AUTOMATION — Global Styles
   ============================================= */

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

/* ---- Reset & Base ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg: #0A0F1E;
  --bg2: #0D1428;
  --bg3: #111830;
  --cyan: #00F5FF;
  --gold: #FFFFFF;
  --text: #E8EAF0;
  --muted: #8892A4;
  --card: rgba(255,255,255,0.04);
  --border: rgba(0,245,255,0.15);
  --glow-cyan: 0 0 20px rgba(0,245,255,0.4);
  --glow-gold: 0 0 20px rgba(255,255,255,0.2);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.7;
}

h1, h2, h3, h4, h5 {
  font-family: 'Syne', sans-serif;
  line-height: 1.2;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; }
ul { list-style: none; }

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

/* ---- Typography Fluid ---- */
h1 { font-size: clamp(2.4rem, 6vw, 5rem); font-weight: 800; }
h2 { font-size: clamp(1.8rem, 4vw, 3rem); font-weight: 700; }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); font-weight: 600; }
p  { font-size: clamp(0.95rem, 1.5vw, 1.05rem); font-weight: 400; }

/* ---- Gradient Text ---- */
.gradient-text {
  background: linear-gradient(135deg, var(--cyan) 0%, var(--gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ============================================
   NAVBAR
   ============================================ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: all 0.4s ease;
}

.navbar.scrolled {
  background: rgba(10, 15, 30, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  box-shadow: 0 4px 30px rgba(0,0,0,0.3);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  flex-direction: column;
}

.nav-logo .logo-name {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 1.3rem;
  background: linear-gradient(135deg, var(--cyan), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.02em;
}

.nav-logo .logo-img {
  height: 46px;
  width: auto;
  display: block;
  object-fit: contain;
  filter: drop-shadow(0 0 8px rgba(0,245,255,0.25));
  transition: filter 0.3s ease;
}

.nav-logo:hover .logo-img {
  filter: drop-shadow(0 0 14px rgba(0,245,255,0.5));
}

.nav-logo .logo-tag {
  font-size: 0.65rem;
  color: var(--muted);
  font-weight: 300;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--muted);
  padding: 8px 14px;
  border-radius: 8px;
  transition: all 0.3s ease;
  position: relative;
}

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

.nav-links a.cta-nav {
  background: linear-gradient(135deg, var(--cyan), #0099AA);
  color: var(--bg);
  font-weight: 700;
  padding: 10px 22px;
  border-radius: 50px;
  font-family: 'Syne', sans-serif;
  letter-spacing: 0.02em;
  box-shadow: 0 0 15px rgba(0,245,255,0.3);
  transition: all 0.3s ease;
}

.nav-links a.cta-nav:hover {
  box-shadow: 0 0 30px rgba(0,245,255,0.6);
  transform: translateY(-2px);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
}

.hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--cyan);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(10, 15, 30, 0.98);
  backdrop-filter: blur(20px);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.77, 0, 0.175, 1);
}

.mobile-menu.open {
  transform: translateX(0);
  display: flex;
}

.mobile-menu a {
  font-family: 'Syne', sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text);
  padding: 12px 40px;
  border-radius: 12px;
  transition: all 0.3s ease;
  width: 260px;
  text-align: center;
}

.mobile-menu a:hover { color: var(--cyan); background: var(--card); }
.mobile-menu a.cta-nav {
  background: linear-gradient(135deg, var(--cyan), #0099AA);
  color: var(--bg);
  margin-top: 8px;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 50px;
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  position: relative;
  overflow: hidden;
  letter-spacing: 0.03em;
}

.btn::after {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
  transition: left 0.5s ease;
}

.btn:hover::after { left: 100%; }

.btn-primary {
  background: linear-gradient(135deg, var(--cyan) 0%, #0099AA 100%);
  color: var(--bg);
  box-shadow: 0 0 20px rgba(0,245,255,0.35);
}

.btn-primary:hover {
  box-shadow: 0 0 40px rgba(0,245,255,0.6);
  transform: translateY(-3px);
}

.btn-secondary {
  background: transparent;
  color: var(--gold);
  border: 2px solid var(--gold);
  box-shadow: 0 0 15px rgba(255,255,255,0.1);
}

.btn-secondary:hover {
  background: rgba(255,255,255,0.06);
  box-shadow: 0 0 30px rgba(255,255,255,0.2);
  transform: translateY(-3px);
}

.btn-outline {
  background: transparent;
  color: var(--cyan);
  border: 2px solid var(--border);
}

.btn-outline:hover {
  border-color: var(--cyan);
  box-shadow: var(--glow-cyan);
  transform: translateY(-2px);
}

/* ============================================
   SECTIONS
   ============================================ */
section { padding: 100px 0; }

.section-label {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 12px;
  display: block;
}

.section-title {
  margin-bottom: 16px;
}

.section-sub {
  color: var(--muted);
  max-width: 600px;
  margin-bottom: 60px;
}

.text-center { text-align: center; }
.text-center .section-sub { margin-left: auto; margin-right: auto; }

/* ============================================
   CARDS
   ============================================ */
.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 36px 30px;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--cyan), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.card:hover {
  transform: translateY(-8px);
  border-color: rgba(0,245,255,0.35);
  box-shadow: 0 20px 60px rgba(0,0,0,0.4), 0 0 30px rgba(0,245,255,0.1);
}

.card:hover::before { opacity: 1; }

/* ============================================
   HERO
   ============================================ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 80px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% -20%, rgba(0,245,255,0.08) 0%, transparent 60%),
    radial-gradient(ellipse 60% 40% at 90% 80%, rgba(255,255,255,0.03) 0%, transparent 50%),
    radial-gradient(ellipse 40% 30% at 10% 70%, rgba(0,245,255,0.04) 0%, transparent 50%),
    var(--bg);
}

/* Particle grid */
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0,245,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,245,255,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 30%, transparent 100%);
}

/* CSS Particles */
.particles {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.particle {
  position: absolute;
  border-radius: 50%;
  animation: float-particle linear infinite;
}

@keyframes float-particle {
  0% { transform: translateY(110vh) rotate(0deg); opacity: 0; }
  10% { opacity: 1; }
  90% { opacity: 0.6; }
  100% { transform: translateY(-10vh) rotate(720deg); opacity: 0; }
}

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

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cyan);
  border: 1px solid rgba(0,245,255,0.3);
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 24px;
  background: rgba(0,245,255,0.05);
}

.hero-eyebrow::before {
  content: '';
  display: inline-block;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--cyan);
  animation: pulse-dot 1.5s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.7); }
}

.hero h1 {
  margin-bottom: 8px;
}

.hero h1 .line2 {
  display: block;
  color: var(--muted);
  font-size: 0.6em;
  font-weight: 600;
  letter-spacing: 0.02em;
  margin-top: 8px;
}

/* Typing cursor */
.typed-cursor {
  display: inline-block;
  width: 3px;
  height: 0.85em;
  background: var(--cyan);
  margin-left: 4px;
  vertical-align: middle;
  animation: blink 0.8s step-end infinite;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}

.hero-desc {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--muted);
  max-width: 560px;
  margin: 20px 0 40px;
  font-weight: 300;
}

.hero-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-image {
  position: absolute;
  right: -80px;
  top: 50%;
  transform: translateY(-50%);
  width: 600px;
  opacity: 0.15;
  pointer-events: none;
}

/* ---- Hero Visual (logo + decoration) ---- */
.hero-visual {
  position: absolute;
  right: 5%;
  top: 50%;
  transform: translateY(-50%);
  width: 420px;
  height: 420px;
  pointer-events: none;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-logo-ring {
  position: absolute;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: radial-gradient(ellipse at center, rgba(0,245,255,0.06) 0%, transparent 70%);
  border: 1px solid rgba(0,245,255,0.18);
  box-shadow: 0 0 60px rgba(0,245,255,0.08), inset 0 0 60px rgba(0,245,255,0.04);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: hero-ring-pulse 4s ease-in-out infinite;
}

@keyframes hero-ring-pulse {
  0%, 100% { box-shadow: 0 0 40px rgba(0,245,255,0.08), inset 0 0 40px rgba(0,245,255,0.04); }
  50% { box-shadow: 0 0 80px rgba(0,245,255,0.15), inset 0 0 60px rgba(0,245,255,0.07); }
}

.hero-logo-display {
  width: 200px;
  height: 200px;
  object-fit: contain;
  filter: drop-shadow(0 0 20px rgba(0,245,255,0.35));
  animation: hero-logo-float 6s ease-in-out infinite;
}

@keyframes hero-logo-float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-12px); }
}

.hero-deco-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  animation: hero-deco-spin 60s linear infinite;
}

@keyframes hero-deco-spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@media (max-width: 900px) {
  .hero-visual { display: none; }
}


   ============================================ */
.stats-section {
  padding: 60px 0;
  background: linear-gradient(135deg, rgba(0,245,255,0.04), rgba(255,255,255,0.01));
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}

.stat-item {
  text-align: center;
  padding: 30px;
  position: relative;
}

.stat-item + .stat-item::before {
  content: '';
  position: absolute;
  left: 0; top: 25%; bottom: 25%;
  width: 1px;
  background: var(--border);
}

.stat-number {
  font-family: 'Syne', sans-serif;
  font-size: clamp(2.4rem, 5vw, 3.5rem);
  font-weight: 800;
  background: linear-gradient(135deg, var(--cyan), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
  line-height: 1;
}

.stat-label {
  font-size: 0.9rem;
  color: var(--muted);
  font-weight: 400;
  margin-top: 6px;
  display: block;
  letter-spacing: 0.05em;
}

/* ============================================
   SERVICES OVERVIEW
   ============================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 36px 28px;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--cyan), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.service-card:hover {
  transform: translateY(-8px);
  border-color: rgba(0,245,255,0.35);
  box-shadow: 0 20px 60px rgba(0,0,0,0.4), 0 0 40px rgba(0,245,255,0.1);
}

.service-card:hover::before { opacity: 1; }

.service-icon {
  width: 60px; height: 60px;
  border-radius: 16px;
  background: rgba(0,245,255,0.08);
  border: 1px solid rgba(0,245,255,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 20px;
  transition: all 0.4s ease;
}

.service-icon i { color: var(--cyan); }

.service-card:hover .service-icon {
  background: rgba(0,245,255,0.15);
  box-shadow: 0 0 20px rgba(0,245,255,0.3);
}

.service-card h3 {
  margin-bottom: 12px;
  color: var(--text);
}

.service-card p {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonial-carousel {
  position: relative;
  overflow: hidden;
}

.testimonial-track {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.77, 0, 0.175, 1);
}

.testimonial-slide {
  min-width: 100%;
  padding: 0 20px;
}

.testimonial-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 40px;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  position: relative;
}

.testimonial-card::before {
  content: '\201C';
  position: absolute;
  top: -10px; left: 30px;
  font-size: 6rem;
  font-family: 'Syne', sans-serif;
  color: var(--cyan);
  opacity: 0.2;
  line-height: 1;
}

.testimonial-stars { color: var(--gold); font-size: 1.1rem; margin-bottom: 16px; }
.testimonial-text { font-size: 1.05rem; color: var(--muted); font-style: italic; margin-bottom: 24px; line-height: 1.8; }

.testimonial-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
}

.author-avatar {
  width: 50px; height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--cyan), var(--gold));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--bg);
}

.author-name { font-family: 'Syne', sans-serif; font-weight: 600; font-size: 1rem; }
.author-biz { font-size: 0.85rem; color: var(--cyan); }

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 32px;
}

.carousel-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--muted);
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
}

.carousel-dot.active {
  background: var(--cyan);
  width: 24px;
  border-radius: 4px;
  box-shadow: 0 0 10px rgba(0,245,255,0.5);
}

/* ============================================
   WHY CHOOSE US
   ============================================ */
.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.why-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px;
  transition: all 0.3s ease;
}

.why-item:hover {
  border-color: rgba(0,245,255,0.3);
  transform: translateX(4px);
}

.why-icon {
  width: 48px; height: 48px;
  min-width: 48px;
  border-radius: 12px;
  background: rgba(0,245,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
}

.why-icon i { color: var(--cyan); }
.why-item h4 { font-family: 'Syne', sans-serif; font-size: 1rem; margin-bottom: 6px; }
.why-item p { font-size: 0.9rem; color: var(--muted); }

/* ============================================
   CTA BANNER
   ============================================ */
.cta-banner {
  background: linear-gradient(135deg, rgba(0,245,255,0.08) 0%, rgba(255,255,255,0.03) 100%);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 70px 50px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -50%; left: 50%;
  transform: translateX(-50%);
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(0,245,255,0.06) 0%, transparent 70%);
  pointer-events: none;
}

.cta-banner h2 { margin-bottom: 16px; }
.cta-banner p { color: var(--muted); max-width: 500px; margin: 0 auto 36px; }

/* ============================================
   FOOTER
   ============================================ */
footer {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  padding: 70px 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 50px;
  margin-bottom: 50px;
}

.footer-brand .logo-img {
  height: 52px;
  width: auto;
  display: block;
  object-fit: contain;
  margin-bottom: 4px;
  filter: drop-shadow(0 0 6px rgba(0,245,255,0.2));
}

.footer-brand .logo-name {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 1.4rem;
  background: linear-gradient(135deg, var(--cyan), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.footer-brand .logo-tag {
  font-size: 0.7rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.footer-brand p {
  color: var(--muted);
  font-size: 0.9rem;
  margin-top: 14px;
  max-width: 280px;
  line-height: 1.8;
}

.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}

.social-icon {
  width: 38px; height: 38px;
  border-radius: 10px;
  background: var(--card);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  font-size: 0.95rem;
  transition: all 0.3s ease;
}

.social-icon:hover {
  color: var(--cyan);
  border-color: var(--cyan);
  background: rgba(0,245,255,0.08);
  transform: translateY(-2px);
}

footer h5 {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--text);
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

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

footer ul li a {
  color: var(--muted);
  font-size: 0.9rem;
  transition: color 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

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

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--muted);
  font-size: 0.9rem;
  margin-bottom: 12px;
}

.footer-contact li i {
  color: var(--cyan);
  font-size: 0.9rem;
  margin-top: 3px;
  min-width: 14px;
}

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom p { color: var(--muted); font-size: 0.85rem; }
.footer-bottom span { color: var(--cyan); }

/* ============================================
   WHATSAPP BUTTON
   ============================================ */
.whatsapp-btn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 9999;
  width: 60px; height: 60px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: white;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  transition: all 0.3s ease;
  animation: wa-pulse 2.5s ease-in-out infinite;
}

.whatsapp-btn:hover {
  transform: scale(1.12);
  box-shadow: 0 6px 30px rgba(37,211,102,0.6);
  animation: none;
}

@keyframes wa-pulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,0.4), 0 0 0 0 rgba(37,211,102,0.4); }
  50% { box-shadow: 0 4px 20px rgba(37,211,102,0.4), 0 0 0 14px rgba(37,211,102,0); }
}

.whatsapp-tooltip {
  position: absolute;
  right: 72px;
  background: var(--bg2);
  border: 1px solid rgba(37,211,102,0.3);
  color: var(--text);
  font-size: 0.8rem;
  padding: 6px 12px;
  border-radius: 8px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  font-family: 'DM Sans', sans-serif;
}

.whatsapp-btn:hover .whatsapp-tooltip { opacity: 1; }

/* ============================================
   SCROLL REVEAL
   ============================================ */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: all 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-left.revealed {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(30px);
  transition: all 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-right.revealed {
  opacity: 1;
  transform: translateX(0);
}

/* Stagger 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; }

/* ============================================
   PAGE HERO (inner pages)
   ============================================ */
.page-hero {
  padding: 160px 0 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 60% at 50% 0%, rgba(0,245,255,0.07) 0%, transparent 60%);
}

.page-hero .breadcrumb {
  font-size: 0.85rem;
  color: var(--muted);
  margin-bottom: 16px;
}

.page-hero .breadcrumb a { color: var(--cyan); }
.page-hero .breadcrumb span { margin: 0 8px; }

/* ============================================
   ABOUT PAGE
   ============================================ */
.timeline {
  position: relative;
  padding-left: 40px;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0; bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--cyan), var(--gold), transparent);
}

.timeline-item {
  position: relative;
  margin-bottom: 44px;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: -46px;
  top: 6px;
  width: 12px; height: 12px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 12px rgba(0,245,255,0.5);
  border: 2px solid var(--bg);
}

.timeline-year {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--cyan);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.timeline-item h4 {
  font-family: 'Syne', sans-serif;
  font-size: 1.05rem;
  margin-bottom: 8px;
}

.timeline-item p { font-size: 0.9rem; color: var(--muted); }

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

.value-card {
  text-align: center;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 36px 20px;
  transition: all 0.4s ease;
}

.value-card:hover {
  border-color: rgba(0,245,255,0.3);
  transform: translateY(-6px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.3);
}

.value-icon {
  width: 70px; height: 70px;
  margin: 0 auto 18px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(0,245,255,0.1), rgba(255,255,255,0.04));
  border: 1px solid rgba(0,245,255,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
}

.value-icon i { color: var(--cyan); }
.value-card h4 { font-family: 'Syne', sans-serif; margin-bottom: 10px; font-size: 1rem; }
.value-card p { font-size: 0.85rem; color: var(--muted); line-height: 1.7; }

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

.team-card {
  text-align: center;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 36px 20px;
  transition: all 0.4s ease;
}

.team-card:hover {
  transform: translateY(-6px);
  border-color: rgba(0,245,255,0.3);
}

.team-avatar {
  width: 90px; height: 90px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--cyan), var(--gold));
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 1.6rem;
  color: var(--bg);
}

.team-card h4 { font-family: 'Syne', sans-serif; font-size: 1rem; margin-bottom: 4px; }
.team-role { font-size: 0.8rem; color: var(--cyan); margin-bottom: 10px; display: block; }
.team-card p { font-size: 0.85rem; color: var(--muted); }

/* ============================================
   SERVICES PAGE
   ============================================ */
.services-full-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.service-full-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 44px 36px;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.service-full-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--cyan), var(--gold));
  opacity: 0;
  transition: opacity 0.4s ease;
}

.service-full-card:hover {
  transform: translateY(-8px);
  border-color: rgba(0,245,255,0.3);
  box-shadow: 0 25px 70px rgba(0,0,0,0.4);
}

.service-full-card:hover::before { opacity: 1; }

.service-full-icon {
  width: 70px; height: 70px;
  border-radius: 18px;
  background: rgba(0,245,255,0.06);
  border: 1px solid rgba(0,245,255,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin-bottom: 22px;
}

.service-full-icon i { color: var(--cyan); }

.service-full-card h3 { margin-bottom: 12px; }
.service-full-card > p { color: var(--muted); margin-bottom: 22px; line-height: 1.8; }

.feature-list {
  margin-bottom: 28px;
}

.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--muted);
  margin-bottom: 10px;
  padding: 8px 12px;
  border-radius: 8px;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.04);
}

.feature-list li i {
  color: var(--cyan);
  font-size: 0.75rem;
  margin-top: 3px;
}

/* ============================================
   CONTACT / CONSULT PAGE
   ============================================ */
.consult-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: start;
}

.contact-form {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 44px 40px;
}

.contact-form h3 { margin-bottom: 28px; }

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--muted);
  margin-bottom: 8px;
  letter-spacing: 0.05em;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 14px 18px;
  color: var(--text);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--cyan);
  box-shadow: 0 0 0 3px rgba(0,245,255,0.1);
  background: rgba(0,245,255,0.03);
}

.form-group select {
  appearance: none;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%2300F5FF' stroke-width='2' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 18px center;
}

.form-group select option { background: #1a2035; }

.form-group textarea { resize: vertical; min-height: 120px; }

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

.success-msg {
  display: none;
  text-align: center;
  padding: 24px;
  background: rgba(0,245,255,0.08);
  border: 1px solid rgba(0,245,255,0.3);
  border-radius: 16px;
  margin-top: 20px;
}

.success-msg i { font-size: 2rem; color: var(--cyan); margin-bottom: 10px; display: block; }
.success-msg p { color: var(--text); font-size: 0.95rem; }

.contact-info h3 { margin-bottom: 28px; }

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 24px;
}

.contact-icon {
  width: 48px; height: 48px;
  min-width: 48px;
  border-radius: 12px;
  background: rgba(0,245,255,0.06);
  border: 1px solid rgba(0,245,255,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}

.contact-icon i { color: var(--cyan); }
.contact-item-label { font-size: 0.8rem; color: var(--cyan); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 4px; font-weight: 500; }
.contact-item-val { font-size: 0.95rem; color: var(--text); }

.hours-card {
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px;
  padding: 24px;
  margin-top: 28px;
}

.hours-card h4 { font-family: 'Syne', sans-serif; margin-bottom: 14px; font-size: 0.95rem; }
.hours-row { display: flex; justify-content: space-between; font-size: 0.9rem; color: var(--muted); padding: 6px 0; border-bottom: 1px solid rgba(255,255,255,0.05); }
.hours-row:last-child { border: none; }
.hours-row .open { color: #4ade80; }

.map-embed {
  width: 100%;
  height: 260px;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border);
  margin-top: 28px;
}

.map-embed iframe { width: 100%; height: 100%; border: none; }

/* ============================================
   GALLERY PAGE
   ============================================ */
.filter-tabs {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 50px;
}

.filter-btn {
  padding: 10px 24px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer;
  background: var(--card);
  border: 1px solid var(--border);
  color: var(--muted);
  transition: all 0.3s ease;
  font-family: 'DM Sans', sans-serif;
}

.filter-btn.active,
.filter-btn:hover {
  background: rgba(0,245,255,0.1);
  border-color: var(--cyan);
  color: var(--cyan);
}

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

.gallery-item {
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  aspect-ratio: 4/3;
  background: var(--card);
  border: 1px solid var(--border);
  transition: all 0.4s ease;
}

.gallery-item:hover { transform: scale(1.02); box-shadow: 0 15px 40px rgba(0,0,0,0.5); }

.gallery-placeholder {
  width: 100%; height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: linear-gradient(135deg, rgba(0,245,255,0.03), rgba(255,255,255,0.01));
}

.gallery-placeholder i { font-size: 2.5rem; color: rgba(0,245,255,0.3); }
.gallery-placeholder span { font-size: 0.8rem; color: var(--muted); }

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,245,255,0.85), rgba(0,30,60,0.9));
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay i { font-size: 2rem; color: white; }
.gallery-overlay span { font-size: 0.9rem; font-weight: 500; color: white; font-family: 'Syne', sans-serif; }
.gallery-overlay .cat-tag { font-size: 0.7rem; color: var(--gold); text-transform: uppercase; letter-spacing: 0.1em; }

.gallery-item[data-cat] { transition: all 0.4s ease; }
.gallery-item.hidden { display: none; }

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.9);
  z-index: 9998;
  align-items: center;
  justify-content: center;
}

.lightbox.open { display: flex; }

.lightbox-inner {
  position: relative;
  max-width: 700px;
  width: 90%;
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 24px;
  overflow: hidden;
}

.lightbox-content {
  width: 100%;
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--card);
}

.lightbox-content i { font-size: 4rem; color: rgba(0,245,255,0.3); }

.lightbox-info { padding: 20px 24px; }
.lightbox-info h4 { font-family: 'Syne', sans-serif; margin-bottom: 4px; }
.lightbox-info p { font-size: 0.85rem; color: var(--muted); }

.lightbox-close {
  position: absolute;
  top: 16px; right: 16px;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  border: none;
  color: white;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.lightbox-close:hover { background: var(--cyan); color: var(--bg); }

/* ============================================
   BLOG PAGE
   ============================================ */
.blog-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 50px;
  align-items: start;
}

.search-bar {
  position: relative;
  margin-bottom: 40px;
}

.search-bar input {
  width: 100%;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 50px;
  padding: 14px 50px 14px 20px;
  color: var(--text);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  outline: none;
  transition: all 0.3s ease;
}

.search-bar input:focus {
  border-color: var(--cyan);
  box-shadow: 0 0 0 3px rgba(0,245,255,0.1);
}

.search-bar i {
  position: absolute;
  right: 20px; top: 50%;
  transform: translateY(-50%);
  color: var(--muted);
}

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

.blog-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.4s ease;
}

.blog-card:hover {
  transform: translateY(-6px);
  border-color: rgba(0,245,255,0.3);
  box-shadow: 0 20px 50px rgba(0,0,0,0.4);
}

.blog-thumb {
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, rgba(0,245,255,0.04), rgba(255,255,255,0.02));
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid var(--border);
}

.blog-thumb i { font-size: 2.5rem; color: rgba(0,245,255,0.2); }

.blog-body { padding: 24px; }

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

.blog-cat {
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--bg);
  background: var(--cyan);
  padding: 3px 10px;
  border-radius: 50px;
}

.blog-date { font-size: 0.82rem; color: var(--muted); }
.blog-card h4 { font-family: 'Syne', sans-serif; font-size: 1rem; margin-bottom: 10px; line-height: 1.4; }
.blog-card p { font-size: 0.875rem; color: var(--muted); margin-bottom: 18px; line-height: 1.7; }

.sidebar-widget {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 24px;
  margin-bottom: 24px;
}

.sidebar-widget h5 {
  font-family: 'Syne', sans-serif;
  font-size: 0.9rem;
  margin-bottom: 18px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--cyan);
}

.recent-post {
  display: flex;
  gap: 12px;
  margin-bottom: 14px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.recent-post:last-child { border: none; margin-bottom: 0; padding-bottom: 0; }

.recent-thumb {
  width: 50px; height: 50px;
  min-width: 50px;
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(0,245,255,0.1), rgba(255,255,255,0.03));
  display: flex;
  align-items: center;
  justify-content: center;
}

.recent-thumb i { font-size: 1.1rem; color: var(--cyan); }
.recent-post-title { font-size: 0.85rem; font-weight: 500; line-height: 1.4; margin-bottom: 4px; }
.recent-post-date { font-size: 0.75rem; color: var(--muted); }

.category-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.cat-tag-btn {
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 0.78rem;
  background: var(--bg);
  border: 1px solid var(--border);
  color: var(--muted);
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: 'DM Sans', sans-serif;
}

.cat-tag-btn:hover { border-color: var(--cyan); color: var(--cyan); }

.subscribe-form { display: flex; flex-direction: column; gap: 10px; }

.subscribe-form input {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 12px 16px;
  color: var(--text);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  outline: none;
  transition: all 0.3s ease;
}

.subscribe-form input:focus {
  border-color: var(--cyan);
  box-shadow: 0 0 0 2px rgba(0,245,255,0.1);
}

/* ============================================
   TESTIMONIALS PAGE
   ============================================ */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.test-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 32px;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.test-card::before {
  content: '\201C';
  position: absolute;
  top: -8px; right: 20px;
  font-size: 5rem;
  font-family: 'Syne', sans-serif;
  color: var(--cyan);
  opacity: 0.08;
  line-height: 1;
}

.test-card:hover {
  transform: translateY(-6px);
  border-color: rgba(0,245,255,0.3);
  box-shadow: 0 20px 50px rgba(0,0,0,0.4);
}

.test-stars { color: var(--gold); font-size: 0.9rem; margin-bottom: 14px; }
.test-text { font-size: 0.9rem; color: var(--muted); line-height: 1.8; margin-bottom: 22px; font-style: italic; }

.test-author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.test-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--cyan), var(--gold));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: var(--bg);
  min-width: 44px;
}

.test-name { font-family: 'Syne', sans-serif; font-weight: 600; font-size: 0.9rem; margin-bottom: 2px; }
.test-biz { font-size: 0.78rem; color: var(--cyan); }

.trust-badges {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
  margin-top: 60px;
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 50px;
  padding: 14px 28px;
  transition: all 0.3s ease;
}

.trust-badge:hover {
  border-color: var(--gold);
  box-shadow: 0 0 20px rgba(255,255,255,0.08);
}

.trust-badge i { color: var(--gold); font-size: 1.2rem; }
.trust-badge span { font-family: 'Syne', sans-serif; font-weight: 600; font-size: 0.9rem; }

.video-placeholders {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.video-placeholder {
  aspect-ratio: 16/9;
  border-radius: 16px;
  background: var(--card);
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  cursor: pointer;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.video-placeholder:hover {
  border-color: rgba(0,245,255,0.3);
  box-shadow: 0 15px 40px rgba(0,0,0,0.4);
}

.play-btn {
  width: 60px; height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--cyan), #0099AA);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--bg);
  transition: all 0.3s ease;
}

.video-placeholder:hover .play-btn {
  transform: scale(1.1);
  box-shadow: 0 0 25px rgba(0,245,255,0.5);
}

.video-placeholder span { font-size: 0.85rem; color: var(--muted); }

/* ============================================
   DIVIDER
   ============================================ */
.divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
  margin: 0;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .video-placeholders { grid-template-columns: repeat(2, 1fr); }
  .blog-layout { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .consult-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  section { padding: 70px 0; }

  .services-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr; }
  .stat-item + .stat-item::before { display: none; }
  .stat-item { border-bottom: 1px solid var(--border); }
  .stat-item:last-child { border: none; }

  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .footer-bottom { flex-direction: column; text-align: center; }

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

  .services-full-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: 1fr; }
  .video-placeholders { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }

  .cta-banner { padding: 50px 28px; }
  .hero-btns { flex-direction: column; align-items: flex-start; }

  .whatsapp-btn { bottom: 20px; right: 20px; }
}

@media (max-width: 480px) {
  .values-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .trust-badges { flex-direction: column; align-items: stretch; }
  .trust-badge { justify-content: center; }
}
