/* ===============================
   ROOT COLORS
================================ */
:root {
  --blue:#0a2540;
  --orange:#f97316;
  --orange-dark:#ea580c;
  --maroon:#4a0e1f;
  --dark:#0b0f1a;
  --light:#f8fafc;
  --muted:#475569;
}

/* ===============================
   GLOBAL RESET
================================ */
* {
  margin:0;
  padding:0;
  box-sizing:border-box;
  font-family:'Poppins',sans-serif;
}

body {
  background:var(--light);
  color:#1e293b;
}

.container {
  max-width:1200px;
  margin:auto;
  padding:0 20px;
}

/* ===============================
   HEADER
================================ */
.header {
  position:fixed;
  top:0;
  width:100%;
  background:#fff;
  border-bottom:1px solid #eee;
  z-index:100;
}

.nav {
  display:flex;
  align-items:center;
  justify-content:space-between;
  height:70px;
}

.logo-wrap {
  display:flex;
  align-items:center;
  gap:10px;
  text-decoration:none;
}

.logo-wrap img {
  height:42px;
}

.logo-wrap span {
  font-size:22px;
  font-weight:700;
  color:var(--blue);
}

.logo-wrap span::after {
  content:'.';
  color:var(--orange);
}

.menu a {
  margin-left:24px;
  text-decoration:none;
  color:#1e293b;
  font-weight:500;
}

.menu a.btn {
  background:var(--orange);
  color:#fff;
  padding:10px 18px;
  border-radius:6px;
}

.menu-toggle {
  display:none;
  font-size:26px;
  cursor:pointer;
}

