/* ============================================
   SKPM SERVICES & CO — PREMIUM WEBSITE
   Brand Colors from Logo:
   - Primary Dark: #0C2D3A (navy-teal from handshake)
   - Primary: #1A535C (teal-dark)
   - Accent: #2BB5AD (teal from globe)
   - Accent Light: #4ECDC4 (light teal)
   - Gold: #D4A87C (beige/gold from map)
   - Gold Light: #E8C9A0
   ============================================ */

/* ---------- CSS VARIABLES ---------- */
:root {
  --primary: #0C2D3A;
  --primary-mid: #143D4C;
  --primary-light: #1A535C;
  --accent: #2BB5AD;
  --accent-light: #4ECDC4;
  --accent-glow: rgba(43,181,173,.15);
  --gold: #D4A87C;
  --gold-light: #E8C9A0;
  --gold-dark: #B8926A;
  --text: #1A2332;
  --text-light: #5A6A7A;
  --text-lighter: #8A97A6;
  --bg: #FFFFFF;
  --bg-light: #F7FAFA;
  --bg-alt: #EEF5F5;
  --bg-dark: #0C2D3A;
  --border: #D8E6E6;
  --shadow: 0 4px 6px -1px rgba(12,45,58,.06), 0 2px 4px -2px rgba(12,45,58,.04);
  --shadow-md: 0 8px 20px -4px rgba(12,45,58,.1);
  --shadow-lg: 0 20px 40px -12px rgba(12,45,58,.15);
  --shadow-xl: 0 25px 50px -12px rgba(12,45,58,.2);
  --radius: 16px;
  --radius-sm: 10px;
  --radius-lg: 24px;
  --transition: .35s cubic-bezier(.4,0,.2,1);
}

/* ---------- RESET & BASE ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
body {
  font-family: 'Segoe UI', -apple-system, BlinkMacSystemFont, Roboto, 'Helvetica Neue', Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.7;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; transition: var(--transition); }
ul { list-style: none; }
button { cursor: pointer; border: none; font-family: inherit; background: none; }

/* ---------- UTILITY ---------- */
.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section { padding: 100px 0; }
.section-header { text-align: center; max-width: 700px; margin: 0 auto 60px; }
.section-header.left-aligned { text-align: left; margin: 0 0 32px; }
.section-header .badge {
  display: inline-block; font-size: 12px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 3px; color: var(--accent); background: var(--accent-glow);
  padding: 8px 20px; border-radius: 50px; margin-bottom: 16px;
}
.section-header .badge.light { color: var(--gold); background: rgba(212,168,124,.12); }
.section-header h2 {
  font-size: clamp(28px, 4vw, 42px); font-weight: 800; line-height: 1.2;
  color: var(--primary); margin-bottom: 16px;
}
.section-header.light h2 { color: #fff; }
.section-header p { font-size: 17px; color: var(--text-light); line-height: 1.8; }
.section-header.light p { color: rgba(255,255,255,.7); }
.highlight { color: var(--accent); }

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 15px; font-weight: 700; padding: 14px 32px;
  border-radius: 50px; transition: var(--transition);
  text-align: center; justify-content: center;
}
.btn-primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-light));
  color: #fff; box-shadow: 0 4px 15px rgba(43,181,173,.35);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 25px rgba(43,181,173,.45); }
