/* ============================================================
   KEMITE GLOBAL GROUP — Main Stylesheet
   style/index.css
   ============================================================ */

/* ── CSS VARIABLES ── */
:root {
  --gold: #c9a84c;
  --gold-light: #e8c97a;
  --dark: #0a0a0f;
  --dark-2: #111118;
  --dark-3: #1a1a25;
  --dark-card: #13131e;
  --text-light: #e8e8f0;
  --text-muted: #8888aa;
}

/* ── RESET ── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--dark);
  color: var(--text-light);
  font-family: 'Open Sans', sans-serif;
  overflow-x: hidden;
}

/* ── TOPBAR ── */
.topbar {
  background: rgba(5, 5, 10, .98);
  border-bottom: 1px solid rgba(201, 168, 76, .15);
  padding: 7px 32px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 28px;
  font-family: 'Rajdhani', sans-serif;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .5px;
  flex-wrap: wrap;
}

.topbar a {
  color: var(--text-muted);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 5px;
  transition: color .3s;
}

.topbar a:hover {
  color: var(--gold);
}

.topbar .material-icons {
  font-size: 14px;
  color: var(--gold);
}

/* ── NAVBAR ── */
nav.top-nav {
  background: rgba(10, 10, 15, .97);
  border-bottom: 1px solid rgba(201, 168, 76, .18);
  position: sticky;
  top: 0;
  z-index: 1000;
  height: 100px;
  display: flex;
  align-items: center;
  padding: 0 32px;
  backdrop-filter: blur(12px);
  transition: padding .4s ease;
}

/* Scrolled: Logo bleibt links, Links zentrieren sich absolut */
nav.top-nav.scrolled .nav-links {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  margin: 0 auto;
  position: relative;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 16px;
  text-decoration: none;
  flex-shrink: 0;
  z-index: 1;
}

.logo-img {
  width: 58px;
  height: 58px;
  object-fit: contain;
  margin-right: 8px;
}

.brand-name {
  display: flex;
  flex-direction: row;
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.22rem;
  font-weight: 700;
  color: var(--text-light);
  line-height: 1.15;
}

.brand-name span {
  color: var(--gold);
}

.nav-links {
  display: flex;
  align-items: center;
  list-style: none;
}

.nav-links > li {
  position: relative;
}

.nav-links > li > a {
  color: var(--text-light);
  font-family: 'Rajdhani', sans-serif;
  font-size: .88rem;
  font-weight: 600;
  letter-spacing: .8px;
  text-decoration: none;
  padding: 8px 13px;
  display: flex;
  align-items: center;
  gap: 3px;
  transition: color .3s;
}

.nav-links > li > a:hover {
  color: var(--gold);
}

.nav-links > li > a .material-icons {
  font-size: 14px;
}

.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 190px;
  background: var(--dark-2);
  border: 1px solid rgba(201, 168, 76, .2);
  z-index: 2000;
  list-style: none;
  padding: 6px 0;
}

.dropdown-menu li {
  display: block;
  width: 100%;
}

.dropdown-menu li a {
  display: block;
  padding: 9px 18px;
  color: var(--text-muted);
  font-family: 'Rajdhani', sans-serif;
  font-size: .85rem;
  font-weight: 600;
  text-decoration: none;
  transition: background .2s, color .2s;
}

.dropdown-menu li a:hover {
  background: rgba(201, 168, 76, .08);
  color: var(--gold);
}

.nav-links > li:hover .dropdown-menu {
  display: block;
}

.sidenav {
  background: var(--dark-2);
}

.sidenav li > a {
  color: var(--text-light);
  font-family: 'Rajdhani', sans-serif;
  font-weight: 600;
}

.sidenav-sub li a {
  color: var(--text-muted);
  font-family: 'Rajdhani', sans-serif;
  font-size: .85rem;
}

/* ── BUTTONS ── */
.btn-gold {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gold);
  color: #0a0a0f;
  font-family: 'Rajdhani', sans-serif;
  font-size: .88rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 13px 28px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: background .3s, transform .2s, box-shadow .3s;
  clip-path: polygon(0 0, calc(100% - 11px) 0, 100% 11px, 100% 100%, 11px 100%, 0 calc(100% - 11px));
}

