:root{
  --gold:#C99338;
  --gold2:#E2B764;
  --white:#F7F8FB;
  --text:#D8E0EB;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{margin:0;background:#02070f;color:var(--white);font-family:Arial,Helvetica,sans-serif}
a{text-decoration:none;color:inherit}
img{display:block;max-width:100%}
svg{display:block}
.container{width:min(1380px, calc(100% - 40px));margin:0 auto}

/* Header */
.site-header{
  position:sticky;
  top:0;
  z-index:100;
  background:linear-gradient(180deg, rgba(7,18,36,.93), rgba(7,18,36,.82));
  border-bottom:1px solid rgba(255,255,255,.08);
  backdrop-filter:blur(12px);
}

.nav-wrap{
  min-height:82px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
}

.brand img{height:62px;width:auto}

.main-nav{
  display:flex;
  gap:14px;
  align-items:center;
}

.main-nav a,
.mobile-menu a{
  color:#F4F6FA;
  font-size:11px;
  text-transform:uppercase;
  letter-spacing:.18em;
  font-weight:700;
  padding:6px 8px;
}

.main-nav a:hover,
.mobile-menu a:hover{
  color:var(--gold2);
}

.header-actions{
  display:flex;
  align-items:center;
  gap:12px;
}

.lang-switch{
  display:flex;
  gap:4px;
  padding:4px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.10);
  background:rgba(255,255,255,.04);
}

.lang-btn{
  border:none;
  background:transparent;
  color:#fff;
  cursor:pointer;
  font-size:12px;
  font-weight:700;
  padding:8px 12px;
  border-radius:999px;
}

.lang-btn.active{
  background:linear-gradient(135deg,var(--gold),var(--gold2));
  color:#111;
}

.header-cta,
.discover-btn,
.footer-cta{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:48px;
  padding:0 26px;
  border-radius:8px;
  background:linear-gradient(135deg,#B88531,#D9A94D);
  color:#fff;
  font-size:12px;
  letter-spacing:.14em;
  text-transform:uppercase;
  font-weight:700;
  box-shadow:0 10px 22px rgba(0,0,0,.24);
}

.header-cta:hover,
.discover-btn:hover,
.footer-cta:hover{
  filter:brightness(1.06);
}

.menu-toggle{
  display:none;
  border:1px solid rgba(255,255,255,.14);
  background:transparent;
  color:#fff;
  border-radius:10px;
  font-size:20px;
  padding:8px 12px;
}

.mobile-menu{
  display:none;
  flex-direction:column;
  gap:14px;
  padding:0 20px 20px;
  border-top:1px solid rgba(255,255,255,.08);
}

/* Hero / Slider */
.hero,
.slider-hero{
  position:relative;
  min-height:584px;
  overflow:hidden;
}

.hero-slider{
  position:relative;
  min-height:584px;
}

.slide{
  position:absolute;
  inset:0;
  width:100%;
  min-height:584px;
  opacity:0;
  visibility:hidden;
  pointer-events:none;
  transition:opacity .7s ease, visibility .7s ease;
  overflow:hidden;
}

.slide.active{
  opacity:1;
  visibility:visible;
  pointer-events:auto;
  z-index:2;
}

.hero{
  display:grid;
  align-items:stretch;
}

.hero-bg,
.hero-overlay,
.network-glow,
.hero-content{
  grid-area:1 / 1;
}

.hero-bg{
  position:absolute;
  inset:0;
  z-index:0;
}

.hero-bg img{
  width:100%;
  height:100%;
  min-height:584px;
  object-fit:cover;
  object-position:center center;
}

.hero-overlay{
  position:absolute;
  inset:0;
  z-index:1;
  background:
    linear-gradient(90deg, rgba(2,7,16,.97) 0%, rgba(2,7,16,.88) 18%, rgba(2,7,16,.58) 36%, rgba(2,7,16,.18) 60%, rgba(2,7,16,.22) 100%),
    linear-gradient(180deg, rgba(0,0,0,.10), rgba(0,0,0,.16));
}

.network-glow{
  position:absolute;
  inset:0;
  z-index:1;
  background:
    radial-gradient(circle at 86% 26%, rgba(84,156,255,.22), transparent 12%),
    radial-gradient(circle at 88% 48%, rgba(35,120,255,.16), transparent 16%),
    radial-gradient(circle at 82% 66%, rgba(0,162,255,.10), transparent 18%);
  mix-blend-mode:screen;
}

.hero-content{
  position:relative;
  z-index:2;
  display:flex;
  align-items:center;
  justify-content:flex-start;
  width:100%;
  min-height:584px;
  padding-left:clamp(20px, 5vw, 90px);
  padding-right:clamp(80px, 10vw, 150px);
}

.hero-copy{
  position:relative;
  z-index:2;
  width:100%;
  max-width:640px;
  min-width:0;
  padding:42px 0 72px 0;
}

.hero-logo{
  height:86px;
  width:auto;
  margin-bottom:10px;
}

.hero h1{
  margin:0;
  display:block;
  width:100%;
  max-width:100%;
  font-family:Georgia,"Times New Roman",serif;
  font-size:clamp(34px, 4.2vw, 56px);
  line-height:1.12;
  font-weight:500;
  letter-spacing:.02em;
  overflow-wrap:anywhere;
  word-break:break-word;
  hyphens:auto;
  text-shadow:0 2px 14px rgba(0,0,0,.28);
}

.hero-line{
  width:95px;
  height:3px;
  background:linear-gradient(90deg,var(--gold),var(--gold2));
  margin:16px 0 18px;
}

.hero-categories{
  margin:0;
  display:block;
  width:100%;
  max-width:100%;
  color:#F3F6FA;
  font-size:clamp(14px, 1.45vw, 18px);
  line-height:1.45;
  letter-spacing:.08em;
  text-transform:uppercase;
  overflow-wrap:anywhere;
  word-break:break-word;
}

.hero-subtitle{
  margin:30px 0 0;
  display:block;
  width:100%;
  max-width:100%;
  color:#F4F7FD;
  font-size:clamp(18px, 2vw, 26px);
  line-height:1.4;
  overflow-wrap:anywhere;
  word-break:break-word;
}

.hero-subtitle strong{
  color:var(--gold2);
}

.hero-description{
  margin:18px 0 0;
  width:100%;
  max-width:56ch;
  color:var(--text);
  font-size:clamp(15px, 1.2vw, 17px);
  line-height:1.8;
  overflow-wrap:anywhere;
  word-break:break-word;
}

.discover-btn{
  margin-top:30px;
  min-width:275px;
  max-width:100%;
  justify-content:flex-start;
  padding:0 28px;
  white-space:normal;
  text-align:left;
}

/* Service strip */
.service-strip{
  background:#02070f;
  padding:0 0 26px;
  margin-top:-8px;
}

.cards-row{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:18px;
}

.service-card{
  position:relative;
  padding:24px 18px 18px;
  text-align:center;
  min-height:152px;
  border-radius:0 0 22px 22px;
  border:1px solid rgba(255,255,255,.10);
  background:linear-gradient(180deg, rgba(6,20,33,.98), rgba(8,20,34,.95));
  box-shadow:0 14px 32px rgba(0,0,0,.34);
}

.service-card.active{
  background:linear-gradient(180deg, rgba(7,22,36,.98), rgba(0,78,149,.84));
}

.service-icon{
  font-size:34px;
  margin-bottom:8px;
}

.service-card h3{
  margin:8px 0 8px;
  font-size:18px;
  line-height:1.2;
  color:#fff;
}

.service-card p{
  margin:0;
  font-size:14px;
  color:#D8E0EB;
}

.card-line{
  width:58px;
  height:2px;
  background:linear-gradient(90deg,var(--gold),var(--gold2));
  margin:14px auto 0;
}

/* Projects */
.projects-section{
  background:#ECEDEF;
  color:#111;
  padding:14px 0 18px;
}

.section-heading{
  text-align:center;
  margin-bottom:16px;
}

.section-heading h2{
  margin:0;
  font-size:24px;
  letter-spacing:.10em;
  text-transform:uppercase;
  font-family:Arial,Helvetica,sans-serif;
  font-weight:700;
}

.heading-line{
  width:190px;
  height:2px;
  background:linear-gradient(90deg,var(--gold),var(--gold2));
  margin:12px auto 0;
}

.projects-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:20px;
}

.project-card{
  position:relative;
  overflow:hidden;
  border-radius:26px;
  border:2px solid rgba(207,156,68,.92);
  background:#111;
  box-shadow:0 12px 24px rgba(0,0,0,.16);
}

.project-card img{
  width:100%;
  height:220px;
  object-fit:cover;
}

.project-overlay{
  position:absolute;
  inset:0;
  background:linear-gradient(180deg, transparent 52%, rgba(1,6,14,.82) 100%);
}

.project-caption{
  position:absolute;
  left:0;
  right:0;
  bottom:22px;
  z-index:2;
  text-align:center;
  color:#fff;
  font-size:15px;
  letter-spacing:.08em;
  text-transform:uppercase;
}

