/* ===== RESET & BASE ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --orange: #FF6B00;
  --orange-dark: #e55f00;
  --navy: #1a1a2e;
  --navy-light: #16213e;
  --text: #2d2d2d;
  --text-light: #666;
  --white: #fff;
  --bg: #f8f9fa;
  --border: #e8e8e8;
  --shadow: 0 4px 20px rgba(0,0,0,0.08);
  --shadow-lg: 0 10px 40px rgba(0,0,0,0.14);
  --radius: 14px;
  --radius-sm: 8px;
  --t: all 0.3s ease;
}

html { scroll-behavior: smooth; }
body { font-family: 'Poppins', sans-serif; color: var(--text); line-height: 1.6; overflow-x: hidden; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; height: auto; display: block; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
section { padding: 90px 0; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 14px 32px; border-radius: 50px; font-family: 'Poppins', sans-serif;
  font-size: 15px; font-weight: 600; cursor: pointer; transition: var(--t);
  border: 2px solid transparent;
}
.btn-primary { background: var(--orange); color: var(--white); border-color: var(--orange); }
.btn-primary:hover { background: var(--orange-dark); border-color: var(--orange-dark); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(255,107,0,0.35); }
.btn-outline { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.7); }
.btn-outline:hover { background: var(--white); color: var(--orange); border-color: var(--white); }
.full-width { width: 100%; }

/* ===== SECTION HEADER ===== */
.section-header { text-align: center; margin-bottom: 55px; }
.section-header.left-align { text-align: left; }
.section-tag {
  display: inline-block; background: rgba(255,107,0,0.1); color: var(--orange);
  padding: 6px 16px; border-radius: 50px; font-size: 12px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 1.2px; margin-bottom: 14px;
}
.section-header h2 { font-size: 40px; font-weight: 700; color: var(--navy); line-height: 1.2; margin-bottom: 14px; }
.section-header p { font-size: 16px; color: var(--text-light); max-width: 500px; margin: 0 auto; }
.section-header.left-align p { margin: 0; }

/* ===== HEADER ===== */
#header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 900;
  padding: 18px 0; transition: var(--t);
}
#header.scrolled { background: var(--navy); padding: 10px 0; box-shadow: 0 2px 20px rgba(0,0,0,0.25); }
#header .container { display: flex; align-items: center; justify-content: space-between; }

.logo { display: flex; align-items: center; gap: 10px; color: var(--white); }
.logo-icon { font-size: 28px; }
.logo-img { width: 46px; height: 46px; border-radius: 50%; object-fit: cover; border: 2px solid rgba(255,255,255,0.3); flex-shrink: 0; }
.logo-name { display: block; font-size: 18px; font-weight: 700; }
.logo-tagline { display: block; font-size: 10px; font-weight: 400; opacity: 0.75; letter-spacing: 0.5px; }

nav { display: flex; align-items: center; }
.nav-links { display: flex; gap: 28px; align-items: center; }
.nav-links a { color: rgba(255,255,255,0.9); font-size: 14px; font-weight: 500; transition: var(--t); }
.nav-links a:hover { color: var(--orange); }
.nav-cta { background: var(--orange); color: var(--white) !important; padding: 9px 22px; border-radius: 50px; font-weight: 600 !important; }
.nav-cta:hover { background: var(--orange-dark) !important; color: var(--white) !important; }

.hamburger { display: none; background: none; border: none; color: var(--white); font-size: 26px; cursor: pointer; line-height: 1; }