.btn-gold:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 26px rgba(201, 168, 76, .3);
  color: #0a0a0f;
}

.btn-gold .material-icons {
  font-size: 16px;
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--text-light);
  font-family: 'Rajdhani', sans-serif;
  font-size: .88rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 12px 24px;
  border: 1px solid rgba(255, 255, 255, .22);
  cursor: pointer;
  text-decoration: none;
  transition: border-color .3s, color .3s;
}

.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.btn-outline .material-icons {
  font-size: 15px;
}

/* ── SECTION SHARED ── */
.section-label {
  font-family: 'Rajdhani', sans-serif;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
  display: block;
}

.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.9rem, 3.8vw, 3rem);
  font-weight: 700;
  color: #fff;
}

.section-divider {
  width: 54px;
  height: 2px;
  background: var(--gold);
  margin: 16px 0;
}

.section-divider.center {
  margin: 16px auto;
}

.section-header {
  text-align: center;
  margin-bottom: 54px;
}

.section-header .section-divider {
  margin: 16px auto;
}

.section-desc {
  font-size: .93rem;
  color: var(--text-muted);
  max-width: 580px;
  margin: 0 auto;
  line-height: 1.85;
}

.sep-line {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

/* ── HERO ── */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('https://kemiteglobalgroup.com/images/galery/g2.jpeg');
  background-size: cover;
  background-position: center;
  filter: brightness(.3) saturate(.7);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, rgba(10, 10, 15, .93) 0%, rgba(10, 10, 15, .6) 50%, rgba(10, 10, 15, .15) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 48px;
  width: 100%;
}

.hero-badge {
  display: inline-block;
  border: 1px solid rgba(201, 168, 76, .5);
  color: var(--gold);
  font-family: 'Rajdhani', sans-serif;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  padding: 5px 16px;
  margin-bottom: 22px;
}

.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.6rem, 6vw, 5rem);
  font-weight: 700;
  line-height: 1.05;
  color: #fff;
  max-width: 720px;
  margin-bottom: 18px;
}

.hero-title .gold {
  color: var(--gold);
}

.hero-subtitle {
  font-size: clamp(.95rem, 1.8vw, 1.12rem);
  font-weight: 300;
  color: var(--text-muted);
  max-width: 540px;
  line-height: 1.75;
  margin-bottom: 38px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
}

.hero-stats {
  display: flex;
  gap: 44px;
  margin-top: 56px;
  padding-top: 36px;
  border-top: 1px solid rgba(201, 168, 76, .15);
  flex-wrap: wrap;
}

.stat-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}

.stat-label {
  font-family: 'Rajdhani', sans-serif;
  font-size: .73rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 4px;
}

/* ── CAROUSEL ── */
.section-carousel {
  background: var(--dark);
  position: relative;
  overflow: hidden;
}

.carousel-wrapper {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.carousel-track {
  display: flex;
  transition: transform .7s cubic-bezier(.77, 0, .18, 1);
  will-change: transform;
}

.carousel-slide {
  min-width: 100%;
  position: relative;
  height: 620px;
  overflow: hidden;
  flex-shrink: 0;
}

.carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center center;
  display: block;
  transition: transform 8s ease;
  background: var(--dark);
}

.carousel-slide.active img {
  transform: scale(1.04);
}

.carousel-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 70px 60px 32px;
  background: linear-gradient(0deg, rgba(10, 10, 15, .92) 0%, rgba(10, 10, 15, .55) 55%, transparent 100%);
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
}

.caption-label {
  font-family: 'Rajdhani', sans-serif;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 7px;
  display: block;
}

.caption-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.4rem, 3.2vw, 2.5rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.1;
}

.caption-sub {
  font-size: .82rem;
  color: rgba(232, 232, 240, .65);
  margin-top: 7px;
  max-width: 480px;
}

.caption-btn {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--gold);
  color: #0a0a0f;
  font-family: 'Rajdhani', sans-serif;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 11px 22px;
  text-decoration: none;
  white-space: nowrap;
  transition: background .3s;
  clip-path: polygon(0 0, calc(100% - 8px) 0, 100% 8px, 100% 100%, 8px 100%, 0 calc(100% - 8px));
}