.btn-outline {
  border: 2px solid rgba(255,255,255,.4); color: #fff; background: rgba(255,255,255,.05);
  backdrop-filter: blur(4px);
}
.btn-outline:hover { background: rgba(255,255,255,.15); border-color: #fff; }
.btn-outline-light { border: 2px solid rgba(255,255,255,.5); color: #fff; }
.btn-outline-light:hover { background: rgba(255,255,255,.1); border-color: #fff; }
.btn-sm { padding: 10px 22px; font-size: 13px; }
.btn-lg { padding: 18px 40px; font-size: 16px; }
.btn-full { width: 100%; }
.btn-arrow { font-size: 18px; transition: var(--transition); }
.btn:hover .btn-arrow { transform: translateX(4px); }

/* ---------- PRELOADER ---------- */
.preloader {
  position: fixed; inset: 0; z-index: 99999;
  background: linear-gradient(135deg, var(--primary), var(--primary-mid));
  display: flex; align-items: center; justify-content: center;
  transition: opacity .6s, visibility .6s;
}
.preloader.hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.preloader-inner { text-align: center; }
.preloader-logo { width: 80px; height: 80px; margin: 0 auto 20px; border-radius: 50%; }
.preloader-bar {
  width: 200px; height: 3px; background: rgba(255,255,255,.15); border-radius: 10px; overflow: hidden;
}
.preloader-fill {
  height: 100%; width: 0%; background: linear-gradient(90deg, var(--accent), var(--gold));
  border-radius: 10px; animation: preloaderFill 1.5s ease-out forwards;
}
@keyframes preloaderFill { to { width: 100%; } }

/* ---------- HEADER ---------- */
.header {
  position: fixed; top: 0; left: 0; width: 100%; z-index: 1000;
  padding: 16px 0; transition: var(--transition);
  background: rgba(12,45,58,.5); backdrop-filter: blur(8px);
}
.header.scrolled {
  background: rgba(12,45,58,.97); backdrop-filter: blur(16px);
  padding: 10px 0; box-shadow: 0 4px 30px rgba(0,0,0,.15);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; }
.logo { display: flex; align-items: center; gap: 12px; }
.logo-img { width: 48px; height: 48px; border-radius: 50%; object-fit: cover; transition: var(--transition); }
.header.scrolled .logo-img { width: 40px; height: 40px; }
.logo-text { display: flex; flex-direction: row; align-items: baseline; gap: 8px; white-space: nowrap; }
.logo-name { font-size: 22px; font-weight: 900; color: #fff; letter-spacing: 1.5px; line-height: 1.1; }
.logo-sub { font-size: 10px; font-weight: 600; color: var(--gold); text-transform: uppercase; letter-spacing: 2px; }
.nav { display: flex; align-items: center; gap: 28px; }
.nav a { color: rgba(255,255,255,.85); font-size: 14px; font-weight: 600; position: relative; letter-spacing: .3px; }
.nav a::after {
  content: ''; position: absolute; bottom: -4px; left: 0; width: 0;
  height: 2px; background: var(--accent); transition: var(--transition); border-radius: 2px;
}
.nav a:hover { color: #fff; }
.nav a:hover::after, .nav a.active::after { width: 100%; }
.nav-cta {
  background: linear-gradient(135deg, var(--accent), var(--accent-light)) !important;
  color: #fff !important; padding: 10px 26px !important; border-radius: 50px !important;
  font-weight: 700 !important;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover { transform: translateY(-1px); box-shadow: 0 4px 15px rgba(43,181,173,.4); }

/* Hamburger */
.menu-toggle { display: none; flex-direction: column; gap: 5px; padding: 8px; z-index: 1001; }
.menu-toggle span {
  width: 26px; height: 2.5px; background: #fff; border-radius: 3px;
  transition: var(--transition); transform-origin: center;
}
.menu-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.menu-toggle.active span:nth-child(2) { opacity: 0; }
.menu-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ---------- HERO ---------- */
.hero {
  position: relative; min-height: 100vh; display: flex; align-items: center;
  overflow: hidden; background: var(--primary);
}
.hero-slide {
  position: absolute; inset: 0;
  background-size: cover; background-position: center; background-repeat: no-repeat;
  opacity: 0; transition: opacity 1.2s ease-in-out;
}
.hero-slide.active { opacity: 1; }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(12,45,58,.88) 0%, rgba(26,83,92,.75) 50%, rgba(12,45,58,.85) 100%);
}
.hero-content {
  position: relative; z-index: 2;
  padding: 160px 0 120px;
  max-width: 750px;
}
.hero-badge {
  display: inline-block; background: rgba(255,255,255,.1); backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.15); padding: 10px 24px;
  border-radius: 50px; font-size: 14px; font-weight: 600; color: var(--gold-light);
  margin-bottom: 24px; letter-spacing: .5px;
}
.hero-content h1 {
  font-size: clamp(36px, 5.5vw, 64px); font-weight: 900; color: #fff;
  line-height: 1.1; margin-bottom: 24px; letter-spacing: -0.5px;
}
.hero-highlight { color: var(--accent-light); }
.hero-content p {
  font-size: clamp(16px, 2vw, 19px); color: rgba(255,255,255,.8);
  line-height: 1.8; margin-bottom: 36px; max-width: 600px;
}
.hero-btns { display: flex; gap: 16px; flex-wrap: wrap; }

/* Hero Dots & Arrows */
.hero-dots {
  position: absolute; bottom: 40px; left: 50%; transform: translateX(-50%);
  display: flex; gap: 12px; z-index: 10;
}
.hero-dot {
  width: 12px; height: 12px; border-radius: 50%; border: 2px solid rgba(255,255,255,.5);
  background: transparent; transition: var(--transition);
}
.hero-dot.active { background: var(--accent); border-color: var(--accent); width: 36px; border-radius: 6px; }
.hero-arrow {
  position: absolute; top: 50%; z-index: 10;
  width: 48px; height: 48px; border-radius: 50%;
  background: rgba(255,255,255,.1); backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.2);
  color: #fff; font-size: 20px; display: flex; align-items: center; justify-content: center;
  transition: var(--transition);
}
.hero-prev { left: 24px; transform: translateY(-50%); }
.hero-next { right: 24px; transform: translateY(-50%); }
.hero-arrow:hover { background: var(--accent); border-color: var(--accent); }

/* Hero Particles */
.hero-particles { position: absolute; inset: 0; z-index: 1; pointer-events: none; overflow: hidden; }
.particle {
  position: absolute; bottom: -10px; background: rgba(255,255,255,.08);
  border-radius: 50%; animation: floatUp linear infinite;
}
@keyframes floatUp {
  0% { transform: translateY(0) scale(1); opacity: 0; }
  10% { opacity: 1; }
  90% { opacity: 1; }
  100% { transform: translateY(-100vh) scale(.5); opacity: 0; }
}

/* ---------- STATS BAR ---------- */
.stats-bar {
  background: linear-gradient(135deg, var(--primary), var(--primary-mid));
  padding: 0; margin-top: -1px; position: relative; z-index: 5;
}
.stats-grid {
  display: grid; grid-template-columns: repeat(5, 1fr);
  text-align: center;
}
.stat-item {
  padding: 40px 20px;
  border-right: 1px solid rgba(255,255,255,.08);
  transition: var(--transition);
}
.stat-item:last-child { border-right: none; }
.stat-item:hover { background: rgba(255,255,255,.04); }
.stat-icon { font-size: 28px; margin-bottom: 8px; }
.stat-number {
  font-size: clamp(32px, 4vw, 44px); font-weight: 900; color: var(--accent-light);
  line-height: 1; margin-bottom: 6px;
}
.stat-label { font-size: 13px; color: rgba(255,255,255,.6); font-weight: 600; text-transform: uppercase; letter-spacing: 1px; }

/* ---------- ABOUT ---------- */
.about { background: var(--bg-light); }
.about-grid {
  display: grid; grid-template-columns: 1fr 1.2fr; gap: 60px; align-items: center;
}
.about-image-col { position: relative; }
.about-img-wrapper {
  position: relative; border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.about-img-wrapper img { width: 100%; height: 420px; object-fit: cover; }
.about-experience-badge {
  position: absolute; bottom: -20px; right: -20px;
  background: linear-gradient(135deg, var(--accent), var(--accent-light));
  color: #fff; padding: 20px; border-radius: var(--radius);
  text-align: center; box-shadow: var(--shadow-lg);
}
.badge-number { display: block; font-size: 36px; font-weight: 900; line-height: 1; }
.badge-text { font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; opacity: .9; }
.about-img-small {
  position: absolute; top: 50%; left: -40px; width: 180px;
  border-radius: var(--radius); overflow: hidden;
  border: 4px solid #fff; box-shadow: var(--shadow-lg);
}
.about-img-small img { width: 100%; height: 140px; object-fit: cover; }
.about-text { color: var(--text-light); font-size: 16px; line-height: 1.9; margin-bottom: 32px; }
.about-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.about-card {
  background: #fff; padding: 24px 20px; border-radius: var(--radius-sm);
  border: 1px solid var(--border); transition: var(--transition);
}
.about-card:hover { border-color: var(--accent); box-shadow: var(--shadow-md); transform: translateY(-3px); }
.about-card-icon { font-size: 28px; margin-bottom: 10px; }
.about-card h4 { font-size: 15px; font-weight: 800; color: var(--primary); margin-bottom: 8px; }
.about-card p { font-size: 13px; color: var(--text-light); line-height: 1.6; }

/* ---------- TRUSTED BY ---------- */
.trusted-by { background: var(--bg); padding-bottom: 60px; }
.trusted-logos-track { overflow: hidden; position: relative; }
.trusted-logos-slide {
  display: flex; gap: 40px; animation: scroll-logos 30s linear infinite;
  width: max-content;
}
.trusted-logo-item {
  flex-shrink: 0; display: flex; align-items: center; gap: 10px;
  background: var(--bg-light); border: 1px solid var(--border);
  padding: 16px 28px; border-radius: var(--radius-sm);
  font-size: 15px; font-weight: 700; color: var(--primary-light);
  white-space: nowrap; transition: var(--transition);
}
.trusted-logo-item span { font-size: 22px; }
.trusted-logo-item:hover { border-color: var(--accent); background: var(--accent-glow); }
@keyframes scroll-logos {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ---------- SERVICES ---------- */
.services { background: var(--bg-light); }
.service-tabs {
  display: flex; justify-content: center; gap: 12px; margin-bottom: 48px; flex-wrap: wrap;
}
.service-tab {
  padding: 12px 28px; border-radius: 50px; font-size: 14px; font-weight: 700;
  color: var(--text-light); background: #fff; border: 2px solid var(--border);
  transition: var(--transition);
}
.service-tab:hover { border-color: var(--accent); color: var(--accent); }
.service-tab.active {
  background: linear-gradient(135deg, var(--accent), var(--accent-light));
  color: #fff; border-color: transparent;
}
.services-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px;
}
.service-card {
  background: #fff; border-radius: var(--radius); overflow: hidden;
  border: 1px solid var(--border); transition: var(--transition);
  opacity: 1; transform: translateY(0);
}
.service-card.hidden { display: none; }
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: var(--accent); }
.service-card-img {
  position: relative; height: 200px; overflow: hidden;
}
.service-card-img img { width: 100%; height: 100%; object-fit: cover; transition: var(--transition); }
.service-card:hover .service-card-img img { transform: scale(1.08); }
.service-card-overlay {
  position: absolute; inset: 0; background: rgba(12,45,58,.6);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: var(--transition);
}
.service-card:hover .service-card-overlay { opacity: 1; }
.service-card-body { padding: 28px; }
.service-icon { font-size: 32px; margin-bottom: 12px; }
.service-card-body h3 {
  font-size: 18px; font-weight: 800; color: var(--primary); margin-bottom: 10px;
}
.service-card-body p { font-size: 14px; color: var(--text-light); line-height: 1.7; margin-bottom: 16px; }
.service-features { display: flex; flex-wrap: wrap; gap: 6px; }
.service-features li {
  font-size: 12px; font-weight: 600; color: var(--accent);
  background: var(--accent-glow); padding: 4px 12px; border-radius: 20px;
}

/* ---------- PROCESS ---------- */
.process { background: var(--bg); }
.process-grid {
  display: flex; align-items: flex-start; justify-content: center; gap: 0;
}
.process-step {
  text-align: center; padding: 40px 30px; position: relative; flex: 1;
  background: var(--bg-light); border-radius: var(--radius); margin: 0 8px;
  border: 1px solid var(--border); transition: var(--transition);
}
.process-step:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: var(--accent); }
.process-number {
  position: absolute; top: -16px; left: 50%; transform: translateX(-50%);
  width: 36px; height: 36px; border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-light));
  color: #fff; font-size: 14px; font-weight: 900;
  display: flex; align-items: center; justify-content: center;
}
.process-icon { font-size: 40px; margin: 12px 0; }
.process-step h3 { font-size: 17px; font-weight: 800; color: var(--primary); margin-bottom: 10px; }
.process-step p { font-size: 14px; color: var(--text-light); line-height: 1.7; }
.process-connector {
  width: 50px; min-height: 2px; margin-top: 70px; flex-shrink: 0;
  background: linear-gradient(90deg, var(--accent), var(--accent-light));
  border-radius: 2px; position: relative;
}
.process-connector::after {
  content: '→'; position: absolute; right: -4px; top: -10px;
  color: var(--accent); font-size: 16px; font-weight: 900;
}

