/* ─── RESET ─────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--body); color: var(--text); background: #fff; overflow-x: hidden; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ─── CONTAINERS ─────────────────────────────── */
.container-full { width: 100%; max-width: 1920px; margin: 0 auto; }
.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 40px; }

/* ─── TYPOGRAPHY ─────────────────────────────── */
h1,h2,h3,h4 { font-family: var(--heading); font-weight: 700; line-height: 1.15; color: var(--text); letter-spacing: -0.02em; }
h1 { font-size: clamp(36px, 5vw, 56px); }
h2 { font-size: clamp(28px, 3.5vw, 44px); }
h3 { font-size: clamp(20px, 2.5vw, 28px); }
h4 { font-size: 20px; }
p  { line-height: 1.65; color: var(--muted); }

.eyebrow {
  display: inline-block;
  font-family: var(--body);
  font-size: 12px; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 16px;
}

/* ─── BUTTONS ─────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 32px; border-radius: var(--radius);
  font-family: var(--body); font-size: 15px; font-weight: 600;
  cursor: pointer; border: 2px solid transparent;
  transition: background 0.2s ease, transform 0.15s ease, box-shadow 0.2s ease;
}
.btn:hover { transform: scale(1.02); }
.btn:active { transform: scale(0.98); }
.btn-primary { background: var(--accent); color: #fff; }
.btn-primary:hover { background: var(--accent-dark); box-shadow: 0 6px 20px rgba(44,107,237,0.35); }
.btn-outline { background: transparent; color: #fff; border-color: #fff; }
.btn-outline:hover { background: #fff; color: var(--primary); }
.btn-dark { background: var(--primary); color: #fff; }
.btn-dark:hover { background: #162030; box-shadow: 0 6px 20px rgba(30,43,60,0.3); }

/* ─── SECTION SPACING ─────────────────────────── */
.section { padding: 96px 0; }
.section--light  { background: var(--light); }
.section--white  { background: #fff; }
.section--dark   { background: var(--primary); }
.section-header { text-align: center; max-width: 680px; margin: 0 auto 64px; }
.section-header p { font-size: 18px; margin-top: 16px; }

/* ─── ANIMATIONS ─────────────────────────────── */
@keyframes smooth-rise {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
[data-animate] { opacity: 0; }
[data-animate].is-visible { animation: smooth-rise 0.65s cubic-bezier(0.4,0,0.2,1) both; }
[data-animate][data-delay="1"].is-visible { animation-delay: 0.1s; }
[data-animate][data-delay="2"].is-visible { animation-delay: 0.2s; }
[data-animate][data-delay="3"].is-visible { animation-delay: 0.3s; }
[data-animate][data-delay="4"].is-visible { animation-delay: 0.4s; }
[data-animate][data-delay="5"].is-visible { animation-delay: 0.5s; }
[data-animate][data-delay="6"].is-visible { animation-delay: 0.6s; }

.card { transition: transform 0.25s ease, box-shadow 0.25s ease; }
.card:hover { transform: translateY(-6px); box-shadow: 0 16px 48px rgba(0,0,0,0.12); }
.img-zoom { overflow: hidden; }
.img-zoom img { transition: transform 0.5s cubic-bezier(0.4,0,0.2,1); }
.img-zoom:hover img { transform: scale(1.05); }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}

/* ─── HEADER ─────────────────────────────────── */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.3s ease;
}
.site-header.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,0.08); }
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 76px; }
.logo img { height: 68px; width: auto; object-fit: contain; }
.nav { display: flex; align-items: center; gap: 36px; }
.nav ul { display: flex; align-items: center; gap: 36px; list-style: none; }
.nav ul li a {
  font-size: 14px; font-weight: 600; color: var(--primary);
  transition: color 0.2s ease; position: relative;
}
.nav ul li a::after {
  content: ''; position: absolute; bottom: -3px; left: 0; right: 0;
  height: 2px; background: var(--accent); transform: scaleX(0);
  transition: transform 0.25s ease;
}
.nav ul li a:hover { color: var(--accent); }
.nav ul li a:hover::after { transform: scaleX(1); }
.header-cta { display: flex; align-items: center; gap: 12px; }
.header-phone {
  display: flex; align-items: center; gap: 8px;
  font-size: 15px; font-weight: 700; color: var(--primary);
  transition: color 0.2s;
}
.header-phone:hover { color: var(--accent); }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; background: none; border: none; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--primary); transition: all 0.3s; border-radius: 2px; }

