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

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

:root {
  --primary: hsl(84, 100%, 35%);
  --primary-light: hsl(84, 100%, 42%);
  --primary-dark: hsl(84, 100%, 28%);
  --primary-faint: hsla(84, 100%, 35%, 0.1);
  --primary-glow: hsla(84, 100%, 35%, 0.3);
  --slate-50: #f8fafc;
  --slate-100: #f1f5f9;
  --slate-200: #e2e8f0;
  --slate-300: #cbd5e1;
  --slate-400: #94a3b8;
  --slate-500: #64748b;
  --slate-600: #475569;
  --slate-700: #334155;
  --slate-800: #1e293b;
  --slate-900: #0f172a;
  --slate-950: #020617;
  --white: #ffffff;
  --font-display: 'Montserrat', sans-serif;
  --font-body: 'Open Sans', sans-serif;
  --radius: 0.5rem;
  --radius-lg: 1rem;
  --radius-xl: 1.5rem;
  --radius-2xl: 2rem;
  --radius-full: 9999px;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--slate-900);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1,h2,h3,h4,h5,h6 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.2;
  color: var(--slate-900);
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
button { cursor: pointer; font-family: var(--font-body); }

/* Scrollbar */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--slate-900); }
::-webkit-scrollbar-thumb { background: var(--slate-500); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--primary); }

/* ===== LAYOUT ===== */
.container { max-width: 1280px; margin: 0 auto; padding: 0 1rem; }
@media (min-width: 640px) { .container { padding: 0 1.5rem; } }
@media (min-width: 1024px) { .container { padding: 0 2rem; } }

/* ===== NAVBAR ===== */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--slate-200);
  box-shadow: 0 1px 3px rgba(0,0,0,0.06);
}
.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}
.navbar-logo img { height: 48px; width: auto; object-fit: contain; }
.navbar-links { display: flex; align-items: center; gap: 2rem; }
.navbar-links a {
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--slate-600);
  transition: color 0.2s;
  border-bottom: 2px solid transparent;
  padding-bottom: 2px;
}
.navbar-links a:hover, .navbar-links a.active {
  color: var(--primary);
  border-bottom-color: var(--primary);
}
.btn-whatsapp-nav {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--primary);
  color: var(--white) !important;
  border: none !important;
  padding: 0.6rem 1.25rem;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 0.875rem;
  transition: background 0.2s;
  border-bottom: none !important;
}
.btn-whatsapp-nav:hover { background: var(--primary-dark) !important; color: var(--white) !important; }
.hamburger { display: none; background: none; border: none; padding: 0.5rem; color: var(--slate-700); }
.hamburger svg { width: 24px; height: 24px; }
.mobile-menu {
  display: none;
  background: var(--white);
  border-top: 1px solid var(--slate-200);
  padding: 1rem;
}
.mobile-menu.open { display: block; }
.mobile-menu a {
  display: block;
  padding: 0.75rem 1rem;
  border-radius: var(--radius);
  font-size: 1rem;
  font-weight: 600;
  color: var(--slate-600);
  transition: background 0.2s, color 0.2s;
}
.mobile-menu a:hover, .mobile-menu a.active { background: #f0fdf0; color: var(--primary); }
.mobile-menu .btn-wa-mobile {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1rem;
  background: var(--primary);
  color: var(--white);
  padding: 0.875rem;
  border-radius: var(--radius);
  font-weight: 700;
}
@media (max-width: 767px) {
  .navbar-links { display: none; }
  .hamburger { display: block; }
}

/* ===== BUTTONS ===== */
.btn-primary {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: var(--primary); color: var(--white);
  padding: 1rem 2rem; border-radius: var(--radius-full);
  font-weight: 700; font-size: 1.125rem; border: none;
  box-shadow: 0 8px 25px var(--primary-glow);
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  text-decoration: none;
}
.btn-primary:hover { background: var(--primary-dark); transform: translateY(-2px); box-shadow: 0 12px 30px var(--primary-glow); }
.btn-outline-white {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: rgba(255,255,255,0.1); color: var(--white);
  padding: 1rem 2rem; border-radius: var(--radius-full);
  font-weight: 700; font-size: 1.125rem;
  border: 1px solid rgba(255,255,255,0.2);
  backdrop-filter: blur(4px);
  transition: background 0.2s;
  text-decoration: none;
}
.btn-outline-white:hover { background: rgba(255,255,255,0.2); }
.btn-white {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: var(--white); color: var(--primary);
  padding: 1rem 2rem; border-radius: var(--radius-full);
  font-weight: 700; font-size: 1.125rem; border: none;
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
  transition: transform 0.2s, box-shadow 0.2s;
  text-decoration: none;
}
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(0,0,0,0.2); }

