/* ===== CSS Custom Properties ===== */
:root {
  --primary: #D4911A;
  --primary-dark: #B87A10;
  --primary-light: #E8A93D;
  --dark: #4A4A4A;
  --dark-deep: #333333;
  --grey: #6B6B6B;
  --grey-light: #999999;
  --bg-light: #F7F7F7;
  --bg-white: #FFFFFF;
  --border: #E0E0E0;
  --shadow: rgba(0, 0, 0, 0.08);
  --shadow-md: rgba(0, 0, 0, 0.12);
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  --font-main: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --max-width: 1200px;
  --nav-height: 80px;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-main);
  color: var(--dark);
  background: var(--bg-white);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

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

ul {
  list-style: none;
}

/* ===== Typography ===== */
h1,
h2,
h3,
h4,
h5 {
  font-weight: 600;
  line-height: 1.2;
  color: var(--dark-deep);
}

h1 {
  font-size: clamp(2.2rem, 5vw, 3.5rem);
}

h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
}

h3 {
  font-size: clamp(1.2rem, 2vw, 1.5rem);
}

h4 {
  font-size: 1.1rem;
}

p {
  color: var(--grey);
  line-height: 1.75;
}

/* ===== Utility ===== */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 100px 0;
}

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

.section-header h2 {
  margin-bottom: 16px;
}

.section-header p {
  max-width: 600px;
  margin: 0 auto;
  font-size: 1.05rem;
}

.section-label {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 6px;
  font-size: 0.95rem;
  font-weight: 500;
  font-family: var(--font-main);
  cursor: pointer;
  border: none;
  transition: all var(--transition);
  letter-spacing: 0.3px;
}

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

.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(212, 145, 26, 0.3);
}

.btn-outline {
  background: transparent;
  color: var(--dark);
  border: 2px solid var(--border);
}

.btn-outline:hover {
  border-color: var(--primary);
  color: var(--primary);
  transform: translateY(-2px);
}

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

.btn-white:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.btn-arrow::after {
  content: '\2192';
  transition: transform var(--transition);
}

.btn-arrow:hover::after {
  transform: translateX(4px);
}

/* ===== Scroll Animations ===== */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

.stagger>* {
  transition-delay: calc(var(--i, 0) * 0.1s);
}

/* ===== Navigation ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--nav-height);
  z-index: 1000;
  transition: all var(--transition);
  background: transparent;
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 20px var(--shadow);
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.nav-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.nav-logo-block {
  display: flex;
  align-items: center;
  background: var(--primary);
  padding: 8px 18px;
  border-radius: 4px;
  height: 40px;
}

.nav-logo-block svg {
  height: 18px;
  width: auto;
}

.nav-logo img.nav-logo-img {
  height: 54px;
  width: auto;
  max-width: none;
  flex-shrink: 0;
  border-radius: 4px;
  object-fit: contain;
}

.nav-logo svg {
  height: 32px;
  width: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  position: relative;
  /* For sliding indicator */
}

/* Sliding Indicator */
.nav-indicator {
  position: absolute;
  bottom: 4px;
  height: 2px;
  background: var(--primary);
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  border-radius: 2px;
  pointer-events: none;
  opacity: 0;
}

.navbar.nav-white:not(.scrolled) .nav-indicator {
  background: white;
}

.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--dark);
  position: relative;
  padding: 4px 0;
  letter-spacing: 0.3px;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: width var(--transition);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--primary);
  transform: translateY(-2px);
}

.nav-links a::after {
  display: none;
  /* Removing static underline in favor of indicator */
}

/* White nav state for hero pages */
.navbar.nav-white:not(.scrolled) .nav-links a {
  color: rgba(255, 255, 255, 0.9);
}

.navbar.nav-white:not(.scrolled) .nav-links a:hover,
.navbar.nav-white:not(.scrolled) .nav-links a.active {
  color: white;
}

.navbar.nav-white:not(.scrolled) .nav-links a::after {
  background: white;
}

