/* =========================================================
   Khaitan Holdings — style.css
   Pure CSS3 — no framework, no dependencies
   ========================================================= */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400;1,600&family=Poppins:wght@300;400;500;600;700&family=Montserrat:wght@400;500;600;700;800&display=swap');

/* ----------------------------------------------------------
   1. CSS VARIABLES
---------------------------------------------------------- */
:root {
  --navy:        #061138;
  --navy-light:  #0d1f5c;
  --navy-mid:    #0e1b45;
  --charcoal:    #080f24;
  --gold:        #D5AE82;
  --gold-light:  #e8c99a;
  --gold-dark:   #b8935c;
  --white:       #f5f5f5;
  --off-white:   #e8e8e8;
  --gray:        #7F8A99;
  --gray-light:  #c0c8d4;
  --gray-dark:   #3a4560;
  --section-alt: #790d05;
  --card-bg:     #EE2D1Fff;
  
  
--ocean-twilight: #5454A7ff;
--red: #FF0000ff;
--burnt-tangerine: #EE2D1Fff;
--black: #000000ff;
--pumpkin-spice: #F67E2Cff;



  --font-serif:  'Playfair Display', Georgia, serif;
  --font-sans:   'Poppins', system-ui, sans-serif;
  --font-ui:     'Montserrat', system-ui, sans-serif;

  --radius-sm:   4px;
  --radius:      8px;
  --radius-lg:   16px;

  --shadow:      0 8px 32px rgba(0,0,0,0.4);
  --shadow-gold: 0 4px 24px rgba(213,174,130,0.15);
  --transition:  0.35s cubic-bezier(0.4,0,0.2,1);

  --container:   1200px;
  --nav-h:       80px;
  --topbar-h:    42px;
}

/* ----------------------------------------------------------
   2. RESET & BASE
---------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-sans);
  color: var(--off-white);
  line-height: 1.7;
  overflow-x: hidden;
}

body.menu-open { overflow: hidden; }

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.section-pad { padding: 96px 0; }
.section-pad-sm { padding: 64px 0; }

/* ----------------------------------------------------------
   3. TOP BAR
---------------------------------------------------------- */
#top-bar {
  background: var(--charcoal);
  height: var(--topbar-h);
  display: flex;
  align-items: center;
  border-bottom: 1px solid rgba(213,174,130,0.12);
  position: relative;
  z-index: 200;
  
}

.top-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.top-bar-contact { display: flex; align-items: center; gap: 28px; }
.top-bar-contact a {
  font-family: var(--font-ui);
  font-size: 12.5px;
  font-weight: 500;
  color: var(--gray-light);
  display: flex;
  align-items: center;
  gap: 6px;
  transition: color var(--transition);
  letter-spacing: 0.02em;
}
.top-bar-contact a:hover { color: var(--gold); }
.top-bar-contact svg { width: 14px; height: 14px; flex-shrink: 0; }

.top-bar-right {
  font-family: var(--font-ui);
  font-size: 12px;
  color: var(--gray);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* ----------------------------------------------------------
   4. NAVBAR
---------------------------------------------------------- */
#navbar {
  position: fixed; /* sticky se fixed */
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  height: var(--nav-h);

  display: flex;
  align-items: center;

  /* FULLY TRANSPARENT */
  background: transparent;

  /* REMOVE DEFAULT BLUR */
  backdrop-filter: none;
  -webkit-backdrop-filter: none;

  border-bottom: 1px solid rgba(255,255,255,0.06);

  transition:
    background 0.4s ease,
    backdrop-filter 0.4s ease,
    box-shadow 0.4s ease,
    border-color 0.4s ease;
}

/* =========================
   SCROLLED NAVBAR
========================= */

#navbar.scrolled {

  /* PREMIUM GLASS EFFECT */
  background: rgba(8, 12, 20, 0.78);

  backdrop-filter: blur(16px) saturate(1.4);
  -webkit-backdrop-filter: blur(16px) saturate(1.4);

  box-shadow: 0 10px 40px rgba(0,0,0,0.35);

  border-bottom: 1px solid rgba(213, 174, 130, 0.5);
}

/* =========================
   NAV INNER
========================= */

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;

  width: 100%;
  max-width: var(--container);

  margin: 0 auto;
  padding: 0 24px;

  height: 100%;
}

/* =========================
   LOGO
========================= */

.nav-logo img {
  height: 65px;
  width: auto;
  display: block;

  filter: brightness(1.1);

  transition: transform 0.4s ease;
}

.nav-logo:hover img{
  transform: scale(1.03);
}

/* =========================
   MENU
========================= */

#nav-menu {
  display: flex;
  align-items: center;
  gap: 4px;
}

/* =========================
   LINKS
========================= */

.nav-link {
  font-family: var(--font-ui);
  font-size: 13px;
  font-weight: 600;

  color: #fff;

  padding: 8px 14px;

  letter-spacing: 0.06em;
  text-transform: uppercase;

  border-radius: var(--radius-sm);

  transition:
    color var(--transition),
    background var(--transition);

  position: relative;
}

