:root {
  --brand-red: #b10f16;
  --brand-red-dark: #7e0a10;
  --text-soft: rgba(255, 255, 255, 0.82);
}

body {
  background: #0b0b0d;
  color: #fff;
}

/* Hero */
.hero {
  min-height: 100vh;
  position: relative;
  overflow: hidden;
  background-image:
    linear-gradient(180deg, rgba(0,0,0,.15) 0%, rgba(0,0,0,.10) 20%, rgba(0,0,0,.10) 100%),
    url("../img/slider/slider01.webp");
  background-size: cover;
  background-position: center;
}

/* Subtle vignette */
/* .hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(closest-side, rgba(0,0,0,0) 90%, rgba(0,0,0,.10) 50%);
  pointer-events: none;
} */

.hero > .container {
  position: relative;
  z-index: 2;
}

/* Navbar */
.nav-glass {
  background: #000000d9;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.navbar .nav-link {
  color: rgba(255, 255, 255, 0.9);
  font-weight: 400;
  letter-spacing: 0.2px;
  /* text-transform:uppercase; */
  padding: 1rem 1rem;
  position: relative;
}

.navbar .nav-link:hover {
  color: #fff;
}

.navbar .nav-link.active::after {
  content: "";
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 0.5rem;
  height: 2px;
  background: var(--brand-red);
  border-radius: 99px;
}

.btn-brand {
  background: linear-gradient(180deg, var(--brand-red) 0%, var(--brand-red-dark) 100%);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #fff;
  box-shadow: 0 10px 25px rgba(177, 15, 22, 0.25);
}

.btn-brand:hover {
  filter: brightness(1.05);
  color: #fff;
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #fff;
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.18);
  color: #fff;
}

/* Layout blocks */
.logo-wrap {
  max-width: 300px;
  margin: 0 auto 0.75rem auto;
}

.logo-img {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 14px 28px rgba(0,0,0,.5));
}

.hero-title {
  font-size: clamp(2rem, 4vw, 3.1rem);
  line-height: 1.1;
  letter-spacing: 0.2px;
  text-align: center;
  text-shadow: 0 10px 25px rgba(0, 0, 0, 0.55);
}

.hero-sub {
  text-align: center;
  color: var(--text-soft);
  font-size: 1.05rem;
  max-width: 760px;
  margin: 0.75rem auto 0 auto;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 1.25rem;
}

.trust-line {
  text-align: center;
  margin-top: 2.2rem;
  color: rgba(255,255,255,0.78);
  letter-spacing: 0.6px;
}

/* Side portraits */
.people-left {
  position: absolute;
  left: 0;
  bottom: 0;
  width: min(420px, 34vw);
  opacity: 0.95;
  filter: drop-shadow(0 18px 40px rgba(0,0,0,.65));
}

.woman-right {
  position: absolute;
  right: 0;
  bottom: 0;
  width: min(520px, 42vw);
  opacity: 0.98;
  filter: drop-shadow(0 18px 40px rgba(0,0,0,.65));
}

/* Keep content safe from overlapping images */
.hero-content {
  padding-top: 8.25rem;
  padding-bottom: 4.5rem;
}

/* Responsive adjustments */
@media (max-width: 991.98px) {
  .people-left,
  .woman-right {
    position: static;
    width: 100%;
    max-width: 520px;
    margin: 1.5rem auto 0 auto;
    display: block;
  }
  .hero-content {
    padding-top: 5.25rem;
    padding-bottom: 3.5rem;
  }
}

/* TWO-PANEL SERVICES (matches your screenshot style) */
.service-panel{
  position: relative;
  display: block;
  width: 100%;
  height: 380px;                 /* adjust height to taste */
  border-radius: 8px;
  overflow: hidden;
  text-decoration: none;
  border: 1px solid rgba(255,255,255,.08);
  background: #0b0b0d;
}

.service-panel__img{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.03);
}

.service-panel__overlay{
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0,0,0,.30) 0%, rgba(0,0,0,.25) 55%, rgba(0,0,0,.40) 100%),
    linear-gradient(180deg, rgba(0,0,0,.20) 0%, rgba(0,0,0,.30) 100%);
}

