:root{
  --primary: #ff0000;
  --bg: #1E2633;
  --surface: #0f1a2e;
  --surface-2: #131f35;
  --card: rgba(255,255,255,0.06);
  --card-2: rgba(255,255,255,0.08);
  --text: rgba(255,255,255,0.92);
  --muted: rgba(255,255,255,0.70);
  --muted-2: rgba(255,255,255,0.55);
  --line: rgba(255,255,255,0.12);
  --shadow: 0 12px 40px rgba(0,0,0,0.35);
  --radius: 22px;
  --radius-pill: 999px;
  --max: 1140px;
}

*,
*::before,
*::after{
  box-sizing: border-box;
}

html{
  font-size: 62.5%;
  scroll-behavior: smooth;
  scroll-padding-top: 10rem;
  background: linear-gradient(180deg, #1D2330 0%, #1F2633 100%);
}

body{
  margin: 0;
  font-family: "Poppins", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-size: 1.6rem;
  line-height: 1.6;
  color: var(--text);
  background: radial-gradient(1200px 800px at 20% -10%, rgba(255,0,0,0.22), transparent 60%),
              radial-gradient(900px 600px at 90% 10%, rgba(255,255,255,0.08), transparent 60%),
              linear-gradient(180deg, #1D2330 0%, #1F2633 100%);
  overflow-x: hidden;
}

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

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

button, input, select, textarea{
  font: inherit;
}

.container{
  width: min(var(--max), calc(100% - 2.6rem));
  margin-inline: auto;
}

.skip-link{
  position: absolute;
  left: -999px;
  top: 1rem;
  padding: 1rem 1.4rem;
  background: #fff;
  color: #000;
  border-radius: 1.2rem;
  z-index: 2000;
}
.skip-link:focus{ left: 1.2rem; }

/* Buttons */
.btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  padding: 1.4rem 2.2rem;
  border-radius: var(--radius-pill);
  border: 1px solid transparent;
  cursor: pointer;
  font-weight: 600;
  letter-spacing: 0.2px;
  transition: transform .15s ease, background .15s ease, border-color .15s ease, opacity .15s ease;
  user-select: none;
  white-space: nowrap;
}
.btn:active{ transform: translateY(1px); }
.btn-primary{
  background: var(--primary);
  color: #fff;
}
.btn-primary:hover{
  opacity: .92;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(255,0,0,0.3);
}
.btn-ghost{
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.14);
  color: #fff;
}
.btn-ghost:hover{
  background: rgba(255,255,255,0.09);
  border-color: rgba(255,255,255,0.22);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(255,255,255,0.1);
}
.btn-small{
  padding: 1.0rem 1.6rem;
  font-size: 1.4rem;
}

/* Header */
.header{
  position: sticky;
  top: 0;
  z-index: 1100;
  padding: 1.6rem 0;
}

.header-inner{
  width: min(var(--max), calc(100% - 2.6rem));
  margin-inline: auto;
  background: rgba(255,255,255,0.92);
  color: #0b0f14;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: var(--radius-pill);
  box-shadow: 0 10px 22px rgba(0,0,0,0.18);
  padding: 1.1rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.2rem;
  backdrop-filter: blur(8px);
}

.brand{
  display: flex;
  align-items: center;
  gap: 1.2rem;
  min-width: 220px;
}
.brand-logo{
  width: 52px;
  height: 52px;
  border-radius: 14px;
  object-fit: cover;
  border: 1px solid rgba(0,0,0,0.08);
}
.brand-text{
  display: grid;
  line-height: 1.1;
}
.brand-name{
  font-weight: 800;
  letter-spacing: 0.2px;
  font-size: 1.6rem;
}
.brand-sub{
  font-size: 1.2rem;
  opacity: 0.72;
}

.navbar{
  display: flex;
  align-items: center;
  gap: 1.8rem;
}
.navbar a{
  font-size: 1.4rem;
  font-weight: 600;
  color: rgba(0,0,0,0.78);
  padding: 0.8rem 0;
  border-bottom: 2px solid transparent;
}
.navbar a:hover{
  border-bottom-color: rgba(255,0,0,0.4);
  color: rgba(0,0,0,0.85);
}
.navbar a.active{
  border-bottom-color: var(--primary);
  color: rgba(0,0,0,0.95);
  font-weight: 700;
  opacity: 1;
}