.nav-link::after {
  content: '';

  position: absolute;

  left: 14px;
  right: 14px;
  bottom: 4px;

  height: 1.5px;

  background: var(--gold);

  transform: scaleX(0);
  transform-origin: left;

  transition: transform var(--transition);
}

.nav-link:hover,
.nav-link.active {
  color: var(--gold);
}

.nav-link:hover::after,
.nav-link.active::after {
  transform: scaleX(1);
}

/* =========================
   CTA BUTTON
========================= */

.nav-cta {
  margin-left: 16px;

  background: var(--gold);
  color: var(--navy) !important;

  font-family: var(--font-ui);
  font-size: 12px;
  font-weight: 700;

  letter-spacing: 0.08em;
  text-transform: uppercase;

  padding: 10px 22px;

  border-radius: 50px;

  transition:
    background var(--transition),
    transform var(--transition),
    box-shadow var(--transition);
}

.nav-cta::after {
  display: none;
}

.nav-cta:hover {
  background: var(--gold-light);

  transform: translateY(-2px);

  box-shadow: 0 8px 25px rgba(213,174,130,0.35);
}

/* =========================
   HAMBURGER
========================= */

#hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;

  padding: 8px;

  cursor: pointer;
  z-index: 201;

  background: transparent;
  border: none;
}

.bar {
  display: block;

  width: 24px;
  height: 2px;

  background: var(--gold);

  border-radius: 2px;

  transition:
    transform 0.3s ease,
    opacity 0.3s ease;
}

#hamburger.active .bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

#hamburger.active .bar:nth-child(2) {
  opacity: 0;
}

#hamburger.active .bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* =========================
   MOBILE OVERLAY
========================= */

#nav-overlay {
  display: none;

  position: fixed;
  inset: 0;

  background: rgba(0,0,0,0.65);

  z-index: 98;

  opacity: 0;

  transition: opacity var(--transition);
}

#nav-overlay.active {
  opacity: 1;
}

/* =========================
   MOBILE MENU
========================= */

@media(max-width: 991px){

  #hamburger{
    display: flex;
  }

  #nav-menu{
    position: fixed;

    top: 0;
    right: -100%;

    width: 300px;
    height: 100vh;

    background: #08101b;

    flex-direction: column;
    justify-content: center;

    gap: 28px;

    transition: right 0.4s ease;

    z-index: 200;
  }

  #nav-menu.active{
    right: 0;
  }

}

/* =========================
   HERO FIX
========================= */

.hero-slider{
  margin-top: 0;
}

.hero-content{
  padding-top: 80px;
}

/* ----------------------------------------------------------
   5. BUTTONS
---------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-ui);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 14px 32px;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
  cursor: pointer;
  white-space: nowrap;
}

.btn-gold {
  background: var(--gold);
  color: var(--navy);
  border: 2px solid var(--gold);
}
.btn-gold:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(213,174,130,0.35);
}

.btn-outline {
  background: transparent;
  color: var(--gold);
  border: 2px solid var(--gold);
}
.btn-outline:hover {
  background: rgba(213,174,130,0.08);
  transform: translateY(-2px);
}

.btn-white {
  background: var(--card-bg);
  color: var(--white);
  
}
.btn-white:hover {
  background: rgb(43, 63, 121);
  border-color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(43, 63, 121, 0.212);
}

/* ----------------------------------------------------------
   6. SECTION HEADINGS
---------------------------------------------------------- */
.section-label {
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-block;
  margin-bottom: 14px;
}

.section-label::before {
  content: '';
  display: inline-block;
  width: 28px;
  height: 1.5px;
  background: var(--gold);
  vertical-align: middle;
  margin-right: 10px;
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 700;
  /* color: #30363d; */
  color: var(--charcoal);
  line-height: 1.2;
  margin-bottom: 20px;
}

.section-title span,
.section-title em { color: var(--card-bg); font-style: italic; }

.section-sub {
  font-size: 16px;
  color: #585f69;
  max-width: 580px;
  line-height: 1.8;
}

.divider {
  width: 56px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), transparent);
  margin-bottom: 32px;
}

/* ----------------------------------------------------------
   7. HERO SECTION
---------------------------------------------------------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: -10% 0 0 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
  will-change: transform;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    130deg,
    rgba(6,17,56,0.92) 0%,
    rgba(6,17,56,0.78) 50%,
    rgba(6,17,56,0.65) 100%
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
  padding: 140px 0 100px;
}

.hero-eyebrow {
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.hero-eyebrow::before {
  content: '';
  display: block;
  width: 40px;
  height: 1px;
  background: var(--gold);
}

.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(36px, 5.5vw, 72px);
  font-weight: 700;
  line-height: 1.12;
  color: var(--white);
  margin-bottom: 24px;
}

.hero-title em {
  color: var(--gold);
  font-style: italic;
}

.hero-sub {
  font-size: clamp(15px, 1.8vw, 18px);
  color: var(--gray-light);
  max-width: 560px;
  line-height: 1.8;
  margin-bottom: 44px;
}

.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

.hero-scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  animation: bounce 2.2s ease-in-out infinite;
}

.hero-scroll span {
  font-family: var(--font-ui);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gray);
}

.hero-scroll-arrow {
  width: 28px;
  height: 28px;
  border: 1.5px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(8px); }
}

/* Page hero (inner pages) */
.page-hero {
  position: relative;
  height: 480px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
}