/* About */
.about-section{
  background:linear-gradient(180deg,#07111E,#040A12);
  padding:48px 0;
}

.about-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:20px;
}

.about-box{
  background:rgba(255,255,255,.03);
  border:1px solid rgba(255,255,255,.10);
  border-radius:24px;
  padding:28px;
}

.mini-label{
  display:inline-block;
  margin-bottom:14px;
  color:var(--gold2);
  font-size:12px;
  letter-spacing:.18em;
  text-transform:uppercase;
  font-weight:700;
}

.about-box h3{
  margin:0 0 14px;
  color:#fff;
  font-size:34px;
  line-height:1.16;
  font-family:Georgia,"Times New Roman",serif;
  font-weight:500;
}

.about-box p,
.about-box li{
  color:#D7DDE8;
  font-size:16px;
  line-height:1.8;
}

.about-box ul{
  margin:0;
  padding-left:18px;
}

/* Footer */
.site-footer{
  background:#03070D;
  border-top:1px solid rgba(255,255,255,.08);
  padding:14px 0;
}

.footer-wrap{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:16px;
  flex-wrap:wrap;
}

.footer-left{
  display:flex;
  align-items:center;
  gap:26px;
  flex-wrap:wrap;
  color:#fff;
  font-size:14px;
}

.footer-item{
  display:flex;
  align-items:center;
  gap:8px;
}

.footer-item svg{
  width:16px;
  height:16px;
  fill:#D9A94D;
  flex:none;
}

.footer-right{
  display:flex;
  align-items:center;
  gap:14px;
  flex-wrap:wrap;
}

.social-link{
  width:40px;
  height:40px;
  border-radius:50%;
  border:1px solid rgba(201,147,56,.55);
  display:flex;
  align-items:center;
  justify-content:center;
  color:#D9A94D;
  transition:.2s ease;
  background:rgba(255,255,255,.02);
}

.social-link:hover{
  background:rgba(201,147,56,.12);
  transform:translateY(-1px);
}

.social-link svg{
  width:18px;
  height:18px;
  fill:#D9A94D;
}

/* Slider controls */
.slider-nav{
  position:absolute;
  top:50%;
  transform:translateY(-50%);
  z-index:5;
  border:none;
  width:52px;
  height:52px;
  border-radius:50%;
  background:rgba(7,18,36,.75);
  color:#fff;
  font-size:32px;
  cursor:pointer;
  display:flex;
  align-items:center;
  justify-content:center;
  border:1px solid rgba(255,255,255,.14);
}

.slider-nav.prev{left:22px}
.slider-nav.next{right:22px}

.slider-dots{
  position:absolute;
  z-index:5;
  left:50%;
  bottom:28px;
  transform:translateX(-50%);
  display:flex;
  gap:10px;
}

.slider-dot{
  width:12px;
  height:12px;
  border-radius:50%;
  border:none;
  background:rgba(255,255,255,.45);
  cursor:pointer;
}

.slider-dot.active{
  background:linear-gradient(135deg,var(--gold),var(--gold2));
}

/* Responsive */
@media (max-width:1200px){
  .projects-grid{
    grid-template-columns:repeat(2,1fr);
  }

  .hero-content{
    padding-left:clamp(18px, 4vw, 46px);
    padding-right:clamp(72px, 9vw, 120px);
  }

  .hero-copy{
    max-width:600px;
  }
}

@media (max-width:930px){
  .main-nav,
  .header-cta{
    display:none;
  }

  .menu-toggle{
    display:block;
  }

  .mobile-menu.open{
    display:flex;
  }

  .cards-row,
  .projects-grid,
  .about-grid{
    grid-template-columns:1fr;
  }

  .hero,
  .slider-hero,
  .hero-slider,
  .slide{
    min-height:520px;
  }

  .hero-bg img{
    min-height:520px;
  }

  .hero-content{
    min-height:520px;
    padding-left:18px;
    padding-right:62px;
  }

  .hero-copy{
    max-width:540px;
    padding:34px 0 72px 0;
  }

  .hero h1{
    font-size:clamp(32px, 5.6vw, 46px);
    line-height:1.14;
  }

  .hero-categories{
    font-size:14px;
    letter-spacing:.06em;
  }

  .hero-subtitle{
    font-size:20px;
  }
}

@media (max-width:640px){
  .container{
    width:min(100% - 22px, 1380px);
  }

  .nav-wrap{
    min-height:72px;
  }

  .brand img{
    height:48px;
  }

  .hero-logo{
    height:64px;
  }

  .hero,
  .slider-hero,
  .hero-slider,
  .slide{
    min-height:560px;
  }

  .hero-bg img{
    min-height:560px;
    object-position:center center;
  }

  .hero-overlay{
    background:
      linear-gradient(180deg, rgba(2,7,16,.90) 0%, rgba(2,7,16,.62) 34%, rgba(2,7,16,.66) 100%),
      linear-gradient(90deg, rgba(2,7,16,.74) 0%, rgba(2,7,16,.24) 100%);
  }

  .hero-content{
    align-items:flex-end;
    min-height:560px;
    padding-left:10px;
    padding-right:48px;
  }

  .hero-copy{
    max-width:100%;
    padding:28px 0 82px 0;
  }

  .hero h1{
    font-size:clamp(30px, 8vw, 40px);
    line-height:1.16;
  }

  .hero-categories{
    font-size:13px;
    letter-spacing:.04em;
    line-height:1.45;
    text-transform:none;
  }

  .hero-subtitle{
    font-size:18px;
  }

  .hero-description{
    max-width:100%;
    font-size:14px;
    line-height:1.6;
  }

  .discover-btn{
    width:100%;
    min-width:unset;
    justify-content:center;
    text-align:center;
  }

  .project-card img{
    height:200px;
  }

  .footer-left{
    font-size:13px;
    gap:14px;
  }

  .slider-nav{
    width:42px;
    height:42px;
    font-size:26px;
  }

  .slider-nav.prev{
    left:10px;
  }

  .slider-nav.next{
    right:10px;
  }

  .slider-dots{
    bottom:18px;
  }
}


