/* ============================================
   RAHEJA GROUP — Premium Luxury Theme
   Color System:
     --charcoal:  #1A1A2E
     --gold:      #C9A96E
     --ivory:     #FAF8F5
     --dark:      #0D0D1A
   ============================================ */

/* ---------- Reset & Base ---------- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --charcoal: #1A1A2E;
  --charcoal-light: #2A2A40;
  --gold: #C9A96E;
  --gold-light: #D4BA88;
  --gold-dark: #A8894E;
  --ivory: #FAF8F5;
  --ivory-dark: #F0EDE8;
  --dark: #0D0D1A;
  --white: #FFFFFF;
  --gray-100: #F5F5F5;
  --gray-200: #E8E8E8;
  --gray-300: #D1D1D1;
  --gray-500: #888888;
  --gray-700: #444444;

  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  --shadow-sm: 0 2px 8px rgba(0,0,0,.06);
  --shadow-md: 0 8px 30px rgba(0,0,0,.10);
  --shadow-lg: 0 20px 60px rgba(0,0,0,.15);
  --shadow-gold: 0 8px 30px rgba(201,169,110,.25);

  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 30px;

  --transition: .35s cubic-bezier(.25,.46,.45,.94);
  --transition-slow: .6s cubic-bezier(.25,.46,.45,.94);
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  color: var(--charcoal);
  background: var(--ivory);
  line-height: 1.7;
  overflow-x: hidden;
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--transition);
}

ul { list-style: none; }

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

.gold-text { color: var(--gold); }

/* ---------- Preloader ---------- */
#preloader {
  position: fixed;
  inset: 0;
  background: var(--dark);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  transition: opacity .6s ease, visibility .6s ease;
}

#preloader.loaded {
  opacity: 0;
  visibility: hidden;
}

.preloader-inner { text-align: center; }

.preloader-logo {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: .3em;
  margin-bottom: 24px;
}

.preloader-bar {
  width: 200px;
  height: 2px;
  background: rgba(255,255,255,.1);
  border-radius: 2px;
  overflow: hidden;
}

.preloader-progress {
  height: 100%;
  width: 0;
  background: var(--gold);
  animation: preload 1.5s ease-in-out forwards;
}

@keyframes preload {
  to { width: 100%; }
}

/* ---------- Navigation ---------- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: all var(--transition);
}

.navbar.scrolled {
  background: rgba(13,13,26,.95);
  backdrop-filter: blur(20px);
  padding: 12px 0;
  box-shadow: 0 4px 30px rgba(0,0,0,.2);
}

.nav-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.nav-logo .logo-text {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: .2em;
}

.nav-logo .logo-sub {
  font-family: var(--font-body);
  font-size: .75rem;
  font-weight: 300;
  color: var(--white);
  letter-spacing: .35em;
  text-transform: uppercase;
  opacity: .7;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-link {
  font-size: .875rem;
  font-weight: 400;
  color: rgba(255,255,255,.8);
  padding: 10px 16px;
  letter-spacing: .04em;
  display: flex;
  align-items: center;
  gap: 4px;
  transition: color var(--transition);
}

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

.nav-icon {
  width: 14px;
  height: 14px;
  transition: transform var(--transition);
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown .dropdown-content {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 220px;
  background: rgba(26,26,46,.97);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(201,169,110,.15);
  border-radius: var(--radius-md);
  padding: 12px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all var(--transition);
  box-shadow: var(--shadow-lg);
}

.nav-dropdown:hover .dropdown-content {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-dropdown:hover .nav-icon {
  transform: rotate(180deg);
}

.dropdown-content a {
  display: block;
  padding: 10px 24px;
  font-size: .85rem;
  color: rgba(255,255,255,.7);
  transition: all var(--transition);
}

.dropdown-content a:hover {
  color: var(--gold);
  background: rgba(201,169,110,.08);
  padding-left: 30px;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}

.nav-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--gold);
  font-size: .875rem;
  font-weight: 500;
  letter-spacing: .03em;
}

.nav-phone-icon {
  width: 16px;
  height: 16px;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition);
}

.nav-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ---------- Hero Section ---------- */
.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-slider {
  position: absolute;
  inset: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1.1);
  transition: opacity 1.2s ease, transform 6s ease;
}