.mobile-menu {
  display: none; position: fixed; inset: 0; background: var(--navy);
  z-index: 950; flex-direction: column; align-items: center; justify-content: center; gap: 30px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a { color: var(--white); font-size: 22px; font-weight: 600; transition: var(--t); }
.mobile-menu a:hover { color: var(--orange); }
.mobile-close { position: absolute; top: 20px; right: 24px; background: none; border: none; color: var(--white); font-size: 28px; cursor: pointer; }

/* ===== HERO ===== */
.hero {
  position: relative; min-height: 100vh; display: flex; align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background: linear-gradient(135deg, #0d1117 0%, #1a1a2e 45%, #0f3460 100%);
}
.hero-bg::after {
  content: ''; position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.025'%3E%3Cpath d='M0 0h40v40H0V0zm40 40h40v40H40V40z'/%3E%3C/g%3E%3C/svg%3E");
}

.hero-content {
  position: relative; z-index: 1; text-align: center; color: var(--white);
  max-width: 750px; margin: 0 auto; padding: 140px 20px 100px;
}
.hero-badge {
  display: inline-block; background: rgba(255,107,0,0.2); border: 1px solid rgba(255,107,0,0.4);
  color: #ffb37d; padding: 7px 18px; border-radius: 50px; font-size: 13px; font-weight: 600;
  margin-bottom: 24px; letter-spacing: 0.5px;
}
.hero-content h1 { font-size: 64px; font-weight: 800; line-height: 1.1; margin-bottom: 22px; }
.highlight { color: var(--orange); }
.hero-content p { font-size: 18px; opacity: 0.8; max-width: 580px; margin: 0 auto 38px; line-height: 1.8; }
.hero-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-bottom: 70px; }
.hero-stats { display: flex; align-items: center; justify-content: center; gap: 30px; flex-wrap: wrap; padding-top: 40px; border-top: 1px solid rgba(255,255,255,0.12); }
.stat-num { display: block; font-size: 34px; font-weight: 800; color: var(--orange); line-height: 1; }
.stat-label { display: block; font-size: 12px; opacity: 0.65; margin-top: 4px; letter-spacing: 0.5px; }
.stat-divider { width: 1px; height: 40px; background: rgba(255,255,255,0.15); }

.hero-scroll { position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%); z-index: 1; text-align: center; color: rgba(255,255,255,0.4); font-size: 11px; letter-spacing: 1px; text-transform: uppercase; }
.scroll-arrow { width: 20px; height: 20px; border-right: 2px solid rgba(255,255,255,0.3); border-bottom: 2px solid rgba(255,255,255,0.3); transform: rotate(45deg); margin: 6px auto 0; animation: bounce 1.5s infinite; }
@keyframes bounce { 0%, 100% { transform: rotate(45deg) translateY(0); } 50% { transform: rotate(45deg) translateY(4px); } }

/* ===== GUARANTEE STRIP ===== */
.guarantee-strip { background: var(--orange); padding: 0; }
.guarantee-grid {
  display: flex; align-items: stretch; justify-content: space-around; flex-wrap: wrap;
}
.guarantee-item {
  display: flex; align-items: center; gap: 14px;
  padding: 30px 20px; flex: 1; min-width: 180px;
}
.guarantee-icon { font-size: 38px; flex-shrink: 0; }
.guarantee-num { display: block; font-size: 22px; font-weight: 800; color: var(--white); line-height: 1.1; }
.guarantee-label { display: block; font-size: 13px; color: rgba(255,255,255,0.88); font-weight: 500; margin-top: 4px; }
.guarantee-divider { width: 1px; background: rgba(255,255,255,0.25); margin: 12px 0; align-self: stretch; }
@media (max-width: 640px) {
  .guarantee-grid { display: grid; grid-template-columns: 1fr 1fr; }
  .guarantee-divider { display: none; }
  .guarantee-item { flex-direction: column; text-align: center; gap: 8px; padding: 22px 12px; }
}

/* ===== SERVICES ===== */
.services { background: var(--bg); }
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 24px; }

.service-card {
  background: var(--white); border-radius: var(--radius); padding: 32px 28px;
  box-shadow: var(--shadow); transition: var(--t); position: relative; overflow: hidden;
  border: 1px solid transparent;
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: rgba(255,107,0,0.15); }
.service-card.featured { background: var(--navy); color: var(--white); }
.service-card.featured h3, .service-card.featured li { color: var(--white); }
.service-card.featured p { color: rgba(255,255,255,0.75); }