/* ---------- WHY US ---------- */
.why-us {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-mid) 100%);
  position: relative; overflow: hidden;
}
.why-us::before {
  content: ''; position: absolute; top: -50%; right: -20%;
  width: 600px; height: 600px; border-radius: 50%;
  background: radial-gradient(circle, rgba(43,181,173,.08), transparent 70%);
}
.why-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px;
}
.why-card {
  background: rgba(255,255,255,.05); backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.08); border-radius: var(--radius);
  padding: 36px 28px; transition: var(--transition);
}
.why-card:hover {
  background: rgba(255,255,255,.1); border-color: var(--accent);
  transform: translateY(-5px); box-shadow: 0 15px 40px rgba(0,0,0,.2);
}
.why-icon { font-size: 36px; margin-bottom: 16px; }
.why-card h3 { font-size: 18px; font-weight: 800; color: #fff; margin-bottom: 10px; }
.why-card p { font-size: 14px; color: rgba(255,255,255,.65); line-height: 1.7; }

/* ---------- TESTIMONIALS ---------- */
.testimonials { background: var(--bg-light); }
.testimonial-carousel { position: relative; overflow: hidden; }
.testimonial-track {
  display: flex; gap: 28px; transition: transform .5s ease;
}
.testimonial-card {
  flex: 0 0 calc(33.333% - 19px); background: #fff; padding: 36px;
  border-radius: var(--radius); border: 1px solid var(--border);
  transition: var(--transition); position: relative;
}
.testimonial-card::before {
  content: '"'; position: absolute; top: 16px; right: 24px;
  font-size: 64px; color: var(--accent-glow); font-family: Georgia, serif;
  line-height: 1;
}
.testimonial-card:hover { border-color: var(--accent); box-shadow: var(--shadow-md); }
.testimonial-stars { color: var(--gold); font-size: 18px; margin-bottom: 16px; letter-spacing: 2px; }
.testimonial-card > p { font-size: 15px; color: var(--text-light); line-height: 1.8; margin-bottom: 24px; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 14px; }
.testimonial-avatar {
  width: 48px; height: 48px; border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-light));
  color: #fff; font-size: 16px; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
}
.testimonial-author strong { display: block; font-size: 15px; color: var(--primary); }
.testimonial-author span { font-size: 13px; color: var(--text-lighter); }
.testimonial-nav { display: flex; justify-content: center; gap: 12px; margin-top: 32px; }
.testimonial-btn {
  width: 44px; height: 44px; border-radius: 50%;
  background: #fff; border: 2px solid var(--border);
  color: var(--primary); font-size: 16px;
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition);
}
.testimonial-btn:hover {
  background: var(--accent); color: #fff; border-color: var(--accent);
}