/* ─── HERO ───────────────────────────────────── */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center;
  background: var(--primary); overflow: hidden;
}
.hero__bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: 0.35;
}
.hero__bg img { width: 100%; height: 100%; object-fit: cover; opacity: 0.35; }
.hero__content { position: relative; z-index: 2; padding-top: 76px; }
.hero__badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(44,107,237,0.2); border: 1px solid rgba(44,107,237,0.4);
  color: #7eb3ff; font-size: 13px; font-weight: 600;
  padding: 6px 14px; border-radius: 100px; margin-bottom: 28px;
  letter-spacing: 0.05em;
}
.hero__heading { color: #fff; max-width: 700px; margin-bottom: 24px; }
.hero__heading span { color: var(--accent); }
.hero__sub { font-size: 18px; color: rgba(255,255,255,0.75); max-width: 560px; margin-bottom: 40px; line-height: 1.7; }
.hero__actions { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.hero__trust { display: flex; align-items: center; gap: 24px; margin-top: 56px; flex-wrap: wrap; }
.hero__trust-item { display: flex; align-items: center; gap: 10px; color: rgba(255,255,255,0.7); font-size: 14px; font-weight: 500; }

/* ─── STATS ──────────────────────────────────── */
.stats-bar { background: var(--accent); padding: 40px 0; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; text-align: center; }
.stat-item { padding: 8px 0; }
.stat-item + .stat-item { border-left: 1px solid rgba(255,255,255,0.25); }
.stat__number { font-family: var(--heading); font-size: 42px; font-weight: 800; color: #fff; letter-spacing: -0.03em; }
.stat__label  { font-size: 14px; color: rgba(255,255,255,0.8); margin-top: 4px; font-weight: 500; }

/* ─── WHY CHOOSE US ──────────────────────────── */
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.why-card { background: #fff; border: 1px solid var(--border); border-radius: 12px; padding: 40px 32px; }
.why-icon {
  width: 56px; height: 56px; border-radius: 12px;
  background: rgba(44,107,237,0.1); display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}
.why-card h3 { font-size: 20px; margin-bottom: 12px; color: var(--primary); }
.why-card p  { font-size: 15px; }

/* ─── SERVICES ───────────────────────────────── */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.service-card { border-radius: 12px; overflow: hidden; background: var(--primary); position: relative; }
.service-card__img { aspect-ratio: 4/3; overflow: hidden; }
.service-card__img img { width: 100%; height: 100%; object-fit: cover; opacity: 0.6; transition: opacity 0.4s, transform 0.5s cubic-bezier(0.4,0,0.2,1); }
.service-card:hover .service-card__img img { opacity: 0.4; transform: scale(1.06); }
.service-card__body { padding: 28px 28px 32px; }
.service-card__body h3 { color: #fff; font-size: 20px; margin-bottom: 10px; }
.service-card__body p  { color: rgba(255,255,255,0.72); font-size: 14px; line-height: 1.6; }
.service-tag {
  display: inline-block; background: rgba(44,107,237,0.3);
  color: #7eb3ff; font-size: 11px; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  padding: 4px 10px; border-radius: 4px; margin-bottom: 12px;
}

/* ─── LOFT TYPES ─────────────────────────────── */
.types-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
.type-card { background: #fff; border: 1px solid var(--border); border-radius: 12px; overflow: hidden; display: flex; flex-direction: column; }
.type-card__img { background: var(--light); padding: 32px; display: flex; align-items: center; justify-content: center; min-height: 200px; }
.type-card__img img { max-height: 160px; width: auto; object-fit: contain; }
.type-card__body { padding: 28px 32px 32px; flex: 1; }
.type-card__body h3 { font-size: 22px; color: var(--primary); margin-bottom: 12px; }
.type-card__body p  { font-size: 15px; margin-bottom: 16px; }
.type-tag {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(44,107,237,0.08); color: var(--accent);
  font-size: 12px; font-weight: 600; padding: 5px 12px;
  border-radius: 100px; letter-spacing: 0.04em;
}

/* ─── PROCESS ────────────────────────────────── */
.process-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; position: relative; }
.process-steps::before {
  content: ''; position: absolute;
  top: 32px; left: calc(12.5% + 16px); right: calc(12.5% + 16px);
  height: 2px; background: var(--border); z-index: 0;
}
.step { text-align: center; position: relative; z-index: 1; }
.step__num {
  width: 64px; height: 64px; border-radius: 50%;
  background: var(--accent); color: #fff;
  font-family: var(--heading); font-size: 22px; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 24px;
  box-shadow: 0 6px 20px rgba(44,107,237,0.3);
}
.step h4 { font-size: 17px; color: var(--primary); margin-bottom: 10px; }
.step p  { font-size: 14px; }

/* ─── GALLERY ────────────────────────────────── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: 260px 260px;
  gap: 12px;
}
.gallery-item { border-radius: 10px; overflow: hidden; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.55s cubic-bezier(0.4,0,0.2,1); }
.gallery-item:hover img { transform: scale(1.07); }
.gallery-item:nth-child(1) { grid-column: span 5; }
.gallery-item:nth-child(2) { grid-column: span 4; }
.gallery-item:nth-child(3) { grid-column: span 3; }
.gallery-item:nth-child(4) { grid-column: span 3; }
.gallery-item:nth-child(5) { grid-column: span 4; }
.gallery-item:nth-child(6) { grid-column: span 5; }
.gallery-cta { text-align: center; margin-top: 40px; }

/* ─── TESTIMONIALS ───────────────────────────── */
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testimonial-card { background: #fff; border: 1px solid var(--border); border-radius: 12px; padding: 36px 32px; }
.stars { color: #F59E0B; font-size: 18px; margin-bottom: 16px; letter-spacing: 2px; }
.testimonial-card p { font-size: 15px; color: var(--muted); line-height: 1.7; font-style: italic; }
.testimonial__author { display: flex; align-items: center; gap: 12px; margin-top: 24px; padding-top: 20px; border-top: 1px solid var(--border); }
.author-avatar { width: 44px; height: 44px; border-radius: 50%; background: var(--accent); color: #fff; font-family: var(--heading); font-size: 16px; font-weight: 700; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.author-name { font-size: 15px; font-weight: 600; color: var(--primary); }
.author-location { font-size: 13px; color: var(--muted); }

/* ─── CTA BANNER ─────────────────────────────── */
.cta-banner { background: var(--primary); padding: 80px 0; position: relative; overflow: hidden; }
.cta-banner::before { content: ''; position: absolute; inset: 0; background-image: var(--cta-bg); background-size: cover; background-position: center; opacity: 0.12; }
.cta-banner__inner { position: relative; z-index: 1; display: flex; align-items: center; justify-content: space-between; gap: 40px; flex-wrap: wrap; }
.cta-banner h2 { color: #fff; max-width: 520px; }
.cta-banner p  { color: rgba(255,255,255,0.7); margin-top: 12px; font-size: 17px; }
.cta-banner__actions { display: flex; gap: 14px; flex-wrap: wrap; flex-shrink: 0; }

/* ─── CONTACT ────────────────────────────────── */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
.contact-info h3 { color: var(--primary); margin-bottom: 12px; font-size: 28px; }
.contact-info > p { font-size: 16px; margin-bottom: 36px; }
.contact-detail { display: flex; align-items: flex-start; gap: 16px; margin-bottom: 24px; }
.contact-detail__icon { width: 44px; height: 44px; border-radius: 10px; background: rgba(44,107,237,0.1); flex-shrink: 0; display: flex; align-items: center; justify-content: center; }
.contact-detail__text strong { display: block; font-size: 14px; color: var(--muted); font-weight: 500; text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 4px; }
.contact-detail__text a, .contact-detail__text span { font-size: 17px; font-weight: 600; color: var(--primary); }
.contact-detail__text a:hover { color: var(--accent); }
.contact-form { background: var(--light); border-radius: 16px; padding: 48px; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 14px; font-weight: 600; color: var(--primary); margin-bottom: 8px; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; padding: 14px 18px;
  border: 1.5px solid var(--border); border-radius: var(--radius);
  font-family: var(--body); font-size: 15px; color: var(--text);
  background: #fff; outline: none; transition: border-color 0.2s ease;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--accent); }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-submit { width: 100%; padding: 16px; font-size: 16px; }

/* ─── FOOTER ─────────────────────────────────── */
.site-footer { background: var(--primary); padding: 64px 0 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 48px; padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,0.1); }
.footer-brand img { height: 72px; object-fit: contain; margin-bottom: 20px; }
.footer-brand p { color: rgba(255,255,255,0.6); font-size: 14px; line-height: 1.7; max-width: 300px; }
.footer-meta { color: rgba(255,255,255,0.5); font-size: 13px; margin-top: 8px; }
.footer-meta a { color: rgba(255,255,255,0.5); transition: color 0.2s; }
.footer-meta a:hover { color: var(--accent); }
.footer-col h4 { color: #fff; font-size: 15px; margin-bottom: 20px; }
.footer-col ul li + li { margin-top: 10px; }
.footer-col ul li a { color: rgba(255,255,255,0.6); font-size: 14px; transition: color 0.2s; }
.footer-col ul li a:hover { color: var(--accent); }
.footer-bottom { padding: 24px 0; text-align: center; }
.footer-bottom p { color: rgba(255,255,255,0.45); font-size: 13px; }

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

/* ─── MOBILE NAV ─────────────────────────────── */
.mobile-nav {
  display: none; position: fixed; inset: 0; z-index: 99;
  background: var(--primary); flex-direction: column;
  align-items: center; justify-content: center; gap: 32px;
}
.mobile-nav.open { display: flex; }
.mobile-nav a { color: #fff; font-size: 24px; font-weight: 700; font-family: var(--heading); }
.mobile-nav-close { position: absolute; top: 24px; right: 24px; color: #fff; cursor: pointer; background: none; border: none; }

/* ─── RESPONSIVE ─────────────────────────────── */
@media (max-width: 1024px) {
  .container { padding: 0 32px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(3) { border-left: none; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .types-grid { grid-template-columns: repeat(2, 1fr); }
  .process-steps { grid-template-columns: repeat(2, 1fr); gap: 40px; }
  .process-steps::before { display: none; }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .section { padding: 64px 0; }
  .container { padding: 0 20px; }
  .nav { display: none; }
  .hamburger { display: flex; }
  .header-cta .btn { display: none; }
  .why-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .types-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr 1fr; }
  .gallery-grid { grid-template-columns: repeat(2,1fr); grid-template-rows: auto; }
  .gallery-item { grid-column: span 1 !important; }
  .gallery-item img { height: 220px; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .cta-banner__inner { flex-direction: column; align-items: flex-start; }
  .footer-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form { padding: 32px 24px; }
}
@media (max-width: 480px) {
  h2 { font-size: 26px; }
  .hero__actions { flex-direction: column; align-items: flex-start; }
  .process-steps { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; grid-template-rows: auto; }
  .gallery-item img { height: 240px; }
}