.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.801), rgba(0, 0, 0, 0.575));
  z-index: 1;
}

.page-hero-content {
  position: relative;
  z-index: 2;
}

.page-hero-title {
  font-family: var(--font-serif);
  font-size: clamp(32px, 5vw, 58px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 16px;
}

.page-hero-title em { color: var(--gold); font-style: italic; }

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-ui);
  font-size: 14px;
  color: var(--gray);
  letter-spacing: 0.05em;
}

.breadcrumb a { color: var(--gold); }
.breadcrumb a:hover { color: var(--gold-light); }
.breadcrumb span { color: var(--off-white); }

/* ----------------------------------------------------------
   8. STATS / COUNTERS
---------------------------------------------------------- */
.stats-section {
  /* background: linear-gradient(135deg, var(--charcoal) 0%, var(--navy-light) 100%); */
  border-top: 1px solid rgba(213,174,130,0.12);
  border-bottom: 1px solid rgba(213,174,130,0.12);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.stat-item {
  padding: 56px 40px;
  text-align: center;
  border-right: 1px solid rgba(213,174,130,0.1);
  position: relative;
}

.stat-item:last-child { border-right: none; }

.stat-value {
  font-family: var(--font-serif);
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 10px;
  display: block;
}

.stat-label {
  font-family: var(--font-ui);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--navy);
}

.stat-sub {
  font-size: 13px;
  color: var(--gray-light);
  margin-top: 6px;
}

/* ----------------------------------------------------------
   9. CHAIRMAN SECTION
---------------------------------------------------------- */
.chairman-section {
  background: #790d05;
}

.chairman-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 80px;
  align-items: center;
}

.chairman-image-wrap {
  position: relative;
}

.chairman-image-wrap::before {
  content: '';
  position: absolute;
  inset: -20px -20px 20px 20px;
  border: 2px solid rgba(213,174,130,0.25);
  border-radius: var(--radius);
  z-index: 0;
}

.chairman-image {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  border-radius: var(--radius);
}

.chairman-quote {
  font-family: var(--font-serif);
  font-size: clamp(17px, 2.2vw, 17px);
  font-style: italic;
  color: var(--off-white);
  line-height: 1.7;
  margin-bottom: 32px;
  padding-left: 28px;
  border-left: 3px solid var(--gold);
}

.chairman-name {
  font-family: var(--font-ui);
  font-size: 14px;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.chairman-title-text {
  font-size: 13px;
  color: var(--off-white);
  margin-top: 4px;
}

/* ----------------------------------------------------------
   10. ABOUT PREVIEW / SPLIT LAYOUT
---------------------------------------------------------- */
.split-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.split-grid.reverse { direction: rtl; }
.split-grid.reverse > * { direction: ltr; }

.split-image {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
}

.split-image img {
  width: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.split-image:hover img { transform: scale(1.04); }

.split-image-badge {
  position: absolute;
  bottom: 24px;
  left: 24px;
  background: var(--gold);
  color: var(--navy);
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 10px 18px;
  border-radius: var(--radius-sm);
}

/* ----------------------------------------------------------
   11. BUSINESS CARDS
---------------------------------------------------------- */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.cards-grid-2 { grid-template-columns: repeat(2, 1fr); }
.cards-grid-4 { grid-template-columns: repeat(4, 1fr); }

.biz-card {
  background: var(--card-bg);
  border: 1px solid rgba(213,174,130,0.1);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  display: flex;
  flex-direction: column;
}

.biz-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-gold), var(--shadow);
  border-color: rgba(213,174,130,0.35);
}

.biz-card-img {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.biz-card:hover .biz-card-img { transform: scale(1.05); }
.biz-card-img-wrap { overflow: hidden; }

.biz-card-body {
  padding: 28px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.biz-card-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  background: var(--gold-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  color: var(--card-bg);
}

.biz-card-icon svg { width: 24px; height: 24px; }

.biz-card-title {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
  line-height: 1.3;
}

.biz-card-text {
  font-size: 14px;
  color: var(--off-white);
  line-height: 1.75;
  flex: 1;
  margin-bottom: 20px;
}

.biz-card-link {
  font-family: var(--font-ui);
  font-size: 12px;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap var(--transition);
}

.biz-card-link:hover { gap: 10px; }

/* Base Card */
.expand-card {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius);
    margin-bottom: 20px;
    border: 1px solid rgba(255,255,255,0.1);

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* Dark Overlay */
.expand-card::before, .esg-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.753);
    backdrop-filter: blur(2px);
    z-index: 1;
    border-radius: var(--radius);
}