.header-actions{
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.lang-switch{
  display: inline-flex;
  align-items: center;
  gap: 0.2rem;
  padding: 0.35rem;
  border-radius: 999px;
  border: 1px solid rgba(0,0,0,0.08);
  background: rgba(255,255,255,0.70);
}
.lang-btn{
  appearance: none;
  border: none;
  background: transparent;
  cursor: pointer;
  padding: 0.55rem 0.85rem;
  border-radius: 999px;
  font-size: 1.2rem;
  font-weight: 700;
  color: rgba(0,0,0,0.75);
  letter-spacing: 0.02em;
}
.lang-btn:hover{
  background: rgba(0,0,0,0.06);
}
.lang-btn.active{
  background: rgba(0,0,0,0.10);
  color: rgba(0,0,0,0.92);
}
.icon-btn{
  width: 44px;
  height: 44px;
  border-radius: 14px;
  border: 1px solid rgba(0,0,0,0.08);
  background: rgba(255,255,255,0.75);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform .15s ease, background .15s ease;
}
.icon-btn:hover{
  background: rgba(255,255,255,0.95);
}
.icon-btn:active{
  transform: translateY(1px);
}
.menu-btn{ display: none; } /* desktop hidden */

/* Mobile Panel */
.mobile-panel{
  display: none;
}

/* Overlay (Search) */
.overlay{
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.55);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  z-index: 2000;
}
.overlay.open{ display: flex; }
.overlay-card{
  width: min(520px, 100%);
  background: rgba(15,22,32,0.96);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 18px;
  box-shadow: var(--shadow);
  overflow: hidden;
}
.overlay-head{
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.6rem 1.8rem;
  border-bottom: 1px solid rgba(255,255,255,0.10);
}
.overlay-head h3{
  margin: 0;
  font-size: 1.6rem;
}
.overlay-body{
  padding: 1.8rem;
}
.hint{
  margin: 1.1rem 0 0;
  font-size: 1.3rem;
  color: var(--muted-2);
}

/* Hero */
.hero{
  position: relative;
  min-height: calc(100vh - 10rem);
  display: grid;
  align-items: center;
  margin-top: -2.2rem; /* bring hero closer to header */
  padding: 7.5rem 0 5.5rem;
  background: url("../images/home.jpeg") center/cover no-repeat;
}
.hero-overlay{
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(30,38,51,0.88) 0%, rgba(30,38,51,0.56) 55%, rgba(30,38,51,0.22) 100%);
}
.hero-content{
  position: relative;
  width: min(var(--max), calc(100% - 2.6rem));
  margin-inline: auto;
  max-width: 680px;
}
.eyebrow{
  margin: 0 0 1rem;
  color: rgba(255,255,255,0.80);
  font-weight: 600;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  font-size: 1.2rem;
}
.hero h1{
  margin: 0 0 1.2rem;
  font-size: clamp(3.2rem, 5vw, 5.2rem);
  line-height: 1.08;
}
.hero h1 span{
  color: #fff;
  text-shadow: 0 18px 60px rgba(255,0,0,0.25);
  position: relative;
}
.hero h1 span::after{
  content: "";
  position: absolute;
  left: 0;
  bottom: 0.06em;
  width: 100%;
  height: 0.14em;
  background: rgba(255,0,0,0.36);
  border-radius: 999px;
  z-index: -1;
}
.lead{
  margin: 0 0 2rem;
  color: rgba(255,255,255,0.82);
  font-size: 1.7rem;
  max-width: 62ch;
}
.hero-actions{
  display: flex;
  gap: 1.2rem;
  flex-wrap: wrap;
  margin-bottom: 2.6rem;
}
.hero-badges{
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.2rem;
  margin-top: 2.2rem;
}
.badge{
  display: flex;
  gap: 1rem;
  padding: 1.3rem 1.2rem;
  border-radius: 16px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.16);
  backdrop-filter: blur(6px);
}
.badge i{
  width: 38px;
  height: 38px;
  border-radius: 12px;
  background: rgba(255,0,0,0.16);
  display: grid;
  place-items: center;
}
.badge strong{
  display: block;
  font-size: 1.35rem;
  line-height: 1.2;
}
.badge span{
  display: block;
  font-size: 1.15rem;
  color: rgba(255,255,255,0.74);
  line-height: 1.2;
  margin-top: 0.2rem;
}