/* ===== PAGE HEADER ===== */
.page-header {
  background: var(--slate-900);
  color: var(--white);
  padding: 5rem 1rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-header::before {
  content: '';
  position: absolute; inset: 0;
  background: var(--primary-faint);
}
.page-header .container { position: relative; z-index: 1; }
.page-header h1 { color: var(--white); font-size: clamp(2rem, 5vw, 3.5rem); margin-bottom: 1.25rem; }
.page-header p { color: var(--slate-300); font-size: 1.125rem; max-width: 680px; margin: 0 auto; }

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 600px;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
  background: var(--slate-900);
}
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
}
.hero-bg img { width: 100%; height: 100%; object-fit: cover; opacity: 0.3; }
.hero-bg::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to top, var(--slate-900) 0%, transparent 60%);
}
.hero-content {
  position: relative; z-index: 1;
  text-align: center;
  padding: 2rem 1rem;
  max-width: 900px;
  animation: fadeInUp 0.8s ease both;
}
.hero-badge {
  display: inline-block;
  background: rgba(90,153,0,0.2);
  color: var(--primary);
  border: 1px solid rgba(90,153,0,0.3);
  border-radius: var(--radius-full);
  padding: 0.25rem 0.875rem;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 1.5rem;
}
.hero h1 {
  font-size: clamp(2.5rem, 7vw, 5rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 1.5rem;
}
.hero h1 .gradient-text {
  background: linear-gradient(135deg, var(--primary) 0%, #86efac 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero p {
  color: var(--slate-300);
  font-size: 1.125rem;
  max-width: 580px;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
}
.hero-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ===== PARTNERS STRIP ===== */
.partners-strip {
  background: var(--slate-50);
  border-top: 1px solid var(--slate-200);
  border-bottom: 1px solid var(--slate-200);
  padding: 2.5rem 1rem;
}
.partners-strip .label {
  text-align: center;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--slate-500);
  margin-bottom: 2rem;
}
.partners-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem 2rem;
  align-items: center;
  justify-items: center;
}
@media (min-width: 640px) { .partners-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1024px) { .partners-grid { grid-template-columns: repeat(5, 1fr); } }
.partner-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  color: var(--slate-700);
  text-align: center;
}

/* ===== SOLUTIONS CARDS ===== */
.section { padding: 5rem 1rem; }
.section-white { background: var(--white); }
.section-light { background: var(--slate-50); }
.section-dark { background: var(--slate-900); color: var(--white); }
.section-green { background: var(--primary); color: var(--white); }

.section-header { text-align: center; margin-bottom: 4rem; }
.section-header h2 { font-size: clamp(1.75rem, 4vw, 3rem); margin-bottom: 1rem; }
.divider { height: 4px; width: 64px; background: var(--primary); border-radius: 9999px; margin: 0 auto 1rem; }
.section-header p { color: var(--slate-600); max-width: 600px; margin: 0 auto; }
.section-dark .section-header h2 { color: var(--white); }
.section-dark .section-header p { color: var(--slate-300); }

.solutions-grid { display: grid; grid-template-columns: 1fr; gap: 2rem; }
@media (min-width: 640px) { .solutions-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .solutions-grid { grid-template-columns: repeat(4, 1fr); } }

.solution-card {
  background: var(--slate-50);
  border: 1px solid var(--slate-100);
  border-radius: var(--radius-2xl);
  padding: 2rem;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}