/* Content Above Overlay */
.expand-header,
.expand-body, .esg-icon, .esg-card-title, .esg-card-text {
    position: relative;
    z-index: 2;
}

.expand-card:hover,
.expand-card.open { border-color: rgba(213,174,130,0.3); }

.expand-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 28px;
  cursor: pointer;
  gap: 20px;
}

.expand-header-title {
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 600;
  color: var(--white);
  line-height: 1.3;
}

.expand-toggle {
  flex-shrink: 0;
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(213,174,130,0.3);
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
  cursor: pointer;
  background: none;
}

.expand-toggle:hover {
  background: rgba(213,174,130,0.1);
}

.expand-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease, padding 0.3s ease;
  padding: 0 28px;
}

.expand-card.open .expand-body {
  max-height: 1000px;
  padding: 0 28px 28px;
}

.expand-body p {
  color: var(--gray-light);
  font-size: 14.5px;
  line-height: 1.8;
  margin-bottom: 16px;
}

.expand-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.expand-tag {
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--gold);
  background: rgba(213,174,130,0.1);
  border: 1px solid rgba(213,174,130,0.2);
  padding: 5px 12px;
  border-radius: 20px;
}

/* ----------------------------------------------------------
   13. ENTITY CARDS (Trading entities)
---------------------------------------------------------- */
.entity-card {
  background: var(--card-bg);
  border: 1px solid rgba(213,174,130,0.1);
  border-radius: var(--radius);
  padding: 36px;
  position: relative;
  overflow: hidden;
  transition: border-color var(--transition), transform var(--transition);
}

.entity-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold-light));
  opacity: 0;
  transition: opacity var(--transition);
}

.entity-card:hover {
  border-color: rgba(213,174,130,0.3);
  transform: translateY(-4px);
  transition: all 0.3s ease;
}

.entity-card:hover::before { opacity: 1; }

.entity-name {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 700;
  color: var(--gold-light);
  margin-bottom: 8px;
}

.entity-location {
  font-family: var(--font-ui);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.entity-desc {
  font-size: 14px;
  color: var(--off-white);
  line-height: 1.8;
}

/* ----------------------------------------------------------
   14. ESG CARDS
---------------------------------------------------------- */
.esg-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }

.esg-card {
  background: var(--card-bg);
  border: 1px solid rgba(213,174,130,0.08);
  border-radius: var(--radius);
  padding: 32px;
  transition: border-color var(--transition), transform var(--transition);
  position: relative; 
  z-index: 2;
}

.esg-card:hover {
  border-color: rgba(213,174,130,0.3);
  transform: translateY(-4px);
}

.esg-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius);
  background: rgba(213,174,130,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--gold);
}

.esg-icon svg { width: 26px; height: 26px; }

.esg-card-title {
  font-family: var(--font-serif);
  font-size: 19px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
}

.esg-card-text {
  font-size: 14px;
  color: var(--gray-light);
  line-height: 1.8;
}

/* ESG Section layout */
.esg-section-block {
  padding: 64px 0;
  border-bottom: 1px solid rgba(213,174,130,0.08);
}

.esg-section-block:last-child { border-bottom: none; }

.esg-block-grid {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 64px;
  align-items: start;
}

.esg-block-num {
  font-family: var(--font-serif);
  font-size: 80px;
  font-weight: 700;
  color: rgba(213, 174, 130, 0.37);
  line-height: 1;
  margin-bottom: -20px;
}

.esg-block-title {
  font-family: var(--font-serif);
  font-size: 26px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
}

.esg-block-label {
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.esg-block-text {
  font-size: 15px;
  color: var(--gray-light);
  line-height: 1.85;
}

.esg-block-text p { margin-bottom: 14px; }
.esg-block-text p:last-child { margin-bottom: 0; }

.esg-list {
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.esg-list li {
  font-size: 14px;
  color: var(--gray-light);
  padding-left: 22px;
  position: relative;
  line-height: 1.7;
}

.esg-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 9px;
  width: 8px;
  height: 1.5px;
  background: var(--gold);
}

/* ----------------------------------------------------------
   15. TIMELINE
---------------------------------------------------------- */
.timeline {
  position: relative;
  padding-left: 48px;
  margin-top: 40px;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 16px;
  top: 8px;
  bottom: 8px;
  width: 2px;
  background: linear-gradient(180deg, var(--gold) 0%, rgba(213,174,130,0.1) 100%);
}

.timeline-item {
  position: relative;
  margin-bottom: 48px;
  opacity: 0;
  transform: translateX(-24px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.timeline-item.revealed {
  opacity: 1;
  transform: translateX(0);
}

.timeline-item:last-child { margin-bottom: 0; }

.timeline-dot {
  position: absolute;
  left: -40px;
  top: 4px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--navy);
  border: 2.5px solid var(--gold);
  z-index: 1;
}

.timeline-year {
  font-family: var(--font-ui);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--gold);
  margin-bottom: 6px;
  text-transform: uppercase;
}

.timeline-event {
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 8px;
}

.timeline-desc {
  font-size: 14px;
  color: var(--gray-light);
  line-height: 1.75;
}

/* ----------------------------------------------------------
   16. VALUES GRID
---------------------------------------------------------- */
.values-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }

