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

:root {
  --navy:    #1a2332;
  --navy2:   #243044;
  --accent:  #e06c1a;
  --accent2: #c55c10;
  --gray:    #f5f6f8;
  --border:  #e2e5ea;
  --text:    #2c3340;
  --muted:   #6b7280;
  --white:   #ffffff;
  --radius:  10px;
  --shadow:  0 2px 16px rgba(0,0,0,.08);
  --shadow-lg: 0 8px 40px rgba(0,0,0,.12);
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

img { display: block; width: 100%; height: 100%; object-fit: cover; }
a   { text-decoration: none; color: inherit; }

/* ══════════════════════════════════
   UTILITIES
══════════════════════════════════ */
.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius);
  font-size: .95rem;
  font-weight: 700;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all .2s ease;
  white-space: nowrap;
}
.btn-primary {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}
.btn-primary:hover { background: var(--accent2); border-color: var(--accent2); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(224,108,26,.35); }
.btn-ghost  { background: transparent; color: #fff; border-color: rgba(255,255,255,.6); }
.btn-ghost:hover { background: rgba(255,255,255,.1); border-color: #fff; }
.btn-header { background: var(--accent); color: #fff; padding: 10px 20px; font-size: .88rem; }
.btn-header:hover { background: var(--accent2); }
.btn-full { width: 100%; }

.section { padding: 88px 0; }
.section--gray { background: var(--gray); }
.section--dark { background: var(--navy); }

.section-header {
  text-align: center;
  max-width: 620px;
  margin: 0 auto 56px;
}
.section-eyebrow {
  display: inline-block;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}
.section-eyebrow--light { color: #f09a5a; }
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  line-height: 1.2;
  color: var(--navy);
  margin-bottom: 16px;
}
.section-title--light { color: #fff; }
.section-desc { color: var(--muted); font-size: 1.05rem; }

/* ══════════════════════════════════
   HEADER
══════════════════════════════════ */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(26,35,50,.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,.07);
  transition: box-shadow .3s;
}
.header.scrolled { box-shadow: 0 4px 24px rgba(0,0,0,.25); }

.header-inner {
  display: flex;
  align-items: center;
  gap: 32px;
  height: 70px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  flex-shrink: 0;
}
.logo-icon { display: inline-flex; align-items: center; justify-content: center; color: var(--accent); }
.logo-text { font-size: .95rem; font-weight: 500; letter-spacing: .3px; }
.logo-text strong { font-weight: 800; display: block; font-size: 1.05rem; line-height: 1.1; }

.nav {
  display: flex;
  gap: 28px;
  margin-left: auto;
}
.nav a {
  font-size: .88rem;
  font-weight: 600;
  color: rgba(255,255,255,.75);
  transition: color .2s;
  position: relative;
}
.nav a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0; right: 0;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transition: transform .2s;
}
.nav a:hover { color: #fff; }
.nav a:hover::after { transform: scaleX(1); }

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}
.burger span {
  display: block;
  width: 24px; height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: all .3s;
}

/* ══════════════════════════════════
   HERO
══════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 70px;
}

.hero-img {
  position: absolute;
  inset: 0;
}
.hero-img img { filter: brightness(.45); }

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(26,35,50,.85) 40%, rgba(26,35,50,.3) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 640px;
  padding: 60px 24px;
}

.hero-eyebrow {
  display: inline-block;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(224,108,26,.15);
  border: 1px solid rgba(224,108,26,.3);
  padding: 6px 14px;
  border-radius: 50px;
  margin-bottom: 20px;
}

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.8rem, 6vw, 4.5rem);
  line-height: 1.12;
  color: #fff;
  margin-bottom: 20px;
}

.hero-desc {
  font-size: 1.1rem;
  color: rgba(255,255,255,.8);
  margin-bottom: 32px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.hero-trust {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  font-size: .82rem;
  color: rgba(255,255,255,.65);
  font-weight: 600;
}
.hero-trust span { display: inline-flex; align-items: center; gap: 6px; }

/* ══════════════════════════════════
   STATS
══════════════════════════════════ */
.stats {
  background: var(--accent);
  padding: 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  divide-color: rgba(255,255,255,.2);
}
.stat {
  padding: 32px 24px;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,.2);
}
.stat:last-child { border-right: none; }
.stat-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  font-size: 2.4rem;
  font-weight: 800;
  color: #fff;
  line-height: 1;
  margin-bottom: 6px;
}
.stat-label {
  display: block;
  font-size: .82rem;
  font-weight: 600;
  color: rgba(255,255,255,.8);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ══════════════════════════════════
   SERVICES
══════════════════════════════════ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 32px 28px;
  transition: all .25s ease;
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--accent);
  transform: scaleX(0);
  transition: transform .25s;
}
.service-card:hover {
  border-color: transparent;
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}
.service-card:hover::before { transform: scaleX(1); }