.service-badge {
  position: absolute; top: 18px; right: 18px;
  background: var(--orange); color: var(--white); padding: 4px 12px;
  border-radius: 50px; font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px;
}
.service-icon { font-size: 42px; margin-bottom: 16px; }
.service-card h3 { font-size: 20px; font-weight: 700; color: var(--navy); margin-bottom: 10px; }
.service-card p { font-size: 14px; color: var(--text-light); margin-bottom: 18px; line-height: 1.7; }
.service-features { display: flex; flex-direction: column; gap: 7px; }
.service-features li { font-size: 13px; color: var(--text-light); display: flex; align-items: center; gap: 8px; }
.service-features li::before { content: '✓'; color: var(--orange); font-weight: 700; flex-shrink: 0; }
.service-card.featured .service-features li { color: rgba(255,255,255,0.75); }
.service-card.featured .service-features li::before { color: #ffa94d; }

/* ===== GALLERY ===== */
.gallery-section { background: var(--white); }
.gallery-filters { display: flex; gap: 10px; flex-wrap: wrap; justify-content: center; margin-bottom: 40px; }
.filter-btn {
  padding: 8px 20px; border: 2px solid var(--border); border-radius: 50px;
  background: var(--white); color: var(--text-light); font-family: 'Poppins', sans-serif;
  font-size: 13px; font-weight: 500; cursor: pointer; transition: var(--t);
}
.filter-btn:hover, .filter-btn.active { background: var(--orange); border-color: var(--orange); color: var(--white); }

.gallery-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 18px; min-height: 200px;
}
.gallery-item {
  border-radius: var(--radius-sm); overflow: hidden; cursor: pointer;
  position: relative; box-shadow: var(--shadow); aspect-ratio: 4/3;
  background: var(--bg);
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.gallery-item:hover img { transform: scale(1.06); }
.gallery-overlay {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 100%);
  padding: 20px 16px 14px; transform: translateY(100%); transition: var(--t);
}
.gallery-item:hover .gallery-overlay { transform: translateY(0); }
.gallery-overlay h4 { color: var(--white); font-size: 13px; font-weight: 600; }
.gallery-overlay p { color: rgba(255,255,255,0.75); font-size: 11px; margin-top: 3px; }

.gallery-empty {
  grid-column: 1 / -1; text-align: center; padding: 70px 20px; color: var(--text-light);
}
.gallery-empty span { font-size: 56px; display: block; margin-bottom: 14px; }
.gallery-empty p { font-size: 16px; font-weight: 500; margin-bottom: 6px; }
.gallery-empty small { font-size: 13px; opacity: 0.7; }

/* ===== WHY US ===== */
.why-us { background: var(--bg); }
.why-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 70px; align-items: center; }
.why-image { position: relative; }
.why-img-placeholder {
  background: linear-gradient(135deg, var(--navy) 0%, #0f3460 60%, var(--orange) 100%);
  border-radius: var(--radius); height: 420px; display: flex; flex-direction: column;
  align-items: center; justify-content: center; color: var(--white); text-align: center;
}
.why-img-placeholder span { font-size: 80px; display: block; margin-bottom: 16px; }
.why-img-placeholder p { font-size: 20px; font-weight: 600; }
.why-badge {
  position: absolute; top: -18px; right: -18px;
  background: var(--orange); color: var(--white); border-radius: 50%;
  width: 90px; height: 90px; display: flex; flex-direction: column;
  align-items: center; justify-content: center; text-align: center;
  box-shadow: 0 6px 25px rgba(255,107,0,0.4); font-size: 11px; font-weight: 600;
}
.why-badge-num { font-size: 24px; font-weight: 800; line-height: 1.1; display: block; }

.features-list { display: flex; flex-direction: column; gap: 16px; margin-top: 32px; }
.feature-item {
  display: flex; gap: 16px; align-items: flex-start;
  background: var(--white); padding: 18px 20px; border-radius: var(--radius-sm);
  box-shadow: var(--shadow); transition: var(--t); border-left: 3px solid transparent;
}
.feature-item:hover { transform: translateX(6px); border-left-color: var(--orange); box-shadow: var(--shadow-lg); }
.feature-icon { font-size: 22px; flex-shrink: 0; margin-top: 2px; }
.feature-item h4 { font-size: 15px; font-weight: 600; color: var(--navy); margin-bottom: 4px; }
.feature-item p { font-size: 13px; color: var(--text-light); }

/* ===== CONTACT ===== */
.contact { background: var(--white); }
.contact-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 50px; align-items: start; }
.contact-info { display: flex; flex-direction: column; gap: 28px; }
.contact-item { display: flex; gap: 16px; align-items: flex-start; }
.contact-icon { font-size: 26px; flex-shrink: 0; margin-top: 2px; }
.contact-item h4 { font-size: 15px; font-weight: 600; color: var(--navy); margin-bottom: 5px; }
.contact-item p { font-size: 14px; color: var(--text-light); line-height: 1.5; }

.contact-form {
  background: var(--bg); padding: 36px; border-radius: var(--radius);
  box-shadow: var(--shadow); border: 1px solid var(--border);
}
.contact-form h3 { font-size: 20px; font-weight: 700; color: var(--navy); margin-bottom: 24px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 16px; }
.form-group label { display: block; font-size: 13px; font-weight: 600; color: var(--navy); margin-bottom: 6px; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 12px 16px; border: 2px solid var(--border); border-radius: var(--radius-sm);
  font-family: 'Poppins', sans-serif; font-size: 14px; color: var(--text); background: var(--white);
  outline: none; transition: border-color 0.2s;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--orange); }