/* ===============================
   HERO SECTION
================================ */
.hero {
  padding:140px 0 80px;
  background:linear-gradient(135deg,var(--blue),#133e6d);
  color:#fff;
}

.hero-grid {
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:40px;
  align-items:center;
}

.hero h1 {
  font-size:42px;
}

.hero h1 span {
  color:var(--orange);
}

.hero p {
  margin:16px 0 24px;
  font-size:18px;
  opacity:.9;
}

.btn-primary {
  background:var(--orange);
  color:#fff;
  padding:14px 28px;
  border-radius:8px;
  text-decoration:none;
  font-weight:600;
}

.hero-image {
  height:380px;
  background:url("images/hero.jpg") no-repeat center/contain;
  border-radius:20px;
}

/* ===============================
   SERVICES
================================ */
.services {
  padding:80px 0;
  text-align:center;
}

.services h2 {
  font-size:28px;
  margin-bottom:40px;
  color:var(--maroon);
}

.services-grid {
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
  gap:20px;
}

.service-card {
  background:#fff;
  padding:16px;
  border-radius:14px;
  box-shadow:0 10px 30px rgba(0,0,0,.08);
  transition:.3s;
}

.service-card:hover {
  transform:translateY(-6px);
}

.service-card img {
  width:100%;
  border-radius:10px;
}

.service-card h3 {
  margin:14px 0;
  color:var(--maroon);
}

/* Buttons */
.card-buttons {
  display:flex;
  gap:10px;
}

.btn-details {
  flex:1;
  border:2px solid var(--orange);
  color:var(--orange);
  padding:10px;
  border-radius:8px;
  text-decoration:none;
  font-weight:600;
}

.btn-details:hover {
  background:var(--orange);
  color:#fff;
}

.btn-whatsapp {
  flex:1;
  background:#25d366;
  color:#fff;
  padding:10px;
  border-radius:8px;
  text-decoration:none;
  font-weight:600;
}

/* ===============================
   ABOUT SECTION
================================ */
.about-premium {
  padding:110px 0;
}

.about-wrap {
  display:grid;
  grid-template-columns:1fr 1.3fr;
  gap:60px;
  align-items:center;
}

.about-visual img {
  width:100%;
  border-radius:30px;
  box-shadow:0 35px 60px rgba(0,0,0,.18);
}

.image-badge {
  position:absolute;
  bottom:20px;
  left:20px;
  background:#fff;
  padding:10px 18px;
  border-radius:40px;
  font-size:13px;
  font-weight:600;
  display:flex;
  gap:6px;
  box-shadow:0 10px 25px rgba(0,0,0,.12);
}

.about-info h2 {
  font-size:36px;
  color:var(--blue);
}

.about-info h2 span {
  color:var(--maroon);
}

.about-desc {
  font-size:17px;
  margin:20px 0 30px;
  color:var(--muted);
}

.about-stats {
  display:flex;
  gap:20px;
}

.stat-box {
  background:#fff;
  padding:20px;
  border-radius:16px;
  box-shadow:0 15px 35px rgba(0,0,0,.08);
  text-align:center;
  flex:1;
}

.stat-box h3 {
  color:var(--orange);
}

.about-features {
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:14px;
  margin:30px 0;
}

.feature-item {
  display:flex;
  gap:12px;
  padding:14px;
  background:#fff;
  border-radius:14px;
  box-shadow:0 10px 28px rgba(0,0,0,.07);
}

/* ===============================
   CONTACT SECTION
================================ */
.contact-section {
  padding:110px 0;
}

.contact-header {
  text-align:center;
  margin-bottom:70px;
}

.contact-header h2 {
  font-size:42px;
}

.contact-grid {
  display:grid;
  grid-template-columns:1.05fr 1fr;
  gap:70px;
  align-items:center;
}

.contact-visual {
  display:flex;
  flex-direction:column;
  gap:24px;
  align-items:flex-start;
}

.contact-visual img {
  width:100%;
  border-radius:30px;
  box-shadow:0 30px 60px rgba(0,0,0,.15);
}

/* PREMIUM LOCATION BUTTON */
.btn-location {
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:14px 30px;
  border-radius:40px;
  font-weight:700;
  font-size:15px;
  background:linear-gradient(135deg,#fb923c,#f97316);
  color:#fff !important;
  box-shadow:0 14px 40px rgba(249,115,22,.45);
  text-decoration:none;
  transition:.35s;
}

.btn-location:hover {
  background:linear-gradient(135deg,#ea580c,#c2410c);
  transform:translateY(-4px);
}

.contact-info {
  display:flex;
  flex-direction:column;
  gap:24px;
}

.info-card {
  display:flex;
  gap:18px;
  padding:26px;
  background:#fff;
  border-radius:20px;
  box-shadow:0 20px 45px rgba(0,0,0,.06);
}

.social-links {
  display:flex;
  gap:16px;
}

.social-links a {
  width:46px;
  height:46px;
  border-radius:50%;
  display:grid;
  place-items:center;
  color:#fff;
}

.facebook {background:#1877f2;}
.instagram {background:#e1306c;}
.whatsapp {background:#25d366;}

/* ===============================
   FOOTER
================================ */
.footer {
  background:linear-gradient(180deg,#081a33,#030d1c);
  color:#f1f5f9;
  padding:80px 0 0;
}

.footer-main {
  display:grid;
  grid-template-columns:1fr 1.4fr;
  gap:60px;
  align-items:center;
}

.footer-image img {
  width:100%;
  max-width:420px;
  border-radius:16px;
  box-shadow:0 30px 60px rgba(0,0,0,.45);
}

.footer-content h3 {
  font-size:32px;
}

.footer-content h3 span {
  color:var(--orange);
}

.footer-desc {
  margin:20px 0 28px;
  color:#cbd5e1;
}

.footer-social {
  display:flex;
  gap:16px;
}

.footer-cta {
  display:flex;
  gap:14px;
  margin:22px 0;
}

.btn-call {
  background:#fff;
  color:var(--blue);
  padding:12px 20px;
  border-radius:10px;
  text-decoration:none;
}

.btn-wa {
  background:#25d366;
  color:#fff;
  padding:12px 20px;
  border-radius:10px;
  text-decoration:none;
}

.footer-bottom {
  margin-top:80px;
  padding:20px;
  text-align:center;
  background:rgba(0,0,0,.35);
  color:#94a3b8;
}

/* ===============================
   RESPONSIVE
================================ */
@media(max-width:992px){
  .hero-grid,
  .about-wrap,
  .contact-grid,
  .footer-main {
    grid-template-columns:1fr;
    text-align:center;
  }

  .contact-visual {
    align-items:center;
  }

  .about-stats,
  .footer-social,
  .footer-cta {
    justify-content:center;
  }
}


/* ===============================
   FLOATING WHATSAPP & CALL
================================ */
.floating-contact {
  position: fixed;
  right: 24px;
  bottom: 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  z-index: 999;
}

.float-btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 24px;
  color: #fff;
  box-shadow: 0 18px 40px rgba(0,0,0,0.25);
  transition: all 0.3s ease;
  text-decoration: none;
}

/* WhatsApp */
.whatsapp-float {
  background: linear-gradient(135deg, #25d366, #16a34a);
}

/* Call */
.call-float {
  background: linear-gradient(135deg, #f97316, #ea580c);
}

.float-btn:hover {
  transform: translateY(-6px) scale(1.06);
}

/* MOBILE SAFE */
@media(max-width: 600px) {
  .floating-contact {
    right: 16px;
    bottom: 16px;
  }

  .float-btn {
    width: 52px;
    height: 52px;
    font-size: 22px;
  }
}

/* MOBILE MENU */
@media (max-width: 768px) {
  .menu {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 70px;
    right: 20px;
    background: #ffffff;
    width: 240px;
    padding: 20px;
    border-radius: 14px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    z-index: 999;
  }

  .menu.show {
    display: flex;
  }

  .menu a {
    margin: 10px 0;
  }

  .menu-toggle {
    display: block;
    font-size: 26px;
    cursor: pointer;
  }
}