.service-panel__content{
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -40%);
  text-align: center;
  width: min(90%, 520px);
  color: #fff;
  z-index: 2;
}

.service-panel__title{
  margin: 0;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-size: clamp(1.25rem, 2.4vw, 2rem);
  text-shadow: 0 12px 28px rgba(0,0,0,.55);
}

.service-panel__text{
  margin: .45rem 0 0;
  color: rgba(255,255,255,.85);
  font-size: .95rem;
  text-shadow: 0 10px 20px rgba(0,0,0,.55);
}

/* Hover (subtle) */
.service-panel:hover .service-panel__img{
  transform: scale(1.06);
  transition: transform .35s ease;
}
.service-panel .service-panel__img{
  transition: transform .35s ease;
}


/* ######################### About Section css ################### */
/* ===== Diamond Elite About Section ===== */
.de-about{
  position: relative;
  overflow: hidden;
  background: #f3f3f6;
}

.de-about__bg{
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(90deg, rgba(255,255,255,.40) 0%, rgba(255,255,255,.20) 10%, rgba(255,255,255,.10) 30%, rgba(255,255,255,.10) 100%),
    url("../img/aboutbg.webp");
  background-size: cover;
  background-position: center;
  filter: saturate(0.85) contrast(0.95);
}

/* Left panel */
.de-about__panel{
  /* background: rgba(255,255,255,0.74);
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 12px;
  box-shadow: 0 18px 45px rgba(0,0,0,.10);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px); */
}

.de-about__logo{
  max-width: 360px;
  filter: drop-shadow(0 10px 25px rgba(0,0,0,.20));
}

.de-about__title{
  font-weight: 800;
  letter-spacing: .2px;
  color: #1f1f22;
  font-size: clamp(1.9rem, 2.4vw, 2.6rem);
}

.de-about__subtitle{
  font-weight: 800;
  letter-spacing: 1.5px;
  color: #7a5a2a; /* gold-ish */
  font-size: .95rem;
  text-transform: uppercase;
}

.de-about__subtitle-wrap{
  display: flex;
  align-items: center;
  gap: 12px;
}

.de-about__rule{
  height: 2px;
  flex: 1;
  background: linear-gradient(90deg, rgba(122,90,42,0.85), rgba(122,90,42,0));
}

.de-about__text{
  color: #2c2c31;
  font-size: 1.02rem;
  line-height: 1.6;
}

/* Services */
.de-about__h3{
  font-weight: 800;
  color: #6e5328;
  margin-top: .25rem;
}

.de-svc__icon{
  width: 56px;
  height: 56px;
  border-radius: 10px;
  background: rgba(0,0,0,0.04);
  border: 1px solid rgba(0,0,0,0.06);
}

.de-svc__title{
  font-weight: 800;
  color: #1f1f22;
  line-height: 1.2;
}

.de-svc__text{
  color: rgba(31,31,34,.80);
  font-size: .95rem;
}

/* Bullet list */
.de-about__list{
  margin: 0;
  padding-left: 1.1rem;
  color: #2c2c31;
}
.de-about__list li{
  margin: .4rem 0;
}

.de-svc i{
  color: #940101;
}

/* Person image */
.de-about__person-wrap{
  position: relative;
}
.de-about__person{
  max-height: 760px;
  width: auto;
  border-radius: 16px;
  /* box-shadow: 0 24px 70px rgba(0,0,0,.20); */
}

/* Mobile spacing */
@media (max-width: 991.98px){
  .de-about__subtitle-wrap{ flex-wrap: wrap; }
  .de-about__rule{ width: 100%; }
  .de-about__person{ max-height: 620px; }
}




/* ===== Contact Section ===== */
.de-contact{
  position: relative;
  overflow: hidden;
  background: #f3f3f6;
}

