:root{
  --bg:#f5f7fb;
  --surface:#ffffff;
  --surface-soft:#f7f8fa;
  --text:#0f172a;
  --muted:#475569;
  --muted-soft:#64748b;
  --primary:#c9974d;
  --primary-dark:#a97833;
  --navy:#0f2347;
  --navy-2:#132b57;
  --border:rgba(15,23,42,0.08);
  --shadow:0 12px 30px rgba(15,23,42,0.08);
  --shadow-strong:0 16px 40px rgba(15,23,42,0.12);
  --radius:20px;
  --container:1200px;
}

*{
  box-sizing:border-box;
}

html{
  scroll-behavior:smooth;
}

body{
  margin:0;
  font-family:system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;
  color:var(--text);
  background:var(--bg);
  line-height:1.6;
}

img{
  max-width:100%;
  display:block;
}

a{
  color:inherit;
  text-decoration:none;
}

button{
  font:inherit;
}

.container{
  width:min(calc(100% - 32px), var(--container));
  margin-inline:auto;
}

.top-strip{
  background:#0b1730;
  color:#e5e7eb;
  font-size:14px;
}

.top-strip .container{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:24px;
  padding:10px 0;
  flex-wrap:wrap;
}

.top-strip ul{
  display:flex;
  gap:18px;
  margin:0;
  padding:0;
  list-style:none;
  flex-wrap:wrap;
}

.site-header{
  position:sticky;
  top:0;
  z-index:50;
  background:rgba(255,255,255,0.92);
  backdrop-filter:blur(12px);
  border-bottom:1px solid var(--border);
}

.header-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
  min-height:88px;
}

.brand img{
  width:220px;
  height:auto;
}

.site-nav ul{
  display:flex;
  align-items:center;
  gap:12px;
  list-style:none;
  margin:0;
  padding:0;
}

.site-nav a{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:46px;
  padding:0 18px;
  border-radius:16px;
  color:var(--text);
  font-weight:700;
}

.site-nav a:hover,
.site-nav a[aria-current="page"]{
  background:#eef2f7;
}

.nav-toggle{
  display:none;
  border:1px solid var(--border);
  background:#fff;
  color:var(--text);
  border-radius:12px;
  padding:10px 14px;
}

.button{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:52px;
  padding:0 24px;
  border:none;
  border-radius:16px;
  background:linear-gradient(135deg,var(--primary),var(--primary-dark));
  color:#fff;
  font-weight:800;
  box-shadow:0 10px 20px rgba(15,23,42,0.15);
  transition:transform .2s ease, box-shadow .2s ease, opacity .2s ease;
}

.button:hover{
  transform:translateY(-2px);
  box-shadow:0 16px 30px rgba(15,23,42,0.18);
}

.button-secondary{
  background:#fff;
  color:var(--text);
  border:1px solid var(--border);
  box-shadow:none;
}

.button-small{
  min-height:48px;
  padding:0 20px;
}

.button-row{
  display:flex;
  gap:14px;
  flex-wrap:wrap;
}

.hero{
  background:
    radial-gradient(circle at top right, rgba(201,151,77,0.20), transparent 18%),
    linear-gradient(135deg, var(--navy) 0%, var(--navy-2) 100%);
  color:#fff;
  overflow:hidden;
}

.hero-grid{
  display:grid;
  grid-template-columns:1.05fr .95fr;
  gap:40px;
  align-items:center;
  padding:72px 0;
}

.hero h1{
 font-size:clamp(1.8rem,3vw,2.6rem);
  line-height:1.15;
  margin:0 0 18px;
  max-width:22ch;
}

.lead{
  font-size:clamp(1rem,1.8vw,1.2rem);
  color:#a4ae34;
  max-width:760px;
  margin:0 0 28px;
}

.hero-media img{
  border-radius:28px;
  box-shadow:0 30px 60px rgba(0,0,0,0.22);
  aspect-ratio:4/3;
  object-fit:cover;
}

.hero-stats{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:18px;
  margin-top:28px;
}