.value-card {
  background: var(--card-bg);
  border: 1px solid rgba(213,174,130,0.1);
  border-radius: var(--radius);
  padding: 28px 24px;
  text-align: center;
  transition: border-color var(--transition), transform var(--transition);
}

.value-card:hover {
  border-color: rgba(213,174,130,0.35);
  transform: translateY(-4px);
}

.value-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(213,174,130,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
  color: var(--gold);
}

.value-icon svg { width: 20px; height: 20px; }

.value-title {
  font-family: var(--font-ui);
  font-size: 13px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* ----------------------------------------------------------
   17. TEAM CARDS
---------------------------------------------------------- */
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }

.team-card {
  background: var(--card-bg);
  border: 1px solid rgba(213,174,130,0.1);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color var(--transition), transform var(--transition);
}

.team-card:hover {
  border-color: rgba(213,174,130,0.3);
  transform: translateY(-6px);
}

.team-card-photo-wrap {
  position: relative;
  overflow: hidden;
}

.team-card-photo {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: top center;
  display: block;
  transition: transform 0.5s ease;
}

.team-card:hover .team-card-photo { transform: scale(1.05); }

.team-card-photo-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(6,17,56,0.9) 0%, transparent 50%);
}

.team-card-body { padding: 24px; }

.team-card-name {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
}

.team-card-designation {
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}

.team-card-bio {
  font-size: 13.5px;
  color: var(--gray-light);
  line-height: 1.75;
  margin-bottom: 16px;
}

.team-card-expand {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease;
}

.team-card.expanded .team-card-expand { max-height: 600px; }

.team-card-expand-inner {
  border-top: 1px solid rgba(213,174,130,0.12);
  padding-top: 16px;
  margin-top: 4px;
  font-size: 13px;
  color: var(--gray-light);
  line-height: 1.8;
}

.team-card-toggle {
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  background: none;
  border: 1px solid rgba(213,174,130,0.3);
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all var(--transition);
  position: relative;
  z-index: 10;
}

.team-card-toggle:hover { background: rgba(213,174,130,0.1); }

/* ----------------------------------------------------------
   18. CONTACT PAGE
---------------------------------------------------------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: start;
}

.office-loc-grid {
      display: grid;
      grid-template-rows: repeat(3, 1fr);
      gap: 20px;
      margin-bottom: 32px;
    }
    .office-loc-card {
      position: relative;
      border-radius: 4px;
      overflow: hidden;
      min-height: 240px;
      display: flex;
      flex-direction: column;
      justify-content: flex-end;
    }
    .office-loc-bg {
      position: absolute;
      inset: 0;
      background-size: cover;
      background-position: center;
    }
    .office-loc-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(to top, rgba(5,10,35,0.92) 0%, rgba(5,10,35,0.45) 60%, rgba(5,10,35,0.15) 100%);
    }
    .office-loc-content {
      position: relative;
      z-index: 2;
      padding: 20px;
    }
    .office-loc-city {
      font-family: var(--font-heading);
      font-size: 1.2rem;
      font-weight: 700;
      color: #fff;
      margin: 0 0 2px;
      letter-spacing: 0.02em;
    }
    .office-loc-country {
      font-size: 11px;
      font-weight: 600;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--gold);
      margin: 0 0 10px;
    }
    .office-loc-addr {
      display: flex;
      gap: 8px;
      align-items: flex-start;
    }
    .office-loc-addr svg {
      width: 14px;
      height: 14px;
      flex-shrink: 0;
      margin-top: 2px;
      color: var(--gold);
    }
    .office-loc-addr span {
      font-size: 12px;
      line-height: 1.6;
      color: rgba(255,255,255,0.8);
    }
    .maps-grid {
      display: grid;
      grid-template-rows: repeat(3, 1fr);
      gap: 20px;
      margin-top: 28px;
    }
    .map-item {
      border-radius: 4px;
      overflow: hidden;
    }
    .map-item-label {
      background: var(--card-bg);
      padding: 8px 12px;
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: var(--gold);
      border-bottom: 1px solid rgba(255,255,255,0.06);
    }
    .map-item iframe {
      display: block;
      width: 100%;
      height: 180px;
      border: 0;
    }
    .contact-details-block {
      background: var(--card-bg);
      border: 1px solid rgba(255,255,255,0.07);
      border-radius: 4px;
      padding: 24px 28px;
      margin-bottom: 0;
      display: flex;
      gap: 32px;
      flex-wrap: wrap;
      align-items: flex-start;
    }
    .contact-details-item {
      display: flex;
      gap: 10px;
      align-items: flex-start;
    }
    .contact-details-item svg {
      width: 18px;
      height: 18px;
      flex-shrink: 0;
      color: var(--gold);
      margin-top: 2px;
    }
    .contact-details-item p {
      font-size: 14px;
      line-height: 1.7;
      color: var(--text-muted);
      margin: 0;
    }
    .contact-details-item strong {
      display: block;
      color: var(--text-light);
      font-size: 12px;
      font-weight: 700;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      margin-bottom: 4px;
    }
    @media (max-width: 900px) {
      .office-loc-grid { grid-template-columns: 1fr; }
      .maps-grid { grid-template-columns: 1fr; }
    }
    @media (max-width: 640px) {
      .contact-details-block { flex-direction: column; gap: 20px; }
    }
.office-detail svg { width: 15px; height: 15px; flex-shrink: 0; color: var(--gold); margin-top: 3px; }

/* CONTACT FORM */
.contact-form { display: flex; flex-direction: column; gap: 20px; }

