/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Inter', sans-serif; color: #1a1a2e; background: #fff; line-height: 1.6; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

/* ===== VARIABLES ===== */
:root {
  --gold: #f5a623;
  --dark: #0a0a1a;
  --green: #25D366;
  --green-dark: #128C7E;
  --text: #1a1a2e;
  --text-light: #6b7280;
  --bg-light: #f9fafb;
  --border: #e5e7eb;
  --radius: 12px;
  --shadow: 0 4px 24px rgba(0,0,0,0.08);
}

/* ===== CONTAINER ===== */
.container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.75rem 1.5rem; border-radius: 8px; font-weight: 600;
  font-size: 0.95rem; cursor: pointer; border: none; transition: all 0.2s;
  white-space: nowrap;
}
.btn-whatsapp { background: var(--green); color: #fff; }
.btn-whatsapp:hover { background: var(--green-dark); transform: translateY(-1px); }
.btn-whatsapp-sm { background: var(--green); color: #fff; padding: 0.5rem 1rem; font-size: 0.85rem; border-radius: 6px; display: inline-flex; align-items: center; gap: 0.4rem; font-weight: 600; transition: all 0.2s; }
.btn-whatsapp-sm:hover { background: var(--green-dark); }
.btn-outline { background: transparent; color: var(--text); border: 2px solid var(--border); }
.btn-outline:hover { border-color: var(--green); color: var(--green); }
.btn-outline-white { background: transparent; color: #fff; border: 2px solid rgba(255,255,255,0.6); }
.btn-outline-white:hover { background: rgba(255,255,255,0.1); }
.btn-full { width: 100%; justify-content: center; }
.btn-lg { padding: 1rem 2rem; font-size: 1rem; }
.center-btn { text-align: center; display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; align-items: center; }

/* ===== NAVBAR ===== */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(10,10,26,0.95); backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255,255,255,0.1);
  padding: 0.75rem 0;
}
.nav-container { display: flex; align-items: center; gap: 1.5rem; }
.logo { display: flex; align-items: center; gap: 0.5rem; color: #fff; font-size: 1rem; font-weight: 700; white-space: nowrap; }
.logo-icon { font-size: 1.4rem; }
.logo strong { color: var(--gold); }
.nav-links { display: flex; gap: 0.25rem; margin-left: auto; }
.nav-links a { color: rgba(255,255,255,0.8); padding: 0.4rem 0.75rem; border-radius: 6px; font-size: 0.9rem; transition: all 0.2s; }
.nav-links a:hover { color: #fff; background: rgba(255,255,255,0.1); }
.nav-actions { display: flex; align-items: center; gap: 0.75rem; margin-left: 1rem; }
.nav-phone { color: rgba(255,255,255,0.8); font-size: 0.85rem; white-space: nowrap; }
.nav-phone:hover { color: #fff; }
.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.hamburger span { display: block; width: 24px; height: 2px; background: #fff; border-radius: 2px; transition: all 0.3s; }

/* ===== HERO ===== */
.hero {
  min-height: 100vh; position: relative;
  background: linear-gradient(135deg, #0a0a1a 0%, #1a1a3e 50%, #0d1b2a 100%);
  display: flex; flex-direction: column; justify-content: center;
  padding-top: 80px;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.03)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
/*  background: url('../src/images/hero.webp');*/
  pointer-events: none;
}
.hero-content { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; padding: 4rem 0 2rem; position: relative; z-index: 1; }
.hero-text { color: #fff; }
.hero-badge { display: inline-block; background: rgba(245,166,35,0.15); border: 1px solid rgba(245,166,35,0.4); color: var(--gold); padding: 0.4rem 1rem; border-radius: 20px; font-size: 0.85rem; font-weight: 600; margin-bottom: 1.5rem; }
.hero-text h1 { font-size: clamp(2rem, 4vw, 3.2rem); font-weight: 900; line-height: 1.15; margin-bottom: 1.25rem; }
.highlight { color: var(--gold); }
.hero-text p { font-size: 1.05rem; color: rgba(255,255,255,0.75); margin-bottom: 1.5rem; line-height: 1.7; }
.hero-badges { display: flex; flex-wrap: wrap; gap: 0.75rem; }
.hero-badges span { background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.15); color: rgba(255,255,255,0.9); padding: 0.4rem 0.9rem; border-radius: 20px; font-size: 0.85rem; }

/* ===== BOOKING CARD ===== */
.booking-card { background: #fff; border-radius: 16px; padding: 1.75rem; box-shadow: 0 20px 60px rgba(0,0,0,0.3); }
.booking-card-header { display: flex; align-items: center; gap: 0.6rem; font-weight: 700; font-size: 1rem; margin-bottom: 1.25rem; color: var(--text); }
.booking-form { display: flex; flex-direction: column; gap: 0.75rem; }
.form-group { display: flex; align-items: center; gap: 0.6rem; background: #f9fafb; border: 1.5px solid var(--border); border-radius: 8px; padding: 0.6rem 0.9rem; transition: border-color 0.2s; }
.form-group:focus-within { border-color: var(--green); }
.form-icon { font-size: 1rem; flex-shrink: 0; }
.form-group input, .form-group select, .form-group textarea { border: none; background: transparent; outline: none; width: 100%; font-size: 0.9rem; font-family: inherit; color: var(--text); }
.form-group select { cursor: pointer; }
.form-group textarea { resize: vertical; min-height: 80px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem; }
.form-note { font-size: 0.8rem; color: var(--text-light); text-align: center; }
.form-note.light { color: rgba(255,255,255,0.7); }

/* ===== STATS BAR ===== */
.stats-bar { background: rgba(255,255,255,0.05); border-top: 1px solid rgba(255,255,255,0.1); padding: 1.5rem 0; position: relative; z-index: 1; }
.stats-grid { display: flex; justify-content: space-around; flex-wrap: wrap; gap: 1rem; }
.stat { text-align: center; color: #fff; }
.stat strong { display: block; font-size: 1.5rem; font-weight: 800; color: var(--gold); }
.stat span { font-size: 0.8rem; color: rgba(255,255,255,0.6); }

/* ===== SECTIONS ===== */
.section { padding: 5rem 0; }
.section-dark { background: linear-gradient(135deg, #0a0a1a 0%, #1a1a3e 100%); }
.section-light { background: var(--bg-light); }
.section-green { background: linear-gradient(135deg, #0a3d2e 0%, #1a5c40 100%); color: #fff; }
.section-label { font-size: 0.75rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.75rem; }
.section-label.light { color: var(--gold); }
h2 { font-size: clamp(1.75rem, 3vw, 2.5rem); font-weight: 800; margin-bottom: 1rem; }
h2.light { color: #fff; }
.section-sub { font-size: 1.05rem; color: var(--text-light); max-width: ; margin-bottom: 3rem; }
.section-sub.light { color: rgba(255,255,255,0.7); }
.section-green .section-sub { color: rgba(255,255,255,0.75); }
.section-green h2 { color: #fff; }

/* ===== SERVICES ===== */
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 1.5rem; }
.service-card { background: #fff; border: 1.5px solid var(--border); border-radius: var(--radius); padding: 1.75rem; transition: all 0.3s; }
.service-card:hover { border-color: var(--green); box-shadow: 0 8px 30px rgba(37,211,102,0.1); transform: translateY(-3px); }
.service-tag { display: inline-block; background: rgba(245,166,35,0.1); color: var(--gold); font-size: 0.75rem; font-weight: 700; padding: 0.25rem 0.75rem; border-radius: 20px; margin-bottom: 1rem; }
.service-icon { font-size: 2rem; margin-bottom: 0.75rem; }
.service-card h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 0.75rem; }
.service-card p { color: var(--text-light); font-size: 0.9rem; margin-bottom: 1.25rem; line-height: 1.6; }

/* ===== STEPS ===== */
.steps-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 2rem; margin-bottom: 3rem; }
.step-card { text-align: center; color: #fff; }
.step-num { font-size: 3rem; font-weight: 900; color: var(--gold); opacity: 0.8; line-height: 1; margin-bottom: 1rem; }
.step-card h3 { font-size: 1.2rem; font-weight: 700; margin-bottom: 0.75rem; }
.step-card p { color: rgba(255,255,255,0.7); font-size: 0.95rem; }

/* ===== COVERAGE ===== */
.coverage-grid { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-bottom: 1.5rem; }
.coverage-tag { background: var(--bg-light); border: 1.5px solid var(--border); padding: 0.5rem 1.25rem; border-radius: 25px; font-size: 0.9rem; font-weight: 500; transition: all 0.2s; }
.coverage-tag.active, .coverage-tag:hover { background: var(--green); color: #fff; border-color: var(--green); }
.coverage-note { color: var(--text-light); margin-bottom: 1.5rem; font-size: 0.95rem; }
.coverage-stat { display: flex; align-items: center; gap: 1rem; margin-top: 2.5rem; }
.cov-num { font-size: 4rem; font-weight: 900; color: var(--gold); line-height: 1; }
.cov-label { font-size: 1.1rem; font-weight: 600; line-height: 1.4; }
.cov-label span { font-size: 0.9rem; color: var(--text-light); font-weight: 400; }

/* ===== PRICING ===== */
.pricing-features { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1rem; margin-bottom: 2.5rem; }
.pricing-feat { display: flex; align-items: center; gap: 0.75rem; background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.15); border-radius: 8px; padding: 0.9rem 1.2rem; color: #fff; font-size: 0.95rem; }
.pricing-feat span { font-size: 1.3rem; }

/* ===== REVIEWS ===== */
.reviews-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 1.5rem; }
.review-card { background: #fff; border: 1.5px solid var(--border); border-radius: var(--radius); padding: 1.5rem; }
.review-stars { font-size: 1rem; margin-bottom: 0.75rem; }
.review-card p { color: var(--text); font-size: 0.95rem; line-height: 1.7; margin-bottom: 1.25rem; font-style: italic; }
.reviewer { display: flex; align-items: center; gap: 0.75rem; }
.reviewer-avatar { width: 40px; height: 40px; border-radius: 50%; background: linear-gradient(135deg, var(--gold), #e08c1a); display: flex; align-items: center; justify-content: center; color: #fff; font-weight: 700; font-size: 1rem; flex-shrink: 0; }
.reviewer strong { display: block; font-size: 0.9rem; }
.reviewer span { font-size: 0.8rem; color: var(--text-light); }

/* ===== FAQ ===== */
.faq-list { max-width: 800px; display: flex; flex-direction: column; gap: 0.75rem; }
.faq-item { border: 1.5px solid var(--border); border-radius: var(--radius); overflow: hidden; }
.faq-question { width: 100%; display: flex; justify-content: space-between; align-items: center; padding: 1.1rem 1.5rem; background: #fff; border: none; cursor: pointer; font-size: 0.95rem; font-weight: 600; text-align: left; color: var(--text); transition: background 0.2s; gap: 1rem; }
.faq-question:hover { background: var(--bg-light); }
.faq-question.active { background: var(--bg-light); color: var(--green-dark); }
.faq-icon { font-size: 1.25rem; font-weight: 400; flex-shrink: 0; transition: transform 0.3s; color: var(--green); }
.faq-question.active .faq-icon { transform: rotate(45deg); }
.faq-answer { display: none; padding: 0 1.5rem 1.25rem; background: var(--bg-light); }
.faq-answer.open { display: block; }
.faq-answer p { color: var(--text-light); font-size: 0.95rem; line-height: 1.7; }

/* ===== CONTACT ===== */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: start; }
.contact-info { display: flex; flex-direction: column; gap: 1.5rem; }
.contact-details { display: flex; flex-direction: column; gap: 1rem; }
.contact-item { display: flex; flex-direction: column; gap: 0.25rem; }
.contact-item strong { font-size: 0.85rem; color: var(--text-light); }
.contact-item a, .contact-item span { font-size: 1rem; color: var(--text); font-weight: 500; }
.contact-item a:hover { color: var(--green); }
.contact-form-box { background: var(--bg-light); border: 1.5px solid var(--border); border-radius: var(--radius); padding: 2rem; }
.contact-form-box h3 { font-size: 1.1rem; margin-bottom: 0.25rem; }
.contact-form-box .form-note { margin-bottom: 1.25rem; }

/* ===== FOOTER ===== */
.footer { background: var(--dark); color: rgba(255,255,255,0.7); padding: 4rem 0 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 3rem; padding-bottom: 3rem; }
.footer-brand .logo { color: #fff; font-size: 1.1rem; margin-bottom: 0.5rem; }
.footer-tagline { font-size: 0.75rem; letter-spacing: 0.1em; color: var(--gold); margin-bottom: 1rem; }
.footer-brand p { font-size: 0.9rem; line-height: 1.7; margin-bottom: 1.5rem; }
.footer-col h4 { color: #fff; font-size: 0.75rem; letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 1rem; }
.footer-col ul { display: flex; flex-direction: column; gap: 0.5rem; }
.footer-col a { font-size: 0.9rem; color: rgba(255,255,255,0.6); transition: color 0.2s; }
.footer-col a:hover { color: var(--gold); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding: 1.25rem 0; }
.footer-bottom-inner { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; }
.footer-bottom p { font-size: 0.85rem; }
.footer-links { display: flex; gap: 1.5rem; }
.footer-links a { font-size: 0.85rem; color: rgba(255,255,255,0.5); transition: color 0.2s; }
.footer-links a:hover { color: #fff; }

/* ===== WHATSAPP FLOAT ===== */
.whatsapp-float {
  position: fixed; bottom: 1.5rem; right: 1.5rem; z-index: 999;
  width: 58px; height: 58px; border-radius: 50%;
  background: var(--green); display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  transition: all 0.3s; animation: pulse 2s infinite;
}
.whatsapp-float:hover { background: var(--green-dark); transform: scale(1.1); }
@keyframes pulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,0.4); }
  50% { box-shadow: 0 4px 30px rgba(37,211,102,0.7); }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .nav-links { display: none; }
  .nav-phone { display: none; }
  .hamburger { display: flex; margin-left: auto; }
  .nav-links.open { display: flex; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0; background: rgba(10,10,26,0.98); padding: 1rem; gap: 0.25rem; border-bottom: 1px solid rgba(255,255,255,0.1); }
  .nav-links.open a { padding: 0.75rem 1rem; border-radius: 8px; }
  .nav-actions .btn { display: none; }
}
@media (max-width: 768px) {
  .hero-content { grid-template-columns: 1fr; gap: 2rem; padding: 2rem 0; }
  .hero-text h1 { font-size: 2rem; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .form-row { grid-template-columns: 1fr; }
  .stats-grid { gap: 1.5rem; }
  .footer-bottom-inner { flex-direction: column; text-align: center; }
}
@media (max-width: 480px) {
  .section { padding: 3rem 0; }
  .services-grid { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .pricing-features { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; }
  .hero-badges { flex-direction: column; }
  .hero-badges span { text-align: center; }
}





.form-note span{
}

.trusted-number{
  font-size: 2em;
}