.solution-card:hover {
  border-color: rgba(90,153,0,0.4);
  background: var(--white);
  box-shadow: 0 20px 40px rgba(15,23,42,0.08);
  transform: translateY(-4px);
}
.solution-icon {
  width: 56px; height: 56px;
  background: var(--white);
  border: 1px solid var(--slate-100);
  border-radius: var(--radius-lg);
  display: flex; align-items: center; justify-content: center;
  color: var(--primary);
  margin-bottom: 1.5rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  transition: transform 0.3s;
  font-size: 1.5rem;
}
.solution-card:hover .solution-icon { transform: scale(1.1); }
.solution-card h3 { font-size: 1.125rem; margin-bottom: 0.75rem; }
.solution-card p { color: var(--slate-600); font-size: 0.875rem; line-height: 1.6; margin-bottom: 1.5rem; }
.solution-card .learn-more {
  font-size: 0.875rem; font-weight: 700; color: var(--primary);
  display: inline-flex; align-items: center; gap: 0.25rem;
  transition: color 0.2s;
}
.solution-card .learn-more:hover { color: var(--primary-dark); }

/* ===== CTA / FORM SECTION ===== */
.cta-section {
  background: var(--slate-900);
  color: var(--white);
  padding: 5rem 1rem;
  position: relative;
  overflow: hidden;
}
.cta-section::before, .cta-section::after {
  content: '';
  position: absolute;
  border-radius: 9999px;
  filter: blur(80px);
  opacity: 0.15;
}
.cta-section::before {
  width: 400px; height: 400px;
  background: var(--primary);
  top: -100px; left: -100px;
}
.cta-section::after {
  width: 500px; height: 500px;
  background: #2563eb;
  bottom: -100px; right: -100px;
}
.cta-inner {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1fr;
  gap: 3rem; align-items: center;
}
@media (min-width: 1024px) { .cta-inner { grid-template-columns: 1fr 1fr; gap: 4rem; } }
.cta-left h2 { color: var(--white); font-size: clamp(1.75rem, 3.5vw, 2.5rem); margin-bottom: 1.25rem; }
.cta-left p { color: var(--slate-300); font-size: 1.1rem; margin-bottom: 2rem; line-height: 1.7; }
.cta-points { list-style: none; display: flex; flex-direction: column; gap: 1rem; }
.cta-points li { display: flex; align-items: flex-start; gap: 1rem; }
.cta-point-icon {
  width: 48px; height: 48px; border-radius: 9999px;
  background: rgba(90,153,0,0.15);
  color: var(--primary);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; font-size: 1.25rem;
}
.cta-point-text h4 { color: var(--white); font-weight: 700; margin-bottom: 0.2rem; }
.cta-point-text p { color: var(--slate-400); font-size: 0.875rem; margin: 0; }

/* ===== FORM ===== */
.form-card {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-2xl);
  padding: 2rem;
  backdrop-filter: blur(8px);
}
.form-card h3 { color: var(--white); margin-bottom: 1.5rem; font-size: 1.5rem; }
.form-group { margin-bottom: 1.25rem; }
.form-group label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: rgba(255,255,255,0.7);
  margin-bottom: 0.4rem;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--radius);
  padding: 0.75rem 1rem;
  color: var(--white) !important;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  transition: border-color 0.2s, background 0.2s;
  outline: none;
  -webkit-text-fill-color: var(--white);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(255,255,255,0.4); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--primary);
  background: rgba(255,255,255,0.13);
  box-shadow: 0 0 0 3px rgba(90,153,0,0.25);
}
.form-group select option { background: var(--slate-800); color: var(--white); }
.form-group textarea { min-height: 100px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
@media (max-width: 480px) { .form-row { grid-template-columns: 1fr; } }
.btn-submit {
  width: 100%;
  background: var(--primary);
  color: var(--white);
  border: none;
  padding: 0.9rem 2rem;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
  margin-top: 0.5rem;
}
.btn-submit:hover { background: var(--primary-dark); transform: translateY(-1px); }
.form-success {
  display: none;
  text-align: center;
  padding: 2rem;
  color: var(--white);
}
.form-success .check { font-size: 3rem; margin-bottom: 1rem; }

/* ===== CONTACT FORM (light background) ===== */
.form-card-light {
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-2xl);
  padding: 2.5rem;
  box-shadow: 0 4px 24px rgba(0,0,0,0.06);
}
.form-card-light h3 { color: var(--slate-900); margin-bottom: 1.5rem; font-size: 1.5rem; }
.form-card-light label { color: var(--slate-700); }
.form-card-light input,
.form-card-light select,
.form-card-light textarea {
  background: var(--slate-50);
  border: 1px solid var(--slate-200);
  color: var(--slate-900) !important;
  -webkit-text-fill-color: var(--slate-900);
}
.form-card-light input::placeholder,
.form-card-light textarea::placeholder { color: var(--slate-400); }
.form-card-light input:focus,
.form-card-light select:focus,
.form-card-light textarea:focus {
  border-color: var(--primary);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(90,153,0,0.15);
}
.form-card-light select option { background: var(--white); color: var(--slate-900); }

