/* ==========================================
   MARTÍNEZ LLC – CLEANING SERVICES
   Main Stylesheet
   ========================================== */

/* ---- RESET & BASE ---- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --navy:    #0d1b3e;
  --navy2:   #1a2f5e;
  --green:   #27ae60;
  --green2:  #2ecc71;
  --green3:  #1e8449;
  --white:   #ffffff;
  --gray:    #f8fafc;
  --gray2:   #e8edf5;
  --gray3:   #94a3b8;
  --dark:    #0a1628;
  --text:    #1e293b;
  --text2:   #475569;
  --shadow:  0 4px 24px rgba(13,27,62,.10);
  --shadow2: 0 8px 40px rgba(13,27,62,.16);
  --radius:  16px;
  --radius2: 24px;
  --trans:   .3s ease;
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
  line-height: 1.6;
}

h1,h2,h3,h4 { font-family: 'Poppins', sans-serif; line-height: 1.2; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.gradient-text {
  background: linear-gradient(135deg, var(--green), var(--navy));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px; border-radius: 50px; font-weight: 600; font-size: .95rem;
  cursor: pointer; transition: all var(--trans); border: 2px solid transparent;
  white-space: nowrap;
}
.btn-primary {
  background: linear-gradient(135deg, var(--green), var(--green3));
  color: var(--white);
  box-shadow: 0 4px 20px rgba(39,174,96,.35);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(39,174,96,.5); }

.btn-outline {
  background: rgba(255,255,255,.12);
  color: var(--white);
  border-color: rgba(255,255,255,.5);
  backdrop-filter: blur(8px);
}
.btn-outline:hover { background: var(--white); color: var(--navy); border-color: var(--white); transform: translateY(-2px); }

.btn-outline-dark {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy2);
}
.btn-outline-dark:hover { background: var(--navy); color: var(--white); transform: translateY(-2px); }

.full-width { width: 100%; justify-content: center; }

/* ---- SECTION HEADER ---- */
.section-header { text-align: center; margin-bottom: 60px; }
.section-header h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); color: var(--navy); margin: 10px 0 16px; }
.section-header p { font-size: 1rem; color: var(--text2); max-width: 560px; margin: 0 auto; }
.section-header.light h2 { color: var(--white); }
.section-header.light p { color: rgba(255,255,255,.75); }

.section-tag {
  display: inline-block;
  background: rgba(39,174,96,.12);
  color: var(--green3);
  border: 1px solid rgba(39,174,96,.3);
  padding: 6px 18px; border-radius: 50px;
  font-size: .8rem; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase;
}
.section-tag.light {
  background: rgba(255,255,255,.15);
  color: #a8f0c6; border-color: rgba(255,255,255,.3);
}