.scroll-down{
  position: absolute;
  left: 50%;
  bottom: 2rem;
  transform: translateX(-50%);
  width: 46px;
  height: 46px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.20);
  background: rgba(0,0,0,0.25);
  display: grid;
  place-items: center;
}

/* Sections */
.section{
  padding: 6.2rem 0;
}
.section-muted{
  background: rgba(255,255,255,0.03);
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.section-head{
  max-width: 820px;
  margin-bottom: 2.8rem;
}
/* Page header styling for collection/projects/blog pages */
main#main-content .section-head {
  margin-bottom: 3.5rem;
  padding-top: 1rem;
}
.section-title{
  margin: 0 0 1rem;
  font-size: 3.0rem;
  letter-spacing: -0.2px;
}
main#main-content .section-title {
  margin-bottom: 1.2rem;
}
.section-text{
  margin: 0;
  color: var(--muted);
  font-size: 1.6rem;
}

.grid-2{
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 2.6rem;
  align-items: center;
}

.media-card{
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.04);
  box-shadow: var(--shadow);
}
.media-card img{
  width: 100%;
  height: 420px;
  object-fit: cover;
}

.checklist{
  list-style: none;
  padding: 0;
  margin: 2rem 0 2.6rem;
  display: grid;
  gap: 0.9rem;
  color: rgba(255,255,255,0.84);
}
.checklist i{
  color: var(--primary);
  margin-right: 0.8rem;
}
.about-actions{
  display: flex;
  gap: 1.2rem;
  flex-wrap: wrap;
}

/* Cards */
.cards{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.8rem;
}
.card{
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 10px 26px rgba(0,0,0,0.25);
  transition: transform .18s ease, border-color .18s ease, background .18s ease;
}
.card:hover{
  transform: translateY(-2px);
  border-color: rgba(255,255,255,0.18);
  background: rgba(255,255,255,0.06);
}
.card img{
  width: 100%;
  height: 220px;
  object-fit: cover;
}
.card-body{
  padding: 1.7rem 1.6rem 1.8rem;
}
.card-body h3{
  margin: 0 0 0.7rem;
  font-size: 1.8rem;
}
.card-body p{
  margin: 0 0 1.4rem;
  color: var(--muted);
}
.card-actions{
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
.meta{
  font-size: 1.2rem;
  color: rgba(255,255,255,0.70);
  margin-bottom: 0.6rem;
}
.link{
  color: rgba(255,255,255,0.92);
  font-weight: 700;
  display: inline-flex;
  gap: 0.7rem;
  align-items: center;
}
.link i{ color: var(--primary); }

/* Blog post scroll margin for sticky header */
.blog-post{
  scroll-margin-top: 120px;
}

/* Process */
.process{
  margin-top: 2.4rem;
  display: grid;
  grid-template-columns: repeat(4, minmax(0,1fr));
  gap: 1.2rem;
}
.process-item{
  background: rgba(255,255,255,0.04);
  border: 1px dashed rgba(255,255,255,0.18);
  border-radius: 18px;
  padding: 1.6rem 1.6rem 1.7rem;
}
.process-no{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 30px;
  padding: 0 1rem;
  border-radius: 999px;
  background: rgba(255,0,0,0.16);
  color: #fff;
  font-weight: 800;
  font-size: 1.2rem;
  letter-spacing: 0.6px;
}
.process-item h4{
  margin: 1rem 0 0.6rem;
  font-size: 1.6rem;
}
.process-item p{
  margin: 0;
  color: var(--muted);
  font-size: 1.4rem;
}

/* Gallery */
.gallery{
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 1.4rem;
}
.gallery-item{
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.04);
  box-shadow: 0 12px 30px rgba(0,0,0,0.28);
  min-height: 240px;
}
.gallery-item img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
  transition: transform .25s ease;
}
.gallery-item:hover img{
  transform: scale(1.06);
}
.gallery-overlay{
  position: absolute;
  inset: auto 0 0 0;
  padding: 1.4rem 1.4rem 1.2rem;
  background: linear-gradient(180deg, transparent, rgba(0,0,0,0.65));
}
.gallery-overlay span{
  display: block;
  font-weight: 800;
  font-size: 1.6rem;
}
.gallery-overlay small{
  display: block;
  color: rgba(255,255,255,0.80);
  font-size: 1.2rem;
  margin-top: 0.2rem;
}