/* ===== SOLUTIONS PAGE ===== */
.solution-row {
  background: var(--white);
  border-radius: var(--radius-2xl);
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.07);
  border: 1px solid var(--slate-100);
  display: flex;
  flex-direction: column;
}
@media (min-width: 768px) {
  .solution-row { flex-direction: row; min-height: 400px; }
  .solution-row.reverse { flex-direction: row; }
}
.solution-row-img {
  position: relative;
  overflow: hidden;
  height: 260px;
}
@media (min-width: 768px) { .solution-row-img { width: 50%; height: auto; } }
.solution-row-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}
.solution-row:hover .solution-row-img img { transform: scale(1.05); }
.solution-row-img-overlay {
  position: absolute; inset: 0;
  background: rgba(15,23,42,0.28);
  transition: background 0.3s;
}
.solution-row:hover .solution-row-img-overlay { background: rgba(15,23,42,0.1); }
.solution-row-badge {
  position: absolute; top: 1.5rem; left: 1.5rem;
  width: 56px; height: 56px;
  border-radius: var(--radius-lg);
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  font-size: 1.5rem;
  box-shadow: 0 4px 16px rgba(0,0,0,0.3);
  z-index: 2;
}
.solution-row-content {
  padding: 2.5rem;
  display: flex; flex-direction: column; justify-content: center;
  flex: 1;
}
@media (min-width: 768px) { .solution-row-content { padding: 3rem; } }
.solution-row-content h2 { font-size: clamp(1.5rem, 3vw, 2rem); margin-bottom: 1rem; }
.solution-accent-line { height: 6px; width: 56px; background: var(--primary); border-radius: 9999px; margin-bottom: 1.25rem; }
.solution-row-content p { color: var(--slate-600); line-height: 1.7; font-size: 1.0625rem; margin-bottom: 2rem; }
.btn-enquire {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-weight: 700; color: var(--primary);
  font-family: var(--font-display);
  transition: color 0.2s, gap 0.2s;
  background: none; border: none; font-size: 1rem;
}
.btn-enquire:hover { color: var(--primary-dark); gap: 0.75rem; }

/* ===== INDUSTRIES ===== */
.industries-grid { display: grid; gap: 2rem; grid-template-columns: 1fr; }
@media (min-width: 640px) { .industries-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .industries-grid { grid-template-columns: repeat(3, 1fr); } }
.industry-card {
  background: var(--slate-50);
  border: 1px solid var(--slate-100);
  border-radius: var(--radius-2xl);
  padding: 2.5rem;
  transition: all 0.3s ease;
}
.industry-card:hover {
  background: var(--white);
  border-color: rgba(90,153,0,0.3);
  box-shadow: 0 16px 40px rgba(0,0,0,0.08);
  transform: translateY(-4px);
}
.industry-icon {
  width: 80px; height: 80px;
  background: var(--white);
  border-radius: var(--radius-xl);
  display: flex; align-items: center; justify-content: center;
  color: var(--primary);
  font-size: 2rem;
  margin-bottom: 1.5rem;
  box-shadow: 0 2px 10px rgba(0,0,0,0.07);
  transition: background 0.3s, color 0.3s;
}
.industry-card:hover .industry-icon { background: var(--primary); color: var(--white); }
.industry-card h3 { font-size: 1.375rem; margin-bottom: 0.75rem; }
.industry-card p { color: var(--slate-600); line-height: 1.6; }