/* KDH service pages */
.premium-cards .info-card.premium{display:block;color:inherit;text-decoration:none;transition:.25s ease}
.premium-cards .info-card.premium:hover{transform:translateY(-4px);box-shadow:0 18px 45px rgba(0,0,0,.18)}
.service-card-link{display:inline-flex;margin-top:14px;color:#c9953d;font-weight:800;font-size:13px;letter-spacing:.05em}
.service-hero-page{position:relative;min-height:520px;display:grid;align-items:center;overflow:hidden;background:#07111e}
.service-hero-bg,.service-hero-overlay,.service-hero-content{grid-area:1/1}
.service-hero-bg img{width:100%;height:100%;min-height:520px;object-fit:cover}
.service-hero-overlay{position:absolute;inset:0;background:linear-gradient(90deg,rgba(2,7,16,.92) 0%,rgba(2,7,16,.68) 42%,rgba(2,7,16,.28) 100%),linear-gradient(180deg,rgba(0,0,0,.10),rgba(0,0,0,.20))}
.service-hero-content{position:relative;z-index:2;max-width:850px}
.service-hero-content h1{color:#fff;font-size:clamp(42px,6vw,76px);margin:12px 0;line-height:1.02}
.service-hero-content p{color:#d8e2ee;font-size:19px;max-width:760px}
.align-start{align-items:flex-start}
.service-side-card{background:#081426;border:1px solid rgba(255,255,255,.10);border-radius:24px;padding:28px;color:#fff;box-shadow:0 18px 40px rgba(0,0,0,.16)}
.service-side-card h3{margin-top:0}
.service-side-card .checklist li{color:#d8e2ee}



/* KDH clickable services exact fix */
.service-card{text-decoration:none;color:inherit}
.service-card:hover{transform:translateY(-4px);filter:brightness(1.06)}
.service-readmore{display:inline-flex;margin-top:12px;color:#e2b764;font-size:12px;font-weight:800;letter-spacing:.06em;text-transform:uppercase}
.service-hero-page{position:relative;min-height:520px;display:grid;align-items:center;overflow:hidden;background:#07111e}
.service-hero-bg,.service-hero-overlay,.service-hero-content{grid-area:1/1}
.service-hero-bg img{width:100%;height:100%;min-height:520px;object-fit:cover}
.service-hero-overlay{position:absolute;inset:0;background:linear-gradient(90deg,rgba(2,7,16,.94) 0%,rgba(2,7,16,.72) 42%,rgba(2,7,16,.30) 100%)}
.service-hero-content{position:relative;z-index:2;max-width:850px}
.service-hero-content h1{color:#fff;font-size:clamp(42px,6vw,76px);margin:12px 0;line-height:1.02}
.service-hero-content p{color:#d8e2ee;font-size:19px;max-width:760px}
.align-start{align-items:flex-start}
.service-side-card{background:#081426;border:1px solid rgba(255,255,255,.10);border-radius:24px;padding:28px;color:#fff;box-shadow:0 18px 40px rgba(0,0,0,.16)}
.service-side-card h3{margin-top:0}
.service-side-card .checklist li{color:#d8e2ee}


/* KDH Services - compact clickable cards layout */
.service-strip{
  background:#02070f;
  padding:0 0 26px;
  margin-top:-8px;
}

.cards-row{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:18px;
}

.service-card{
  position:relative;
  display:block;
  padding:24px 18px 18px;
  text-align:center;
  min-height:164px;
  border-radius:0 0 22px 22px;
  border:1px solid rgba(255,255,255,.10);
  background:linear-gradient(180deg, rgba(6,20,33,.98), rgba(8,20,34,.95));
  box-shadow:0 14px 32px rgba(0,0,0,.34);
  color:#fff;
  text-decoration:none;
  transition:.22s ease;
}

.service-card.active{
  background:linear-gradient(180deg, rgba(7,22,36,.98), rgba(0,78,149,.84));
}

.service-card:hover{
  transform:translateY(-4px);
  filter:brightness(1.07);
}

.service-icon{
  font-size:34px;
  margin-bottom:8px;
}

.service-card h3{
  margin:8px 0 8px;
  font-size:18px;
  line-height:1.2;
  color:#fff;
}

.service-card p{
  margin:0;
  font-size:14px;
  color:#D8E0EB;
}

.service-readmore{
  display:inline-flex;
  margin-top:12px;
  color:#e2b764;
  font-size:12px;
  font-weight:800;
  letter-spacing:.06em;
  text-transform:uppercase;
}

.card-line{
  width:58px;
  height:2px;
  background:linear-gradient(90deg,#c99338,#e2b764);
  margin:14px auto 0;
}

@media(max-width:930px){
  .cards-row{
    grid-template-columns:1fr;
  }
}


/* KDH Service Page Hero Fix - like reference images */
.service-hero-new{
  position:relative;
  min-height:620px;
  display:flex;
  align-items:center;
  overflow:hidden;
  background:#07111e;
  border-top:1px solid rgba(255,255,255,.12);
}

.service-hero-new-bg{
  position:absolute;
  inset:0;
  z-index:0;
}

.service-hero-new-bg img{
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:center center;
  transform:scale(1.02);
}

.service-hero-new-overlay{
  position:absolute;
  inset:0;
  z-index:1;
  background:
    linear-gradient(90deg,
      rgba(3,10,22,.96) 0%,
      rgba(3,10,22,.78) 38%,
      rgba(3,10,22,.32) 72%,
      rgba(3,10,22,.12) 100%
    );
}

.service-hero-new-content{
  position:relative;
  z-index:2;
  max-width:720px;
  padding-top:54px;
  padding-bottom:54px;
  color:#fff;
}

.service-hero-new-kicker{
  display:inline-block;
  color:#d6a54a;
  font-size:15px;
  font-weight:700;
  letter-spacing:.01em;
  margin-bottom:14px;
}

.service-hero-new-kicker:after{
  content:"";
  display:block;
  width:56px;
  height:3px;
  margin-top:12px;
  background:linear-gradient(90deg,#d6a54a,#b77b28);
}

.service-hero-new-content h1{
  color:#fff;
  font-size:clamp(44px,5.6vw,72px);
  line-height:1.05;
  font-weight:900;
  letter-spacing:-.035em;
  margin:0 0 20px;
  text-shadow:0 14px 34px rgba(0,0,0,.38);
}

.service-hero-new-subtitle{
  color:#fff;
  font-size:21px;
  line-height:1.45;
  font-weight:700;
  margin:0 0 12px;
}

.service-hero-new-description{
  max-width:670px;
  color:rgba(255,255,255,.82);
  font-size:16px;
  line-height:1.72;
  margin:0 0 32px;
  display:-webkit-box;
  -webkit-line-clamp:3;
  -webkit-box-orient:vertical;
  overflow:hidden;
}

.service-hero-new-buttons{
  display:flex;
  flex-wrap:wrap;
  gap:18px;
  align-items:center;
}

.service-hero-btn-gold,
.service-hero-btn-outline{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:52px;
  padding:0 26px;
  border-radius:8px;
  font-size:13px;
  font-weight:900;
  letter-spacing:.04em;
  text-decoration:none;
  transition:.22s ease;
}

.service-hero-btn-gold{
  background:linear-gradient(135deg,#bd852b,#e0b154);
  color:#fff;
  box-shadow:0 16px 34px rgba(0,0,0,.25);
}

.service-hero-btn-outline{
  border:1px solid #d6a54a;
  color:#d6a54a;
  background:rgba(0,0,0,.12);
}

.service-hero-btn-gold:hover,
.service-hero-btn-outline:hover{
  transform:translateY(-2px);
  filter:brightness(1.07);
}

@media(max-width:900px){
  .service-hero-new{
    min-height:560px;
  }

  .service-hero-new-overlay{
    background:
      linear-gradient(90deg,
        rgba(3,10,22,.96) 0%,
        rgba(3,10,22,.82) 58%,
        rgba(3,10,22,.42) 100%
      );
  }

  .service-hero-new-content{
    padding-top:44px;
    padding-bottom:44px;
  }

  .service-hero-new-content h1{
    font-size:clamp(36px,11vw,54px);
  }

  .service-hero-new-subtitle{
    font-size:18px;
  }

  .service-hero-new-description{
    font-size:15px;
    -webkit-line-clamp:4;
  }

  .service-hero-new-buttons{
    gap:12px;
  }

  .service-hero-btn-gold,
  .service-hero-btn-outline{
    width:100%;
  }
}


/* KDH Service Hero - same visual language as homepage hero */
.service-home-hero{
  position:relative;
  min-height:584px;
  display:grid;
  align-items:stretch;
  overflow:hidden;
  background:#02070f;
}

.service-home-hero-bg,
.service-home-hero-overlay,
.service-home-network-glow,
.service-home-hero-content{
  grid-area:1/1;
}

.service-home-hero-bg img{
  width:100%;
  height:100%;
  min-height:584px;
  object-fit:cover;
  object-position:center center;
  transform:scale(1.02);
}

.service-home-hero-overlay{
  background:
    linear-gradient(90deg,
      rgba(2,7,16,.97) 0%,
      rgba(2,7,16,.86) 19%,
      rgba(2,7,16,.55) 38%,
      rgba(2,7,16,.16) 62%,
      rgba(2,7,16,.24) 100%
    ),
    linear-gradient(180deg, rgba(0,0,0,.10), rgba(0,0,0,.18));
  z-index:1;
}

.service-home-network-glow{
  z-index:2;
  background:
    radial-gradient(circle at 84% 30%, rgba(84,156,255,.18), transparent 13%),
    radial-gradient(circle at 88% 55%, rgba(35,120,255,.13), transparent 18%),
    radial-gradient(circle at 78% 68%, rgba(0,162,255,.08), transparent 20%);
  mix-blend-mode:screen;
  pointer-events:none;
}

.service-home-hero-content{
  position:relative;
  z-index:3;
  display:flex;
  align-items:center;
}

.service-home-hero-copy{
  max-width:720px;
  padding:56px 0 62px;
  color:#fff;
}

.service-home-kicker{
  display:inline-block;
  color:#e2b764;
  font-size:15px;
  font-weight:700;
  letter-spacing:.03em;
  margin-bottom:18px;
}

.service-home-hero-copy h1{
  margin:0;
  font-family:Georgia,"Times New Roman",serif;
  font-size:clamp(52px,6vw,86px);
  line-height:1.02;
  font-weight:500;
  letter-spacing:.01em;
  color:#fff;
  text-shadow:0 18px 38px rgba(0,0,0,.38);
}

.service-home-line{
  width:105px;
  height:3px;
  background:linear-gradient(90deg,#c99338,#e2b764);
  margin:22px 0 22px;
}

.service-home-categories{
  margin:0;
  color:#f3f6fa;
  font-size:18px;
  letter-spacing:.08em;
  text-transform:uppercase;
  line-height:1.55;
  font-weight:700;
}

.service-home-subtitle{
  margin:26px 0 0;
  color:#f4f7fd;
  font-size:25px;
  line-height:1.42;
}

.service-home-description{
  margin:16px 0 0;
  max-width:66ch;
  color:#d8e0eb;
  font-size:16px;
  line-height:1.78;
  display:-webkit-box;
  -webkit-line-clamp:3;
  -webkit-box-orient:vertical;
  overflow:hidden;
}

.service-home-actions{
  display:flex;
  flex-wrap:wrap;
  gap:16px;
  margin-top:32px;
}

.service-home-btn-primary,
.service-home-btn-outline{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:52px;
  padding:0 28px;
  border-radius:8px;
  font-size:13px;
  font-weight:800;
  letter-spacing:.08em;
  text-transform:uppercase;
  text-decoration:none;
  transition:.22s ease;
}

.service-home-btn-primary{
  background:linear-gradient(135deg,#b88531,#d9a94d);
  color:#fff;
  box-shadow:0 14px 30px rgba(0,0,0,.26);
}

.service-home-btn-outline{
  border:1px solid rgba(226,183,100,.90);
  color:#e2b764;
  background:rgba(0,0,0,.12);
}

.service-home-btn-primary:hover,
.service-home-btn-outline:hover{
  transform:translateY(-2px);
  filter:brightness(1.07);
}

@media(max-width:930px){
  .service-home-hero{
    min-height:540px;
  }

  .service-home-hero-bg img{
    min-height:540px;
    object-position:center right;
  }

  .service-home-hero-overlay{
    background:
      linear-gradient(90deg,
        rgba(2,7,16,.96) 0%,
        rgba(2,7,16,.82) 54%,
        rgba(2,7,16,.42) 100%
      );
  }

  .service-home-hero-copy{
    padding:42px 0 48px;
  }

  .service-home-categories{
    font-size:14px;
  }

  .service-home-subtitle{
    font-size:19px;
  }

  .service-home-actions{
    gap:12px;
  }

  .service-home-btn-primary,
  .service-home-btn-outline{
    width:100%;
  }
}


/* KDH Full Optimized Service Layout */
.service-premium-layout{
  background:linear-gradient(180deg,#02070f 0%,#06101d 100%);
  color:#fff;
  padding:70px 0 44px;
}

.service-intro-grid{
  display:grid;
  grid-template-columns:minmax(0,1fr) 360px;
  gap:34px;
  align-items:start;
}

.service-intro-main{
  background:rgba(255,255,255,.025);
  border:1px solid rgba(255,255,255,.08);
  border-radius:24px;
  padding:34px;
}

.service-intro-main h2{
  margin:8px 0 18px;
  font-size:clamp(32px,4vw,52px);
  line-height:1.08;
  letter-spacing:-.025em;
  color:#fff;
}

.service-lead{
  font-size:20px;
  line-height:1.6;
  color:#f4f7fd;
  margin:0 0 18px;
  font-weight:700;
}

.service-rich-text{
  color:#d6dfec;
  font-size:16px;
  line-height:1.85;
}

.service-contact-card{
  position:sticky;
  top:110px;
  background:linear-gradient(180deg,rgba(11,26,46,.98),rgba(7,17,31,.98));
  border:1px solid rgba(226,183,100,.25);
  border-radius:24px;
  padding:28px;
  box-shadow:0 24px 60px rgba(0,0,0,.28);
}

.service-contact-card h3{
  color:#fff;
  font-size:25px;
  margin:8px 0 20px;
}

.contact-line{
  padding:15px 0;
  border-top:1px solid rgba(255,255,255,.08);
  display:grid;
  gap:5px;
}

.contact-line strong{
  color:#e2b764;
  font-size:12px;
  letter-spacing:.12em;
  text-transform:uppercase;
}

.contact-line a,
.contact-line span{
  color:#fff;
  font-size:15px;
  text-decoration:none;
}

.service-card-cta{
  display:flex;
  align-items:center;
  justify-content:center;
  min-height:52px;
  margin-top:22px;
  border-radius:10px;
  background:linear-gradient(135deg,#b88531,#d9a94d);
  color:#fff;
  text-decoration:none;
  font-weight:900;
  letter-spacing:.04em;
  text-transform:uppercase;
  font-size:13px;
}

.service-highlights{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:18px;
  margin-top:28px;
}

.service-highlights article{
  background:rgba(255,255,255,.035);
  border:1px solid rgba(255,255,255,.08);
  border-radius:20px;
  padding:24px;
  transition:.22s ease;
}

.service-highlights article:hover{
  transform:translateY(-4px);
  border-color:rgba(226,183,100,.38);
}

.service-highlights span{
  color:#e2b764;
  font-weight:900;
  letter-spacing:.12em;
  font-size:12px;
}

.service-highlights h3{
  color:#fff;
  font-size:18px;
  margin:12px 0 8px;
}

.service-highlights p{
  color:#cfd8e6;
  font-size:14px;
  line-height:1.65;
  margin:0;
}

.service-why-section{
  background:#f4f5f7;
  color:#091426;
  padding:66px 0;
}

.section-head-center{
  text-align:center;
  max-width:780px;
  margin:0 auto 30px;
}

.section-head-center h2{
  font-size:clamp(30px,4vw,48px);
  line-height:1.12;
  margin:10px 0 0;
  color:#091426;
}

.why-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:22px;
}

.why-grid article{
  background:#fff;
  border-radius:22px;
  padding:30px;
  box-shadow:0 18px 50px rgba(9,20,38,.08);
  border:1px solid rgba(9,20,38,.06);
}

.why-icon{
  color:#c99338;
  font-size:22px;
  margin-bottom:14px;
}

.why-grid h3{
  margin:0 0 10px;
  color:#091426;
  font-size:21px;
}

.why-grid p{
  margin:0;
  color:#526071;
  line-height:1.7;
}

.service-final-cta{
  background:#02070f;
  padding:54px 0;
}

.final-cta-box{
  border-radius:28px;
  background:
    radial-gradient(circle at 88% 20%,rgba(226,183,100,.18),transparent 26%),
    linear-gradient(135deg,#0b1a2e,#07111f);
  border:1px solid rgba(226,183,100,.24);
  padding:34px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
}

.final-cta-box span{
  color:#e2b764;
  text-transform:uppercase;
  letter-spacing:.12em;
  font-size:12px;
  font-weight:900;
}

.final-cta-box h2{
  color:#fff;
  margin:8px 0 0;
  font-size:clamp(26px,4vw,42px);
}

.final-cta-box a{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:54px;
  padding:0 28px;
  border-radius:10px;
  background:linear-gradient(135deg,#b88531,#d9a94d);
  color:#fff;
  text-decoration:none;
  font-size:13px;
  font-weight:900;
  letter-spacing:.06em;
  white-space:nowrap;
}

@media(max-width:1100px){
  .service-intro-grid{
    grid-template-columns:1fr;
  }

  .service-contact-card{
    position:relative;
    top:auto;
  }

  .service-highlights{
    grid-template-columns:repeat(2,1fr);
  }
}

@media(max-width:760px){
  .service-premium-layout{
    padding:42px 0 30px;
  }

  .service-intro-main,
  .service-contact-card{
    padding:22px;
    border-radius:18px;
  }

  .service-lead{
    font-size:17px;
  }

  .service-highlights,
  .why-grid{
    grid-template-columns:1fr;
  }

  .final-cta-box{
    flex-direction:column;
    align-items:flex-start;
    padding:24px;
  }

  .final-cta-box a{
    width:100%;
  }
}



/* KDH Service Parse Repair + Full Layout Safety */
.service-home-hero{position:relative;min-height:584px;display:grid;align-items:stretch;overflow:hidden;background:#02070f}
.service-home-hero-bg,.service-home-hero-overlay,.service-home-network-glow,.service-home-hero-content{grid-area:1/1}
.service-home-hero-bg img{width:100%;height:100%;min-height:584px;object-fit:cover;object-position:center center;transform:scale(1.02)}
.service-home-hero-overlay{background:linear-gradient(90deg,rgba(2,7,16,.97) 0%,rgba(2,7,16,.86) 19%,rgba(2,7,16,.55) 38%,rgba(2,7,16,.16) 62%,rgba(2,7,16,.24) 100%),linear-gradient(180deg,rgba(0,0,0,.10),rgba(0,0,0,.18));z-index:1}
.service-home-network-glow{z-index:2;background:radial-gradient(circle at 84% 30%,rgba(84,156,255,.18),transparent 13%),radial-gradient(circle at 88% 55%,rgba(35,120,255,.13),transparent 18%);mix-blend-mode:screen;pointer-events:none}
.service-home-hero-content{
  position:relative;
  z-index:2;
  display:flex;
  align-items:center;
  justify-content:flex-start;
  width:100%;
  min-height:584px;
  padding-left:clamp(20px, 5vw, 90px);
  padding-right:clamp(80px, 10vw, 150px);
}
.service-home-hero-copy{max-width:720px;padding:56px 0 62px;color:#fff}
.service-home-kicker{display:inline-block;color:#e2b764;font-size:15px;font-weight:700;letter-spacing:.03em;margin-bottom:18px}
.service-home-hero-copy h1{margin:0;font-family:Georgia,"Times New Roman",serif;font-size:clamp(52px,1.4vw,86px);line-height:1.02;font-weight:500;letter-spacing:.01em;color:#fff;text-shadow:0 18px 38px rgba(0,0,0,.38)}
.service-home-line{width:105px;height:3px;background:linear-gradient(90deg,#c99338,#e2b764);margin:22px 0}
.service-home-categories{
  margin:0;
  display:block;
  width:100%;
  max-width:100%;
  color:#F3F6FA;
  font-size:clamp(14px, 1.45vw, 18px);
  line-height:1.45;
  letter-spacing:.08em;
  text-transform:uppercase;
  overflow-wrap:anywhere;
  word-break:break-word;
}
.service-home-subtitle{margin:26px 0 0;color:#f4f7fd;font-size:16px;line-height:1.02}
.service-home-description{margin:16px 0 0;max-width:66ch;color:#d8e0eb;font-size:16px;line-height:1.78;display:-webkit-box;-webkit-line-clamp:3;-webkit-box-orient:vertical;overflow:hidden}
.service-home-actions{display:flex;flex-wrap:wrap;gap:16px;margin-top:32px}
.service-home-btn-primary,.service-home-btn-outline{display:inline-flex;align-items:center;justify-content:center;min-height:52px;padding:0 28px;border-radius:8px;font-size:13px;font-weight:800;letter-spacing:.08em;text-transform:uppercase;text-decoration:none;transition:.22s ease}
.service-home-btn-primary{background:linear-gradient(135deg,#b88531,#d9a94d);color:#fff;box-shadow:0 14px 30px rgba(0,0,0,.26)}
.service-home-btn-outline{border:1px solid rgba(226,183,100,.90);color:#e2b764;background:rgba(0,0,0,.12)}
.service-premium-layout{background:linear-gradient(180deg,#02070f 0%,#06101d 100%);color:#fff;padding:70px 0 44px}
.service-intro-grid{display:grid;grid-template-columns:minmax(0,1fr) 360px;gap:34px;align-items:start}
.service-intro-main{background:rgba(255,255,255,.025);border:1px solid rgba(255,255,255,.08);border-radius:24px;padding:34px}
.service-intro-main h2{margin:8px 0 18px;font-size:clamp(32px,4vw,52px);line-height:1.08;letter-spacing:-.025em;color:#fff}
.service-lead{font-size:20px;line-height:1.6;color:#f4f7fd;margin:0 0 18px;font-weight:700}
.service-rich-text{color:#d6dfec;font-size:16px;line-height:1.85}
.service-contact-card{position:sticky;top:110px;background:linear-gradient(180deg,rgba(11,26,46,.98),rgba(7,17,31,.98));border:1px solid rgba(226,183,100,.25);border-radius:24px;padding:28px;box-shadow:0 24px 60px rgba(0,0,0,.28)}
.service-contact-card h3{color:#fff;font-size:25px;margin:8px 0 20px}
.contact-line{padding:15px 0;border-top:1px solid rgba(255,255,255,.08);display:grid;gap:5px}
.contact-line strong{color:#e2b764;font-size:12px;letter-spacing:.12em;text-transform:uppercase}
.contact-line a,.contact-line span{color:#fff;font-size:15px;text-decoration:none}
.service-card-cta{display:flex;align-items:center;justify-content:center;min-height:52px;margin-top:22px;border-radius:10px;background:linear-gradient(135deg,#b88531,#d9a94d);color:#fff;text-decoration:none;font-weight:900;letter-spacing:.04em;text-transform:uppercase;font-size:13px}
.service-highlights{display:grid;grid-template-columns:repeat(4,1fr);gap:18px;margin-top:28px}
.service-highlights article{background:rgba(255,255,255,.035);border:1px solid rgba(255,255,255,.08);border-radius:20px;padding:24px}
.service-highlights span{color:#e2b764;font-weight:900;letter-spacing:.12em;font-size:12px}
.service-highlights h3{color:#fff;font-size:18px;margin:12px 0 8px}
.service-highlights p{color:#cfd8e6;font-size:14px;line-height:1.65;margin:0}
.service-why-section{background:#f4f5f7;color:#091426;padding:66px 0}
.section-head-center{text-align:center;max-width:780px;margin:0 auto 30px}
.section-head-center h2{font-size:clamp(30px,4vw,48px);line-height:1.12;margin:10px 0 0;color:#091426}
.why-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:22px}
.why-grid article{background:#fff;border-radius:22px;padding:30px;box-shadow:0 18px 50px rgba(9,20,38,.08);border:1px solid rgba(9,20,38,.06)}
.why-icon{color:#c99338;font-size:22px;margin-bottom:14px}
.why-grid h3{margin:0 0 10px;color:#091426;font-size:21px}
.why-grid p{margin:0;color:#526071;line-height:1.7}
.service-final-cta{background:#02070f;padding:54px 0}
.final-cta-box{border-radius:28px;background:radial-gradient(circle at 88% 20%,rgba(226,183,100,.18),transparent 26%),linear-gradient(135deg,#0b1a2e,#07111f);border:1px solid rgba(226,183,100,.24);padding:34px;display:flex;align-items:center;justify-content:space-between;gap:20px}
.final-cta-box span{color:#e2b764;text-transform:uppercase;letter-spacing:.12em;font-size:12px;font-weight:900}
.final-cta-box h2{color:#fff;margin:8px 0 0;font-size:clamp(26px,4vw,42px)}
.final-cta-box a{display:inline-flex;align-items:center;justify-content:center;min-height:54px;padding:0 28px;border-radius:10px;background:linear-gradient(135deg,#b88531,#d9a94d);color:#fff;text-decoration:none;font-size:13px;font-weight:900;letter-spacing:.06em;white-space:nowrap}
@media(max-width:1100px){.service-intro-grid{grid-template-columns:1fr}.service-contact-card{position:relative;top:auto}.service-highlights{grid-template-columns:repeat(2,1fr)}}
@media(max-width:760px){.service-home-hero{min-height:540px}.service-home-hero-bg img{min-height:540px;object-position:center right}.service-home-categories{font-size:14px}.service-home-subtitle{font-size:19px}.service-home-btn-primary,.service-home-btn-outline{width:100%}.service-premium-layout{padding:42px 0 30px}.service-intro-main,.service-contact-card{padding:22px;border-radius:18px}.service-lead{font-size:17px}.service-highlights,.why-grid{grid-template-columns:1fr}.final-cta-box{flex-direction:column;align-items:flex-start;padding:24px}.final-cta-box a{width:100%}}



/* KDH 4 services layout */
@media(min-width: 1100px){
  .cards-row{
    grid-template-columns:repeat(4,1fr) !important;
  }
  .service-card{
    min-height:184px;
  }
}



/* KDH 4 service cards display fix */
@media(min-width:1100px){
  .cards-row{
    grid-template-columns:repeat(4,1fr) !important;
  }
}
@media(min-width:700px) and (max-width:1099px){
  .cards-row{
    grid-template-columns:repeat(2,1fr) !important;
  }
}
.service-card{
  min-height:190px;
}


/* KDH SMTP Contact Form */
.kdh-contact-form-section{
  background:#02070f;
  color:#fff;
  padding:72px 0;
  border-top:1px solid rgba(255,255,255,.08);
}

.kdh-contact-grid{
  display:grid;
  grid-template-columns:minmax(0, .85fr) minmax(360px, 1fr);
  gap:34px;
  align-items:start;
}

.kdh-contact-copy{
  background:linear-gradient(180deg,rgba(11,26,46,.85),rgba(7,17,31,.88));
  border:1px solid rgba(226,183,100,.18);
  border-radius:24px;
  padding:34px;
}

.kdh-contact-copy h2{
  margin:10px 0 16px;
  color:#fff;
  font-size:clamp(32px,4vw,52px);
  line-height:1.08;
}

.kdh-contact-copy p{
  color:#d6dfec;
  line-height:1.75;
  margin:0 0 24px;
}

.kdh-contact-details{
  display:grid;
  gap:12px;
}

.kdh-contact-details a,
.kdh-contact-details span{
  color:#fff;
  text-decoration:none;
  border-top:1px solid rgba(255,255,255,.08);
  padding-top:12px;
}

.kdh-contact-form{
  background:#fff;
  color:#091426;
  border-radius:24px;
  padding:30px;
  box-shadow:0 24px 70px rgba(0,0,0,.28);
}

.form-row{
  margin-bottom:18px;
}

.form-row.two{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:16px;
}

.kdh-contact-form label{
  display:block;
  font-size:12px;
  font-weight:900;
  text-transform:uppercase;
  letter-spacing:.08em;
  color:#4b5563;
  margin-bottom:8px;
}

.kdh-contact-form input,
.kdh-contact-form textarea{
  width:100%;
  border:1px solid #d9dee7;
  border-radius:10px;
  padding:13px 14px;
  font-size:15px;
  font-family:inherit;
  outline:none;
  box-sizing:border-box;
}

.kdh-contact-form input:focus,
.kdh-contact-form textarea:focus{
  border-color:#c99338;
  box-shadow:0 0 0 3px rgba(201,147,56,.14);
}

.kdh-contact-form button{
  width:100%;
  min-height:54px;
  border:0;
  border-radius:10px;
  background:linear-gradient(135deg,#b88531,#d9a94d);
  color:#fff;
  font-weight:900;
  letter-spacing:.06em;
  cursor:pointer;
}

.hp-field{
  position:absolute !important;
  left:-9999px !important;
  opacity:0 !important;
}

.form-message{
  display:none;
  padding:12px 14px;
  border-radius:10px;
  margin-bottom:16px;
  font-weight:700;
}

.form-message.success{
  background:#e7f6ec;
  color:#116132;
}

.form-message.error{
  background:#fdeaea;
  color:#9b1c1c;
}

:target.form-message{
  display:block;
}

body:has(#contact-success:target) #contact-success{
  display:block;
}

body:has(#contact-error:target) #contact-error{
  display:block;
}

@media(max-width:900px){
  .kdh-contact-grid,
  .form-row.two{
    grid-template-columns:1fr;
  }
  .kdh-contact-copy,
  .kdh-contact-form{
    padding:22px;
    border-radius:18px;
  }
}


/* ===== KDH ULTRA PREMIUM CONTACT FORM ===== */
.kdh-contact-form-section{
  position:relative;
  background:
    radial-gradient(circle at 12% 18%, rgba(214,165,74,.10), transparent 24%),
    radial-gradient(circle at 88% 18%, rgba(46,121,255,.10), transparent 28%),
    linear-gradient(180deg,#02070f 0%,#06101d 100%) !important;
  overflow:hidden;
}

.kdh-contact-form-section:before{
  content:"";
  position:absolute;
  inset:0;
  background:
    linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size:54px 54px;
  opacity:.16;
  pointer-events:none;
}

.kdh-contact-grid{
  position:relative;
  z-index:1;
}

.kdh-contact-copy{
  background:
    linear-gradient(180deg,rgba(12,29,52,.88),rgba(5,14,28,.92)) !important;
  border:1px solid rgba(214,165,74,.18) !important;
  box-shadow:0 24px 70px rgba(0,0,0,.28);
  backdrop-filter:blur(10px);
}

.kdh-contact-copy h2{
  letter-spacing:-.04em;
  text-shadow:0 16px 34px rgba(0,0,0,.24);
}

.kdh-contact-details a,
.kdh-contact-details span{
  position:relative;
  padding-left:30px;
}

.kdh-contact-details a:before,
.kdh-contact-details span:before{
  position:absolute;
  left:0;
  top:12px;
  color:#d6a54a;
  font-weight:900;
}

.kdh-contact-details a[href^="tel"]:before{content:"☎";}
.kdh-contact-details a[href^="mailto"]:before{content:"✉";}
.kdh-contact-details span:before{content:"⌖";}

.kdh-contact-details .contact-whatsapp{
  margin-top:6px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:max-content;
  padding:12px 16px 12px 42px;
  border:1px solid rgba(214,165,74,.35);
  border-radius:999px;
  background:rgba(214,165,74,.08);
  color:#fff;
  font-weight:800;
}

.kdh-contact-details .contact-whatsapp:before{
  content:"☏";
  top:12px;
  left:17px;
}

.kdh-contact-form{
  position:relative;
  background:
    linear-gradient(180deg,rgba(12,29,52,.96),rgba(5,14,28,.98)) !important;
  border:1px solid rgba(214,165,74,.22) !important;
  border-radius:28px !important;
  padding:34px !important;
  box-shadow:
    0 30px 90px rgba(0,0,0,.40),
    inset 0 1px 0 rgba(255,255,255,.06) !important;
  color:#fff !important;
  overflow:hidden;
}

.kdh-contact-form:before{
  content:"";
  position:absolute;
  inset:0;
  background:radial-gradient(circle at 90% 0%, rgba(214,165,74,.16), transparent 32%);
  pointer-events:none;
}

.kdh-contact-form > *{
  position:relative;
  z-index:1;
}

.kdh-contact-form label{
  color:#d6dfec !important;
  font-size:12px !important;
  text-transform:uppercase;
  font-weight:900 !important;
  letter-spacing:.10em !important;
}

.kdh-contact-form input,
.kdh-contact-form textarea{
  background:rgba(3,10,22,.82) !important;
  border:1px solid rgba(255,255,255,.12) !important;
  border-radius:14px !important;
  color:#fff !important;
  min-height:48px;
  transition:border-color .2s ease, box-shadow .2s ease, background .2s ease, transform .2s ease;
}

.kdh-contact-form textarea{
  min-height:150px;
  resize:vertical;
}

.kdh-contact-form input::placeholder,
.kdh-contact-form textarea::placeholder{
  color:rgba(214,223,236,.42) !important;
}

.kdh-contact-form input:hover,
.kdh-contact-form textarea:hover{
  border-color:rgba(214,165,74,.35) !important;
  background:rgba(3,10,22,.92) !important;
}

.kdh-contact-form input:focus,
.kdh-contact-form textarea:focus{
  border-color:#d6a54a !important;
  box-shadow:
    0 0 0 3px rgba(214,165,74,.16),
    0 12px 28px rgba(0,0,0,.20) !important;
  outline:none !important;
}

.kdh-contact-form button{
  position:relative;
  overflow:hidden;
  min-height:58px !important;
  border-radius:14px !important;
  background:linear-gradient(135deg,#a87424 0%,#d6a54a 52%,#f0ca72 100%) !important;
  color:#fff !important;
  font-weight:950 !important;
  letter-spacing:.08em !important;
  text-transform:uppercase;
  box-shadow:0 18px 42px rgba(214,165,74,.22);
}

.kdh-contact-form button:before{
  content:"";
  position:absolute;
  top:0;
  left:-80%;
  width:60%;
  height:100%;
  background:linear-gradient(90deg,transparent,rgba(255,255,255,.28),transparent);
  transform:skewX(-20deg);
  transition:.55s ease;
}

.kdh-contact-form button:hover{
  transform:translateY(-2px);
  box-shadow:0 24px 52px rgba(214,165,74,.30);
}

.kdh-contact-form button:hover:before{
  left:120%;
}

.form-message{
  border:1px solid rgba(255,255,255,.12);
}

.form-message.success{
  background:rgba(22,101,52,.22) !important;
  color:#86efac !important;
}

.form-message.error{
  background:rgba(127,29,29,.26) !important;
  color:#fca5a5 !important;
}

@media(max-width:900px){
  .kdh-contact-form{
    padding:24px !important;
    border-radius:22px !important;
  }

  .kdh-contact-details .contact-whatsapp{
    width:100%;
  }
}


/* ===== KDH Premium Project Page ===== */
.project-premium-hero{
  position:relative;
  min-height:560px;
  display:grid;
  align-items:center;
  overflow:hidden;
  background:#02070f;
}

.project-hero-bg,
.project-hero-overlay,
.project-hero-content{
  grid-area:1/1;
}

.project-hero-bg img{
  width:100%;
  height:100%;
  min-height:560px;
  object-fit:cover;
  object-position:center center;
  transform:scale(1.025);
}

.project-hero-overlay{
  z-index:1;
  background:
    linear-gradient(90deg,
      rgba(2,7,16,.98) 0%,
      rgba(2,7,16,.86) 28%,
      rgba(2,7,16,.48) 58%,
      rgba(2,7,16,.18) 100%
    ),
    linear-gradient(180deg,rgba(0,0,0,.16),rgba(0,0,0,.24));
}

.project-hero-content{
  position:relative;
  z-index:2;
  max-width:860px;
  color:#fff;
  padding:70px 0;
}

.project-breadcrumb{
  display:flex;
  align-items:center;
  gap:10px;
  margin-bottom:26px;
  color:rgba(255,255,255,.75);
  font-size:14px;
}

.project-breadcrumb a{
  color:#fff;
  text-decoration:none;
}

.project-breadcrumb span{
  color:#d6a54a;
}

.project-kicker{
  display:inline-block;
  color:#d6a54a;
  font-size:15px;
  font-weight:800;
  letter-spacing:.04em;
  margin-bottom:16px;
}

.project-kicker:after{
  content:"";
  display:block;
  width:70px;
  height:3px;
  margin-top:12px;
  background:linear-gradient(90deg,#d6a54a,#b77b28);
}

.project-hero-content h1{
  margin:0 0 20px;
  color:#fff;
  font-size:clamp(46px,6vw,82px);
  line-height:1.02;
  font-weight:900;
  letter-spacing:-.04em;
  text-shadow:0 18px 38px rgba(0,0,0,.38);
}

.project-hero-content p{
  max-width:720px;
  color:#d8e0eb;
  font-size:19px;
  line-height:1.7;
  margin:0;
}

.project-hero-actions{
  display:flex;
  flex-wrap:wrap;
  gap:16px;
  margin-top:34px;
}

.project-btn-gold,
.project-btn-outline{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:54px;
  padding:0 28px;
  border-radius:10px;
  font-size:13px;
  font-weight:900;
  letter-spacing:.06em;
  text-transform:uppercase;
  text-decoration:none;
  transition:.22s ease;
}

.project-btn-gold{
  background:linear-gradient(135deg,#b88531,#d9a94d);
  color:#fff;
  box-shadow:0 16px 34px rgba(0,0,0,.24);
}

.project-btn-outline{
  border:1px solid rgba(214,165,74,.9);
  color:#d6a54a;
  background:rgba(0,0,0,.16);
}

.project-btn-gold:hover,
.project-btn-outline:hover{
  transform:translateY(-2px);
  filter:brightness(1.07);
}

.project-premium-body{
  background:linear-gradient(180deg,#02070f,#06101d);
  color:#fff;
  padding:70px 0;
}

.project-layout{
  display:grid;
  grid-template-columns:minmax(0,1fr) 360px;
  gap:34px;
  align-items:start;
}

.project-main-card{
  background:rgba(255,255,255,.025);
  border:1px solid rgba(255,255,255,.08);
  border-radius:26px;
  padding:38px;
}

.project-main-card h2{
  margin:10px 0 22px;
  color:#fff;
  font-size:clamp(32px,4vw,54px);
  line-height:1.08;
  letter-spacing:-.03em;
}

.project-rich-text{
  color:#d6dfec;
  font-size:16px;
  line-height:1.9;
}

.project-side-card{
  position:sticky;
  top:110px;
  background:linear-gradient(180deg,rgba(11,26,46,.98),rgba(7,17,31,.98));
  border:1px solid rgba(214,165,74,.24);
  border-radius:24px;
  padding:28px;
  box-shadow:0 24px 60px rgba(0,0,0,.28);
}

.project-side-card h3{
  color:#fff;
  font-size:24px;
  margin:8px 0 20px;
}

.project-info-line{
  padding:15px 0;
  border-top:1px solid rgba(255,255,255,.08);
  display:grid;
  gap:5px;
}

.project-info-line strong{
  color:#d6a54a;
  font-size:12px;
  letter-spacing:.12em;
  text-transform:uppercase;
}

.project-info-line span{
  color:#fff;
}

.project-card-cta{
  display:flex;
  align-items:center;
  justify-content:center;
  min-height:52px;
  margin-top:22px;
  border-radius:10px;
  background:linear-gradient(135deg,#b88531,#d9a94d);
  color:#fff;
  text-decoration:none;
  font-weight:900;
  letter-spacing:.05em;
  text-transform:uppercase;
  font-size:13px;
}

.project-value-section{
  background:#f4f5f7;
  color:#091426;
  padding:66px 0;
}

.project-value-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:22px;
}

.project-value-grid article{
  background:#fff;
  border-radius:22px;
  padding:30px;
  box-shadow:0 18px 50px rgba(9,20,38,.08);
  border:1px solid rgba(9,20,38,.06);
}

.project-value-grid span{
  color:#c99338;
  font-size:12px;
  font-weight:900;
  letter-spacing:.12em;
}

.project-value-grid h3{
  margin:12px 0 10px;
  color:#091426;
  font-size:21px;
}

.project-value-grid p{
  margin:0;
  color:#526071;
  line-height:1.7;
}

.project-final-cta{
  background:#02070f;
  padding:54px 0;
}

.project-cta-box{
  border-radius:28px;
  background:
    radial-gradient(circle at 88% 20%,rgba(214,165,74,.18),transparent 26%),
    linear-gradient(135deg,#0b1a2e,#07111f);
  border:1px solid rgba(214,165,74,.24);
  padding:34px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
}

.project-cta-box span{
  color:#d6a54a;
  text-transform:uppercase;
  letter-spacing:.12em;
  font-size:12px;
  font-weight:900;
}

.project-cta-box h2{
  color:#fff;
  margin:8px 0 0;
  font-size:clamp(26px,4vw,42px);
}

.project-cta-box a{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:54px;
  padding:0 28px;
  border-radius:10px;
  background:linear-gradient(135deg,#b88531,#d9a94d);
  color:#fff;
  text-decoration:none;
  font-size:13px;
  font-weight:900;
  letter-spacing:.06em;
  white-space:nowrap;
  text-transform:uppercase;
}

@media(max-width:1050px){
  .project-layout{
    grid-template-columns:1fr;
  }
  .project-side-card{
    position:relative;
    top:auto;
  }
  .project-value-grid{
    grid-template-columns:1fr;
  }
}

@media(max-width:760px){
  .project-premium-hero{
    min-height:520px;
  }
  .project-hero-bg img{
    min-height:520px;
  }
  .project-hero-content{
    padding:44px 0;
  }
  .project-hero-content p{
    font-size:16px;
  }
  .project-btn-gold,
  .project-btn-outline{
    width:100%;
  }
  .project-main-card,
  .project-side-card{
    padding:22px;
    border-radius:18px;
  }
  .project-cta-box{
    flex-direction:column;
    align-items:flex-start;
    padding:24px;
  }
  .project-cta-box a{
    width:100%;
  }
}


/* ===== KDH Premium About Page ===== */
.about-premium-hero{
  position:relative;
  min-height:570px;
  display:grid;
  align-items:center;
  overflow:hidden;
  background:#02070f;
}

.about-hero-bg,
.about-hero-overlay,
.about-hero-content{
  grid-area:1/1;
}

.about-hero-bg img{
  width:100%;
  height:100%;
  min-height:570px;
  object-fit:cover;
  object-position:center center;
  transform:scale(1.025);
}

.about-hero-overlay{
  z-index:1;
  background:
    linear-gradient(90deg,
      rgba(2,7,16,.98) 0%,
      rgba(2,7,16,.86) 28%,
      rgba(2,7,16,.48) 58%,
      rgba(2,7,16,.18) 100%
    ),
    linear-gradient(180deg,rgba(0,0,0,.16),rgba(0,0,0,.24));
}

.about-hero-content{
  position:relative;
  z-index:2;
  max-width:860px;
  color:#fff;
  padding:70px 0;
}

.about-breadcrumb{
  display:flex;
  align-items:center;
  gap:10px;
  margin-bottom:26px;
  color:rgba(255,255,255,.75);
  font-size:14px;
}

.about-breadcrumb a{
  color:#fff;
  text-decoration:none;
}

.about-breadcrumb span{
  color:#d6a54a;
}

.about-kicker{
  display:inline-block;
  color:#d6a54a;
  font-size:15px;
  font-weight:800;
  letter-spacing:.04em;
  margin-bottom:16px;
}

.about-kicker:after{
  content:"";
  display:block;
  width:70px;
  height:3px;
  margin-top:12px;
  background:linear-gradient(90deg,#d6a54a,#b77b28);
}

.about-hero-content h1{
  margin:0 0 20px;
  color:#fff;
  font-size:clamp(46px,6vw,82px);
  line-height:1.02;
  font-weight:900;
  letter-spacing:-.04em;
  text-shadow:0 18px 38px rgba(0,0,0,.38);
}

.about-hero-content p{
  max-width:720px;
  color:#d8e0eb;
  font-size:19px;
  line-height:1.7;
  margin:0;
}

.about-hero-actions{
  display:flex;
  flex-wrap:wrap;
  gap:16px;
  margin-top:34px;
}

.about-btn-gold,
.about-btn-outline{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:54px;
  padding:0 28px;
  border-radius:10px;
  font-size:13px;
  font-weight:900;
  letter-spacing:.06em;
  text-transform:uppercase;
  text-decoration:none;
  transition:.22s ease;
}

.about-btn-gold{
  background:linear-gradient(135deg,#b88531,#d9a94d);
  color:#fff;
  box-shadow:0 16px 34px rgba(0,0,0,.24);
}

.about-btn-outline{
  border:1px solid rgba(214,165,74,.9);
  color:#d6a54a;
  background:rgba(0,0,0,.16);
}

.about-btn-gold:hover,
.about-btn-outline:hover{
  transform:translateY(-2px);
  filter:brightness(1.07);
}

.about-intro-section{
  background:linear-gradient(180deg,#02070f,#06101d);
  color:#fff;
  padding:70px 0;
}

.about-intro-grid{
  display:grid;
  grid-template-columns:minmax(0,1fr) 360px;
  gap:34px;
  align-items:start;
}

.about-intro-card{
  background:rgba(255,255,255,.025);
  border:1px solid rgba(255,255,255,.08);
  border-radius:26px;
  padding:38px;
}

.about-intro-card h2{
  margin:10px 0 22px;
  color:#fff;
  font-size:clamp(32px,4vw,54px);
  line-height:1.08;
  letter-spacing:-.03em;
}

.about-intro-card p{
  color:#d6dfec;
  font-size:16px;
  line-height:1.9;
}

.about-side-card{
  position:sticky;
  top:110px;
  background:linear-gradient(180deg,rgba(11,26,46,.98),rgba(7,17,31,.98));
  border:1px solid rgba(214,165,74,.24);
  border-radius:24px;
  padding:28px;
  box-shadow:0 24px 60px rgba(0,0,0,.28);
}

.about-side-card h3{
  color:#fff;
  font-size:24px;
  margin:8px 0 20px;
}

.about-side-line{
  padding:15px 0;
  border-top:1px solid rgba(255,255,255,.08);
  display:grid;
  gap:5px;
}

.about-side-line strong{
  color:#d6a54a;
  font-size:12px;
  letter-spacing:.12em;
  text-transform:uppercase;
}

.about-side-line span{
  color:#fff;
}

.about-side-cta{
  display:flex;
  align-items:center;
  justify-content:center;
  min-height:52px;
  margin-top:22px;
  border-radius:10px;
  background:linear-gradient(135deg,#b88531,#d9a94d);
  color:#fff;
  text-decoration:none;
  font-weight:900;
  letter-spacing:.05em;
  text-transform:uppercase;
  font-size:13px;
}

.about-services-section{
  background:#f4f5f7;
  padding:70px 0;
}

.about-service-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:20px;
}

.about-service-grid article{
  background:#fff;
  border-radius:24px;
  padding:28px;
  box-shadow:0 18px 50px rgba(9,20,38,.08);
  border:1px solid rgba(9,20,38,.06);
}

.about-service-icon{
  font-size:34px;
  margin-bottom:14px;
}

.about-service-grid h3{
  color:#091426;
  font-size:20px;
  margin:0 0 14px;
}

.about-service-grid ul{
  margin:0;
  padding-left:18px;
  color:#526071;
  line-height:1.8;
}

.about-why-section{
  background:#02070f;
  color:#fff;
  padding:70px 0;
}

.about-why-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:20px;
}

.about-why-grid article{
  background:rgba(255,255,255,.035);
  border:1px solid rgba(255,255,255,.08);
  border-radius:22px;
  padding:28px;
}

.about-why-grid span{
  color:#d6a54a;
  font-size:12px;
  font-weight:900;
  letter-spacing:.12em;
}

.about-why-grid h3{
  color:#fff;
  font-size:20px;
  margin:12px 0 10px;
}

.about-why-grid p{
  color:#cfd8e6;
  line-height:1.7;
  margin:0;
}

.about-approach-section{
  background:linear-gradient(180deg,#06101d,#02070f);
  color:#fff;
  padding:70px 0;
}

.about-approach-grid{
  display:grid;
  grid-template-columns:0.85fr 1.15fr;
  gap:34px;
  align-items:start;
}

.about-approach-grid h2{
  color:#fff;
  font-size:clamp(32px,4vw,54px);
  line-height:1.1;
  margin:10px 0 0;
}

.about-approach-points{
  display:grid;
  gap:14px;
}

.about-approach-points div{
  display:flex;
  gap:18px;
  align-items:center;
  background:rgba(255,255,255,.035);
  border:1px solid rgba(255,255,255,.08);
  border-radius:18px;
  padding:18px;
}

.about-approach-points strong{
  color:#d6a54a;
  font-size:13px;
  letter-spacing:.12em;
}

.about-approach-points span{
  color:#fff;
  font-size:18px;
  font-weight:700;
}

.about-final-cta{
  background:#02070f;
  padding:54px 0;
}

.about-cta-box{
  border-radius:28px;
  background:
    radial-gradient(circle at 88% 20%,rgba(214,165,74,.18),transparent 26%),
    linear-gradient(135deg,#0b1a2e,#07111f);
  border:1px solid rgba(214,165,74,.24);
  padding:34px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
}

.about-cta-box span{
  color:#d6a54a;
  text-transform:uppercase;
  letter-spacing:.12em;
  font-size:12px;
  font-weight:900;
}

.about-cta-box h2{
  color:#fff;
  margin:8px 0 0;
  font-size:clamp(26px,4vw,42px);
}

.about-cta-box a{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:54px;
  padding:0 28px;
  border-radius:10px;
  background:linear-gradient(135deg,#b88531,#d9a94d);
  color:#fff;
  text-decoration:none;
  font-size:13px;
  font-weight:900;
  letter-spacing:.06em;
  white-space:nowrap;
  text-transform:uppercase;
}

@media(max-width:1150px){
  .about-service-grid,
  .about-why-grid{
    grid-template-columns:repeat(2,1fr);
  }
}

@media(max-width:1050px){
  .about-intro-grid,
  .about-approach-grid{
    grid-template-columns:1fr;
  }
  .about-side-card{
    position:relative;
    top:auto;
  }
}

@media(max-width:760px){
  .about-premium-hero{
    min-height:520px;
  }
  .about-hero-bg img{
    min-height:520px;
  }
  .about-hero-content{
    padding:44px 0;
  }
  .about-hero-content p{
    font-size:16px;
  }
  .about-btn-gold,
  .about-btn-outline{
    width:100%;
  }
  .about-intro-card,
  .about-side-card{
    padding:22px;
    border-radius:18px;
  }
  .about-service-grid,
  .about-why-grid{
    grid-template-columns:1fr;
  }
  .about-cta-box{
    flex-direction:column;
    align-items:flex-start;
    padding:24px;
  }
  .about-cta-box a{
    width:100%;
  }
}


/* KDH About Hero Like Homepage */
.about-home-hero{
  position:relative;
  min-height:584px;
  display:grid;
  align-items:stretch;
  overflow:hidden;
  background:#02070f;
}

.about-home-hero-bg,
.about-home-hero-overlay,
.about-home-network-glow,
.about-home-hero-content{
  grid-area:1/1;
}

.about-home-hero-bg img{
  width:100%;
  height:100%;
  min-height:584px;
  object-fit:cover;
  object-position:center center;
  transform:scale(1.02);
}

.about-home-hero-overlay{
  z-index:1;
  background:
    linear-gradient(90deg,
      rgba(2,7,16,.97) 0%,
      rgba(2,7,16,.86) 19%,
      rgba(2,7,16,.55) 38%,
      rgba(2,7,16,.16) 62%,
      rgba(2,7,16,.24) 100%
    ),
    linear-gradient(180deg, rgba(0,0,0,.10), rgba(0,0,0,.18));
}

.about-home-network-glow{
  z-index:2;
  background:
    radial-gradient(circle at 84% 30%, rgba(84,156,255,.18), transparent 13%),
    radial-gradient(circle at 88% 55%, rgba(35,120,255,.13), transparent 18%),
    radial-gradient(circle at 78% 68%, rgba(0,162,255,.08), transparent 20%);
  mix-blend-mode:screen;
  pointer-events:none;
}

.about-home-hero-content{
  position:relative;
  z-index:2;
  display:flex;
  align-items:center;
  justify-content:flex-start;
  width:100%;
  min-height:584px;
  padding-left:clamp(20px, 5vw, 90px);
  padding-right:clamp(80px, 10vw, 150px);
}

.about-home-hero-copy{
  position:relative;
  z-index:2;
  width:100%;
  max-width:640px;
  min-width:0;
  padding:2px 0 72px 0;
}

.about-home-kicker{
  display:inline-block;
  color:#e2b764;
  font-size:15px;
  font-weight:600;
  letter-spacing:.03em;
  margin-bottom:18px;
}

.about-home-hero-copy h1{
  margin:0;
  font-family:Georgia,"Times New Roman",serif;
  font-size:clamp(52px,1.45vw,86px);
  line-height:1.45;
  font-weight:500;
  letter-spacing:.01em;
  color:#fff;
  text-shadow:0 18px 38px rgba(0,0,0,.38);
}

.about-home-line{
  width:105px;
  height:3px;
  background:linear-gradient(90deg,#c99338,#e2b764);
  margin:22px 0 22px;
}

.about-home-categories{
  margin:0;
  display:block;
  width:100%;
  max-width:100%;
  color:#F3F6FA;
  font-size:clamp(14px, 1.45vw, 18px);
  line-height:1.45;
  letter-spacing:.08em;
  text-transform:uppercase;
  overflow-wrap:anywhere;
  word-break:break-word;
}

.about-home-subtitle{
  margin:18px 0 0;
  width:100%;
  max-width:56ch;
  color:var(--text);
  font-size:clamp(15px, 1.2vw, 17px);
  line-height:1.8;
  overflow-wrap:anywhere;
  word-break:break-word;
}

.about-home-actions{
  display:flex;
  flex-wrap:wrap;
  gap:16px;
  margin-top:32px;
}

.about-home-btn-primary,
.about-home-btn-outline{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:52px;
  padding:0 28px;
  border-radius:8px;
  font-size:13px;
  font-weight:800;
  letter-spacing:.08em;
  text-transform:uppercase;
  text-decoration:none;
  transition:.22s ease;
}

.about-home-btn-primary{
  background:linear-gradient(135deg,#b88531,#d9a94d);
  color:#fff;
  box-shadow:0 14px 30px rgba(0,0,0,.26);
}

.about-home-btn-outline{
  border:1px solid rgba(226,183,100,.90);
  color:#e2b764;
  background:rgba(0,0,0,.12);
}

.about-home-btn-primary:hover,
.about-home-btn-outline:hover{
  transform:translateY(-2px);
  filter:brightness(1.07);
}

@media(max-width:930px){
  .about-home-hero{
    min-height:540px;
  }

  .about-home-hero-bg img{
    min-height:540px;
    object-position:center right;
  }

  .about-home-hero-overlay{
    background:
      linear-gradient(90deg,
        rgba(2,7,16,.96) 0%,
        rgba(2,7,16,.82) 54%,
        rgba(2,7,16,.42) 100%
      );
  }

  .about-home-hero-copy{
    padding:42px 0 48px;
  }

  .about-home-categories{
    font-size:14px;
  }

  .about-home-subtitle{
    font-size:19px;
  }

  .about-home-actions{
    gap:12px;
  }

  .about-home-btn-primary,
  .about-home-btn-outline{
    width:100%;
  }
}