/* Gallery layout (masonry-ish) */
.gallery-item:nth-child(1){ grid-column: span 7; min-height: 320px; }
.gallery-item:nth-child(2){ grid-column: span 5; min-height: 320px; }
.gallery-item:nth-child(3){ grid-column: span 5; }
.gallery-item:nth-child(4){ grid-column: span 7; }

/* CTA strip */
.cta-strip{
  margin-top: 2.2rem;
  display: flex;
  gap: 1.6rem;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 2rem 2.2rem;
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,0.12);
  background: linear-gradient(90deg, rgba(255,0,0,0.20), rgba(255,255,255,0.06));
}
.cta-strip h3{
  margin: 0 0 0.3rem;
  font-size: 2.0rem;
}
.cta-strip p{
  margin: 0;
  color: var(--muted);
  max-width: 62ch;
}

/* Reviews */
.reviews{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.8rem;
}
.review{
  padding: 1.8rem 1.8rem 1.7rem;
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.05);
}
.stars{
  color: #ffd166;
  margin-bottom: 1rem;
}
.review p{
  margin: 0 0 1.4rem;
  color: rgba(255,255,255,0.84);
}
.reviewer{
  display: flex;
  align-items: center;
  gap: 1rem;
}
.avatar{
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: rgba(255,0,0,0.18);
  display: grid;
  place-items: center;
  font-weight: 800;
}
.reviewer span{
  display: block;
  font-size: 1.2rem;
  color: var(--muted-2);
}

/* Contact */
.contact-grid{
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 1.8rem;
  align-items: start;
}
.contact-card{
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius);
  padding: 2rem;
}
.field{
  display: grid;
  gap: 0.6rem;
  margin-bottom: 1.3rem;
}
.field span{
  font-size: 1.3rem;
  color: var(--muted);
}
.field input,
.field select,
.field textarea{
  width: 100%;
  padding: 1.2rem 1.2rem;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(0,0,0,0.18);
  color: #fff;
  outline: none;
}
.field input:focus,
.field select:focus,
.field textarea:focus{
  border-color: rgba(255,0,0,0.55);
  box-shadow: 0 0 0 3px rgba(255,0,0,0.18);
}
.grid-2-sm{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
}
.form-actions{
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 0.5rem;
}

.contact-info{
  display: grid;
  gap: 1.2rem;
}
.info-card{
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius);
  padding: 1.8rem 1.8rem;
}
.info-card h3{
  margin: 0 0 1rem;
  font-size: 1.8rem;
}
.info-list{
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.9rem;
}
.info-list i{
  width: 20px;
  margin-right: 0.8rem;
  color: rgba(255,0,0,0.95);
}
.info-list a{ text-decoration: underline; text-decoration-color: rgba(255,255,255,0.28); }
.social{
  display: flex;
  gap: 0.8rem;
  margin-top: 1.2rem;
}
.social .icon-btn{
  width: 42px;
  height: 42px;
  border-color: rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.06);
  color: #fff;
}
.social .icon-btn:hover{ background: rgba(255,255,255,0.09); }

.map-card{
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.04);
}
.map-card iframe{
  width: 100%;
  height: 260px;
  border: 0;
}