.hero-slide.active {
  opacity: 1;
  transform: scale(1);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(13,13,26,.7) 0%,
    rgba(13,13,26,.5) 50%,
    rgba(13,13,26,.8) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  padding: 0 24px;
}

.hero-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 24px;
}

.hero-badge span:not(.badge-line) {
  font-family: var(--font-body);
  font-size: .8rem;
  font-weight: 400;
  color: var(--gold);
  letter-spacing: .3em;
  text-transform: uppercase;
}

.badge-line {
  width: 60px;
  height: 1px;
  background: var(--gold);
  opacity: .5;
}

.hero-content h1 {
  font-family: var(--font-heading);
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 20px;
}

.hero-subtitle {
  font-size: 1.125rem;
  font-weight: 300;
  color: rgba(255,255,255,.75);
  letter-spacing: .03em;
  margin-bottom: 40px;
}

.hero-ctas {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-slider-nav {
  position: absolute;
  bottom: 80px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  z-index: 3;
}

.slider-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,.5);
  background: transparent;
  cursor: pointer;
  transition: all var(--transition);
}

.slider-dot.active {
  background: var(--gold);
  border-color: var(--gold);
  transform: scale(1.2);
}

.hero-scroll {
  position: absolute;
  bottom: 30px;
  right: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 3;
}

.hero-scroll span {
  font-size: .7rem;
  letter-spacing: .2em;
  color: rgba(255,255,255,.5);
  text-transform: uppercase;
  writing-mode: vertical-rl;
}

.scroll-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 1; transform: scaleY(1); }
  50% { opacity: .4; transform: scaleY(.6); }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 36px;
  font-family: var(--font-body);
  font-size: .875rem;
  font-weight: 500;
  letter-spacing: .08em;
  text-transform: uppercase;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  transition: all var(--transition);
}

.btn-gold {
  background: var(--gold);
  color: var(--dark);
}

.btn-gold:hover {
  background: var(--gold-dark);
  box-shadow: var(--shadow-gold);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,.4);
}

.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.btn-outline-light {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,.4);
}

.btn-outline-light:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.btn-dark {
  background: var(--charcoal);
  color: var(--white);
}

.btn-dark:hover {
  background: var(--charcoal-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* ---------- Section Shared ---------- */
.section {
  padding: 120px 0;
  position: relative;
}

.section-label {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}

.section-label span:not(.label-line) {
  font-size: .8rem;
  font-weight: 500;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--gold);
}

.label-line {
  width: 40px;
  height: 1px;
  background: var(--gold);
}

.label-line.light { background: rgba(255,255,255,.4); }

.centered-label {
  justify-content: center;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 1.05rem;
  font-weight: 300;
  color: var(--gray-500);
  max-width: 580px;
  margin: 0 auto;
}

.section-header.centered {
  text-align: center;
  margin-bottom: 64px;
}

/* ---------- About Section ---------- */
.about { background: var(--ivory); }

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

.about-img-wrapper {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/5;
}

.about-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.about-img-wrapper:hover img {
  transform: scale(1.05);
}

.about-img-accent {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 60%;
  height: 60%;
  border: 2px solid var(--gold);
  border-radius: var(--radius-lg);
  z-index: -1;
  opacity: .3;
}

.about-image {
  position: relative;
}

.experience-badge {
  position: absolute;
  bottom: 30px;
  right: -30px;
  background: var(--gold);
  color: var(--dark);
  padding: 24px 28px;
  border-radius: var(--radius-md);
  text-align: center;
  box-shadow: var(--shadow-gold);
}

.exp-number {
  display: block;
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1;
}

.exp-text {
  display: block;
  font-size: .75rem;
  font-weight: 500;
  letter-spacing: .05em;
  margin-top: 4px;
}

.about-text {
  font-size: 1.05rem;
  color: var(--gray-700);
  margin-bottom: 36px;
  line-height: 1.8;
}

.about-pillars {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 40px;
}

.pillar {
  padding: 24px;
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid var(--gray-200);
  transition: all var(--transition);
}

.pillar:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow-sm);
  transform: translateY(-4px);
}

.pillar-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(201,169,110,.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  margin-bottom: 14px;
}

.pillar-icon i {
  width: 20px;
  height: 20px;
}