/* ---------- CTA BANNER ---------- */
.cta-banner {
  background: linear-gradient(135deg, var(--accent), var(--accent-light));
  padding: 60px 0; position: relative; overflow: hidden;
}
.cta-banner::before {
  content: ''; position: absolute; top: -50%; right: -10%;
  width: 500px; height: 500px; border-radius: 50%;
  background: rgba(255,255,255,.08);
}
.cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 40px; }
.cta-content h2 { font-size: clamp(24px, 3vw, 34px); font-weight: 900; color: #fff; margin-bottom: 10px; }
.cta-content p { font-size: 16px; color: rgba(255,255,255,.85); max-width: 500px; }
.cta-actions { display: flex; gap: 16px; flex-shrink: 0; }
.cta-banner .btn-primary {
  background: #fff; color: var(--primary); box-shadow: 0 4px 15px rgba(0,0,0,.15);
}
.cta-banner .btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 25px rgba(0,0,0,.2); }

/* ---------- CONTACT ---------- */
.contact { background: var(--bg); }
.contact-grid { display: grid; grid-template-columns: 1fr 1.3fr; gap: 48px; }
.contact-info-card {
  background: linear-gradient(135deg, var(--primary), var(--primary-mid));
  border-radius: var(--radius-lg); padding: 36px; color: #fff;
}
.contact-info-item {
  display: flex; gap: 16px; padding: 18px 0;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.contact-info-item:last-child { border-bottom: none; }
.contact-info-icon { font-size: 24px; flex-shrink: 0; margin-top: 2px; }
.contact-info-item h4 { font-size: 14px; font-weight: 800; margin-bottom: 4px; color: var(--accent-light); }
.contact-info-item p { font-size: 14px; color: rgba(255,255,255,.75); line-height: 1.6; }
.contact-map {
  margin-top: 20px; border-radius: var(--radius); overflow: hidden;
  background: var(--bg-alt); height: 160px;
  display: flex; align-items: center; justify-content: center;
}
.map-placeholder { text-align: center; }
.map-pin { font-size: 32px; margin-bottom: 8px; animation: bounce 2s infinite; }
.map-placeholder p { font-weight: 800; color: var(--primary); font-size: 15px; }
.map-placeholder span { font-size: 13px; color: var(--text-light); }
@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
.contact-form {
  background: #fff; padding: 40px; border-radius: var(--radius-lg);
  border: 1px solid var(--border); box-shadow: var(--shadow);
}
.contact-form h3 { font-size: 22px; font-weight: 800; color: var(--primary); margin-bottom: 28px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block; font-size: 13px; font-weight: 700; color: var(--text);
  margin-bottom: 8px; text-transform: uppercase; letter-spacing: .5px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; padding: 14px 18px; border: 2px solid var(--border);
  border-radius: var(--radius-sm); font-size: 15px; font-family: inherit;
  color: var(--text); background: var(--bg-light); transition: var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--accent); background: #fff;
  box-shadow: 0 0 0 4px var(--accent-glow);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-note { text-align: center; font-size: 13px; color: var(--text-lighter); margin-top: 16px; }

/* ---------- FOOTER ---------- */
.footer {
  background: var(--primary); color: rgba(255,255,255,.7); padding-top: 70px;
}
.footer-top {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 48px;
  padding-bottom: 50px; border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer-logo { display: flex; align-items: center; gap: 14px; margin-bottom: 20px; }
.footer-logo-img { width: 56px; height: 56px; border-radius: 50%; }
.footer-logo-name { display: block; font-size: 18px; font-weight: 900; color: #fff; }
.footer-logo-tagline { font-size: 11px; color: var(--gold); text-transform: uppercase; letter-spacing: 1.5px; }
.footer-desc { font-size: 14px; line-height: 1.8; margin-bottom: 24px; color: rgba(255,255,255,.55); }
.footer-social { display: flex; gap: 10px; }
.social-link {
  width: 38px; height: 38px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,.15); color: rgba(255,255,255,.7);
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 700; transition: var(--transition);
}
.social-link:hover { background: var(--accent); border-color: var(--accent); color: #fff; }
.footer-links-group h4 {
  font-size: 15px; font-weight: 800; color: #fff; margin-bottom: 20px;
  text-transform: uppercase; letter-spacing: 1px;
}
.footer-links-group a {
  display: block; font-size: 14px; color: rgba(255,255,255,.55);
  padding: 6px 0; transition: var(--transition);
}
.footer-links-group a:hover { color: var(--accent-light); padding-left: 6px; }
.footer-bottom {
  display: flex; align-items: center; justify-content: space-between;
  padding: 24px 0; font-size: 13px;
}
.footer-bottom p { color: rgba(255,255,255,.4); }
.footer-bottom-links { display: flex; gap: 24px; }
.footer-bottom-links a { color: rgba(255,255,255,.4); transition: var(--transition); }
.footer-bottom-links a:hover { color: var(--accent-light); }

/* ---------- WHATSAPP BUTTON ---------- */
.whatsapp-btn {
  position: fixed; bottom: 28px; right: 28px; z-index: 900;
  width: 60px; height: 60px; border-radius: 50%;
  background: #25D366; color: #fff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,.4);
  transition: var(--transition); animation: pulse-wa 2s infinite;
}
.whatsapp-btn:hover { transform: scale(1.1); box-shadow: 0 6px 30px rgba(37,211,102,.5); }
@keyframes pulse-wa {
  0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,.4); }
  50% { box-shadow: 0 4px 30px rgba(37,211,102,.6), 0 0 0 10px rgba(37,211,102,.1); }
}

/* ---------- BACK TO TOP ---------- */
.back-to-top {
  position: fixed; bottom: 100px; right: 32px; z-index: 900;
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--primary); color: #fff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-md); transition: var(--transition);
  opacity: 0; visibility: hidden; transform: translateY(10px);
}
.back-to-top.visible { opacity: 1; visibility: visible; transform: translateY(0); }
.back-to-top:hover { background: var(--accent); }