.service-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px; height: 56px;
  border-radius: 12px;
  background: rgba(224,108,26,.12);
  color: var(--accent);
  margin-bottom: 18px;
  transition: background .25s, transform .25s;
}
.service-card:hover .service-icon {
  background: var(--accent);
  color: #fff;
  transform: scale(1.05);
}
.service-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}
.service-card p { font-size: .93rem; color: var(--muted); line-height: 1.65; }

/* ══════════════════════════════════
   GALLERY
══════════════════════════════════ */
.gallery-filter {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin-bottom: 36px;
  flex-wrap: wrap;
}
.filter-btn {
  padding: 8px 22px;
  border-radius: 50px;
  border: 2px solid var(--border);
  background: #fff;
  font-size: .85rem;
  font-weight: 700;
  color: var(--muted);
  cursor: pointer;
  transition: all .2s;
}
.filter-btn.active,
.filter-btn:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 220px;
  gap: 16px;
}
.gallery-item {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
}
.gallery-item--tall  { grid-row: span 2; }
.gallery-item--wide  { grid-column: span 2; }

.gallery-item img {
  transition: transform .4s ease;
}
.gallery-item:hover img { transform: scale(1.06); }

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26,35,50,.85) 0%, transparent 50%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px;
  opacity: 0;
  transition: opacity .3s;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }

.gallery-tag {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 4px;
  margin-bottom: 8px;
  width: fit-content;
}
.gallery-overlay p { color: rgba(255,255,255,.9); font-size: .88rem; font-weight: 600; }

/* ══════════════════════════════════
   TESTIMONIALS
══════════════════════════════════ */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: 32px;
}
.testimonial {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 32px;
  transition: box-shadow .25s;
}
.testimonial:hover { box-shadow: var(--shadow-lg); }

.testimonial-stars { color: #f59e0b; display: flex; gap: 2px; margin-bottom: 16px; }
.testimonial-text {
  font-size: .97rem;
  color: var(--text);
  line-height: 1.75;
  margin-bottom: 24px;
  font-style: italic;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}
.testimonial-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--navy);
  color: #fff;
  font-size: .8rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.testimonial-author strong { display: block; font-size: .93rem; color: var(--navy); }
.testimonial-author span  { font-size: .8rem; color: var(--muted); }