/* ===== ABOUT PAGE ===== */
.about-grid { display: grid; grid-template-columns: 1fr; gap: 4rem; align-items: center; margin-bottom: 5rem; }
@media (min-width: 1024px) { .about-grid { grid-template-columns: 1fr 1fr; } }
.about-text .eyebrow { color: var(--primary); font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; font-size: 0.875rem; display: block; margin-bottom: 0.5rem; }
.about-text h2 { font-size: clamp(1.75rem, 3vw, 2.5rem); margin-bottom: 1.5rem; }
.about-text p { color: var(--slate-600); margin-bottom: 1.25rem; line-height: 1.8; font-size: 1.0625rem; }
.about-text strong { color: var(--slate-900); }
.about-img-wrap { position: relative; }
.about-img-wrap::before {
  content: '';
  position: absolute;
  inset: -1rem;
  background: rgba(90,153,0,0.15);
  border-radius: var(--radius-2xl);
  transform: rotate(3deg);
  z-index: 0;
}
.about-img-wrap img { position: relative; z-index: 1; border-radius: var(--radius-2xl); box-shadow: 0 20px 60px rgba(0,0,0,0.15); width: 100%; object-fit: cover; }

.stats-grid { display: grid; grid-template-columns: 1fr; gap: 2rem; margin-bottom: 5rem; }
@media (min-width: 768px) { .stats-grid { grid-template-columns: repeat(3, 1fr); } }
.stat-card { background: var(--slate-50); border: 1px solid var(--slate-100); border-radius: var(--radius-2xl); padding: 2.5rem; text-align: center; }
.stat-icon { width: 64px; height: 64px; border-radius: 9999px; display: flex; align-items: center; justify-content: center; margin: 0 auto 1.25rem; font-size: 1.75rem; }
.stat-icon.blue { background: #dbeafe; color: #2563eb; }
.stat-icon.green { background: #dcfce7; color: #16a34a; }
.stat-icon.purple { background: #f3e8ff; color: #7c3aed; }
.stat-card h3 { font-size: 1.25rem; margin-bottom: 0.5rem; }
.stat-card p { color: var(--slate-600); font-size: 0.9375rem; }

.presence-box { background: var(--slate-900); border-radius: var(--radius-2xl); padding: 3rem; text-align: center; color: var(--white); }
.presence-box h2 { color: var(--white); font-size: 2rem; margin-bottom: 1rem; }
.presence-box p { color: var(--slate-300); max-width: 520px; margin: 0 auto 2rem; }
.map-placeholder { background: var(--slate-800); border-radius: var(--radius-xl); height: 200px; display: flex; align-items: center; justify-content: center; color: var(--slate-500); font-weight: 700; font-size: 1.25rem; letter-spacing: 0.1em; opacity: 0.5; }

/* ===== CONTACT PAGE ===== */
.contact-grid { display: grid; grid-template-columns: 1fr; gap: 2rem; }
@media (min-width: 1024px) { .contact-grid { grid-template-columns: 1fr 2fr; } }
.contact-info-card { background: var(--white); border-radius: var(--radius-2xl); box-shadow: 0 4px 24px rgba(0,0,0,0.07); border: 1px solid var(--slate-100); padding: 2.5rem; }
.contact-info-card h3 { font-size: 1.25rem; margin-bottom: 2rem; }
.contact-items { display: flex; flex-direction: column; gap: 1.75rem; }
.contact-item { display: flex; align-items: flex-start; gap: 1rem; }
.contact-item-icon { width: 44px; height: 44px; background: var(--primary-faint); border-radius: 9999px; display: flex; align-items: center; justify-content: center; color: var(--primary); flex-shrink: 0; font-size: 1.1rem; }
.contact-item h4 { font-weight: 700; margin-bottom: 0.25rem; color: var(--slate-900); }
.contact-item p, .contact-item a { color: var(--slate-600); font-size: 0.9375rem; line-height: 1.5; }
.contact-item a:hover { color: var(--primary); }

/* ===== IMTEX ===== */
.gallery-grid { display: grid; grid-template-columns: 1fr; gap: 2rem; margin-bottom: 5rem; }
@media (min-width: 768px) { .gallery-grid { grid-template-columns: repeat(3, 1fr); } }
.gallery-item { position: relative; border-radius: var(--radius-2xl); overflow: hidden; aspect-ratio: 4/3; border: 1px solid var(--slate-200); background: var(--slate-100); }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.gallery-item:hover img { transform: scale(1.1); }
.gallery-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(15,23,42,0.6) 0%, transparent 50%); opacity: 0; transition: opacity 0.3s; display: flex; align-items: flex-end; padding: 1.5rem; }
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay p { color: var(--white); font-weight: 700; }

.imtex-two-col { display: grid; grid-template-columns: 1fr; gap: 3rem; margin-bottom: 5rem; }
@media (min-width: 1024px) { .imtex-two-col { grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; } }
.partner-booths { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; margin-top: 2rem; }
@media (max-width: 640px) { .partner-booths { grid-template-columns: 1fr; } }
.booth-card { background: var(--slate-50); border: 1px solid var(--slate-100); border-radius: var(--radius-xl); padding: 1.5rem; text-align: center; }
.booth-card .booth-no { font-size: 1.5rem; font-weight: 700; color: var(--primary); margin-bottom: 0.5rem; font-family: var(--font-display); }
.booth-card .booth-name { font-weight: 700; color: var(--slate-900); font-size: 0.9375rem; }

.team-box { background: var(--slate-900); border-radius: var(--radius-2xl); padding: 2.5rem; color: var(--white); }
.team-box h2 { color: var(--white); margin-bottom: 0.75rem; font-size: 1.5rem; display: flex; align-items: center; gap: 0.5rem; }
.team-box .team-intro { color: var(--slate-400); margin-bottom: 2rem; font-size: 0.9375rem; line-height: 1.6; }
.team-members { display: flex; flex-direction: column; gap: 0.875rem; }
.team-member { display: flex; align-items: center; justify-content: space-between; background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); border-radius: var(--radius-lg); padding: 1rem 1.25rem; gap: 1rem; flex-wrap: wrap; }
.team-member-info .name { font-weight: 700; color: var(--white); margin-bottom: 0.2rem; }
.team-member-info .role { color: var(--slate-400); font-size: 0.875rem; }
.team-member-phone { color: var(--primary); font-weight: 700; display: flex; align-items: center; gap: 0.35rem; font-size: 0.9375rem; }
.team-member-phone:hover { color: var(--white); }