.form-group textarea { resize: vertical; }

#formStatus { font-size: 13px; padding: 10px 14px; border-radius: var(--radius-sm); margin-bottom: 14px; display: none; }
#formStatus.success { display: block; background: #f0fdf4; color: #16a34a; border: 1px solid #bbf7d0; }
#formStatus.error { display: block; background: #fef2f2; color: #dc2626; border: 1px solid #fecaca; }

/* ===== FOOTER ===== */
.footer { background: var(--navy); color: var(--white); padding: 70px 0 25px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 50px; }
.footer-logo { margin-bottom: 14px; }
.footer-desc { font-size: 13px; opacity: 0.65; line-height: 1.7; margin-top: 14px; }
.footer h4 { font-size: 14px; font-weight: 700; color: var(--orange); margin-bottom: 18px; text-transform: uppercase; letter-spacing: 0.5px; }
.footer ul { display: flex; flex-direction: column; gap: 9px; }
.footer ul li, .footer ul a { font-size: 13px; opacity: 0.65; transition: var(--t); }
.footer ul a:hover { opacity: 1; color: var(--orange); }
.footer-bottom { padding-top: 20px; border-top: 1px solid rgba(255,255,255,0.1); display: flex; justify-content: space-between; align-items: center; font-size: 12px; opacity: 0.5; flex-wrap: wrap; gap: 10px; }
.admin-link { font-size: 11px; opacity: 0.35 !important; transition: var(--t); }
.admin-link:hover { opacity: 0.7 !important; }

/* ===== FLOATING ACTION BUTTONS ===== */
.fab-group {
  position: fixed; bottom: 28px; right: 28px; z-index: 800;
  display: flex; flex-direction: column; align-items: center; gap: 12px;
}
.whatsapp-btn {
  background: #25D366; color: var(--white); width: 60px; height: 60px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.45); transition: var(--t);
}
.whatsapp-btn:hover { transform: scale(1.12); box-shadow: 0 8px 30px rgba(37,211,102,0.55); }
.whatsapp-btn svg { width: 32px; height: 32px; }
.call-fab {
  background: #1a73e8; color: var(--white); width: 54px; height: 54px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 18px rgba(26,115,232,0.45); transition: var(--t);
}
.call-fab:hover { transform: scale(1.12); box-shadow: 0 8px 28px rgba(26,115,232,0.55); }