/* ========================================== */
/* NAVBAR */
/* ========================================== */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 18px 0; transition: all var(--trans);
  background: transparent;
}
.navbar.scrolled {
  background: rgba(10,22,40,.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 12px 0;
  box-shadow: 0 2px 30px rgba(0,0,0,.25);
}
.nav-container {
  max-width: 1200px; margin: 0 auto; padding: 0 24px;
  display: flex; align-items: center; justify-content: space-between;
}
.nav-logo { 
  display: flex; 
  align-items: center; 
  gap: 12px; 
  text-decoration: none;
}

/* Logo circular con fondo blanco */
.nav-logo-img {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  object-fit: cover;
  background: #fff;
  border: 2px solid rgba(39, 174, 96, 0.5);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.3);
  flex-shrink: 0;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.nav-logo:hover .nav-logo-img {
  transform: scale(1.08);
  box-shadow: 0 4px 20px rgba(39, 174, 96, 0.45);
}

/* Logo más grande en el footer */
.footer-brand .nav-logo-img {
  width: 52px;
  height: 52px;
}

/* ---- LOGO TEXT STACK ---- */
.logo-text-stack {
  display: flex;
  flex-direction: column;
  line-height: 1;
  gap: 2px;
}
.logo-name {
  font-family: 'Poppins', sans-serif;
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: 0.5px;
}
.logo-sub {
  font-family: 'Inter', sans-serif;
  font-size: 0.68rem;
  font-weight: 600;
  color: var(--green2);
  letter-spacing: 2px;
  text-transform: uppercase;
}


.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-links a { color: rgba(255,255,255,.85); font-size: .9rem; font-weight: 500; transition: color var(--trans); }
.nav-links a:hover { color: var(--green2); }
.nav-links .nav-cta {
  background: linear-gradient(135deg, var(--green), var(--green3));
  color: var(--white) !important; padding: 10px 22px; border-radius: 50px; font-weight: 700;
}
.nav-links .nav-cta:hover { transform: translateY(-2px); box-shadow: 0 4px 20px rgba(39,174,96,.4); }

.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; }
.hamburger span { width: 24px; height: 2px; background: var(--white); border-radius: 2px; transition: all var(--trans); }
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ========================================== */
/* HERO */
/* ========================================== */
.hero {
  min-height: 100vh;
  background:
    url('https://images.unsplash.com/photo-1600585154340-be6161a56a0c?w=1600&auto=format&fit=crop&q=80')
    center center / cover no-repeat;
  position: relative; overflow: hidden;
  display: flex; align-items: center; padding-top: 80px;
}

/* Dark navy overlay like the screenshot */
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(
    120deg,
    rgba(10, 18, 40, 0.82) 0%,
    rgba(13, 27, 62, 0.75) 55%,
    rgba(10, 18, 40, 0.60) 100%
  );
  pointer-events: none;
  z-index: 0;
}

/* Keep content above overlay */
.hero-bg-shapes,
.hero-container {
  position: relative;
  z-index: 1;
}

.hero-bg-shapes { position: absolute; inset: 0; pointer-events: none; }
.shape {
  position: absolute; border-radius: 50%;
  background: radial-gradient(circle, rgba(39,174,96,.18), transparent 70%);
  animation: pulsate 8s ease-in-out infinite;
}
.shape-1 { width: 700px; height: 700px; top: -200px; right: -150px; animation-delay: 0s; }
.shape-2 { width: 500px; height: 500px; bottom: -150px; left: -100px; background: radial-gradient(circle, rgba(39,174,96,.10), transparent 70%); animation-delay: 3s; }
.shape-3 { width: 350px; height: 350px; top: 30%; left: 25%; background: radial-gradient(circle, rgba(255,255,255,.04), transparent 70%); animation-delay: 5s; }

@keyframes pulsate {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.08); opacity: .7; }
}

.hero-container {
  max-width: 1200px; margin: 0 auto; padding: 80px 24px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; width: 100%;
}

.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(39,174,96,.15); border: 1px solid rgba(39,174,96,.4);
  color: #a8f0c6; padding: 8px 18px; border-radius: 50px;
  font-size: .8rem; font-weight: 600; letter-spacing: 1px; margin-bottom: 20px;
  animation: fadeInDown .8s ease both;
}

.hero-title {
  font-size: clamp(2rem, 4vw, 3.2rem); color: var(--white);
  margin-bottom: 20px; font-weight: 800;
  animation: fadeInUp .8s ease .1s both;
}
.hero-subtitle {
  font-size: 1.05rem; color: rgba(255,255,255,.75);
  margin-bottom: 32px; max-width: 520px; line-height: 1.8;
  animation: fadeInUp .8s ease .2s both;
}

.hero-stats {
  display: flex; align-items: center; gap: 28px; margin-bottom: 36px;
  animation: fadeInUp .8s ease .3s both;
}
.stat { text-align: center; }
.stat-num { font-size: 2rem; font-weight: 800; color: var(--green2); }
.stat span:not(.stat-num) { font-size: 1.4rem; font-weight: 800; color: var(--green2); }
.stat p { font-size: .75rem; color: rgba(255,255,255,.6); margin-top: 2px; }
.stat-divider { width: 1px; height: 40px; background: rgba(255,255,255,.15); }

