:root {
   --bg: #120c09;
   --bg-soft: #1b120d;
   --panel: rgba(255,244,232,0.07);
   --panel-strong: rgba(255,244,232,0.12);
   --line: rgba(255,226,198,0.14);
   --text: #fff4e8;
   --muted: #dbc0a4;
   --soft: #aa8f79;
   --accent: #d9772f;
   --accent-2: #f1b36b;
   --whatsapp: #25d366;
   --radius-xl: 32px;
   --radius-lg: 24px;
   --radius-md: 18px;
   --shadow: 0 24px 80px rgba(0,0,0,0.35);
   --max: 1240px;
}
 
@font-face {
    font-family: "Inter";
    src: url("/fonts/Inter/Inter-VariableFont_opsz,wght.ttf") format("truetype");
    font-weight: 100 900;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Caveat";
    src: url("/fonts/Caveat,Inter/Caveat/static/Caveat-Regular.ttf") format("truetype");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Caveat";
    src: url("/fonts/Caveat,Inter/Caveat/static/Caveat-Bold.ttf") format("truetype");
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

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

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

.container {
  width: min(calc(100% - 40px), var(--max));
  margin: 0 auto;
}

.section {
  padding: 42px 0;
}

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


.section-head {
  max-width: 760px;
  margin-bottom: 48px;
}

.section-head h2 {
  font-size: clamp(2rem, 4vw, 2.5rem);
  line-height: 1.05;
  letter-spacing: -0.04em;
  margin-bottom: 18px;
}

.section-head p {
  font-size: 1.05rem;
  color: var(--muted);
}

.topbar {
  position: absolute;
  top: 24px;
  left: 0;
  width: 100%;
  z-index: 20;
}

.nav-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 0px 15px;
  border: 1px solid var(--line);
  background: rgba(15,15,15,0.35);
  backdrop-filter: blur(14px);
  border-radius: 999px;
  box-shadow: var(--shadow);
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}


.brand-mark {
  width: 96px;
  height: 96px;
  border-radius: 16px;
  
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 20px;
  font-weight: 800;
  flex: 0 0 auto;
}

.brand-copy {
  min-width: 0;
}

  
.brand-copy .ops {
  	color: #ff9a50;  	
  	font-size: 1.05em;
  }  

.brand-copy strong {
  font-size: 1.2rem;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.brand-copy span.sub {
  display: block;
  font-size: 0.84rem;
  color: var(--muted);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
  color: var(--muted);
  font-size: 0.96rem;
}

.nav-links a:hover {
  color: var(--text);
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 22px;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font-weight: 700;
  white-space: nowrap;
}

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: stretch;
  overflow: hidden;
  background: #000;
}

.hero-media {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(90deg, rgba(18,12,9,0.84) 0%, rgba(18,12,9,0.56) 34%, rgba(18,12,9,0.18) 62%, rgba(18,12,9,0.46) 100%),
    linear-gradient(180deg, rgba(40,22,10,0.18) 0%, rgba(40,22,10,0.1) 45%, rgba(18,12,9,0.72) 100%),
    radial-gradient(circle at 72% 26%, rgba(241,179,107,0.22) 0%, rgba(241,179,107,0.06) 16%, rgba(0,0,0,0) 34%),
    url('/img/herobg.jpg');
  background-size: cover;
  background-position: center center;
  transform: scale(1.03);
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 180px;
  background: linear-gradient(180deg, rgba(10,10,10,0) 0%, rgba(10,10,10,0.9) 100%);
  z-index: 1;
}

.hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  display: flex;
  align-items: center;
  padding: 140px 0 70px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 720px) 1fr;
  gap: 40px;
  width: 100%;
  align-items: end;
}

.hero-copy {
  max-width: 720px;
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.08);
  color: #f7efe3;
  font-size: 0.9rem;
  margin-bottom: 22px;
  backdrop-filter: blur(10px);
}