.form-group { display: flex; flex-direction: column; gap: 8px; }

.form-group label {
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray-light);
}

.form-group input,
.form-group textarea,
.form-group select {
  background: var(--card-bg);
  border: 1px solid rgba(213,174,130,0.2);
  border-radius: var(--radius-sm);
  color: var(--white);
  font-family: var(--font-sans);
  font-size: 14px;
  padding: 14px 18px;
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
  width: 100%;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(213,174,130,0.1);
}

.form-group input.error,
.form-group textarea.error { border-color: #e05252; }

.form-group textarea { min-height: 140px; resize: vertical; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }

.form-submit {
  background: var(--gold);
  color: var(--navy);
  font-family: var(--font-ui);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 16px 40px;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  width: 100%;
}

.form-submit:hover:not(:disabled) {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(213,174,130,0.3);
}

.form-submit:disabled { opacity: 0.6; cursor: not-allowed; }

.form-feedback {
  font-size: 14px;
  padding: 14px 18px;
  border-radius: var(--radius-sm);
  margin-top: -4px;
}

.form-feedback.success-msg {
  background: rgba(52,199,89,0.1);
  border: 1px solid rgba(52,199,89,0.3);
  color: #5cd679;
}

.form-feedback.error-msg {
  background: rgba(224,82,82,0.1);
  border: 1px solid rgba(224,82,82,0.3);
  color: #e07575;
}

/* ----------------------------------------------------------
   19. CTA SECTION
---------------------------------------------------------- */
.cta-section {
  /* background: linear-gradient(135deg, var(--navy-light) 0%, var(--navy-mid) 50%, var(--charcoal) 100%); */
  position: relative;
  overflow: hidden;
  text-align: center;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -80px;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(213,174,130,0.06) 0%, transparent 70%);
}

.cta-section .container { position: relative; z-index: 1; }

.cta-title {
  font-family: var(--font-serif);
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 700;
  color: var(--section-alt);
  margin-bottom: 16px;
}

.cta-sub {
  font-size: 16px;
  color: #585f69;
  max-width: 520px;
  margin: 0 auto 40px;
  line-height: 1.8;
}

.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ----------------------------------------------------------
   20. ESG SNAPSHOT PILLS
---------------------------------------------------------- */
.snapshot-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }

.snapshot-pill {
  background: rgba(213,174,130,0.07);
  border: 1px solid rgba(213,174,130,0.15);
  border-radius: var(--radius);
  padding: 24px 20px;
  text-align: center;
}

.snapshot-num {
  font-family: var(--font-serif);
  font-size: 36px;
  font-weight: 700;
  color: var(--gold);
  display: block;
  margin-bottom: 6px;
}

.snapshot-label {
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray-light);
}

/* ----------------------------------------------------------
   21. FOOTER
---------------------------------------------------------- */
footer {
  background: var(--section-alt);
  border-top: 1px solid rgba(213,174,130,0.12);
}

.footer-main {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: 60px;
  padding: 72px 0 56px;
}

.footer-brand-logo {
  height: 85px;
  width: auto;
  margin-bottom: 20px;
  filter: brightness(1.1);
}

.footer-brand-text {
  font-size: 14px;
  color: var(--off-white);
  line-height: 1.8;
  margin-bottom: 28px;
  max-width: 300px;
}

.footer-social {
  display: flex;
  gap: 10px;
}

.footer-social-link {
  width: 38px;
  height: 38px;
  border-radius: var(--radius-sm);
  border: 1px solid rgb(213, 174, 130);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  transition: all var(--transition);
}

.footer-social-link:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(213,174,130,0.08);
}

.footer-social-link svg { width: 16px; height: 16px; }