.hero-btns {
  display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 24px;
  animation: fadeInUp .8s ease .4s both;
}

.hero-trust {
  font-size: .82rem; color: rgba(255,255,255,.55);
  animation: fadeInUp .8s ease .5s both;
}
.hero-trust i { color: var(--green2); margin-right: 4px; }

/* Hero Visual */
.hero-visual {
  position: relative; display: flex; align-items: center; justify-content: center;
  animation: fadeInRight .9s ease .3s both;
}
.hero-card-main {
  background: rgba(255,255,255,.07);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: var(--radius2);
  padding: 36px; width: 100%;
  box-shadow: 0 20px 60px rgba(0,0,0,.35), inset 0 1px 0 rgba(255,255,255,.1);
}
.hero-icon-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 24px; }
.hero-icon-box {
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius); padding: 20px 16px; text-align: center;
  transition: all var(--trans); cursor: default;
}
.hero-icon-box:hover {
  background: rgba(39,174,96,.22);
  border-color: rgba(39,174,96,.5);
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(39,174,96,.2);
}
.hero-icon-box i { font-size: 1.8rem; color: var(--green2); display: block; margin-bottom: 8px; }
.hero-icon-box span { font-size: .8rem; color: rgba(255,255,255,.85); font-weight: 600; }

.hero-clean-badge {
  display: flex; align-items: center; gap: 14px;
  background: linear-gradient(135deg, var(--green), var(--green3));
  border-radius: var(--radius); padding: 16px 20px;
  box-shadow: 0 6px 20px rgba(39,174,96,.3);
}
.hero-clean-badge i { font-size: 1.6rem; color: var(--white); }
.hero-clean-badge strong { display: block; color: var(--white); font-size: .95rem; }
.hero-clean-badge small { color: rgba(255,255,255,.75); font-size: .78rem; }

.floating-card {
  position: absolute; background: var(--white); border-radius: 50px;
  padding: 10px 18px; font-size: .82rem; font-weight: 700; color: var(--navy);
  box-shadow: 0 8px 30px rgba(0,0,0,.2); display: flex; align-items: center; gap: 8px;
  animation: float 3s ease-in-out infinite;
  white-space: nowrap;
}
.floating-card i { color: var(--green); }
.fc1 { top: 10%; left: -24px; animation-delay: 0s; }
.fc2 { top: 50%; right: -28px; animation-delay: 1s; }
.fc3 { bottom: 10%; left: -18px; animation-delay: 2s; }

@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }

.hero-wave { position: absolute; bottom: 0; left: 0; right: 0; line-height: 0; }
.hero-wave svg { width: 100%; display: block; }

/* ========================================== */
/* SERVICES */
/* ========================================== */
.services { padding: 100px 0; background: var(--gray); }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }

.service-card {
  background: var(--white); border-radius: var(--radius2);
  padding: 36px 28px; border: 1px solid var(--gray2);
  transition: all var(--trans); position: relative; overflow: hidden;
}
.service-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, var(--green), var(--navy));
  transform: scaleX(0); transition: transform var(--trans); transform-origin: left;
}
.service-card:hover { transform: translateY(-8px); box-shadow: var(--shadow2); border-color: rgba(39,174,96,.2); }
.service-card:hover::before { transform: scaleX(1); }