.testimonials-note {
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  font-size: .9rem;
  color: var(--muted);
  font-weight: 600;
  padding-top: 8px;
  border-top: 1px solid var(--border);
}
.note-stars { color: #f59e0b; display: inline-flex; align-items: center; gap: 4px; }

/* ══════════════════════════════════
   ABOUT
══════════════════════════════════ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.about-img {
  position: relative;
  border-radius: 16px;
  overflow: visible;
  height: 520px;
}
.about-img img {
  border-radius: 16px;
  height: 100%;
}
.about-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--accent);
  color: #fff;
  width: 110px; height: 110px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-shadow: 0 8px 24px rgba(224,108,26,.4);
  border: 4px solid var(--navy);
}
.about-badge strong { font-size: 2rem; font-weight: 800; line-height: 1; }
.about-badge span   { font-size: .7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; opacity: .85; }

.about-content { color: rgba(255,255,255,.8); }
.about-content .section-title { margin-bottom: 20px; }
.about-content p { margin-bottom: 16px; line-height: 1.75; }
.about-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 24px 0 32px;
}
.about-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .93rem;
  font-weight: 600;
  color: rgba(255,255,255,.85);
}
.about-list li svg { color: var(--accent); flex-shrink: 0; }

/* ══════════════════════════════════
   CONTACT
══════════════════════════════════ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 56px;
  align-items: start;
}
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.contact-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.contact-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px; height: 44px;
  border-radius: 10px;
  background: rgba(224,108,26,.12);
  color: var(--accent);
  flex-shrink: 0;
}
.contact-item > div { display: flex; flex-direction: column; gap: 3px; }
.contact-item strong { font-size: .85rem; text-transform: uppercase; letter-spacing: 1px; color: var(--muted); }
.contact-item a, .contact-item span { font-size: 1rem; font-weight: 600; color: var(--navy); }
.contact-item a:hover { color: var(--accent); }
.contact-note { font-size: .8rem !important; color: var(--muted) !important; font-weight: 400 !important; }

.contact-form {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 36px;
  box-shadow: var(--shadow);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
}
.form-group label { font-size: .83rem; font-weight: 700; color: var(--navy); }
.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 14px;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  font-family: inherit;
  font-size: .95rem;
  color: var(--text);
  background: var(--white);
  transition: border-color .2s, box-shadow .2s;
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(224,108,26,.12);
}
.form-group textarea { resize: vertical; min-height: 110px; }
.form-note { font-size: .78rem; color: var(--muted); text-align: center; margin-top: 10px; }

/* ══════════════════════════════════
   FOOTER
══════════════════════════════════ */
.footer {
  background: #0f1520;
  color: rgba(255,255,255,.65);
}
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-top: 56px;
  padding-bottom: 48px;
}
.footer-brand p {
  margin-top: 12px;
  font-size: .88rem;
  line-height: 1.6;
  max-width: 260px;
}
.logo--light .logo-text { color: #fff; }

.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links h4, .footer-contact h4 {
  font-size: .8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #fff;
  margin-bottom: 4px;
}
.footer-links a, .footer-contact a, .footer-contact span {
  font-size: .88rem;
  transition: color .2s;
  display: block;
}
.footer-links a:hover, .footer-contact a:hover { color: var(--accent); }

.footer-contact { display: flex; flex-direction: column; gap: 10px; }
.footer-contact a, .footer-contact span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.footer-contact svg { color: var(--accent); flex-shrink: 0; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 20px 0;
}
.footer-bottom .container {
  display: flex;
  justify-content: space-between;
  font-size: .8rem;
}

/* ══════════════════════════════════
   FLOAT CALL BUTTON
══════════════════════════════════ */
.float-call {
  display: none;
  position: fixed;
  bottom: 24px; right: 24px;
  width: 60px; height: 60px;
  background: var(--accent);
  color: #fff;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 24px rgba(224,108,26,.5);
  z-index: 99;
  animation: floatPulse 2.5s ease-in-out infinite;
}
@keyframes floatPulse {
  0%,100% { box-shadow: 0 6px 24px rgba(224,108,26,.5); }
  50%      { box-shadow: 0 6px 36px rgba(224,108,26,.8); }
}

/* ══════════════════════════════════
   LUCIDE ICONS — sizing & color
══════════════════════════════════ */
.logo-icon svg          { width: 22px; height: 22px; stroke-width: 2.2; }
.btn-header svg         { width: 16px; height: 16px; stroke-width: 2.4; }
.hero-trust svg         { width: 16px; height: 16px; color: var(--accent); stroke-width: 2.6; }
.service-icon svg       { width: 28px; height: 28px; stroke-width: 1.8; }
.contact-icon svg       { width: 22px; height: 22px; stroke-width: 2; }
.testimonial-stars svg  { width: 18px; height: 18px; fill: currentColor; stroke: currentColor; }
.note-stars svg         { width: 16px; height: 16px; fill: currentColor; stroke: currentColor; }
.about-list li svg      { width: 18px; height: 18px; stroke-width: 2.6; }
.footer-contact svg     { width: 16px; height: 16px; }
.float-call svg         { width: 26px; height: 26px; stroke-width: 2.4; }
.inline-star            { width: 1.6rem; height: 1.6rem; fill: currentColor; stroke: currentColor; margin-left: 2px; vertical-align: -.15em; }

/* ══════════════════════════════════
   SCROLL ANIMATIONS
══════════════════════════════════ */
.fade-in {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .55s ease, transform .55s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ══════════════════════════════════
   RESPONSIVE
══════════════════════════════════ */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid  { grid-template-columns: repeat(2, 1fr); }
  .gallery-item--wide { grid-column: span 1; }
  .about-grid    { grid-template-columns: 1fr; gap: 40px; }
  .about-img     { height: 380px; }
  .footer-inner  { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 768px) {
  .section { padding: 60px 0; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat { border-right: none; border-bottom: 1px solid rgba(255,255,255,.2); }
  .stat:nth-child(odd) { border-right: 1px solid rgba(255,255,255,.2); }

  .nav { display: none; position: absolute; top: 70px; left: 0; right: 0; background: var(--navy); flex-direction: column; padding: 16px 24px; gap: 0; }
  .nav.open { display: flex; }
  .nav a { padding: 14px 0; border-bottom: 1px solid rgba(255,255,255,.08); font-size: 1rem; }
  .nav a:last-child { border-bottom: none; }
  .btn-header { display: none; }
  .burger { display: flex; }

  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; text-align: center; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .float-call { display: flex; }
  .gallery-item--tall { grid-row: span 1; }
}

@media (max-width: 480px) {
  .services-grid { grid-template-columns: 1fr; }
  .gallery-grid  { grid-template-columns: 1fr; }
  .hero-trust    { flex-direction: column; gap: 8px; }
}