.stat-card{
  background:linear-gradient(180deg,#ffffff 0%,#f7f8fa 100%);
  color:#111827;
  padding:26px;
  border-radius:24px;
  border:1px solid rgba(255,255,255,0.08);
  box-shadow:var(--shadow);
  min-height:180px;
  transition:transform .2s ease, box-shadow .2s ease;
}

.stat-card:hover{
  transform:translateY(-4px);
  box-shadow:var(--shadow-strong);
}

.stat-card strong{
  display:block;
  font-size:20px;
  line-height:1.35;
  margin-bottom:12px;
  color:#0f172a;
}

.stat-card span{
  display:block;
  font-size:15px;
  line-height:1.7;
  color:#334155;
}

.section{
  padding:80px 0;
}

.section-dark{
  background:linear-gradient(180deg,#f8fafc 0%,#eef2f7 100%);
}

.section-heading{
  margin-bottom:36px;
}

.section-heading h2{
  font-size:clamp(1.7rem,3vw,2.3rem);
  line-height:1.2;
  margin:0 0 10px;
}

.section-intro{
  max-width:760px;
  margin:0;
  color:var(--muted);
}

.trust-grid,
.card-grid,
.feature-row{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:22px;
}

.trust-card,
.service-card,
.feature-card,
.review-card,
.project-card{
  background:var(--surface);
  border:1px solid var(--border);
  border-radius:24px;
  padding:28px;
  box-shadow:var(--shadow);
}

.trust-card strong,
.feature-card h3,
.service-card h3{
  display:block;
  margin-bottom:10px;
  font-size:1.1rem;
  color:var(--text);
}

.trust-card p,
.service-card p,
.feature-card p,
.review-card p,
.project-card p{
  margin:0;
  color:var(--muted);
}

.service-card{
  display:flex;
  flex-direction:column;
  gap:12px;
}

.service-icon{
  width:60px;
  height:60px;
}

.text-link{
  display:inline-flex;
  align-items:center;
  gap:8px;
  font-weight:700;
  color:var(--primary-dark);
}

.icon-ring{
  width:74px;
  height:74px;
  border-radius:20px;
  display:grid;
  place-items:center;
  background:linear-gradient(180deg,#fff 0%,#f7f8fa 100%);
  border:1px solid var(--border);
  margin-bottom:16px;
}

.filter-row{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  margin-bottom:24px;
}

.filter-btn{
  min-height:44px;
  padding:0 16px;
  border-radius:999px;
  border:1px solid var(--border);
  background:#fff;
  color:var(--text);
  font-weight:700;
  cursor:pointer;
}

.filter-btn.active{
  background:var(--primary);
  border-color:var(--primary);
  color:#fff;
}

.gallery-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:18px;
}

.gallery-card{
  background:#fff;
  border:1px solid var(--border);
  border-radius:24px;
  overflow:hidden;
  box-shadow:var(--shadow);
}

.gallery-card button{
  width:100%;
  border:none;
  background:none;
  padding:0;
  cursor:pointer;
  text-align:left;
}

.gallery-card img{
  width:100%;
  aspect-ratio:4/4;
  object-fit:cover;
}

.gallery-card .caption{
  padding:18px 18px 20px;
  color:var(--text);
  font-weight:700;
}

.cta-band{
  background:linear-gradient(135deg,#132b57 0%,#0f2347 100%);
  color:#fff;
}

.cta-band-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
}

.cta-band p{
  margin:8px 0 0;
  color:#dbe5f3;
}

.site-footer{
  background:#0b1730;
  color:#e5e7eb;
  padding-top:60px;
}

.footer-grid{
  display:grid;
  grid-template-columns:1.2fr .8fr .9fr;
  gap:28px;
  padding-bottom:30px;
}

.footer-logo{
  width:220px;
  height:auto;
  margin-bottom:14px;
}

.footer-links{
  list-style:none;
  margin:0;
  padding:0;
  display:grid;
  gap:10px;
}

.footer-links a{
  color:#e5e7eb;
}

.footer-bottom{
  display:flex;
  justify-content:space-between;
  gap:18px;
  flex-wrap:wrap;
  padding:18px 0 26px;
  border-top:1px solid rgba(255,255,255,0.08);
  color:#cbd5e1;
  font-size:14px;
}

.mobile-cta{
  display:none;
}

.small-muted{
  color:var(--muted-soft);
  font-size:14px;
}

.lightbox{
  width:min(92vw,1100px);
  border:none;
  border-radius:24px;
  padding:0;
  background:transparent;
}

.lightbox::backdrop{
  background:rgba(2,6,23,0.78);
}

.lightbox-shell{
  position:relative;
  background:#0b1220;
  border-radius:24px;
  overflow:hidden;
}

.lightbox img{
  width:100%;
  max-height:82vh;
  object-fit:contain;
  background:#0b1220;
}

.lightbox-caption{
  padding:16px 22px 22px;
  color:#fff;
}

.lightbox-close,
.lightbox-prev,
.lightbox-next{
  position:absolute;
  z-index:2;
  width:48px;
  height:48px;
  border:none;
  border-radius:999px;
  background:rgba(255,255,255,0.15);
  color:#fff;
  font-size:28px;
  cursor:pointer;
}

.lightbox-close{
  top:18px;
  right:18px;
}

.lightbox-prev{
  left:18px;
  top:50%;
  transform:translateY(-50%);
}

.lightbox-next{
  right:18px;
  top:50%;
  transform:translateY(-50%);
}

.service-list{
  display:grid;
  gap:10px;
  padding-left:18px;
}

.steps-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:18px;
}

.step-card{
  background:#fff;
  border:1px solid var(--border);
  border-radius:20px;
  padding:22px;
  box-shadow:var(--shadow);
}

.step-card strong{
  display:block;
  margin-bottom:10px;
}

.whatsapp-float{
  position:fixed;
  right:18px;
  bottom:88px;
  z-index:60;
  display:grid;
  gap:10px;
}

.whatsapp-float a{
  min-width:200px;
  min-height:48px;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:0 16px;
  border-radius:999px;
  background:#25d366;
  color:#fff;
  font-weight:800;
  box-shadow:0 12px 24px rgba(0,0,0,0.18);
}

.hide-mobile{
  display:inline-flex;
}

@media (max-width: 1100px){
  .hero-grid,
  .footer-grid,
  .cta-band-inner{
    grid-template-columns:1fr;
  }

  .hero-stats,
  .gallery-grid,
  .steps-grid,
  .trust-grid,
  .feature-row,
  .card-grid{
    grid-template-columns:repeat(2,1fr);
  }

  .cta-band-inner{
    display:grid;
  }
}

@media (max-width: 820px){
  .top-strip{
    display:none;
  }

  .header-inner{
    min-height:80px;
  }

  .nav-toggle{
    display:inline-flex;
  }

  .site-nav{
    position:relative;
  }

  .site-nav ul{
    display:none;
    position:absolute;
    top:calc(100% + 12px);
    right:0;
    width:min(88vw,320px);
    background:#fff;
    border:1px solid var(--border);
    border-radius:20px;
    box-shadow:var(--shadow-strong);
    padding:12px;
    flex-direction:column;
    align-items:stretch;
  }

  .site-nav ul.is-open{
    display:flex;
  }

  .site-nav a{
    justify-content:flex-start;
  }

  .hide-mobile{
    display:none;
  }

  .hero-grid{
    padding:56px 0;
  }

  .hero h1{
    font-size:clamp(1.8rem,7vw,2.4rem);
    max-width:none;
  }

  .section{
    padding:60px 0;
  }

  .section-heading{
    margin-bottom:28px;
  }

  .hero-stats,
  .gallery-grid,
  .steps-grid,
  .trust-grid,
  .feature-row,
  .card-grid{
    grid-template-columns:1fr;
  }

  .stat-card{
    min-height:auto;
  }

  .brand img{
    width:190px;
  }

  .mobile-cta{
    position:fixed;
    left:12px;
    right:12px;
    bottom:12px;
    z-index:70;
    display:grid;
    grid-template-columns:1.2fr 1fr 1fr;
    gap:10px;
  }

  .mobile-cta a{
    min-height:52px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:16px;
    font-weight:800;
    box-shadow:0 10px 20px rgba(0,0,0,0.16);
  }

  .mobile-cta .primary{
    background:linear-gradient(135deg,var(--primary),var(--primary-dark));
    color:#fff;
  }

  .mobile-cta a:not(.primary){
    background:#fff;
    color:var(--text);
    border:1px solid var(--border);
  }

  .whatsapp-float{
    right:12px;
    bottom:78px;
  }

  .whatsapp-float a{
    min-width:unset;
    width:56px;
    height:56px;
    border-radius:999px;
    padding:0;
    font-size:0;
  }

  .whatsapp-float a::before{
    content:"WA";
    font-size:15px;
    font-weight:900;
  }
}
.wa-fab-wrap{
  position:fixed;
  right:18px;
  bottom:88px;
  z-index:80;
}

.wa-fab-toggle{
  min-width:140px;
  min-height:56px;
  padding:0 20px;
  border:none;
  border-radius:999px;
  background:#25d366;
  color:#fff;
  font-size:16px;
  font-weight:800;
  cursor:pointer;
  box-shadow:0 14px 28px rgba(0,0,0,0.18);
  transition:transform .2s ease, box-shadow .2s ease;
}

.wa-fab-toggle:hover{
  transform:translateY(-2px);
  box-shadow:0 18px 34px rgba(0,0,0,0.22);
}

.wa-team-panel{
  position:absolute;
  right:0;
  bottom:68px;
  width:min(92vw,340px);
  background:#ffffff;
  border:1px solid rgba(15,23,42,0.08);
  border-radius:22px;
  box-shadow:0 18px 40px rgba(15,23,42,0.18);
  padding:14px;
  display:grid;
  gap:10px;
}

.wa-team-panel[hidden]{
  display:none !important;
}

.wa-team-panel-title{
  font-size:14px;
  font-weight:800;
  color:#0f172a;
  padding:4px 6px 6px;
}

.wa-team-link{
  display:flex;
  align-items:flex-start;
  gap:12px;
  padding:12px 14px;
  border-radius:16px;
  background:#f8fafc;
  border:1px solid rgba(15,23,42,0.06);
  transition:background .2s ease, transform .2s ease;
}

.wa-team-link:hover{
  background:#eef7f1;
  transform:translateY(-1px);
}

.wa-team-icon{
  width:38px;
  height:38px;
  border-radius:999px;
  background:#25d366;
  color:#fff;
  display:grid;
  place-items:center;
  font-size:18px;
  flex:0 0 38px;
}

.wa-team-link strong{
  display:block;
  font-size:15px;
  line-height:1.2;
  color:#0f172a;
  margin-bottom:2px;
}

.wa-team-link small{
  display:block;
  font-size:13px;
  line-height:1.45;
  color:#475569;
}

@media (max-width: 820px){
  .wa-fab-wrap{
    right:12px;
    bottom:78px;
  }

  .wa-fab-toggle{
    min-width:unset;
    min-height:56px;
    padding:0 18px;
    font-size:15px;
  }

  .wa-team-panel{
    right:0;
    bottom:66px;
    width:min(92vw,320px);
  }
}
.breadcrumb{
  display:flex;
  gap:8px;
  flex-wrap:wrap;
  margin-bottom:20px;
  color:#64748b;
  font-size:14px;
}

.breadcrumb a{
  color:#475569;
}

.project-layout{
  display:grid;
  grid-template-columns:1.4fr .8fr;
  gap:24px;
  align-items:start;
}

.project-main,
.project-sidebar{
  display:grid;
  gap:24px;
}

.project-hero-image img{
  width:100%;
  border-radius:24px;
  aspect-ratio:16/9;
  object-fit:cover;
  box-shadow:0 12px 30px rgba(15,23,42,0.08);
}

.project-content-card,
.project-info-card{
  background:#fff;
  border:1px solid rgba(15,23,42,0.08);
  border-radius:24px;
  padding:28px;
  box-shadow:0 12px 30px rgba(15,23,42,0.08);
}

.project-content-card h2,
.project-info-card h2{
  margin-top:0;
  margin-bottom:14px;
}

.project-info-list{
  margin:0;
  padding-left:18px;
  display:grid;
  gap:10px;
}
.project-gallery-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:16px;
}