.service-icon-wrap {
  width: 64px; height: 64px; border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; margin-bottom: 20px;
}
.s1 { background: rgba(39,174,96,.1); color: var(--green3); }
.s2 { background: rgba(13,27,62,.08); color: var(--navy); }
.s3 { background: rgba(52,152,219,.1); color: #2980b9; }
.s4 { background: linear-gradient(135deg, rgba(39,174,96,.15), rgba(13,27,62,.1)); color: var(--green3); }
.s5 { background: rgba(231,76,60,.1); color: #c0392b; }
.s6 { background: rgba(155,89,182,.1); color: #8e44ad; }

.service-card h3 { font-size: 1.15rem; color: var(--navy); margin-bottom: 10px; font-weight: 700; }
.service-card p { font-size: .9rem; color: var(--text2); margin-bottom: 16px; line-height: 1.7; }

.service-features { margin-bottom: 20px; }
.service-features li {
  font-size: .85rem; color: var(--text2); padding: 5px 0;
  display: flex; align-items: center; gap: 8px;
  border-bottom: 1px solid var(--gray2);
}
.service-features li:last-child { border-bottom: none; }
.service-features li i { color: var(--green); font-size: .75rem; flex-shrink: 0; }

.service-link {
  font-size: .88rem; font-weight: 700; color: var(--green3);
  display: inline-flex; align-items: center; gap: 6px;
  transition: gap var(--trans), color var(--trans);
}
.service-link:hover { gap: 12px; color: var(--green); }

.featured-card {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy2) 100%);
  border-color: transparent; color: var(--white);
}
.featured-card h3 { color: var(--white); }
.featured-card p { color: rgba(255,255,255,.75); }
.featured-card .service-features li { color: rgba(255,255,255,.8); border-color: rgba(255,255,255,.1); }
.featured-card .service-link { color: var(--green2); }
.featured-card::before { background: linear-gradient(90deg, var(--green2), rgba(255,255,255,.4)); }

.featured-badge {
  position: absolute; top: 20px; right: 20px;
  background: var(--green); color: var(--white);
  font-size: .72rem; font-weight: 700; padding: 4px 14px; border-radius: 50px;
  letter-spacing: .5px; text-transform: uppercase;
  box-shadow: 0 2px 10px rgba(39,174,96,.4);
}

/* ========================================== */
/* WHY US */
/* ========================================== */
.why-us {
  padding: 100px 0; position: relative; overflow: hidden;
  background: linear-gradient(135deg, var(--dark) 0%, var(--navy) 100%);
}
.why-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 15% 50%, rgba(39,174,96,.14) 0%, transparent 55%),
    radial-gradient(ellipse at 85% 50%, rgba(39,174,96,.10) 0%, transparent 55%),
    radial-gradient(ellipse at 50% 0%, rgba(255,255,255,.03) 0%, transparent 50%);
}
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; position: relative; }

.why-card {
  background: rgba(255,255,255,.06);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius2); padding: 36px 28px;
  transition: all var(--trans);
}
.why-card:hover {
  background: rgba(255,255,255,.10);
  transform: translateY(-5px);
  border-color: rgba(39,174,96,.35);
  box-shadow: 0 16px 40px rgba(0,0,0,.2);
}
.why-icon {
  width: 56px; height: 56px; border-radius: 14px;
  background: linear-gradient(135deg, var(--green), var(--green3));
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; color: var(--white); margin-bottom: 18px;
  box-shadow: 0 4px 16px rgba(39,174,96,.3);
}
.why-card h4 { font-size: 1.05rem; color: var(--white); margin-bottom: 10px; font-weight: 700; }
.why-card p { font-size: .88rem; color: rgba(255,255,255,.65); line-height: 1.7; }

/* ========================================== */
/* BEFORE & AFTER */
/* ========================================== */
.before-after { padding: 100px 0; background: var(--white); }

.ba-slider-wrap { position: relative; overflow: hidden; }
.ba-track { display: flex; transition: transform .55s cubic-bezier(.4,0,.2,1); }
.ba-slide { min-width: 100%; padding: 0 20px; }

.ba-card {
  max-width: 700px; margin: 0 auto;
  border-radius: var(--radius2); overflow: hidden;
  box-shadow: 0 16px 48px rgba(13,27,62,.15);
}
.ba-panels { display: grid; grid-template-columns: 1fr 1fr; }

.ba-before, .ba-after { position: relative; overflow: hidden; }