.hero h1 {
  font-size: clamp(3rem, 8vw, 5.5rem);
  line-height: 0.92;
  letter-spacing: -0.02em;
  max-width: 820px;
}

.hero h1 span {
  color: var(--accent-2);
  font-size: 0.6em;
  display: block;
  letter-spacing: 0em;
  margin-top: 0.25em;
  line-height: 1.1em;
}

.hero p {
  margin-top: 26px;
  max-width: 640px;
  font-size: clamp(1.02rem, 1.8vw, 1.28rem);
  color: var(--muted);
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 24px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  transition: 0.2s ease;
}

.btn-primary {
  background: var(--accent);
  color: #fff;
}

.btn-secondary {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.16);
  color: var(--text);
  backdrop-filter: blur(10px);
}

.whatsapp-card {
  width: min(100%, 400px);
  padding: 22px;
  border-radius: 26px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(14px);
  box-shadow: var(--shadow);
}

.whatsapp-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #f7efe3;
  margin-bottom: 14px;
}

.wa-dot {
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: var(--whatsapp);
  box-shadow: 0 0 0 8px rgba(37,211,102,0.12);
}

.whatsapp-card h3 {
  font-size: 1.5rem;
  line-height: 1.15;
  letter-spacing: -0.03em;
  margin-bottom: 10px;
}

.whatsapp-card p {
  margin: 0 0 18px;
  font-size: 0.98rem;
  color: var(--muted);
}

.btn-whatsapp {
  width: 100%;
  background: rgba(37,211,102,0.14);
  border: 1px solid rgba(37,211,102,0.35);
  color: #fff;
}

.trust-strip {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(241,179,107,0.06), rgba(255,244,232,0.02));
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  padding: 26px 0;
}

.trust-item {
  padding: 8px 8px 8px 0;
}

.trust-item strong {
  display: block;
  font-size: 1rem;
  margin-bottom: 4px;
  letter-spacing: -0.03em;
}

.trust-item span {
  display: block;
  color: var(--soft);
  font-size: 0.94rem;
}

.intro-grid,
.usp-grid,
.cta-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 40px;
  align-items: center;
}

.copy-panel {
  padding-right: 20px;
}

.copy-panel h2,
.statement h2,
.cta-copy h2 {
  font-size: clamp(2.2rem, 4vw, 2.5rem);
  line-height: 1.02;
  letter-spacing: -0.05em;
  margin-bottom: 18px;
}

.copy-panel p,
.statement p,
.cta-copy p,
.usp-copy p {
  font-size: 1.06rem;
  color: var(--muted);
  margin-bottom: 16px;
}

.feature-list {
  list-style: none;
  margin-top: 28px;
  display: grid;
  gap: 14px;
}

.feature-list li {
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255,244,232,0.035);
  color: #e9e1d5;
}

.image-card,
.wide-image,
.usp-image,
.gallery-card {
  overflow: hidden;
  border-radius: var(--radius-xl);
  border: 1px solid var(--line);
  background: var(--bg-soft);
  box-shadow: var(--shadow);
}

.image-card img,
.wide-image img,
.usp-image img,
.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.image-card {
  min-height: 580px;
}

.statement {
  max-width: 920px;
  margin: 0 auto;
  text-align: center;
  padding: 12px 0;
}

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

.service-card {
  padding: 28px;
  border-radius: 28px;
  border: 1px solid var(--line);
  background: rgba(255,244,232,0.035);
  box-shadow: var(--shadow);
}

.service-index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: rgba(217,120,47,0.14);
  color: var(--accent-2);
  font-weight: 800;
  margin-bottom: 20px;
}

.service-card h3 {
  font-size: 1.24rem;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 10px;
}

.service-card p {
  color: var(--muted);
  font-size: 0.98rem;
}

.image-break-copy {
  position: relative;
  margin-top: -140px;
  padding: 0 34px 34px;
}