/* Footer */
.footer{
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 4.2rem;
}
.footer-grid{
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.5fr;
  gap: 2rem;
  padding-bottom: 3.2rem;
}
.footer h4{
  margin: 0 0 1.1rem;
  font-size: 1.6rem;
}
.footer-brand img{
  width: 62px;
  height: 62px;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.12);
  margin-bottom: 1rem;
}
.footer-brand p{
  margin: 0;
  color: var(--muted);
  max-width: 40ch;
}
.footer-links{
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.8rem;
  color: var(--muted);
}
.footer-links a{
  color: rgba(255,255,255,0.82);
  text-decoration: underline;
  text-decoration-color: rgba(255,255,255,0.22);
}
.footer-links a:hover{ text-decoration-color: rgba(255,0,0,0.55); }
.muted{ color: var(--muted); margin: 0 0 1rem; }

.newsletter{
  display: flex;
  gap: 0.8rem;
  align-items: center;
}
.newsletter input{
  flex: 1;
  padding: 1.2rem 1.2rem;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(0,0,0,0.18);
  color: #fff;
}

.footer-bottom{
  padding: 1.6rem 0;
  border-top: 1px solid rgba(255,255,255,0.08);
  background: rgba(0,0,0,0.16);
}
.footer-bottom-inner{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}
.back-to-top{
  color: rgba(255,255,255,0.88);
  text-decoration: underline;
  text-decoration-color: rgba(255,255,255,0.22);
}
.back-to-top i{ color: var(--primary); margin-left: .6rem; }

/* WhatsApp floating button */
.whatsapp-fab{
  position: fixed;
  right: 18px;
  bottom: 18px;
  width: 58px;
  height: 58px;
  border-radius: 18px;
  background: #25D366;
  color: #fff;
  display: grid;
  place-items: center;
  box-shadow: 0 14px 30px rgba(0,0,0,0.35);
  z-index: 1500;
}
.whatsapp-fab i{ font-size: 2.8rem; }

/* Responsive */
@media (max-width: 980px){
  .navbar{ display: none; }
  .menu-btn{ display: inline-flex; }
  .brand{ min-width: auto; }

  .hero-badges{
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .grid-2{
    grid-template-columns: 1fr;
  }
  .media-card img{ height: 340px; }

  .cards{
    grid-template-columns: 1fr;
  }
  .process{
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .reviews{
    grid-template-columns: 1fr;
  }
  .contact-grid{
    grid-template-columns: 1fr;
  }
  .footer-grid{
    grid-template-columns: 1fr 1fr;
  }

  /* Mobile panel */
  .mobile-panel{
    display: none;
    width: min(var(--max), calc(100% - 2.6rem));
    margin: 1.2rem auto 0;
    background: rgba(255,255,255,0.95);
    color: #0b0f14;
    border-radius: 22px;
    border: 1px solid rgba(0,0,0,0.10);
    box-shadow: 0 18px 50px rgba(0,0,0,0.22);
    padding: 1.2rem 1.2rem 1.6rem;
  }
  .mobile-panel.open{ display: block; }
  .mobile-panel-head{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.6rem 0.4rem 0.8rem;
    font-weight: 800;
  }
  .mobile-panel .icon-btn{
    background: rgba(255,255,255,0.7);
    border-color: rgba(0,0,0,0.10);
  }
  .mobile-links{
    display: grid;
    gap: 0.6rem;
    margin-top: 0.8rem;
  }
  .mobile-links a{
    padding: 1rem 1rem;
    border-radius: 16px;
    background: rgba(0,0,0,0.05);
    font-weight: 700;
    color: rgba(0,0,0,0.82);
  }
  .mobile-cta{
    display: grid;
    gap: 0.8rem;
    margin-top: 1rem;
  }
}

@media (max-width: 560px){
  .brand-text{ display: none; }
  .grid-2-sm{
    grid-template-columns: 1fr;
  }
  .gallery{
    grid-template-columns: 1fr;
  }
  .gallery-item{
    grid-column: auto !important;
    min-height: 260px;
  }
  .footer-grid{
    grid-template-columns: 1fr;
  }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce){
  *{ transition: none !important; scroll-behavior: auto; }
}