.pillar h4 {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  margin-bottom: 8px;
  color: var(--charcoal);
}

.pillar p {
  font-size: .85rem;
  color: var(--gray-500);
  line-height: 1.6;
}

/* ---------- Stats Section ---------- */
.stats {
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.stats-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.stats-overlay {
  position: absolute;
  inset: 0;
  background: rgba(13,13,26,.88);
}

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

.stats-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
}

.stat-item {
  text-align: center;
  padding: 20px 50px;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  display: inline;
}

.stat-suffix {
  font-family: var(--font-heading);
  font-size: clamp(1.2rem, 2vw, 1.5rem);
  font-weight: 500;
  color: var(--gold);
  display: inline;
}

.stat-label {
  font-size: .85rem;
  font-weight: 400;
  color: rgba(255,255,255,.6);
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-top: 10px;
}

.stat-divider {
  width: 1px;
  height: 60px;
  background: rgba(255,255,255,.1);
}

/* ---------- Projects Section ---------- */
.projects { background: var(--white); }

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

.project-card {
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--ivory);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
}

.project-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.project-image {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
}

.project-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.project-card:hover .project-image img {
  transform: scale(1.08);
}

.project-overlay {
  position: absolute;
  inset: 0;
  background: rgba(13,13,26,.6);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition);
}

.project-card:hover .project-overlay {
  opacity: 1;
}

.project-link {
  padding: 12px 28px;
  border: 1.5px solid var(--gold);
  color: var(--gold);
  font-size: .8rem;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
}

.project-link:hover {
  background: var(--gold);
  color: var(--dark);
}

.project-type {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--gold);
  color: var(--dark);
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 100px;
}

.project-info {
  padding: 22px 20px;
}

.project-info h3 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--charcoal);
}

.project-location {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: .82rem;
  color: var(--gray-500);
  margin-bottom: 6px;
}

.project-location i {
  width: 14px;
  height: 14px;
  color: var(--gold);
  flex-shrink: 0;
}

.project-rera {
  font-size: .72rem;
  color: var(--gray-300);
  letter-spacing: .02em;
}

.projects-cta {
  text-align: center;
  margin-top: 56px;
}

/* ---------- Leadership Section ---------- */
.leadership {
  background: var(--ivory);
}

.leadership-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.leader-card {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  margin-top: 32px;
}

.leader-image {
  position: relative;
  flex-shrink: 0;
  width: 160px;
  height: 200px;
  border-radius: var(--radius-md);
  overflow: hidden;
}

.leader-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.leader-accent {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gold);
}

.leader-info h3 {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--charcoal);
}

.leader-title {
  display: inline-block;
  font-size: .8rem;
  font-weight: 500;
  color: var(--gold);
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-top: 4px;
  margin-bottom: 14px;
}

.leader-info p {
  font-size: .92rem;
  color: var(--gray-500);
  line-height: 1.7;
}

.leadership-values {
  display: flex;
  flex-direction: column;
  gap: 28px;
  padding-top: 20px;
}

.value-item {
  display: flex;
  gap: 24px;
  padding: 24px 28px;
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid var(--gray-200);
  transition: all var(--transition);
}

.value-item:hover {
  border-color: var(--gold);
  transform: translateX(8px);
  box-shadow: var(--shadow-sm);
}

.value-number {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: rgba(201,169,110,.25);
  line-height: 1;
  flex-shrink: 0;
}

.value-content h4 {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 6px;
}

.value-content p {
  font-size: .85rem;
  color: var(--gray-500);
  line-height: 1.6;
}

/* ---------- Clients Section ---------- */
.clients {
  background: var(--white);
  padding: 100px 0;
}

.clients-marquee {
  overflow: hidden;
  margin-top: 20px;
}

.marquee-track {
  display: flex;
  overflow: hidden;
}

.marquee-inner {
  display: flex;
  align-items: center;
  gap: 80px;
  animation: marquee 20s linear infinite;
}

.marquee-inner img {
  height: 50px;
  width: auto;
  filter: grayscale(100%);
  opacity: .5;
  transition: all var(--transition);
}

.marquee-inner img:hover {
  filter: grayscale(0%);
  opacity: 1;
}

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ---------- CTA Section ---------- */
.cta-section {
  position: relative;
  padding: 140px 0;
  overflow: hidden;
}