.image-break-panel {
  max-width: 620px;
  padding: 28px 30px;
  border-radius: 28px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(16,16,16,0.74);
  backdrop-filter: blur(12px);
}

.image-break-panel h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.03;
  letter-spacing: -0.05em;
  margin-bottom: 12px;
}

.image-break-panel p {
  color: var(--muted);
}

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

.step {
  padding: 28px 24px;
  border-radius: 28px;
  border: 1px solid var(--line);
  background: rgba(255,244,232,0.035);
}

.step-number {
  display: inline-block;
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  color: var(--accent-2);
  margin-bottom: 18px;
}

.step h3 {
  font-size: 1.2rem;
  letter-spacing: -0.03em;
  margin-bottom: 10px;
}

.step p {
  color: var(--muted);
  font-size: 0.98rem;
}

.usp-image {
  min-height: 540px;
}

.usp-copy {
  padding-left: 18px;
}

.usp-copy h2 {
  font-size: clamp(2.1rem, 4vw, 3.6rem);
  line-height: 1.02;
  letter-spacing: -0.05em;
  margin-bottom: 18px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
  gap: 22px;
  grid-auto-rows: 260px;
}

.gallery-card.tall {
  grid-row: span 2;
}

.gallery-card.wide {
  grid-column: span 2;
}

.gallery-caption {
  padding: 18px 4px 0;
  color: var(--soft);
  font-size: 0.94rem;
}

.closing {
  text-align: center;
  max-width: 860px;
  margin: 0 auto;
}

.closing h2 {
  font-size: clamp(2.2rem, 4vw, 4rem);
  line-height: 1.02;
  letter-spacing: -0.05em;
  margin-bottom: 18px;
}

.closing p {
  color: var(--muted);
  font-size: 1.06rem;
}

.cta-shell {
  padding: 36px;
  border-radius: 36px;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(241,179,107,0.08), rgba(255,244,232,0.04));
  box-shadow: var(--shadow);
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.contact-stack {
  display: grid;
  gap: 16px;
}

.contact-card {
  padding: 22px;
  border-radius: 24px;
  border: 1px solid var(--line);
  background: rgba(255,244,232,0.05);
}

.contact-card strong {
  display: block;
  font-size: 1.06rem;
  margin-bottom: 6px;
}

.contact-card span,
.contact-card a {
  color: var(--muted);
}

.contact-card.whatsapp {
  background: rgba(37,211,102,0.08);
  border-color: rgba(37,211,102,0.22);
}

.footer {
  padding: 34px 0 50px;
  border-top: 1px solid var(--line);
  color: var(--soft);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
  flex-wrap: wrap;
}

.footer-links {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.service-icon {
	float: right;
}

.service-card svg {
  color: #FFFFFF; /* Main lines */
  margin-bottom: 1.5rem;
  opacity: 0.9;
}

/* If you want to use the orange accent color */
.service-card svg [stroke="#E67E22"] {
  stroke: #ff8c42; /* Your exact brand orange */
}

.icon {
  stroke: rgba(255, 255, 255, 0.8); /* Off-white for the main icon */
}

.icon-accent circle, 
.icon-accent polyline {
  stroke: #ff8c42; /* Your brand orange for specific details */
}

@media (max-width: 1100px) {
  .hero-grid,
  .intro-grid,
  .usp-grid,
  .cta-grid,
  .trust-grid,
  .cards-grid,
  .steps-grid,
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
  }

  .gallery-card.wide,
  .gallery-card.tall {
    grid-column: auto;
    grid-row: auto;
  }

  .image-card,
  .usp-image {
    min-height: 460px;
  }
}