.nav-cta {
  padding: 10px 24px !important;
  background: var(--primary);
  color: white !important;
  border-radius: 6px;
  font-size: 0.85rem !important;
}

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

.nav-cta:hover {
  background: var(--primary-dark) !important;
  color: white !important;
}

.navbar.nav-white:not(.scrolled) .nav-cta {
  background: white !important;
  color: var(--dark-deep) !important;
}

.navbar.nav-white:not(.scrolled) .nav-cta:hover {
  background: rgba(255, 255, 255, 0.9) !important;
}

/* Mobile menu */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
}

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

.navbar.nav-white:not(.scrolled) .nav-toggle span {
  background: white;
}

.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: 600px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #111;
}

#hero-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
  opacity: 0.6;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #111 0%, #222 30%, #444 60%, #111 100%);
  z-index: 0;
}

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

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.25) 0%, rgba(0, 0, 0, 0.15) 100%);
}

.hero-pattern {
  position: absolute;
  inset: 0;
  opacity: 0;
}

.hero-content {
  position: relative;
  z-index: 2;
  color: white;
  max-width: 700px;
}

.hero-content .section-label {
  color: var(--primary-light);
}

.hero-content h1 {
  color: white;
  margin-bottom: 20px;
  font-weight: 700;
}

.hero-content p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 1.15rem;
  max-width: 540px;
  margin-bottom: 36px;
}

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

.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  animation: float 2s ease-in-out infinite;
}

.hero-scroll .line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.5), transparent);
}

@keyframes float {

  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }

  50% {
    transform: translateX(-50%) translateY(8px);
  }
}

/* ===== Page Hero (for inner pages) ===== */
.page-hero {
  position: relative;
  padding: 160px 0 80px;
  background: linear-gradient(135deg, #D4911A 0%, #B87A10 20%, #6B6B6B 55%, #4A4A4A 75%, #333333 100%);
  overflow: hidden;
}

.page-hero .hero-pattern {
  opacity: 0.03;
}

.page-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.3) 100%);
}

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

.page-hero h1 {
  color: white;
  margin-bottom: 16px;
}

.page-hero p {
  color: rgba(255, 255, 255, 0.65);
  font-size: 1.1rem;
  max-width: 560px;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
  font-size: 0.85rem;
}

.breadcrumb a {
  color: rgba(255, 255, 255, 0.5);
}

.breadcrumb a:hover {
  color: var(--primary-light);
}

.breadcrumb span {
  color: rgba(255, 255, 255, 0.3);
}

.breadcrumb .current {
  color: rgba(255, 255, 255, 0.8);
}

/* ===== Stats Section ===== */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.stat-item {
  text-align: center;
  padding: 32px 16px;
}

.stat-number {
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 700;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 0.85rem;
  color: var(--grey);
  font-weight: 500;
  white-space: nowrap;
  min-height: 1.6em;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* White stats variant */
.stats-white .stat-number {
  color: white;
}

.stats-white .stat-label {
  color: rgba(255, 255, 255, 0.6);
}

/* ===== Vision Section ===== */
.vision {
  background: var(--bg-light);
}

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

.vision-content h2 {
  margin-bottom: 24px;
}

.vision-content p {
  margin-bottom: 16px;
  font-size: 1.05rem;
}

.vision-image {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
}

.vision-image .overlay-text {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: white;
  text-align: center;
  padding: 40px;
}

.vision-image .overlay-text h3 {
  color: white;
  font-size: 1.8rem;
  margin-bottom: 12px;
}

.vision-image .overlay-text p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1rem;
}

/* ===== Projects Cards ===== */
.projects-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.project-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px var(--shadow);
  transition: all var(--transition);
}

.project-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px var(--shadow-md);
}

.project-card-image {
  position: relative;
  height: 160px;
  overflow: hidden;
}

.project-card-image .placeholder-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.project-card-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.badge-active {
  background: rgba(34, 197, 94, 0.9);
  color: white;
}

.badge-construction {
  background: rgba(212, 145, 26, 0.9);
  color: white;
}