/* ---------- SCROLL ANIMATIONS ---------- */
.scroll-reveal {
  opacity: 0; transform: translateY(30px); transition: opacity .7s ease, transform .7s ease;
}
.scroll-reveal.revealed { opacity: 1; transform: translateY(0); }

/* ---------- FORM SUCCESS ---------- */
.form-success {
  background: var(--accent-glow); border: 2px solid var(--accent);
  border-radius: var(--radius-sm); padding: 20px; text-align: center;
  color: var(--primary); font-weight: 700; display: none;
}
.form-success.show { display: block; }

/* ---------- WHY CONTACT GRID ---------- */
.why-contact-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
  margin-top: 50px; padding-top: 40px;
  border-top: 1px solid var(--border);
}
.why-contact-item {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 20px; border-radius: var(--radius-sm);
  background: var(--bg-light); transition: var(--transition);
}
.why-contact-item:hover { background: var(--accent-glow); transform: translateY(-2px); }
.why-contact-check {
  flex-shrink: 0; width: 32px; height: 32px;
  background: linear-gradient(135deg, var(--accent), var(--accent-light));
  color: #fff; border-radius: 50%; display: flex;
  align-items: center; justify-content: center;
  font-weight: 700; font-size: 16px;
}
.why-contact-item strong { color: var(--primary); font-size: 15px; display: block; margin-bottom: 4px; }
.why-contact-item p { color: var(--text-light); font-size: 13px; line-height: 1.5; margin: 0; }