.project-gallery-item{
  border:none;
  background:none;
  padding:0;
  cursor:pointer;
}

.project-gallery-item img{
  width:100%;
  border-radius:18px;
  aspect-ratio:4/3;
  object-fit:cover;
  box-shadow:0 10px 24px rgba(15,23,42,0.10);
  transition:transform .2s ease, box-shadow .2s ease;
}

.project-gallery-item:hover img{
  transform:translateY(-2px);
  box-shadow:0 14px 28px rgba(15,23,42,0.14);
}

@media (max-width: 900px){
  .project-gallery-grid{
    grid-template-columns:repeat(2,1fr);
  }
}

@media (max-width: 640px){
  .project-gallery-grid{
    grid-template-columns:1fr;
  }
}
.contact-hero{
  padding-bottom:50px;
}

.contact-team-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:22px;
}

.contact-team-card{
  background:#fff;
  border:1px solid var(--border);
  border-radius:24px;
  padding:28px;
  box-shadow:var(--shadow);
  display:flex;
  flex-direction:column;
  gap:16px;
}

.contact-team-icon{
  width:60px;
  height:60px;
  border-radius:18px;
  display:grid;
  place-items:center;
  font-size:28px;
  background:linear-gradient(180deg,#fff 0%,#f7f8fa 100%);
  border:1px solid var(--border);
}

.contact-team-card h2{
  margin:0;
  font-size:1.5rem;
  line-height:1.2;
}

.contact-team-card p{
  margin:0;
  color:var(--muted);
}

.contact-team-list{
  list-style:none;
  margin:0;
  padding:0;
  display:grid;
  gap:10px;
}

.contact-team-list li{
  color:var(--text);
}

.contact-team-list a{
  color:var(--primary-dark);
  font-weight:700;
}

.contact-form-wrap{
  display:grid;
  grid-template-columns:.9fr 1.1fr;
  gap:28px;
  align-items:start;
}

.contact-form-intro{
  background:#fff;
  border:1px solid var(--border);
  border-radius:24px;
  padding:28px;
  box-shadow:var(--shadow);
}

.contact-form-intro h2{
  margin-top:0;
  margin-bottom:14px;
  font-size:clamp(1.8rem,3vw,2.5rem);
  line-height:1.15;
}

.contact-form-intro p{
  margin:0 0 16px;
  color:var(--muted);
}

.contact-note{
  padding:16px 18px;
  border-radius:18px;
  background:#f8fafc;
  border:1px solid var(--border);
  color:var(--muted);
}

.contact-form-card{
  background:#fff;
  border:1px solid var(--border);
  border-radius:24px;
  padding:28px;
  box-shadow:var(--shadow);
}

.form-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:18px;
}

.form-field{
  display:flex;
  flex-direction:column;
  gap:8px;
}

.form-field-full{
  grid-column:1 / -1;
}

.form-field label{
  font-weight:700;
  color:var(--text);
}

.form-field input,
.form-field select,
.form-field textarea{
  width:100%;
  min-height:54px;
  border:1px solid rgba(15,23,42,0.12);
  border-radius:16px;
  padding:14px 16px;
  font:inherit;
  color:var(--text);
  background:#fff;
  outline:none;
  transition:border-color .2s ease, box-shadow .2s ease;
}

.form-field textarea{
  min-height:150px;
  resize:vertical;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus{
  border-color:rgba(201,151,77,0.8);
  box-shadow:0 0 0 4px rgba(201,151,77,0.12);
}

@media (max-width: 1100px){
  .contact-team-grid,
  .contact-form-wrap{
    grid-template-columns:1fr;
  }
}

@media (max-width: 820px){
  .form-grid{
    grid-template-columns:1fr;
  }

  .contact-team-card,
  .contact-form-intro,
  .contact-form-card{
    padding:22px;
  }
}