.badge-leased {
  background: rgba(107, 107, 107, 0.9);
  color: white;
}

.project-card-body {
  padding: 20px;
}

.project-card-body h3 {
  margin-bottom: 4px;
}

.project-card-location {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  color: var(--grey-light);
  margin-bottom: 16px;
}

.project-card-location svg {
  width: 14px;
  height: 14px;
  fill: var(--grey-light);
}

.project-card-features {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}

.project-card-features .tag {
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.78rem;
  background: var(--bg-light);
  color: var(--grey);
  font-weight: 500;
}

.project-card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--primary);
}

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

/* ===== Project Detail Section ===== */
.project-detail {
  padding: 80px 0;
  border-bottom: 1px solid var(--border);
}

.project-detail:last-of-type {
  border-bottom: none;
}

.project-detail-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.project-detail-header h2 {
  margin-bottom: 4px;
}

.project-detail-header .location-text {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--grey);
  font-size: 0.95rem;
}

.project-detail-header .location-text svg {
  width: 16px;
  height: 16px;
  fill: var(--primary);
}

.project-gallery {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 16px;
  margin-bottom: 48px;
  border-radius: 12px;
  overflow: hidden;
}

.gallery-main {
  aspect-ratio: 16/10;
  background: linear-gradient(135deg, #e8e0d4 0%, #d4c8b8 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--grey-light);
  font-size: 0.9rem;
  overflow: hidden;
}

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

.gallery-main:hover img {
  transform: scale(1.03);
}

.gallery-side {
  display: grid;
  gap: 16px;
}

.gallery-side div {
  background: linear-gradient(135deg, #e8e0d4 0%, #d4c8b8 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--grey-light);
  font-size: 0.85rem;
  overflow: hidden;
}

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

.gallery-side div:hover img {
  transform: scale(1.05);
}

/* Extended gallery grid for more photos */
.gallery-grid-extended {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 16px;
}

.gallery-grid-extended .gallery-thumb {
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 16/10;
  background: linear-gradient(135deg, #e8e0d4 0%, #d4c8b8 100%);
}

.gallery-grid-extended .gallery-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-grid-extended .gallery-thumb:hover img {
  transform: scale(1.05);
}

.project-map {
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 48px;
  box-shadow: 0 4px 20px var(--shadow);
}

.project-map iframe {
  width: 100%;
  height: 300px;
  border: 0;
}

.map-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: 6px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--primary);
  background: rgba(212, 145, 26, 0.08);
  transition: all var(--transition);
  margin-bottom: 40px;
}

.map-link svg {
  width: 16px;
  height: 16px;
  fill: var(--primary);
}

.map-link:hover {
  background: rgba(212, 145, 26, 0.15);
  transform: translateY(-1px);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 20px;
  background: var(--bg-light);
  border-radius: 10px;
  transition: all var(--transition);
}

.feature-item:hover {
  background: white;
  box-shadow: 0 4px 20px var(--shadow);
}

.feature-icon {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: rgba(212, 145, 26, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.feature-icon svg {
  width: 20px;
  height: 20px;
  fill: var(--primary);
}

.feature-item h4 {
  margin-bottom: 4px;
  font-size: 0.95rem;
}

.feature-item p {
  font-size: 0.85rem;
  line-height: 1.5;
}

/* ===== Availability Section ===== */
.avail-hero {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  padding: 60px;
  border-radius: 16px;
  color: white;
  margin-bottom: 60px;
}

.avail-hero h3 {
  color: white;
  font-size: 1.6rem;
  margin-bottom: 8px;
}

.avail-hero p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.05rem;
  margin-bottom: 24px;
}

.avail-hero .badge {
  display: inline-block;
  padding: 6px 16px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  font-size: 0.85rem;
  color: white;
  margin-bottom: 20px;
  font-weight: 500;
}

.spec-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
}

.spec-card {
  background: white;
  padding: 28px;
  border-radius: 12px;
  box-shadow: 0 2px 12px var(--shadow);
  transition: all var(--transition);
  border: 1px solid transparent;
}

.spec-card:hover {
  border-color: var(--primary);
  transform: translateY(-4px);
  box-shadow: 0 8px 30px var(--shadow-md);
}

.spec-card-icon {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  background: rgba(212, 145, 26, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.spec-card-icon svg {
  width: 24px;
  height: 24px;
  fill: var(--primary);
}

.spec-card h4 {
  margin-bottom: 8px;
  font-size: 1rem;
}

.spec-card p {
  font-size: 0.88rem;
  line-height: 1.6;
}

/* ===== About / Team ===== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-content h2 {
  margin-bottom: 24px;
}

.about-content p {
  margin-bottom: 16px;
  font-size: 1rem;
}

.promoter-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.promoter-card {
  background: white;
  padding: 40px 32px;
  border-radius: 12px;
  box-shadow: 0 4px 20px var(--shadow);
  text-align: center;
  transition: all var(--transition);
}

.promoter-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px var(--shadow-md);
}

.promoter-logo {
  height: 50px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--dark-deep);
}

.promoter-card p {
  font-size: 0.9rem;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

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

.team-photo {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  margin: 0 auto 24px;
  background: linear-gradient(135deg, var(--bg-light) 0%, var(--border) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}

.team-photo .initials {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary);
  opacity: 0.6;
}

.team-card h3 {
  margin-bottom: 4px;
  font-size: 1.2rem;
}

.team-card .role {
  font-size: 0.85rem;
  color: var(--primary);
  font-weight: 500;
  margin-bottom: 16px;
}

.team-card p {
  font-size: 0.88rem;
  line-height: 1.65;
  text-align: left;
}

/* ===== Contact Section ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.contact-info {
  padding-top: 16px;
}

.contact-info h2 {
  margin-bottom: 16px;
}

.contact-info>p {
  margin-bottom: 40px;
}

.contact-item {
  display: flex;
  gap: 16px;
  margin-bottom: 28px;
}

.contact-item-icon {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  background: rgba(212, 145, 26, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-item-icon svg {
  width: 22px;
  height: 22px;
  fill: var(--primary);
}

.contact-item h4 {
  margin-bottom: 4px;
  font-size: 0.95rem;
}

.contact-item p {
  font-size: 0.9rem;
}

.contact-item a {
  color: var(--primary);
  font-weight: 500;
}

.contact-item a:hover {
  text-decoration: underline;
}

.contact-form {
  background: var(--bg-light);
  padding: 40px;
  border-radius: 12px;
}

.contact-form h3 {
  margin-bottom: 28px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--dark);
  margin-bottom: 6px;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-size: 0.95rem;
  font-family: var(--font-main);
  color: var(--dark);
  background: white;
  transition: border-color var(--transition);
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(212, 145, 26, 0.1);
}

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

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

.contact-map {
  margin-top: 40px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px var(--shadow);
}

.contact-map iframe {
  width: 100%;
  height: 280px;
  border: 0;
}

/* ===== CTA Section ===== */
.cta-section {
  background: linear-gradient(135deg, var(--dark-deep) 0%, #1a1a1a 100%);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(212, 145, 26, 0.1) 0%, transparent 60%);
}

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

.cta-section h2 {
  color: white;
  margin-bottom: 16px;
}

.cta-section p {
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 32px;
  font-size: 1.05rem;
}

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

/* ===== Footer ===== */
.footer {
  background: var(--dark-deep);
  padding: 60px 0 30px;
  color: rgba(255, 255, 255, 0.6);
}

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

.footer-brand p {
  font-size: 0.9rem;
  margin-top: 16px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.5);
}

.footer-brand .nav-logo {
  margin-bottom: 4px;
}

.footer h4 {
  color: white;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 20px;
}

.footer ul li {
  margin-bottom: 10px;
}

.footer ul a {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.5);
  transition: color var(--transition);
}

.footer ul a:hover {
  color: var(--primary-light);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.35);
}

/* ===== Responsive ===== */
@media (max-width: 1024px) {

  .vision-grid,
  .about-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

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

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

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

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

@media (max-width: 768px) {
  :root {
    --nav-height: 70px;
  }

  .section {
    padding: 64px 0;
  }

  .nav-toggle {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: white;
    flex-direction: column;
    padding: 100px 32px 40px;
    gap: 24px;
    box-shadow: -4px 0 20px rgba(0, 0, 0, 0.1);
    transition: right var(--transition);
  }

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

  .nav-links a {
    color: var(--dark) !important;
    font-size: 1rem;
  }

  .nav-cta {
    width: 100%;
    text-align: center;
    justify-content: center;
  }

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

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

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

  .project-gallery {
    grid-template-columns: 1fr;
  }

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

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .promoter-cards {
    grid-template-columns: 1fr;
  }

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

  .form-row {
    grid-template-columns: 1fr;
  }

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

  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }

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

  .avail-hero {
    padding: 32px 24px;
  }

  .page-hero {
    padding: 120px 0 60px;
  }

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

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

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

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }

  .stat-number {
    font-size: 2rem;
  }

  .project-card-image {
    height: 200px;
  }

  .contact-form {
    padding: 24px;
  }
}