.de-contact__bg{
  position: absolute;
  inset: 0;
  background-image:

    url("../img/contactbg.webp");
  background-size: cover;
  background-position: center;
  filter: saturate(.9) contrast(.95);
}
@@media (max-width: 578px) {
  .de-contact__bg{
    position: absolute;
    inset: 0;
    background-image:

      url("../img/contactbg.webp");
    background-size: cover;
    background-position:left;
    filter: saturate(.9) contrast(.95);
  }
}

/* LEFT */
.de-contact__left{
  display: flex;
  /* flex-direction: column; */
  justify-content: center;
  gap: 14px;
}

.de-contact__logo{
  max-width: 250px;
  /* filter: drop-shadow(0 14px 28px rgba(0,0,0,.20)); */
}

.de-contact__people{
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0,0,0,.20);
  border: 1px solid rgba(0,0,0,.08);
}

/* RIGHT PANEL */
.de-contact__panel{
  /* background: rgba(255,255,255,0.86);
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 14px;
  box-shadow: 0 18px 45px rgba(0,0,0,.12);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px); */
}

.de-contact__title{
  font-weight: 900;
  letter-spacing: 1px;
  color: #2a2a2f;
  font-size: clamp(2.1rem, 3vw, 3.2rem);
  margin: 0;
}

.de-contact__lead{
  color: rgba(0,0,0,.60);
  font-size: 1.15rem;
  margin: 0;
}

/* FORM STYLES */
.de-label{
  font-weight: 700;
  color: rgba(0,0,0,.70);
  margin-bottom: .35rem;
}

.de-input{
  border-radius: 8px;
  border: 1px solid rgba(0,0,0,.12);
  padding: .55rem .9rem;
  background: rgba(255,255,255,.92);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.8);
}

.de-input:focus{
  border-color: rgba(177,15,22,.35);
  box-shadow: 0 0 0 .2rem rgba(177,15,22,.12);
}

/* BUTTON */
.de-contact__btn{
  border-radius: 10px;
  font-weight: 800;
  letter-spacing: .4px;
  color: #fff;
  background: linear-gradient(180deg, #b10f16 0%, #7e0a10 100%);
  border: 1px solid rgba(255,255,255,.15);
  box-shadow: 0 14px 30px rgba(177,15,22,.25);
}

.de-contact__btn:hover{
  filter: brightness(1.05);
  color: #fff;
}

/* Responsive */
@media (max-width: 991.98px){
  .de-contact__logo{ max-width: 420px; }
}



/* ################## Footer section CSS start ###################### */
/* ===== FOOTER ===== */
.de-footer{
  background: #0b0b0d;
  color: rgba(255,255,255,.75);
  border-top: 1px solid rgba(255,255,255,.08);
}

.de-footer__logo{
  max-width: 260px;
  filter: drop-shadow(0 10px 25px rgba(0,0,0,.6));
}

.de-footer__text{
  font-size: .95rem;
  line-height: 1.6;
  color: rgba(255,255,255,.7);
}

.de-footer__title{
  font-weight: 800;
  letter-spacing: .5px;
  color: #fff;
  margin-bottom: .75rem;
}

.de-footer__links{
  list-style: none;
  padding: 0;
  margin: 0;
}
.de-footer__links li{
  margin-bottom: .4rem;
}
.de-footer__links a{
  color: rgba(255,255,255,.7);
  text-decoration: none;
}
.de-footer__links a:hover{
  color: #fff;
}

/* Social Icons */
.de-footer__social{
  display: flex;
  gap: 14px;
}
.de-footer__social a{
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255,255,255,.08);
  color: #fff;
  font-size: 1rem;
  transition: all .25s ease;
}
.de-footer__social a:hover{
  background: linear-gradient(180deg, #b10f16, #7e0a10);
  transform: translateY(-2px);
}

/* Bottom Bar */
.de-footer__bottom{
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 1rem 0;
  font-size: .9rem;
  color: rgba(255,255,255,.6);
}

.de-footer__legal a{
  color: rgba(255,255,255,.6);
  text-decoration: none;
}
.de-footer__legal a:hover{
  color: #fff;
}
.de-footer__legal span{
  margin: 0 .4rem;
}