.footer-col-title {
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.footer-links { display: flex; flex-direction: column; gap: 10px; }

.footer-links a {
  font-size: 14px;
  color: var(--white);
  transition: color var(--transition);
}

.footer-links a:hover { color: var(--gold-light); }

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--white);
  margin-bottom: 12px;
  line-height: 1.6;
}

.footer-contact-item svg { width: 17px; height: 17px; flex-shrink: 0; color: var(--gold-dark); margin-top: 2px; }

.footer-bottom {
  border-top: 1px solid rgb(255, 255, 255);
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.footer-bottom-copy {
  font-size: 13px;
  color: var(--off-white);
}

.footer-bottom-links {
  display: flex;
  gap: 24px;
}

.footer-bottom-links a {
  font-size: 13px;
  color: var(--off-white);
  transition: color var(--transition);
}

.footer-bottom-links a:hover { color: var(--gold); }

/* ----------------------------------------------------------
   22. SCROLL-TO-TOP
---------------------------------------------------------- */
#scroll-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 44px;
  height: 44px;
  background: var(--gold);
  color: var(--navy);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 90;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity var(--transition), transform var(--transition);
  box-shadow: 0 4px 16px rgba(213,174,130,0.3);
}

#scroll-top.visible { opacity: 1; transform: translateY(0); }

#scroll-top svg { width: 18px; height: 18px; }