/* ===== Real Images for Team ===== */
.team-photo {
  position: relative;
  overflow: hidden;
}

.team-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ===== Group Companies ===== */
.group-companies {
  padding: 60px 0;
  text-align: center;
}

.group-companies h2 {
  font-size: 1.5rem;
  margin-bottom: 30px;
  color: var(--dark-deep);
}

.group-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.group-logos a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 170px;
  height: 58px;
  opacity: 0.75;
  transition: opacity var(--transition), transform var(--transition);
}

.group-logos a:hover {
  opacity: 1;
  transform: translateY(-2px);
}

.group-logos img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* Fashions logo has a large square canvas — cover crops whitespace so text fills the box */
.group-logos img[alt="Arvind Fashions"] {
  object-fit: cover;
  object-position: center center;
}

/* Smartspaces logo has a tall square canvas — crop to the logo area */
.group-logos img[alt="Arvind Smartspaces"] {
  object-fit: cover;
  object-position: center 42%;
}

/* ===== Carousel ===== */
.carousel-wrapper {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  background: var(--bg-light);
}

.carousel-container {
  width: 100%;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  display: flex;
  gap: 0;
  scrollbar-width: none;
}

.carousel-container::-webkit-scrollbar {
  display: none;
}

.carousel-slide {
  flex: 0 0 100%;
  flex-shrink: 0;
  scroll-snap-align: start;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.carousel-slide img {
  width: 100%;
  height: 350px;
  object-fit: contain;
  display: block;
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: var(--dark-deep);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.2);
  transition: all var(--transition);
  line-height: 1;
  padding: 0;
}