.ba-label {
  position: absolute; top: 14px; left: 14px; z-index: 1;
  font-size: .72rem; font-weight: 800; letter-spacing: 2px;
  padding: 5px 14px; border-radius: 50px;
}
.before-lbl { background: rgba(0,0,0,.55); color: var(--white); }
.after-lbl  { background: var(--green); color: var(--white); box-shadow: 0 2px 10px rgba(39,174,96,.4); }

/* Photo-based before/after */
.ba-img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
}

/* Subtle tint on before panel */
.ba-before .ba-img { filter: grayscale(25%) brightness(0.88); }
.ba-after  .ba-img { filter: none; }

.ba-caption {
  background: var(--navy); color: var(--white);
  padding: 18px; text-align: center;
  font-weight: 600; font-size: .9rem;
  display: flex; align-items: center; justify-content: center; gap: 8px;
}
.ba-caption i { color: var(--green2); }

.ba-controls { display: flex; align-items: center; justify-content: center; gap: 20px; margin-top: 32px; }
.ba-btn {
  width: 44px; height: 44px; border-radius: 50%; border: 2px solid var(--navy);
  background: var(--white); color: var(--navy);
  cursor: pointer; font-size: 1rem; transition: all var(--trans);
  display: flex; align-items: center; justify-content: center;
}
.ba-btn:hover { background: var(--green); border-color: var(--green); color: var(--white); transform: scale(1.1); }
.ba-dots { display: flex; gap: 8px; }
.ba-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--gray2); cursor: pointer; transition: all var(--trans); }
.ba-dot.active { width: 24px; border-radius: 4px; background: var(--green); }

/* ========================================== */
/* TESTIMONIALS */
/* ========================================== */
.testimonials { padding: 100px 0; background: var(--gray); }
.testimonials-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }

.testi-card {
  background: var(--white); border-radius: var(--radius2);
  padding: 32px; border: 1px solid var(--gray2); transition: all var(--trans);
  position: relative; overflow: hidden;
}
.testi-card::after {
  content: '\201C';
  position: absolute; top: 12px; right: 20px;
  font-size: 6rem; font-family: Georgia, serif; line-height: 1;
  color: rgba(39,174,96,.08); pointer-events: none;
}
.testi-card:hover { transform: translateY(-5px); box-shadow: var(--shadow2); border-color: rgba(39,174,96,.2); }

.featured-testi {
  background: linear-gradient(135deg, var(--navy), var(--navy2));
  border-color: transparent;
}
.featured-testi::after { color: rgba(255,255,255,.06); }
.featured-testi p { color: rgba(255,255,255,.85) !important; }
.featured-testi .testi-author strong { color: var(--white) !important; }
.featured-testi .testi-author small { color: rgba(255,255,255,.6) !important; }

.testi-stars { color: #f1c40f; font-size: 1.1rem; margin-bottom: 14px; letter-spacing: 2px; }
.testi-card p { font-size: .92rem; color: var(--text2); line-height: 1.8; font-style: italic; margin-bottom: 20px; }
.testi-author { display: flex; align-items: center; gap: 14px; }
.testi-avatar {
  width: 46px; height: 46px; border-radius: 50%;
  background: linear-gradient(135deg, var(--green), var(--navy));
  color: var(--white); display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: .85rem; flex-shrink: 0;
}
.testi-author strong { display: block; font-size: .9rem; color: var(--navy); }
.testi-author small { font-size: .78rem; color: var(--gray3); }

/* ========================================== */
/* PRICING */
/* ========================================== */
.pricing { padding: 100px 0; background: var(--white); }
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; align-items: start; }

.pricing-card {
  background: var(--gray); border-radius: var(--radius2); padding: 40px 32px;
  border: 1px solid var(--gray2); transition: all var(--trans); position: relative;
}
.pricing-card:hover { transform: translateY(-6px); box-shadow: var(--shadow2); }