.cta-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.cta-overlay {
  position: absolute;
  inset: 0;
  background: rgba(13,13,26,.85);
}

.cta-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 650px;
  margin: 0 auto;
}

.cta-content h2 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 16px;
}

.cta-content p {
  color: rgba(255,255,255,.65);
  font-size: 1.05rem;
  margin-bottom: 36px;
}

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

/* ---------- Footer ---------- */
.footer {
  background: var(--dark);
  color: rgba(255,255,255,.6);
}

.footer-top {
  padding: 80px 0 60px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.3fr;
  gap: 48px;
}

.footer-logo {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 20px;
}

.footer-logo .logo-text {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: .15em;
}

.footer-logo .logo-sub {
  font-family: var(--font-body);
  font-size: .65rem;
  font-weight: 300;
  color: rgba(255,255,255,.5);
  letter-spacing: .3em;
  text-transform: uppercase;
}

.footer-brand p {
  font-size: .9rem;
  line-height: 1.7;
  margin-bottom: 24px;
}

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

.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.5);
  transition: all var(--transition);
}

.footer-social a:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(201,169,110,.1);
}

.footer-social a i {
  width: 16px;
  height: 16px;
}

.footer-links h4,
.footer-contact h4 {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 24px;
  letter-spacing: .02em;
}

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

.footer-links a {
  font-size: .875rem;
  color: rgba(255,255,255,.5);
  transition: all var(--transition);
}

.footer-links a:hover {
  color: var(--gold);
  padding-left: 6px;
}

.contact-item {
  display: flex;
  gap: 12px;
  margin-bottom: 16px;
  align-items: flex-start;
}

.contact-item i {
  width: 16px;
  height: 16px;
  color: var(--gold);
  margin-top: 3px;
  flex-shrink: 0;
}

.contact-item span,
.contact-item a {
  font-size: .875rem;
  color: rgba(255,255,255,.5);
}

.contact-item a:hover {
  color: var(--gold);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.06);
  padding: 24px 0;
  text-align: center;
}

.footer-bottom p {
  font-size: .8rem;
  color: rgba(255,255,255,.3);
}

/* ---------- Back to Top ---------- */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--dark);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all var(--transition);
  box-shadow: var(--shadow-gold);
  z-index: 100;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  background: var(--gold-dark);
  transform: translateY(-4px);
}

.back-to-top i {
  width: 20px;
  height: 20px;
}

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

@media (max-width: 1200px) {
  .projects-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 1024px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .leadership-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }

  .stats-grid {
    flex-wrap: wrap;
    gap: 20px;
  }

  .stat-divider {
    display: none;
  }

  .stat-item {
    width: 45%;
    padding: 20px;
  }
}

@media (max-width: 768px) {
  .section { padding: 80px 0; }

  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background: var(--dark);
    flex-direction: column;
    align-items: stretch;
    padding: 100px 32px 40px;
    transition: right var(--transition);
    box-shadow: -10px 0 30px rgba(0,0,0,.3);
  }

  .nav-menu.open {
    right: 0;
  }

  .nav-link {
    padding: 14px 0;
    border-bottom: 1px solid rgba(255,255,255,.06);
  }

  .nav-dropdown .dropdown-content {
    position: static;
    background: rgba(255,255,255,.03);
    border: none;
    border-radius: var(--radius-sm);
    margin-top: 4px;
    opacity: 1;
    visibility: visible;
    transform: none;
    display: none;
    box-shadow: none;
  }

  .nav-dropdown.open .dropdown-content {
    display: block;
  }

  .nav-toggle { display: flex; }

  .nav-phone span { display: none; }

  .hero-content h1 {
    font-size: 2.5rem;
  }

  .hero-scroll { display: none; }

  .about-pillars {
    grid-template-columns: 1fr;
  }

  .experience-badge {
    right: 10px;
    bottom: 10px;
  }

  .leader-card {
    flex-direction: column;
  }

  .leader-image {
    width: 120px;
    height: 150px;
  }

  .projects-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .stat-item {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .hero-ctas {
    flex-direction: column;
  }

  .btn {
    width: 100%;
    justify-content: center;
  }

  .hero-content h1 {
    font-size: 2rem;
  }

  .nav-container {
    padding: 0 20px;
  }
}