.caption-btn:hover {
  background: var(--gold-light);
  color: #0a0a0f;
}

.caption-btn .material-icons {
  font-size: 14px;
}

.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 20;
  width: 46px;
  height: 46px;
  background: rgba(10, 10, 15, .72);
  border: 1px solid rgba(201, 168, 76, .4);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background .3s, border-color .3s;
  backdrop-filter: blur(6px);
}

.carousel-arrow:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: #0a0a0f;
}

.carousel-arrow .material-icons {
  font-size: 26px;
}

.carousel-prev {
  left: 22px;
}

.carousel-next {
  right: 22px;
}

.carousel-dots {
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 7px;
  z-index: 20;
}

.carousel-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .28);
  border: 1px solid rgba(201, 168, 76, .4);
  cursor: pointer;
  transition: background .3s, width .3s;
}

.carousel-dot.active {
  background: var(--gold);
  width: 22px;
  border-radius: 4px;
}

.carousel-counter {
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 20;
  font-family: 'Rajdhani', sans-serif;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: 2px;
  color: rgba(255, 255, 255, .45);
}

.carousel-counter span {
  color: var(--gold);
  font-size: 1.05rem;
}

.carousel-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 3px;
  background: var(--gold);
  z-index: 20;
  transition: none;
}

.carousel-progress.animating {
  transition: width 5s linear;
}

/* ── STATS BAR ── */
.section-stats {
  background: var(--dark-2);
  border-top: 1px solid rgba(201, 168, 76, .15);
  border-bottom: 1px solid rgba(201, 168, 76, .15);
  padding: 48px 20px;
}

.stats-inner {
  display: flex;
  justify-content: center;
  max-width: 900px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.stat-box {
  flex: 1;
  min-width: 180px;
  text-align: center;
  padding: 20px 32px;
  border-right: 1px solid rgba(201, 168, 76, .15);
}

.stat-box:last-child {
  border-right: none;
}

.stat-box .stat-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}

.stat-box .stat-label {
  font-family: 'Rajdhani', sans-serif;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 6px;
}

/* ── ABOUT ── */
.section-about {
  padding: 100px 20px;
  background: var(--dark);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.about-img-wrap {
  position: relative;
}

.about-img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  filter: brightness(.8);
}

.about-img-border {
  position: absolute;
  top: 20px;
  left: 20px;
  right: -20px;
  bottom: -20px;
  border: 1px solid rgba(201, 168, 76, .3);
  z-index: -1;
}

.about-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--gold);
  color: #0a0a0f;
  padding: 22px 26px;
  text-align: center;
}

.about-badge-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.2rem;
  font-weight: 700;
  display: block;
  line-height: 1;
}

.about-badge-text {
  font-family: 'Rajdhani', sans-serif;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.about-list {
  list-style: none;
  margin: 24px 0;
}

.about-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 13px;
  font-size: .86rem;
  color: var(--text-muted);
  line-height: 1.65;
}

.about-list li .material-icons {
  color: var(--gold);
  font-size: 16px;
  margin-top: 2px;
  flex-shrink: 0;
}

/* ── VISION / MISSION / VALUES ── */
.section-vmv {
  background: var(--dark-3);
  padding: 90px 20px;
  position: relative;
}

.vmv-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  max-width: 1200px;
  margin: 0 auto;
}

.vmv-card {
  background: var(--dark-card);
  border: 1px solid rgba(201, 168, 76, .12);
  padding: 38px 30px;
  transition: border-color .3s, transform .3s;
}

.vmv-card:hover {
  border-color: rgba(201, 168, 76, .5);
  transform: translateY(-5px);
}

.vmv-icon {
  width: 50px;
  height: 50px;
  border: 1px solid rgba(201, 168, 76, .35);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  margin-bottom: 18px;
}

.vmv-icon .material-icons {
  font-size: 23px;
}

.vmv-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 13px;
}

.vmv-text {
  font-size: .83rem;
  color: var(--text-muted);
  line-height: 1.8;
}