.featured-pricing {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy2) 100%);
  border-color: transparent; transform: scale(1.04);
  box-shadow: 0 24px 64px rgba(13,27,62,.3);
}
.featured-pricing:hover { transform: scale(1.04) translateY(-6px); }
.featured-pricing h3 { color: var(--white) !important; }
.featured-pricing .plan-desc { color: rgba(255,255,255,.7) !important; }
.featured-pricing .plan-features li { color: rgba(255,255,255,.8) !important; border-color: rgba(255,255,255,.1) !important; }
.featured-pricing .plan-features .unavailable { color: rgba(255,255,255,.3) !important; }
.featured-pricing .plan-price { color: var(--green2) !important; }
.featured-pricing .plan-price .currency { color: var(--green2) !important; }
.featured-pricing .plan-price .period { color: rgba(255,255,255,.6) !important; }
.featured-pricing .plan-icon { background: rgba(39,174,96,.25) !important; color: var(--green2) !important; }

.pricing-badge {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: linear-gradient(135deg, var(--green), var(--green3));
  color: var(--white); font-size: .75rem; font-weight: 700;
  padding: 5px 20px; border-radius: 50px; white-space: nowrap;
  box-shadow: 0 4px 14px rgba(39,174,96,.4);
}

.plan-icon {
  width: 56px; height: 56px; border-radius: 14px;
  background: rgba(39,174,96,.1); color: var(--green3);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; margin-bottom: 20px;
}
.pricing-card h3 { font-size: 1.3rem; color: var(--navy); margin-bottom: 8px; }
.plan-price { font-size: 2.8rem; font-weight: 800; color: var(--navy); margin: 16px 0 8px; line-height: 1; }
.plan-price .currency { font-size: 1.4rem; vertical-align: super; font-weight: 700; color: var(--green3); }
.plan-price .period { font-size: .95rem; color: var(--gray3); font-weight: 500; }
.plan-desc { font-size: .87rem; color: var(--text2); margin-bottom: 24px; line-height: 1.6; }

.plan-features { margin-bottom: 32px; }
.plan-features li {
  display: flex; align-items: center; gap: 10px;
  padding: 9px 0; font-size: .88rem; color: var(--text2);
  border-bottom: 1px solid var(--gray2);
}
.plan-features li:last-child { border-bottom: none; }
.plan-features li i { width: 16px; text-align: center; flex-shrink: 0; }
.plan-features li i.fa-check { color: var(--green); }
.plan-features li i.fa-xmark { color: var(--gray3); }
.plan-features .unavailable { color: var(--gray3) !important; }

.pricing-note { text-align: center; margin-top: 40px; font-size: .9rem; color: var(--text2); }
.pricing-note a { color: var(--green3); font-weight: 600; }
.pricing-note a:hover { text-decoration: underline; }

/* ========================================== */
/* CONTACT */
/* ========================================== */
.contact {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--dark) 0%, var(--navy) 100%);
  position: relative; overflow: hidden;
}
.contact::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 30% 60%, rgba(39,174,96,.12) 0%, transparent 55%);
  pointer-events: none;
}
.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 60px; align-items: center; position: relative; }

.contact-info h2 { font-size: clamp(1.8rem, 3vw, 2.5rem); color: var(--white); margin: 12px 0 16px; }
.contact-info h2 span { color: var(--green2); }
.contact-info > p { color: rgba(255,255,255,.7); font-size: .95rem; margin-bottom: 32px; line-height: 1.7; }

.contact-details { display: flex; flex-direction: column; gap: 16px; margin-bottom: 28px; }
.c-item { display: flex; align-items: center; gap: 16px; }
.c-item > i {
  width: 44px; height: 44px; border-radius: 12px;
  background: rgba(39,174,96,.15); border: 1px solid rgba(39,174,96,.3);
  display: flex; align-items: center; justify-content: center;
  color: var(--green2); font-size: 1.1rem; flex-shrink: 0;
}
.c-item strong { display: block; color: var(--white); font-size: .9rem; }
.c-item span { color: rgba(255,255,255,.65); font-size: .88rem; }

.service-areas {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius); padding: 16px 20px;
}
.service-areas strong { color: var(--green2); font-size: .88rem; display: block; margin-bottom: 6px; }
.service-areas p { color: rgba(255,255,255,.65); font-size: .85rem; }

