:root {
  --primary: #f97316;
  --black: #0a0a0a;
  --card-bg: #121212;
  --text-white: #ffffff;
  --text-dim: #b0b0b0;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Inter', sans-serif; background-color: var(--black); color: var(--text-white); line-height: 1.6; }
.container { max-width: 1100px; margin: 0 auto; padding: 0 1.5rem; }
/* HEADER */
.site-header { padding: 1.5rem 0; background: var(--black); border-bottom: 1px solid #222; position: relative;}
.header-inner { display: flex; justify-content: space-between; align-items: center; }
.brand { text-decoration: none; display: flex; align-items: center; gap: 10px; }
.brand-text { color: var(--primary); font-weight: 800; font-size: 1.4rem; letter-spacing: 1px; }
.main-nav { display: flex; gap: 1.5rem; }
.main-nav a { color: #ccc; text-decoration: none; font-size: 0.9rem; transition: 0.3s; }
.main-nav a:hover { color: var(--primary); }
.call-link { color: var(--primary); text-decoration: none; font-weight: bold; }
/* HAMBURGER MENU STYLES */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--primary);
  font-size: 1.5rem;
  cursor: pointer;
  z-index: 1001;
}
/* HERO */
.hero { position: relative; height: 80vh; display: flex; align-items: center; overflow: hidden; background: #000; }
.hero-video { position: absolute; top: 50%; left: 50%; min-width: 100%; min-height: 100%; width: auto; height: auto; z-index: 1; transform: translate(-50%, -50%); object-fit: cover; opacity: 0.5; }
.hero-content { position: relative; z-index: 3; }
.headline { font-size: 3rem; font-weight: 800; line-height: 1.1; margin-bottom: 1rem; }
.highlight { color: var(--primary); }
.subhead { color: var(--text-dim); max-width: 500px; margin-bottom: 2rem; }
/* SERVICES */
.section { padding: 5rem 0; }
.section-title-left { font-size: 2.2rem; margin-bottom: 2rem; color: var(--text-white); font-weight: 800; }
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 1.5rem; }
.service-card { background: var(--card-bg); padding: 2.5rem 2rem; border-radius: 15px; border: 1px solid #222; transition: 0.3s; }
.service-card:hover { transform: translateY(-5px); border-color: var(--primary); }
.icon-box { color: var(--primary); font-size: 2.5rem; margin-bottom: 1.5rem; }
.service-card h3 { color: var(--primary); font-weight: 800; font-size: 1.3rem; margin-bottom: 0.8rem; text-transform: uppercase; }
.service-card p { color: var(--text-dim); font-size: 0.95rem; }
/* PRODUCTS */
#products { background-color: #050505; }
.section-subtitle {
  color: #e0e0e0;
  margin-bottom: 2rem;
  line-height: 1.6;
  max-width: 600px;
  font-size: 1.1rem;
}
.products-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 1.5rem; }
.product-card { background: #111111; padding: 2.5rem 2rem; border-radius: 15px; border: 1px solid #222; position: relative; transition: 0.3s ease; display: flex; flex-direction: column; }
.product-card:hover { border-color: var(--primary); transform: translateY(-5px); }
.product-card h3 { color: var(--primary); font-weight: 800; font-size: 1.3rem; margin-bottom: 0.8rem; text-transform: uppercase; }
.product-card p { color: var(--text-dim); font-size: 0.95rem; line-height: 1.6; margin-bottom: 1.5rem; flex-grow: 1; }
.product-badge { position: absolute; top: 15px; right: 15px; background-color: rgba(249, 115, 22, 0.1); color: var(--primary); font-size: 0.65rem; font-weight: 800; text-transform: uppercase; padding: 0.3rem 0.6rem; border-radius: 5px; }
.product-cta { text-decoration: none; background: transparent; border: 1px solid var(--primary); color: var(--primary); padding: 0.7rem 1rem; border-radius: 8px; font-size: 0.85rem; font-weight: 800; text-align: center; transition: 0.3s; }
.product-cta:hover { background: var(--primary); color: #000; }
.product-img-wrapper {
  width: 100%;
  height: 180px;
  overflow: hidden;
  border-radius: 10px;
  margin-bottom: 1.5rem;
}
.product-local-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.directions-btn {
    display: inline-block;
    padding: 12px 24px;
    background-color: #f7b731;
    color: #000;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    margin-top: 10px;
    transition: background 0.3s ease;
}
.directions-btn:hover {
    background-color: #ff9f43;
}
/* TESTIMONIALS */
#testimonials { background: #050505; padding: 5rem 0; }
.section-title { text-align: center; margin-bottom: 3rem; font-size: 2.2rem; color: var(--primary); font-weight: 800; }
.testimonials-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; }
.testimonial { background: #111; padding: 2.5rem; border-radius: 10px; border-left: 4px solid var(--primary); }
.testimonial i { color: var(--primary); margin-bottom: 1rem; font-size: 1.8rem; display: block; }
.testimonial p { font-style: italic; margin-bottom: 1.5rem; color: #eee; }
.testimonial cite { color: var(--primary); font-weight: 800; font-size: 1.1rem; font-style: normal; display: block; }
/* SLIDER */
.slider-wrapper { position: relative; overflow: hidden; border-radius: 15px; }
.slides { display: flex; overflow-x: hidden; scroll-behavior: smooth; }
.slide { min-width: 100%; height: 400px; flex-shrink: 0; }
.slide img { width: 100%; height: 100%; object-fit: cover; }
.slide-btn { position: absolute; top: 50%; transform: translateY(-50%); background: var(--primary); border: none; width: 45px; height: 45px; border-radius: 50%; color: #000; cursor: pointer; z-index: 5; font-size: 1.5rem; }
.prev { left: 15px; } .next { right: 15px; }
/* FORM & BUTTONS */
.btn { padding: 1rem 1.5rem; border-radius: 10px; font-weight: 800; text-decoration: none; border: none; cursor: pointer; display: inline-flex; align-items: center; gap: 8px; }
.btn-primary { background: var(--primary); color: #000; }
.btn-text { color: #fff; }
.full-width { width: 100%; justify-content: center; }
.booking-form { background: var(--card-bg); padding: 2.5rem; border-radius: 15px; }
.form-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 1rem; margin-bottom: 1rem; }
input, select, textarea { padding: 0.9rem; background: #000; border: 1px solid #333; color: #fff; border-radius: 8px; font-family: inherit; }
/* FOOTER & FAB */
.site-footer { text-align: center; padding: 3rem 0; color: #555; border-top: 1px solid #222; font-size: 0.9rem; }
/* MOBILE NAVIGATION BREAKPOINT */
@media (max-width: 768px) {
  .menu-toggle { display: block; }
  .main-nav { display: none; flex-direction: column; position: absolute; top: 100%; left: 0; width: 100%; background: #0a0a0a; border-bottom: 1px solid #222; padding: 1rem 0; gap: 1rem; text-align: center; z-index: 1000; }
  .main-nav.active { display: flex; }
  .main-nav a { font-size: 1.1rem; padding: 0.5rem 0; }
  .header-inner { flex-direction: row; justify-content: space-between; }
  .headline { font-size: 2.4rem; }
}
/* ==================== MAP SECTION STYLING - IMPROVED ==================== */
.map-wrapper {
  max-width: 900px;
  margin: 30px auto;
  padding: 10px;
  background: var(--card-bg);
  border: 1px solid #222;
  border-radius: 20px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}
.map-wrapper iframe {
  width: 100%;
  height: 380px;
  border-radius: 15px;
  display: block;
}
/* Direction Button */
.directions-btn {
  position: absolute;
  bottom: 25px;
  left: 50%;
  transform: translateX(-50%);
  background: #f97316;
  color: white;
  padding: 12px 26px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  box-shadow: 0 6px 20px rgba(249, 115, 22, 0.4);
  z-index: 10;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  transition: all 0.3s ease;
}
.directions-btn:hover {
  background: #ea580c;
  transform: translateX(-50%) scale(1.08);
}
/* ==================== MOBILE RESPONSIVE ==================== */
@media (max-width: 768px) {
  .map-wrapper iframe {
    height: 320px;
  }
 
  .directions-btn {
    padding: 10px 20px;
    font-size: 0.95rem;
    bottom: 18px;
  }
}
@media (max-width: 480px) {
  .map-wrapper iframe {
    height: 280px;
  }
 
  .map-wrapper {
    margin: 20px auto;
    padding: 8px;
  }
}

.pricing-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
gap:20px;
}
.price-card{
background:#111;padding:30px;border-radius:10px;
text-align:center;border:1px solid #222;
}
.price-card h3{color:#f97316}

.faq h3{color:#f97316;margin-top:20px}

.floating-whatsapp{
position:fixed;
bottom:25px;
right:25px;
background:#25D366;
color:#fff;
width:60px;height:60px;
display:flex;
align-items:center;
justify-content:center;
border-radius:50%;
font-size:28px;
text-decoration:none;
z-index:999;
}