/* ── WHY CHOOSE US ── */
.section-why {
  background: var(--dark-2);
  padding: 90px 20px;
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.why-img {
  width: 100%;
  height: 440px;
  object-fit: cover;
  filter: brightness(.75);
}

.why-items {
  display: flex;
  flex-direction: column;
  gap: 26px;
}

.why-item {
  display: flex;
  gap: 16px;
}

.why-item-icon {
  width: 46px;
  height: 46px;
  background: rgba(201, 168, 76, .1);
  border: 1px solid rgba(201, 168, 76, .3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 2px;
}

.why-item-icon .material-icons {
  font-size: 21px;
}

.why-item-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.18rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 6px;
}

.why-item-text {
  font-size: .83rem;
  color: var(--text-muted);
  line-height: 1.75;
}

/* ── SERVICES ── */
.section-services {
  background: var(--dark);
  padding: 90px 20px;
  position: relative;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  max-width: 1200px;
  margin: 0 auto;
}

.service-card {
  background: var(--dark-card);
  border: 1px solid rgba(201, 168, 76, .12);
  overflow: hidden;
  transition: border-color .35s, transform .35s, box-shadow .35s;
  cursor: pointer;
}

.service-card:hover {
  border-color: var(--gold);
  transform: translateY(-6px);
  box-shadow: 0 14px 44px rgba(201, 168, 76, .16);
}

.service-card:hover .scard-img {
  filter: brightness(.45) saturate(.6);
  transform: scale(1.06);
}

.scard-img-wrap {
  height: 190px;
  overflow: hidden;
  position: relative;
}

.scard-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: filter .35s, transform .35s;
  filter: brightness(.35) saturate(.6);
}

.scard-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(10, 10, 15, .8) 100%);
}

.scard-icon {
  position: absolute;
  top: 13px;
  left: 13px;
  width: 36px;
  height: 36px;
  background: rgba(201, 168, 76, .15);
  border: 1px solid rgba(201, 168, 76, .4);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
}

.scard-icon .material-icons {
  font-size: 17px;
}

.scard-body {
  padding: 20px 22px 22px;
}

.scard-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
  line-height: 1.2;
}

.scard-desc {
  font-size: .8rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 14px;
}

.scard-cta {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: var(--gold);
  color: #0a0a0f;
  font-family: 'Rajdhani', sans-serif;
  font-size: .74rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 7px 15px;
  text-decoration: none;
  transition: background .3s;
}

.scard-cta:hover {
  background: var(--gold-light);
  color: #0a0a0f;
}

.scard-cta .material-icons {
  font-size: 12px;
}

/* ── QUOTE ── */
.section-quote {
  background: var(--dark-3);
  padding: 90px 20px;
  position: relative;
  overflow: hidden;
}

.quote-bg {
  position: absolute;
  inset: 0;
  background-image: url('https://kemiteglobalgroup.com/images/galery/g3.jpeg');
  background-size: cover;
  background-position: center;
  filter: brightness(.1) saturate(.4);
}

.quote-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: start;
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.quote-info-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 26px;
}

.qi-icon {
  width: 44px;
  height: 44px;
  background: rgba(201, 168, 76, .1);
  border: 1px solid rgba(201, 168, 76, .3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  flex-shrink: 0;
}

.qi-icon .material-icons {
  font-size: 20px;
}

.qi-label {
  font-family: 'Rajdhani', sans-serif;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 3px;
}

.qi-value {
  font-size: .88rem;
  color: var(--text-light);
}

.quote-form {
  background: rgba(19, 19, 30, .92);
  border: 1px solid rgba(201, 168, 76, .18);
  padding: 38px 34px;
  backdrop-filter: blur(8px);
}

.form-row {
  margin-bottom: 16px;
}

.form-row label {
  font-family: 'Rajdhani', sans-serif;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
  display: block;
  margin-bottom: 7px;
}

.form-row input,
.form-row select,
.form-row textarea {
  width: 100%;
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(201, 168, 76, .2);
  color: var(--text-light);
  font-family: 'Open Sans', sans-serif;
  font-size: .87rem;
  padding: 11px 14px;
  outline: none;
  transition: border-color .3s;
  -webkit-appearance: none;
  appearance: none;
}

.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  border-color: var(--gold);
}