.contact-form-wrap {
  background: var(--white); border-radius: var(--radius2); padding: 40px;
  box-shadow: 0 24px 64px rgba(0,0,0,.3);
}
.contact-form h3 { font-size: 1.4rem; color: var(--navy); margin-bottom: 24px; font-weight: 700; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 16px; }
.form-group label { display: block; font-size: .85rem; font-weight: 600; color: var(--navy); margin-bottom: 7px; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; padding: 12px 16px; border: 1.5px solid var(--gray2);
  border-radius: 10px; font-size: .9rem; color: var(--text);
  font-family: 'Inter', sans-serif; transition: border-color var(--trans), box-shadow var(--trans);
  background: var(--gray); outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--green);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(39,174,96,.12);
}
.form-group textarea { resize: vertical; }

.form-disclaimer { text-align: center; font-size: .78rem; color: var(--gray3); margin-top: 10px; }
.form-disclaimer i { color: var(--green); margin-right: 4px; }

/* ---- Form success state ---- */
.form-success {
  text-align: center; padding: 40px 20px;
  display: none;
}
.form-success i { font-size: 3rem; color: var(--green); margin-bottom: 16px; display: block; }
.form-success h4 { font-size: 1.3rem; color: var(--navy); margin-bottom: 8px; }
.form-success p { color: var(--text2); font-size: .9rem; }

/* ========================================== */
/* FOOTER */
/* ========================================== */
.footer { background: var(--dark); padding: 70px 0 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.2fr; gap: 40px; margin-bottom: 48px; }
.footer-brand p { color: rgba(255,255,255,.5); font-size: .88rem; line-height: 1.8; margin-bottom: 20px; }
.footer-social { display: flex; gap: 12px; }
.footer-social a {
  width: 38px; height: 38px; border-radius: 10px;
  background: rgba(255,255,255,.08); color: rgba(255,255,255,.7);
  display: flex; align-items: center; justify-content: center; font-size: .9rem;
  transition: all var(--trans); border: 1px solid rgba(255,255,255,.08);
}
.footer-social a:hover { background: var(--green); color: var(--white); transform: translateY(-3px); border-color: var(--green); }

.footer-col h4 { color: var(--white); font-size: .95rem; margin-bottom: 18px; font-weight: 700; }
.footer-col ul { display: flex; flex-direction: column; gap: 11px; }
.footer-col ul li { font-size: .85rem; color: rgba(255,255,255,.5); display: flex; align-items: center; gap: 8px; transition: color var(--trans); }
.footer-col ul li i { color: var(--green2); font-size: .8rem; }
.footer-col a:hover { color: var(--green2); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.07); padding: 24px 0;
  text-align: center; color: rgba(255,255,255,.35); font-size: .82rem;
}

/* ========================================== */
/* FLOATING BUTTONS */
/* ========================================== */
.whatsapp-float {
  position: fixed; bottom: 28px; right: 28px; z-index: 999;
  width: 58px; height: 58px; border-radius: 50%;
  background: #25D366; color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem; box-shadow: 0 4px 20px rgba(37,211,102,.45);
  transition: all var(--trans);
}
.whatsapp-float:hover { transform: scale(1.12); box-shadow: 0 8px 30px rgba(37,211,102,.6); }
.wa-tooltip {
  position: absolute; right: 68px; white-space: nowrap;
  background: var(--navy); color: var(--white);
  font-size: .78rem; font-weight: 600; padding: 6px 14px;
  border-radius: 50px; opacity: 0; transition: all var(--trans); pointer-events: none;
}
.whatsapp-float:hover .wa-tooltip { opacity: 1; right: 72px; }

.scroll-top {
  position: fixed; bottom: 28px; left: 28px; z-index: 999;
  width: 44px; height: 44px; border-radius: 50%; border: none;
  background: var(--navy); color: var(--white);
  font-size: 1rem; cursor: pointer; transition: all var(--trans);
  opacity: 0; pointer-events: none;
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow2);
}
.scroll-top.visible { opacity: 1; pointer-events: all; }
.scroll-top:hover { background: var(--green); transform: translateY(-3px); }