.carousel-btn:hover {
  background: white;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  transform: translateY(-50%) scale(1.08);
}

.carousel-prev {
  left: 12px;
}

.carousel-next {
  right: 12px;
}

/* ===== Contact Compact Layout ===== */
.contact-compact {
  max-width: 900px;
  margin: 0 auto;
}

.contact-cards-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.contact-card-item {
  text-align: center;
  padding: 32px 24px;
  background: var(--bg-light);
  border-radius: 12px;
  transition: all var(--transition);
}

.contact-card-item:hover {
  background: white;
  box-shadow: 0 4px 20px var(--shadow);
  transform: translateY(-4px);
}

.contact-card-item .contact-item-icon {
  margin: 0 auto 16px;
}

.contact-card-item h4 {
  margin-bottom: 6px;
  font-size: 0.95rem;
}

.contact-card-item p {
  font-size: 0.88rem;
  line-height: 1.6;
}

.contact-card-item a {
  color: var(--primary);
  font-weight: 500;
}

.contact-card-item a:hover {
  text-decoration: underline;
}

.contact-map-full {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px var(--shadow);
}

.contact-map-full iframe {
  width: 100%;
  height: 350px;
  border: 0;
}

@media (max-width: 768px) {
  .contact-cards-row {
    grid-template-columns: 1fr;
  }
}