.form-row select {
  background-color: var(--dark-card);
  cursor: pointer;
}

.form-row select option {
  background: var(--dark-card);
  color: var(--text-light);
}

.form-row textarea {
  resize: vertical;
  min-height: 90px;
}

.form-grid2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

/* ── TEAM ── */
.section-team {
  background: var(--dark-2);
  padding: 90px 20px;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  max-width: 900px;
  margin: 0 auto;
}

.team-card {
  background: var(--dark-card);
  border: 1px solid rgba(201, 168, 76, .12);
  overflow: hidden;
  text-align: center;
  transition: border-color .3s, transform .3s;
}

.team-card:hover {
  border-color: rgba(201, 168, 76, .5);
  transform: translateY(-5px);
}

.team-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  object-position: top;
  filter: brightness(.8);
}

.team-body {
  padding: 20px;
}

.team-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 4px;
}

.team-role {
  font-family: 'Rajdhani', sans-serif;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 13px;
}

.team-socials {
  display: flex;
  justify-content: center;
  gap: 8px;
}

.team-social {
  width: 30px;
  height: 30px;
  border: 1px solid rgba(201, 168, 76, .3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  text-decoration: none;
  transition: background .3s;
}

.team-social:hover {
  background: var(--gold);
  color: #0a0a0f;
}

.team-social .material-icons {
  font-size: 14px;
}

/* ── FOOTER ── */
footer {
  background: #05050a;
  padding: 68px 20px 26px;
  border-top: 1px solid rgba(201, 168, 76, .15);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  max-width: 1200px;
  margin: 0 auto 46px;
}

.footer-brand-desc {
  font-size: .82rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin: 13px 0 20px;
}

.footer-socials {
  display: flex;
  gap: 8px;
}

.social-btn {
  width: 33px;
  height: 33px;
  border: 1px solid rgba(201, 168, 76, .28);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  text-decoration: none;
  transition: background .3s, border-color .3s;
}

.social-btn:hover {
  background: var(--gold);
  color: #0a0a0f;
  border-color: var(--gold);
}

.social-btn .material-icons {
  font-size: 14px;
}

.footer-heading {
  font-family: 'Rajdhani', sans-serif;
  font-size: .73rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 9px;
}

.footer-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: .82rem;
  transition: color .3s;
  display: flex;
  align-items: center;
  gap: 7px;
}

.footer-links a:hover {
  color: var(--gold);
}

.footer-links a::before {
  content: '';
  width: 11px;
  height: 1px;
  background: var(--gold);
  opacity: .5;
  display: inline-block;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  margin-bottom: 11px;
  font-size: .81rem;
  color: var(--text-muted);
}

.footer-contact-item .material-icons {
  font-size: 15px;
  color: var(--gold);
  margin-top: 2px;
  flex-shrink: 0;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .06);
  padding-top: 20px;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-copy {
  font-size: .75rem;
  color: var(--text-muted);
}

.footer-copy span {
  color: var(--gold);
}

/* ── SCROLL TOP ── */
#scrollTop {
  position: fixed;
  bottom: 26px;
  right: 26px;
  width: 43px;
  height: 43px;
  background: var(--gold);
  color: #0a0a0f;
  border: none;
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 999;
  transition: background .3s;
}

#scrollTop:hover {
  background: var(--gold-light);
}

#scrollTop.visible {
  display: flex;
}

#scrollTop .material-icons {
  font-size: 20px;
}

/* ── MODAL ── */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, .72);
  z-index: 3000;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.modal-overlay.open {
  display: flex;
}

.modal-box {
  background: var(--dark-2);
  border: 1px solid rgba(201, 168, 76, .25);
  max-width: 720px;
  width: 100%;
  max-height: 80vh;
  overflow-y: auto;
  padding: 42px 46px;
  position: relative;
}

.modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  background: none;
  border: none;
  color: var(--text-muted);
  cursor: pointer;
  font-size: 22px;
  transition: color .3s;
}

.modal-close:hover {
  color: var(--gold);
}

.modal-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 16px;
}

.modal-text {
  font-size: .86rem;
  color: var(--text-muted);
  line-height: 1.85;
}

.modal-text ul {
  padding-left: 18px;
  margin-top: 10px;
}