/* ========================================== */
/* ANIMATIONS */
/* ========================================== */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInRight {
  from { opacity: 0; transform: translateX(40px); }
  to { opacity: 1; transform: translateX(0); }
}

[data-animate] { opacity: 0; transform: translateY(30px); transition: opacity .7s ease, transform .7s ease; }
[data-animate="fade-left"] { transform: translateX(40px); }
[data-animate="fade-right"] { transform: translateX(-40px); }
[data-animate].animated { opacity: 1; transform: none; }

/* ========================================== */
/* RESPONSIVE */
/* ========================================== */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: 1fr; max-width: 440px; margin: 0 auto; }
  .featured-pricing { transform: none; }
  .featured-pricing:hover { transform: translateY(-6px); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .hero-container { grid-template-columns: 1fr; gap: 40px; padding: 60px 24px 100px; }
  .hero-visual { display: none; }

  .nav-links {
    position: fixed; top: 0; right: -100%; bottom: 0; width: 75%;
    background: var(--dark); flex-direction: column; align-items: flex-start;
    padding: 80px 32px 32px; gap: 0; transition: right var(--trans); z-index: 999;
    box-shadow: -10px 0 40px rgba(0,0,0,.4);
  }
  .nav-links.open { right: 0; }
  .nav-links li { width: 100%; }
  .nav-links a { display: block; padding: 14px 0; border-bottom: 1px solid rgba(255,255,255,.08); font-size: 1rem; }
  .nav-links .nav-cta { margin-top: 16px; display: inline-flex; }
  .hamburger { display: flex; z-index: 1001; }

  .services-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .hero-stats { gap: 16px; }
  .footer-grid { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 28px 20px; }
  .ba-card { margin: 0; }
}

@media (max-width: 480px) {
  .hero-btns { flex-direction: column; }
  .btn { justify-content: center; }
  .ba-panels { grid-template-columns: 1fr; }
  .ba-visual { height: 180px; }
  .pricing-grid { max-width: 100%; }
}

/* ========================================== */
/* MAP SECTION */
/* ========================================== */
.map-section {
  padding: 80px 0 0;
  background: var(--gray);
}
.map-header {
  text-align: center;
  margin-bottom: 40px;
}
.map-header h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  color: var(--navy);
  margin: 10px 0 10px;
}
.map-header p {
  font-size: 1rem;
  color: var(--text2);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}
.map-wrapper {
  border-radius: var(--radius2) var(--radius2) 0 0;
  overflow: hidden;
  box-shadow: 0 -4px 30px rgba(13,27,62,.12);
  border: 1px solid var(--gray2);
  border-bottom: none;
}
.map-wrapper iframe {
  display: block;
}
/* ========== LANGUAGE TOGGLE ========== */
.lang-toggle {
  display: flex;
  align-items: center;
  gap: 6px;
  background: transparent;
  border: 2px solid rgba(255,255,255,0.35);
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  padding: 6px 12px;
  border-radius: 20px;
  cursor: pointer;
  transition: all 0.25s ease;
  margin-right: 10px;
  white-space: nowrap;
}

.lang-toggle i {
  font-size: 0.9rem;
}

.lang-toggle:hover {
  background: rgba(255,255,255,0.15);
  border-color: rgba(255,255,255,0.7);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

/* When navbar scrolled (white bg), adapt colours */
.navbar.scrolled .lang-toggle {
  border-color: rgba(39,174,96,0.5);
  color: #27ae60;
}
.navbar.scrolled .lang-toggle:hover {
  background: rgba(39,174,96,0.08);
  border-color: #27ae60;
}

@media (max-width: 768px) {
  .lang-toggle {
    margin-right: 8px;
    padding: 5px 10px;
    font-size: 0.75rem;
  }
}