/* ===== LIGHTBOX ===== */
.lightbox { display: none; position: fixed; inset: 0; background: rgba(0,0,0,0.92); z-index: 2000; align-items: center; justify-content: center; padding: 20px; }
.lightbox.open { display: flex; }
.lightbox-content { position: relative; max-width: 900px; width: 100%; background: #111; border-radius: var(--radius); overflow: hidden; }
.lightbox-close {
  position: absolute; top: 12px; right: 12px; z-index: 1;
  background: rgba(0,0,0,0.6); color: var(--white); border: none; border-radius: 50%;
  width: 36px; height: 36px; font-size: 16px; cursor: pointer; display: flex; align-items: center; justify-content: center;
}
.lightbox-close:hover { background: rgba(255,0,0,0.6); }
#lightboxImg { width: 100%; max-height: 75vh; object-fit: contain; background: #000; }
.lightbox-info { padding: 14px 18px; }
.lightbox-info h3 { font-size: 15px; color: var(--white); font-weight: 600; }
.lightbox-info p { font-size: 13px; color: rgba(255,255,255,0.6); margin-top: 4px; }
.lightbox-footer { display: flex; align-items: center; justify-content: space-between; padding: 14px 18px; flex-wrap: wrap; gap: 10px; }
.lightbox-share { display: flex; gap: 10px; }
.share-btn { padding: 7px 14px; border: none; border-radius: 6px; font-size: 12px; font-weight: 600; cursor: pointer; font-family: 'Poppins', sans-serif; transition: var(--t); }
.share-wa { background: #25D366; color: var(--white); }
.share-fb { background: #1877F2; color: var(--white); }
.share-btn:hover { opacity: 0.85; transform: translateY(-1px); }

/* ===== GALLERY PIN ===== */
.gallery-item.pinned { border: 2px solid var(--orange); }
.pin-badge { position: absolute; top: 8px; left: 8px; background: var(--orange); color: var(--white); font-size: 10px; font-weight: 700; padding: 3px 8px; border-radius: 50px; z-index: 1; }
.gallery-share-btns { display: flex; gap: 6px; margin-top: 8px; }
.gs-btn { padding: 5px 10px; border: none; border-radius: 6px; font-size: 11px; cursor: pointer; transition: var(--t); }
.gs-wa { background: #25D366; color: var(--white); }
.gs-fb { background: #1877F2; color: var(--white); }

/* ===== HERO EXTRA BUTTONS ===== */
.btn-wa { background: #25D366; color: var(--white); border-color: #25D366; }
.btn-wa:hover { background: #1ebe5d; border-color: #1ebe5d; transform: translateY(-2px); box-shadow: 0 8px 28px rgba(37,211,102,0.35); }

/* ===== SITE VISIT MODAL ===== */
.sv-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.6); z-index: 2000; display: flex; align-items: center; justify-content: center; padding: 20px; }
.sv-modal { background: var(--white); border-radius: 16px; padding: 36px 32px; max-width: 520px; width: 100%; position: relative; box-shadow: 0 25px 70px rgba(0,0,0,0.3); }
.sv-close { position: absolute; top: 14px; right: 16px; background: none; border: none; font-size: 20px; cursor: pointer; color: var(--text-light); }
.sv-icon { font-size: 48px; text-align: center; margin-bottom: 12px; }
.sv-modal h2 { font-size: 22px; font-weight: 700; color: var(--navy); text-align: center; margin-bottom: 8px; }
.sv-modal p { font-size: 14px; color: var(--text-light); text-align: center; margin-bottom: 22px; }
.sv-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 12px; }
.sv-modal input, .sv-modal select { width: 100%; padding: 11px 14px; border: 2px solid var(--border); border-radius: var(--radius-sm); font-family: 'Poppins', sans-serif; font-size: 14px; outline: none; transition: border-color 0.2s; margin-bottom: 12px; }
.sv-modal input:focus, .sv-modal select:focus { border-color: var(--orange); }
.sv-modal button[type="submit"] { width: 100%; padding: 13px; background: var(--orange); color: var(--white); border: none; border-radius: var(--radius-sm); font-family: 'Poppins', sans-serif; font-size: 15px; font-weight: 700; cursor: pointer; transition: var(--t); }
.sv-modal button[type="submit"]:hover { background: var(--orange-dark); }
.sv-success { background: #f0fdf4; color: #15803d; border: 1px solid #bbf7d0; padding: 10px 14px; border-radius: 8px; font-size: 14px; margin-bottom: 12px; }
.sv-error { background: #fef2f2; color: #b91c1c; border: 1px solid #fecaca; padding: 10px 14px; border-radius: 8px; font-size: 14px; margin-bottom: 12px; }
.sv-or-call { text-align: center; margin-top: 16px; font-size: 13px; color: var(--text-light); }
.sv-or-call a { display: inline-block; margin-top: 5px; color: var(--orange); font-weight: 700; font-size: 16px; letter-spacing: 0.3px; }
.sv-or-call a:hover { text-decoration: underline; }
@media (max-width: 480px) { .sv-row { grid-template-columns: 1fr; } .sv-modal { padding: 24px 18px; } }

/* ===== WHATSAPP POPUP ===== */
.wa-popup { position: fixed; bottom: 100px; left: 24px; z-index: 800; background: var(--white); border-radius: 14px; padding: 16px 18px; box-shadow: 0 8px 32px rgba(0,0,0,0.18); width: 300px; border-left: 4px solid #25D366; opacity: 0; transform: translateY(10px); transition: all 0.3s ease; }
.wa-popup.visible { opacity: 1; transform: translateY(0); }
.wa-popup-close { position: absolute; top: 8px; right: 10px; background: none; border: none; font-size: 16px; cursor: pointer; color: var(--text-light); }
.wa-popup-body { display: flex; align-items: center; gap: 12px; }
.wa-popup-icon { font-size: 30px; flex-shrink: 0; }
.wa-popup-text { flex: 1; }
.wa-popup-text strong { display: block; font-size: 14px; color: var(--navy); }
.wa-popup-text span { font-size: 12px; color: var(--text-light); }
.wa-popup-btn { padding: 7px 14px; background: #25D366; color: var(--white); border-radius: 8px; font-size: 13px; font-weight: 600; white-space: nowrap; transition: var(--t); }
.wa-popup-btn:hover { background: #1ebe5d; }
@media (max-width: 400px) { .wa-popup { width: calc(100vw - 32px); left: 16px; } }

/* ===== REVIEWS SECTION ===== */
.reviews-section { background: var(--bg); }
.reviews-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 22px; }
.review-card { background: var(--white); border-radius: var(--radius); padding: 26px; box-shadow: var(--shadow); border-top: 3px solid var(--orange); transition: var(--t); }
.review-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.review-stars { font-size: 22px; color: #f59e0b; margin-bottom: 12px; letter-spacing: 2px; }
.review-text { font-size: 14px; color: var(--text-light); line-height: 1.7; margin-bottom: 18px; font-style: italic; }
.review-author { display: flex; align-items: center; gap: 12px; }
.review-avatar { width: 42px; height: 42px; border-radius: 50%; background: var(--orange); color: var(--white); display: flex; align-items: center; justify-content: center; font-size: 18px; font-weight: 700; flex-shrink: 0; }
.review-author strong { display: block; font-size: 14px; color: var(--navy); }
.review-author span { font-size: 12px; color: var(--text-light); }
.reviews-empty { grid-column: 1/-1; text-align: center; padding: 60px; color: var(--text-light); }
.reviews-empty span { font-size: 56px; display: block; margin-bottom: 14px; }
.reviews-empty p { font-size: 16px; }

/* ===== AREAS SECTION ===== */
.areas-section { background: var(--white); }
.areas-wrap { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 30px; margin-bottom: 30px; }
.areas-group h4 { font-size: 14px; font-weight: 700; color: var(--navy); margin-bottom: 12px; text-transform: uppercase; letter-spacing: 0.5px; }
.areas-pills { display: flex; flex-wrap: wrap; gap: 8px; }
.areas-pills span { background: rgba(255,107,0,0.08); color: var(--orange); border: 1px solid rgba(255,107,0,0.2); padding: 5px 12px; border-radius: 50px; font-size: 12px; font-weight: 500; transition: var(--t); cursor: default; }
.areas-pills span:hover { background: var(--orange); color: var(--white); }
.areas-pills.outskirts span { background: rgba(26,26,46,0.06); color: var(--navy); border-color: rgba(26,26,46,0.15); }
.areas-pills.outskirts span:hover { background: var(--navy); color: var(--white); }
.areas-note { text-align: center; background: var(--bg); padding: 18px 24px; border-radius: var(--radius); font-size: 15px; color: var(--text-light); }
.areas-note strong { color: var(--navy); }
.areas-note a { color: var(--orange); font-weight: 600; margin-left: 8px; }

/* ===== FOOTER SOCIAL ===== */
.footer-social { display: flex; gap: 10px; margin-top: 18px; flex-wrap: wrap; }
.social-btn { padding: 8px 16px; border-radius: 8px; font-size: 12px; font-weight: 600; transition: var(--t); }
.social-btn.insta { background: linear-gradient(45deg,#f09433,#e6683c,#dc2743,#cc2366,#bc1888); color: var(--white); }
.social-btn.wa { background: #25D366; color: var(--white); }
.social-btn:hover { opacity: 0.85; transform: translateY(-2px); }
.insta-link { color: #E1306C; font-weight: 600; font-size: 14px; }
.contact-visit-cta { margin-top: 10px; }
.mobile-visit-btn { background: var(--orange); color: var(--white) !important; padding: 12px 28px; border-radius: 50px; font-weight: 700; font-size: 16px; }

/* ===== FORM STATUS ===== */
#formStatus { font-size: 13px; padding: 10px 14px; border-radius: var(--radius-sm); margin-bottom: 14px; display: none; }
#formStatus.success { display: block; background: #f0fdf4; color: #16a34a; border: 1px solid #bbf7d0; }
#formStatus.error { display: block; background: #fef2f2; color: #dc2626; border: 1px solid #fecaca; }

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: block; }
  .hero-content h1 { font-size: 40px; }
  .hero-btns { flex-direction: column; align-items: center; }
  section { padding: 65px 0; }
  .section-header h2 { font-size: 30px; }
  .why-grid { grid-template-columns: 1fr; }
  .why-image { order: -1; }
  .why-img-placeholder { height: 260px; }
  .why-badge { display: none; }
  .contact-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid { grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); }
}
@media (max-width: 480px) {
  .hero-content h1 { font-size: 32px; }
  .hero-content p { font-size: 15px; }
  .services-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .stat-divider { display: none; }
}