.modal-text ul li {
  margin-bottom: 8px;
}

/* ── ANIMATIONS ── */
.fade-in {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .7s ease, transform .7s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── RESPONSIVE ── */

/* 1200px */
@media (max-width: 1200px) {
  .hero-content { padding: 0 32px; }
  .about-grid { gap: 50px; }
  .why-grid { gap: 40px; }
}

/* 1100px */
@media (max-width: 1100px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .quote-grid { gap: 50px; }
}

/* 992px – tablets */
@media (max-width: 992px) {
  .nav-links { display: none; }
  .sidenav-trigger { display: flex !important; align-items: center; }
  nav.top-nav { height: 64px; padding: 0 20px; }

  .about-grid,
  .why-grid,
  .quote-grid { grid-template-columns: 1fr; gap: 40px; }

  .about-img { height: 340px; }
  .why-img { height: 300px; }
  .about-img-border { display: none; }
  .about-badge { right: 0; bottom: 0; }

  .vmv-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 34px; }
  .team-grid { grid-template-columns: 1fr 1fr; }
  .hero-stats { gap: 28px; }
}

/* 768px – large phones */
@media (max-width: 768px) {
  nav.top-nav { padding: 0 16px; }
  .topbar { padding: 6px 16px; gap: 12px; }
  .topbar a:last-child { display: none; }

  .hero { min-height: 80vh; }
  .hero-content { padding: 0 18px; }
  .hero-subtitle { font-size: .9rem; }
  .hero-stats { gap: 18px; margin-top: 36px; padding-top: 24px; }
  .stat-number { font-size: 2.2rem; }

  .services-grid { grid-template-columns: 1fr; }
  .vmv-grid { grid-template-columns: 1fr; }
  .about-img { height: 260px; }
  .why-img { height: 240px; }

  .stat-box { border-right: none; border-bottom: 1px solid rgba(201,168,76,.12); }
  .stat-box:last-child { border-bottom: none; }

  .form-grid2 { grid-template-columns: 1fr; }
  .quote-form { padding: 26px 20px; }

  .carousel-caption { padding: 40px 16px 16px; flex-direction: column; align-items: flex-start; gap: 10px; }
  .carousel-slide { height: 360px; }
  .caption-btn { align-self: flex-start; }
}

/* 480px – phones */
@media (max-width: 480px) {
  .hero { min-height: 70vh; }
  .hero-stats { flex-direction: column; gap: 16px; border-top: none; padding-top: 0; margin-top: 28px; }
  .hero-actions { flex-direction: column; align-items: flex-start; }

  .about-grid { gap: 28px; }
  .about-img { height: 220px; }
  .about-badge { padding: 16px 18px; }
  .about-badge-num { font-size: 1.7rem; }

  .services-grid { grid-template-columns: 1fr; }
  .vmv-grid { grid-template-columns: 1fr; }

  .section-about { padding: 60px 14px; }
  .section-vmv, .section-why, .section-services, .section-team { padding: 60px 14px; }

  .stat-box { padding: 18px 14px; }
  .stat-box .stat-number { font-size: 2.8rem; }

  .carousel-slide { height: 280px; }
  .carousel-caption { padding: 30px 12px 12px; }
  .caption-title { font-size: 1.1rem; }
  .caption-sub { display: none; }
  .carousel-arrow { width: 36px; height: 36px; }
  .carousel-arrow .material-icons { font-size: 20px; }
  .carousel-prev { left: 6px; }
  .carousel-next { right: 6px; }

  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }

  .team-grid { grid-template-columns: 1fr; max-width: 340px; margin: 0 auto; }
  .modal-box { padding: 26px 16px; }
  .modal-title { font-size: 1.4rem; }
}

/* 360px – very small phones */
@media (max-width: 360px) {
  .hero { min-height: 60vh; }
  .brand-name { font-size: 1rem; }
  .logo-img { width: 38px; height: 38px; }
  .topbar a:nth-last-child(2) { display: none; }
  .carousel-slide { height: 230px; }
  .hero-title { font-size: 2rem; }
  .section-about, .section-vmv, .section-why, .section-services, .section-team { padding: 44px 12px; }
}