/* ---------- CONTACT LINKS ---------- */
.contact-info-item a {
  color: var(--text); text-decoration: none; transition: var(--transition);
}
.contact-info-item a:hover { color: var(--accent); }

/* ---------- MAP LINK ---------- */
.map-placeholder { text-decoration: none; color: inherit; cursor: pointer; }
.map-placeholder .map-link {
  display: inline-block; margin-top: 10px; color: var(--accent);
  font-weight: 600; font-size: 14px; transition: var(--transition);
}
.map-placeholder:hover .map-link { color: var(--gold); }
.map-placeholder span { display: block; font-size: 13px; color: var(--text-light); line-height: 1.6; }

/* ---------- PRELOADER TEXT ---------- */
.preloader-text {
  margin-top: 16px; font-size: 16px; font-weight: 700;
  color: var(--primary); letter-spacing: 2px; text-transform: uppercase;
}

/* ====== RESPONSIVE ====== */
@media (max-width: 1024px) {
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-img-small { display: none; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(3, 1fr); }
  .stat-item:nth-child(4), .stat-item:nth-child(5) { border-right: none; }
  .why-contact-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .process-connector { display: none; }
  .process-grid { flex-wrap: wrap; gap: 20px; }
  .process-step { flex: 1 1 calc(50% - 20px); min-width: 220px; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
  .cta-inner { flex-direction: column; text-align: center; }
  .cta-content p { margin: 0 auto; }
  .testimonial-card { flex: 0 0 calc(50% - 14px); }
}

@media (max-width: 768px) {
  .section { padding: 70px 0; }
  .menu-toggle { display: flex; }
  .nav {
    position: fixed; top: 0; right: -100%; width: 280px; height: 100vh;
    background: var(--primary); flex-direction: column; padding: 100px 32px 40px;
    gap: 0; transition: var(--transition); z-index: 999;
    box-shadow: -10px 0 30px rgba(0,0,0,.3);
  }
  .nav.open { right: 0; }
  .nav a { padding: 16px 0; border-bottom: 1px solid rgba(255,255,255,.06); width: 100%; font-size: 16px; }
  .nav-cta { margin-top: 16px; text-align: center !important; display: block !important; }
  .hero-content { padding: 120px 0 100px; }
  .hero-arrow { display: none; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,.08); }
  .services-grid { grid-template-columns: 1fr; }
  .about-cards { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .process-step { flex: 1 1 100%; }
  .form-row { grid-template-columns: 1fr; }
  .why-contact-grid { grid-template-columns: 1fr; gap: 16px; }
  .footer-top { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .cta-actions { flex-direction: column; width: 100%; }
  .testimonial-card { flex: 0 0 100%; }
  .contact-form { padding: 28px; }
  .service-tabs { gap: 8px; }
  .service-tab { padding: 10px 20px; font-size: 13px; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .hero-content h1 { font-size: 32px; }
  .hero-btns { flex-direction: column; }
  .hero-btns .btn { width: 100%; }
  .stats-grid { grid-template-columns: 1fr; }
  .logo-name { font-size: 18px; }
  .logo-img { width: 38px; height: 38px; }
}