@media (max-width: 920px) {
	 
  .topbar .nav-cta {
  	width: auto;
  }

  .topbar {
    position: inherit;
  }
	
  .hero-kicker {
  	display: none;
  }
	
  .nav-links {
    display: none;
  }

  .hero {
    min-height: auto;
  }

  .hero-inner {
    padding-top: 132px;
  }

  .hero-grid,
  .intro-grid,
  .usp-grid,
  .cta-grid,
  .trust-grid,
  .cards-grid,
  .steps-grid,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .copy-panel,
  .usp-copy {
    padding: 0;
  }
btn
  .image-card,
  .usp-image {
    min-height: 380px;
  }

  .image-break-copy {
    margin-top: -80px;
    padding: 0 18px 18px;
  }

  .cta-shell {
    padding: 28px;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(calc(100% - 28px), var(--max));
  }

  .section {
    padding: 42px 0;
  }

  .topbar {
    top: 14px;
  }

  .nav-shell {
    padding: 12px 14px;
    border-radius: 24px;
  }

  .brand-copy span.sub1 {
    display: none;
  }
  

  .nav-cta {
    padding: 12px 16px;
    font-size: 0.92rem;
  }

  .hero-inner {
    padding: 118px 0 52px;
  }

  .hero-actions,
  .cta-actions {
    flex-direction: column;
  }

  .btn,
  .nav-cta,
  .btn-whatsapp {
    width: 100%;
  }

  .whatsapp-card {
    width: 100%;
  }

  .service-card,
  .step,
  .contact-card,
  .cta-shell {
    padding: 22px;
  }

  .image-break-panel {
    padding: 22px;
  }
}




/* =========================================
   ANIMATIONS & PREMIUM INTERACTION STATES
   ========================================= */

/* Reveal Base */
.reveal {
  opacity: 0;
  will-change: opacity, transform;
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), 
              transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Animation Directions */
.fade-up { transform: translateY(40px); }
.fade-down { transform: translateY(-40px); }
.fade-left { transform: translateX(40px); }
.fade-right { transform: translateX(-40px); }
.fade-in { transform: none; }

/* Active State (Triggered by JS) */
.reveal.active {
  opacity: 1;
  transform: translate(0, 0);
}

/* Staggered Delays for Grids */
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }

/* Hover States for a Premium Feel */
.btn {
  position: relative;
  overflow: hidden;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.btn-primary:hover {
  background: #e68843; /* slightly lighter orange */
}

.service-card {
  transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
}

.service-card:hover {
  transform: translateY(-5px);
  border-color: rgba(217,120,47,0.4); /* subtle orange border on hover */
  box-shadow: 0 32px 64px rgba(0,0,0,0.4);
}

.step {
  transition: border-color 0.4s ease, background 0.4s ease;
}

.step:hover {
  background: rgba(255,244,232,0.06);
  border-color: rgba(255,255,255,0.2);
}

.contact-card {
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.contact-card:hover {
  transform: translateX(5px);
  border-color: rgba(255,255,255,0.2);
}

.contact-card.whatsapp:hover {
  border-color: rgba(37,211,102,0.5);
}

/* Nav Links Subtle Hover Line */
.nav-links a {
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 1px;
  bottom: -4px;
  left: 0;
  background-color: var(--accent);
  transition: width 0.3s ease;
}
.nav-links a:hover::after {
  width: 100%;
}







/* Align the items in a row */
.trust-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;           /* Space between logo and text */
  text-align: left;    /* Ensures text stays left-aligned */
}

/* Ensure the icon doesn't shrink and stays a premium color */
.trust-item .icon {
  flex-shrink: 0;
  color: var(--accent); /* Uses your orange accent color for the logo */
}

/* Stack the two lines of text vertically */
.trust-content {
  display: flex;
  flex-direction: column;
  gap: 2px; /* Small space between the bold title and subtext */
}

.trust-item strong {
  display: block;
  font-size: 1.1rem;
  line-height: 1.2;
}

.trust-item span {
  display: block;
  font-size: 0.9rem;
  color: var(--soft); /* Slightly muted color for the secondary line */
}