/* ----------------------------------------------------------
   23. SCROLL REVEAL ANIMATIONS
---------------------------------------------------------- */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal-left {
  opacity: 0;
  transform: translateX(-36px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal-right {
  opacity: 0;
  transform: translateX(36px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal-scale {
  opacity: 0;
  transform: scale(0.92);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.revealed,
.reveal-left.revealed,
.reveal-right.revealed,
.reveal-scale.revealed {
  opacity: 1;
  transform: none;
}

.stagger-item {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.stagger-item.revealed { opacity: 1; transform: none; }

/* delay helpers */
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }

/* ----------------------------------------------------------
   24. GALLERY / IMAGE GRID
---------------------------------------------------------- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: 240px 240px;
  gap: 12px;
}

.gallery-item {
  overflow: hidden;
  border-radius: var(--radius-sm);
  position: relative;
}

.gallery-item:nth-child(1) { grid-column: span 2; grid-row: span 2; }
.gallery-item:nth-child(4) { grid-column: span 2; }

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  display: block;
}

.gallery-item:hover img { transform: scale(1.07); }

/* ----------------------------------------------------------
   25. MISC UTILITIES
---------------------------------------------------------- */
.text-gold { color: var(--gold); }
.text-gray { color: var(--gray-light); }
.text-center { text-align: center; }
.text-center .section-sub { margin: 0 auto; }
.text-center .divider { margin-left: auto; margin-right: auto; }

.bg-alt { background: var(--section-alt); }
.bg-navy-light { background: var(--navy-light); }

.mt-8 { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mt-48 { margin-top: 48px; }
.mt-64 { margin-top: 64px; }
.mb-8  { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
.mb-48 { margin-bottom: 48px; }
.mb-64 { margin-bottom: 64px; }

.pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 20px;
  background: rgb(121, 13, 5);
  border: 1px solid var(--gold);
  color: var(--white);
}

.gold-line {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0.2;
  margin: 64px 0;
}

/* Map placeholder */
.map-placeholder {
  width: 100%;
  height: 300px;
  background: var(--card-bg);
  border: 1px solid rgba(213,174,130,0.1);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 12px;
  color: var(--off-white);
  margin-top: 32px;
}

.map-placeholder svg { width: 36px; height: 36px; color: var(--gold); opacity: 0.5; }
.map-placeholder p { font-size: 14px; }

/* logo cards */
/* ==========================
   CORPORATE LOGO SECTION
========================== */

.logo-history-section{
    width:100%;
   

    margin:auto;
    padding:80px 40px;

    display:grid;
    grid-template-columns:repeat(2,1fr);

    gap:40px;
}


/* Card */

.logo-card{
    text-align:center;
}


.logo-card h2{

    color: var(--gold-light);

    font-size: 24px;

    margin-bottom:28px;

    font-family: 'Playfair Display', serif;

}



/* Box */

.logo-box{

    position:relative;

    background:#fff;

    min-height:295px;

    display:flex;

    align-items:center;

    justify-content:center;

    padding:50px;

    overflow:hidden;

    box-shadow:
        0 0 20px rgba(0,0,0,.03);

}


.logo-box img{

    width:100%;

    object-fit:contain;

}



/* Decorative Corners */

.corner{
    position:absolute;
}


/* Top Left */

.corner.tl{

    top:0;
    left:0;

    width:80px;
    height:80px;

    border-top:3px solid red;

    border-left:3px solid #333;

}


/* Bottom Right */

.corner.br{

    bottom:0;
    right:0;

    width:80px;
    height:80px;

    border-bottom:3px solid red;

    border-right:3px solid #333;

}



/* Responsive */

@media(max-width:900px){

.logo-history-section{

grid-template-columns:1fr;

padding:50px 20px;

}

.logo-card h2{

font-size:32px;

}

.logo-box{

min-height:220px;

padding:35px;

}

}


@media(max-width:600px){

.logo-card h2{

font-size:24px;

}

.logo-box{

min-height:180px;

padding:25px;

}

.logo-box img{

max-width:260px;

}

.corner{

width:55px !important;
height:55px !important;

}

}
/* ----------------------------------------------------------
   26. RESPONSIVE
---------------------------------------------------------- */
@media (max-width: 1100px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item { border-right: none; border-bottom: 1px solid rgba(213,174,130,0.1); }
  .stat-item:nth-child(odd) { border-right: 1px solid rgba(213,174,130,0.1); }
  .stat-item:nth-child(3), .stat-item:nth-child(4) { border-bottom: none; }
  .footer-main { grid-template-columns: 1fr 1fr; gap: 40px; }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  .chairman-grid { grid-template-columns: 1fr; gap: 48px; }
  .chairman-image { max-width: 360px; }
  .split-grid { grid-template-columns: 1fr; gap: 48px; }
  .split-grid.reverse { direction: ltr; }
  .cards-grid { grid-template-columns: repeat(2, 1fr); }
  .cards-grid-4 { grid-template-columns: repeat(2, 1fr); }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .esg-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .snapshot-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-template-rows: auto; }
  .gallery-item:nth-child(1) { grid-column: span 1; grid-row: span 1; }
  .gallery-item:nth-child(4) { grid-column: span 1; }
  .esg-block-grid { grid-template-columns: 1fr; gap: 20px; }
  .esg-block-num { font-size: 48px; margin-bottom: 0; }
}

@media (max-width: 700px) {
  :root { --nav-h: 68px; --topbar-h: 36px; }
  .section-pad { padding: 64px 0; }
  .top-bar-right { display: none; }
  .top-bar-contact { gap: 16px; }
  .top-bar-contact a { font-size: 11px; }

  #nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    height: 100vh;
    width: min(300px, 85vw);
    background: var(--charcoal);
    flex-direction: column;
    align-items: flex-start;
    padding: 96px 32px 40px;
    gap: 4px;
    z-index: 99;
    transition: right 0.38s cubic-bezier(0.4,0,0.2,1);
    border-left: 1px solid rgba(213,174,130,0.12);
  }

  #nav-menu.open { right: 0; }
  #nav-overlay { display: block; pointer-events: none; }
  #nav-overlay.active { pointer-events: auto; }

  .nav-link { font-size: 14px; width: 100%; padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,0.05); }
  .nav-link::after { display: none; }
  .nav-cta { margin-left: 0; margin-top: 16px; width: 100%; justify-content: center; }
  #hamburger { display: flex; }

  .hero-content { padding: 120px 0 80px; }
  .hero-actions { flex-direction: column; }
  .btn { width: 100%; justify-content: center; }
  .page-hero { height: 360px; }
  .cards-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .esg-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .snapshot-grid { grid-template-columns: repeat(2, 1fr); }
  .form-row { grid-template-columns: 1fr; }
  .footer-main { grid-template-columns: 1fr; gap: 36px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .footer-bottom-links { justify-content: center; }
  .cta-actions { flex-direction: column; align-items: center; }
  .gallery-grid { grid-template-columns: 1fr; grid-template-rows: auto; }
  .gallery-item:nth-child(1),
  .gallery-item:nth-child(4) { grid-column: span 1; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
}

.bg-alt .section-title, .chairman-section .section-title{
  font-family: var(--font-serif);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 700;
  color: #f5f5f5;
  line-height: 1.2;
  margin-bottom: 20px;
}

.bg-alt .section-title span,
.bg-alt .section-title em { color: var(--gold); font-style: italic; }

.bg-alt .section-sub {
  font-size: 16px;
  color: var(--off-white);
  max-width: 580px;
  line-height: 1.8;
}


/* =========================
   HERO SLIDER
========================= */

.hero-slider {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  background: #000;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: all 1s ease;
}

.hero-slide.active {
  opacity: 1;
  visibility: visible;
  z-index: 2;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1);
  transition: transform 7s ease;
}

.hero-slide.active .hero-bg {
  transform: scale(1.08);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(0,0,0,0.75),
    rgba(0,0,0,0.45)
  );
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 991px) {

  .hero-title {
    font-size: 48px;
  }

  .hero-sub {
    font-size: 16px;
  }

}

@media (max-width: 767px) {

  .hero-slider {
    height: 90vh;
  }

  .hero-title {
    font-size: 34px;
  }

  .hero-sub {
    font-size: 15px;
    line-height: 1.7;
  }

  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .btn {
    width: 100%;
    max-width: 280px;
  }

  .slider-btn {
    width: 45px;
    height: 45px;
    font-size: 20px;
  }

  .prev {
    left: 15px;
  }

  .next {
    right: 15px;
  }

}