/* ===== VARIABLES ===== */
:root{
  --red: #ef4136;
  --green: #1a9b57;
  --blue: #2e3192;
  --sky: #29abe2;
  --dark: #14161f;
  --dark-2: #1c1f2b;
  --ink: #1c1c1c;
  --muted: #6b7280;
  --bg-muted: #f5f6fa;
  --white: #ffffff;
  --radius: 16px;
  --shadow: 0 10px 30px rgba(20, 22, 31, 0.08);
  --shadow-lg: 0 20px 45px rgba(20, 22, 31, 0.16);
  --font-head: 'Poppins', sans-serif;
  --font-body: 'Nunito', sans-serif;
}

*,*::before,*::after{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }
body{
  margin:0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
}
img{ max-width:100%; display:block; }
a{ text-decoration:none; color:inherit; }
ul{ list-style:none; margin:0; padding:0; }
h1,h2,h3,h4{ font-family: var(--font-head); margin:0 0 .5em; line-height:1.2; }
p{ margin:0 0 1em; color: var(--muted); }
.container{ width:100%; max-width:1180px; margin:0 auto; padding:0 24px; }
.text-red{ color: var(--red); }
.text-blue{ color: var(--blue); }
.text-green{ color: var(--green); }

/* ===== BUTTONS ===== */
.btn{
  display:inline-flex; align-items:center; justify-content:center;
  padding: 14px 30px;
  border-radius: 50px;
  font-family: var(--font-head);
  font-weight:600;
  font-size: 15px;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease, color .25s ease;
  border: 2px solid transparent;
  cursor:pointer;
}
.btn--primary{
  background: linear-gradient(135deg, var(--red), #ff6a5f);
  color:#fff;
  box-shadow: 0 12px 24px rgba(239,65,54,.28);
}
.btn--primary:hover{ transform: translateY(-3px); box-shadow: 0 16px 30px rgba(239,65,54,.35); }
.btn--ghost{
  border-color: rgba(255,255,255,.6);
  color:#fff;
}
.btn--ghost:hover{ background: rgba(255,255,255,.12); transform: translateY(-3px); }
.btn--ghost-dark{
  border-color: var(--blue);
  color: var(--blue);
}
.btn--ghost-dark:hover{ background: var(--blue); color:#fff; transform: translateY(-3px); }

.eyebrow{
  display:inline-block;
  font-family: var(--font-head);
  font-weight:600;
  letter-spacing:.12em;
  text-transform:uppercase;
  font-size:12.5px;
  color: var(--sky);
  background: rgba(41,171,226,.1);
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 16px;
}
.eyebrow--light{ background: rgba(255,255,255,.1); color:#8fd3fb; }

/* ===== TOP BAR ===== */
.topbar{
  background: var(--dark);
  color:#c9cbd8;
  font-size: 13.5px;
}
.topbar__inner{
  display:flex; justify-content:space-between; align-items:center;
  padding: 8px 24px;
  gap: 16px;
  flex-wrap: wrap;
}
.topbar__info, .topbar__social{ display:flex; align-items:center; gap:18px; flex-wrap:wrap; }
.topbar__sep{ width:1px; height:14px; background: rgba(255,255,255,.2); }
.topbar a:hover{ color: var(--sky); }

/* ===== HEADER ===== */
.header{
  position: sticky; top:0; z-index: 500;
  background: rgba(255,255,255,.95);
  backdrop-filter: blur(8px);
  box-shadow: 0 2px 20px rgba(0,0,0,.06);
}
.header__inner{
  display:flex; align-items:center; justify-content:space-between;
  padding: 10px 24px;
  gap: 20px;
}
.brand img{ height: 52px; width:auto; }
.nav{ display:flex; align-items:center; gap: 30px; }
.nav a{
  font-family: var(--font-head);
  font-weight:600;
  font-size: 15px;
  color: var(--ink);
  position: relative;
  padding: 6px 0;
}
.nav a::after{
  content:'';
  position:absolute; left:0; bottom:0;
  width:0; height:2px;
  background: var(--red);
  transition: width .25s ease;
}
.nav a:hover{ color: var(--red); }
.nav a:hover::after{ width:100%; }
.header__cta{ padding: 11px 24px; font-size:14px; white-space:nowrap; }

.hamburger{
  display:none; flex-direction:column; gap:5px;
  background:none; border:none; cursor:pointer; padding:6px;
}
.hamburger span{ width:26px; height:3px; background: var(--ink); border-radius:2px; transition: all .25s ease; }

/* ===== HERO ===== */
.hero{
  position: relative;
  overflow:hidden;
  background: radial-gradient(1100px 600px at 15% -10%, #232a4d 0%, transparent 60%), linear-gradient(135deg, var(--dark) 0%, var(--dark-2) 60%, #232848 100%);
  padding: 100px 0 90px;
}
.hero__shapes{ position:absolute; inset:0; overflow:hidden; z-index:0; }
.shape{ position:absolute; border-radius:50%; filter: blur(10px); opacity:.35; }
.shape--red{ width:260px; height:260px; background: var(--red); top:-60px; right:10%; }
.shape--green{ width:200px; height:200px; background: var(--green); bottom:-40px; left:8%; }
.shape--blue{ width:320px; height:320px; background: var(--sky); top:30%; right:-100px; }

.hero__inner{
  position:relative; z-index:1;
  display:grid; grid-template-columns: 1.15fr .85fr;
  gap: 50px; align-items:center;
}
.hero__text h1{ font-size: clamp(34px, 4.5vw, 52px); color:#fff; }
.hero__text p{ color:#c3c6d6; font-size:17px; max-width:520px; }
.hero__actions{ display:flex; gap:16px; flex-wrap:wrap; margin: 28px 0 32px; }
.hero__rating{ display:flex; align-items:center; gap:14px; }
.stars{ color:#ffc107; font-size:20px; letter-spacing:2px; }
.hero__rating p{ margin:0; color:#c3c6d6; font-size:14px; }
.hero__rating strong{ color:#fff; }

.hero__media{ display:flex; justify-content:center; }
.hero__logo-card{
  background:#fff;
  border-radius: 24px;
  padding: 30px;
  box-shadow: var(--shadow-lg);
  transform: rotate(-2deg);
  transition: transform .35s ease;
  max-width: 420px;
}
.hero__logo-card:hover{ transform: rotate(0deg); }

/* ===== SECTIONS ===== */
.section{ padding: 90px 0; }
.section--muted{ background: var(--bg-muted); }
.section--dark{
  background: linear-gradient(135deg, var(--dark) 0%, #1e2340 100%);
  color:#fff;
}
.section--dark p{ color:#b9bccb; }
.section__head{ text-align:center; max-width:640px; margin: 0 auto 56px; }
.section__head--left{ text-align:left; margin: 0 0 40px; max-width:640px; }
.section__head h2{ font-size: clamp(28px, 3.2vw, 38px); }

/* ===== SERVICES GRID ===== */
.grid{ display:grid; gap: 28px; }
.grid--services{ grid-template-columns: repeat(4, 1fr); }
.card--service{
  background:#fff;
  border-radius: var(--radius);
  padding: 34px 26px;
  box-shadow: var(--shadow);
  border-top: 4px solid transparent;
  transition: transform .3s ease, box-shadow .3s ease;
}
.card--service:hover{ transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.card--red{ border-color: var(--red); }
.card--green{ border-color: var(--green); }
.card--blue{ border-color: var(--blue); }
.card--dark{ border-color: var(--dark); }

.card__icon{
  width: 58px; height:58px;
  border-radius: 14px;
  display:flex; align-items:center; justify-content:center;
  margin-bottom: 20px;
  background: var(--bg-muted);
}
.card--red .card__icon{ background: rgba(239,65,54,.1); }
.card--green .card__icon{ background: rgba(26,155,87,.1); }
.card--blue .card__icon{ background: rgba(46,49,146,.1); }
.card--dark .card__icon{ background: rgba(20,22,31,.08); }
.card__icon svg{ width:28px; height:28px; }
.card--red .card__icon svg{ stroke: var(--red); fill:none; stroke-width:1.6; }
.card--green .card__icon svg{ stroke: var(--green); fill:none; stroke-width:1.6; }
.card--blue .card__icon svg{ stroke: var(--blue); fill:none; stroke-width:1.6; }
.card--dark .card__icon svg{ stroke: var(--dark); fill:none; stroke-width:1.6; }
.card--service h3{ font-size:18px; }
.card--service p{ font-size:14.5px; margin:0; }

/* ===== ABOUT / STATS ===== */
.about{ display:grid; grid-template-columns: 1.1fr .9fr; gap:60px; align-items:center; }
.about__text p{ font-size:16px; }
.stats{ display:grid; grid-template-columns: 1fr 1fr; gap:20px; }
.stat{
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius);
  padding: 26px;
  text-align:center;
}
.stat__num{ display:block; font-family: var(--font-head); font-weight:800; font-size:34px; color: var(--sky); }
.stat__num small{ font-size:16px; font-weight:600; color:#8fd3fb; }
.stat__label{ font-size:13.5px; color:#c3c6d6; }

/* ===== GALLERY ===== */
.gallery{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 200px;
  gap: 18px;
}
.gallery__item{ position:relative; margin:0; border-radius: var(--radius); overflow:hidden; box-shadow: var(--shadow); }
.gallery__item img{ width:100%; height:100%; object-fit:cover; transition: transform .4s ease; }
.gallery__item:hover img{ transform: scale(1.08); }
.gallery__item--big{ grid-column: span 2; grid-row: span 2; }

.gallery__item--clickable{ cursor:pointer; }
.gallery__item--clickable figcaption{
  position:absolute; inset:0;
  display:flex; align-items:center; justify-content:center;
  background: rgba(20,22,31,.55);
  color:#fff;
  font-family: var(--font-head);
  font-weight:600;
  font-size:15px;
  opacity:0;
  transition: opacity .3s ease;
}
.gallery__item--clickable:hover figcaption{ opacity:1; }

/* ===== LIGHTBOX ===== */
.lightbox{
  position: fixed; inset:0; z-index: 1000;
  background: rgba(15,16,24,.85);
  display:flex; align-items:center; justify-content:center;
  padding: 30px;
  opacity:0; visibility:hidden;
  transition: opacity .25s ease;
}
.lightbox.open{ opacity:1; visibility:visible; }
.lightbox__box{
  background:#fff;
  border-radius: var(--radius);
  max-width: 900px; width:100%;
  max-height: 85vh;
  overflow-y:auto;
  padding: 36px;
  position:relative;
  transform: translateY(20px);
  transition: transform .3s ease;
}
.lightbox.open .lightbox__box{ transform: translateY(0); }
.lightbox__close{
  position:absolute; top:16px; right:20px;
  background:none; border:none;
  font-size: 32px; line-height:1;
  color: var(--muted);
  cursor:pointer;
}
.lightbox__close:hover{ color: var(--red); }
.lightbox__title{ margin-bottom:24px; padding-right:30px; }
.lightbox__grid{
  display:grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}
.lightbox__grid img{ width:100%; border-radius: 12px; object-fit:cover; aspect-ratio: 4/3; }

@media (max-width: 600px){
  .lightbox__grid{ grid-template-columns: 1fr; }
  .lightbox__box{ padding: 26px 20px; }
}

/* ===== LOCATION ===== */
.location{ display:grid; grid-template-columns: 1.3fr .9fr; gap: 30px; align-items:stretch; }
.location__map{ border-radius: var(--radius); overflow:hidden; box-shadow: var(--shadow); min-height: 380px; }
.info-card{
  background:#fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 34px;
  height:100%;
}
.info-list{ display:flex; flex-direction:column; gap:16px; margin: 22px 0 28px; }
.info-list li{ display:flex; gap:12px; align-items:flex-start; font-size:15px; color: var(--ink); }
.info-actions{ display:flex; gap:14px; flex-wrap:wrap; }

/* icon dots (simple, no external icon font needed) */
.ic-phone,.ic-clock,.ic-pin,.ic-star{
  display:inline-block; width:18px; height:18px; flex:none; margin-top:2px;
  background: var(--sky); border-radius:4px;
  -webkit-mask-size: contain; mask-size: contain;
}
.topbar .ic-phone,.topbar .ic-clock{ background:#8fd3fb; width:14px;height:14px; border-radius:3px; }

/* ===== CONTACT FORM ===== */
.contact{ display:block; }
.contact__form{
  max-width: 720px;
  background: var(--bg-muted);
  border-radius: var(--radius);
  padding: 40px;
}
.form-row{ display:grid; grid-template-columns: 1fr 1fr; gap:20px; }
.form-group{ margin-bottom:20px; }
.form-group label{ display:block; font-family: var(--font-head); font-weight:600; font-size:14px; margin-bottom:8px; }
.form-group input, .form-group textarea{
  width:100%;
  border: 1.5px solid #e2e4ec;
  border-radius: 10px;
  padding: 13px 16px;
  font-family: var(--font-body);
  font-size:15px;
  background:#fff;
  transition: border-color .2s ease;
}
.form-group input:focus, .form-group textarea:focus{ outline:none; border-color: var(--sky); }
.form-note{ margin-top:14px; font-size:14px; color: var(--green); font-weight:600; }

/* ===== FOOTER ===== */
.footer{ background: var(--dark); color:#c3c6d6; }
.footer__inner{
  display:grid; grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  padding: 70px 24px 40px;
}
.footer__brand img{ height:50px; margin-bottom:16px; background:#fff; padding:8px; border-radius:10px; }
.footer__brand p{ font-size:14px; max-width:280px; }
.footer__col h4{ color:#fff; font-size:15px; margin-bottom:18px; }
.footer__col{ display:flex; flex-direction:column; gap:12px; font-size:14.5px; }
.footer__col a:hover{ color: var(--sky); }
.footer__bottom{ border-top:1px solid rgba(255,255,255,.08); padding: 20px 0; text-align:center; font-size:13.5px; }

/* ===== WHATSAPP FLOAT ===== */
.whatsapp-float{
  position: fixed; right: 24px; bottom: 24px; z-index: 999;
  width: 60px; height:60px; border-radius:50%;
  background: #25D366;
  display:flex; align-items:center; justify-content:center;
  box-shadow: 0 10px 25px rgba(37,211,102,.45);
  transition: transform .25s ease;
}
.whatsapp-float svg{ width:30px; height:30px; fill:#fff; }
.whatsapp-float:hover{ transform: scale(1.1); }

/* ===== RESPONSIVE ===== */
@media (max-width: 991px){
  .grid--services{ grid-template-columns: repeat(2, 1fr); }
  .about{ grid-template-columns:1fr; }
  .stats{ margin-top:20px; }
  .location{ grid-template-columns:1fr; }
  .gallery{ grid-template-columns: repeat(2,1fr); }
  .gallery__item--big{ grid-column: span 2; }
  .footer__inner{ grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px){
  .topbar__inner{ font-size:12px; justify-content:center; text-align:center; }
  .nav{
    position:fixed; top:78px; left:0; right:0;
    background:#fff;
    flex-direction:column; align-items:flex-start;
    padding: 20px 24px 30px;
    gap: 18px;
    box-shadow: var(--shadow-lg);
    transform: translateY(-130%);
    opacity:0;
    transition: all .3s ease;
    z-index: 400;
  }
  .nav.open{ transform: translateY(0); opacity:1; }
  .header__cta{ display:none; }
  .hamburger{ display:flex; }
  .hero__inner{ grid-template-columns:1fr; text-align:center; }
  .hero__text p{ margin-left:auto; margin-right:auto; }
  .hero__actions, .hero__rating{ justify-content:center; }
  .hero__media{ order:-1; margin-bottom:10px; }
  .grid--services{ grid-template-columns: 1fr; }
  .form-row{ grid-template-columns:1fr; }
  .gallery{ grid-template-columns: 1fr 1fr; }
  .footer__inner{ grid-template-columns:1fr; text-align:left; }
}