.imtex-location { background: var(--slate-50); border: 1px solid var(--slate-100); border-radius: var(--radius-2xl); padding: 2.5rem 3rem; }
.imtex-location-grid { display: grid; grid-template-columns: 1fr; gap: 2rem; text-align: center; align-items: center; }
@media (min-width: 768px) { .imtex-location-grid { grid-template-columns: 1fr 1fr 1fr; text-align: left; } }
.loc-item { display: flex; flex-direction: column; align-items: center; gap: 1rem; }
@media (min-width: 768px) { .loc-item { flex-direction: row; align-items: flex-start; } }
.loc-icon { width: 52px; height: 52px; background: var(--primary-faint); border-radius: 9999px; display: flex; align-items: center; justify-content: center; color: var(--primary); font-size: 1.25rem; flex-shrink: 0; }
.loc-item h3 { font-weight: 700; color: var(--slate-900); margin-bottom: 0.25rem; }
.loc-item p { color: var(--slate-600); font-size: 0.9375rem; }

/* ===== FOOTER ===== */
.footer {
  background: var(--slate-950);
  color: var(--slate-300);
  padding: 4rem 1rem 2rem;
  border-top: 4px solid var(--primary);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
@media (min-width: 640px) { .footer-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .footer-grid { grid-template-columns: 1fr 1fr 1fr 1fr; } }
.footer-logo img { height: 48px; filter: brightness(0) invert(1); object-fit: contain; margin-bottom: 1.25rem; }
.footer-about p { font-size: 0.9375rem; color: var(--slate-400); line-height: 1.7; margin-bottom: 1.5rem; }
.social-links { display: flex; gap: 0.75rem; }
.social-link { width: 40px; height: 40px; background: var(--slate-900); border-radius: 9999px; display: flex; align-items: center; justify-content: center; color: var(--slate-300); font-size: 1rem; transition: background 0.2s, color 0.2s; }
.social-link:hover { background: var(--primary); color: var(--white); }
.footer-col h3 { color: var(--white); font-size: 1.0625rem; margin-bottom: 1.5rem; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 0.75rem; }
.footer-links a { color: var(--slate-400); font-size: 0.9375rem; transition: color 0.2s; }
.footer-links a:hover { color: var(--primary); }
.footer-services { list-style: none; display: flex; flex-direction: column; gap: 0.75rem; }
.footer-services li { display: flex; align-items: center; gap: 0.5rem; color: var(--slate-400); font-size: 0.9375rem; }
.service-dot { width: 8px; height: 8px; border: 1px solid var(--primary); border-radius: 9999px; flex-shrink: 0; }
.footer-contact-items { display: flex; flex-direction: column; gap: 1.25rem; }
.footer-contact-item { display: flex; align-items: flex-start; gap: 0.75rem; }
.footer-contact-item .icon { color: var(--primary); font-size: 1.1rem; flex-shrink: 0; margin-top: 1px; }
.footer-contact-item a, .footer-contact-item span { color: var(--slate-400); font-size: 0.875rem; line-height: 1.5; }
.footer-contact-item a:hover { color: var(--primary); }
.footer-bottom { border-top: 1px solid var(--slate-800); padding-top: 2rem; display: flex; flex-direction: column; gap: 1rem; align-items: center; text-align: center; font-size: 0.875rem; color: var(--slate-500); }
@media (min-width: 768px) { .footer-bottom { flex-direction: row; justify-content: space-between; text-align: left; } }
.footer-legal { display: flex; gap: 1.5rem; }
.footer-legal a { color: var(--slate-500); transition: color 0.2s; }
.footer-legal a:hover { color: var(--white); }

/* ===== WHATSAPP FLOAT ===== */
.wa-float {
  position: fixed; bottom: 1.5rem; right: 1.5rem; z-index: 999;
  width: 60px; height: 60px;
  background: #25D366;
  border-radius: 9999px;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  transition: transform 0.2s, box-shadow 0.2s;
  text-decoration: none;
  color: var(--white);
  font-size: 1.75rem;
}
.wa-float:hover { transform: scale(1.1); box-shadow: 0 8px 30px rgba(37,211,102,0.5); color: var(--white); }

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
.fade-in-up { opacity: 0; transform: translateY(30px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-in-up.visible { opacity: 1; transform: translateY(0); }
.fade-in-up-delay-1 { transition-delay: 0.1s; }
.fade-in-up-delay-2 { transition-delay: 0.2s; }
.fade-in-up-delay-3 { transition-delay: 0.3s; }

/* ===== UTILITY ===== */
.text-center { text-align: center; }
.mt-12 { margin-top: 3rem; }
.green-cta-banner { background: var(--primary); padding: 4rem 1rem; text-align: center; color: var(--white); }
.green-cta-banner h2 { color: var(--white); font-size: clamp(1.5rem, 3vw, 2.25rem); margin-bottom: 1rem; }
.green-cta-banner p { font-size: 1.0625rem; opacity: 0.9; max-width: 600px; margin: 0 auto 2rem; }
