/* ==========================================================================
   FORTUNE DEVELOPERS & PROMOTERS — FULLY RESPONSIVE LUXURY DESIGN SYSTEM
   ========================================================================== */

/* --- Google Fonts Import --- */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,500;0,600;0,700;1,400&family=Plus+Jakarta+Sans:wght@300;400;500;600;700&display=swap');

/* --- CSS Variables (Dark Theme Default) --- */
:root {
  /* Color Palette */
  --bg-dark: #0B0D11;
  --bg-surface: #12151C;
  --bg-surface-elevated: #181C26;
  --bg-surface-hover: #202532;
  
  --text-primary: #FAF9F6;
  --text-secondary: #B0B7C4;
  --text-muted: #6E7788;
  
  --accent-gold: #C5A880;
  --accent-gold-light: #DFCDBC;
  --accent-gold-dark: #A0835D;
  --accent-gold-glow: rgba(197, 168, 128, 0.15);
  
  --border-light: rgba(255, 255, 255, 0.08);
  --border-gold: rgba(197, 168, 128, 0.25);
  --border-gold-strong: rgba(197, 168, 128, 0.5);

  /* Typography */
  --font-heading: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;

  /* Transitions & Shadows */
  --transition-fast: 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-smooth: 0.4s cubic-bezier(0.16, 1, 0.3, 1);

  --shadow-sm: 0 4px 14px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.4);
  --shadow-lg: 0 20px 50px rgba(0, 0, 0, 0.6);
  --shadow-gold: 0 8px 30px rgba(197, 168, 128, 0.12);

  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-full: 9999px;

  --nav-height: 85px;
}

/* --- Light Theme Overrides --- */
body.light-theme {
  --bg-dark: #F8FAFC;
  --bg-surface: #FFFFFF;
  --bg-surface-elevated: #F1F5F9;
  --bg-surface-hover: #E2E8F0;
  
  --text-primary: #0F172A;
  --text-secondary: #475569;
  --text-muted: #64748B;
  
  --accent-gold: #A07842;
  --accent-gold-light: #B88E56;
  --accent-gold-dark: #826031;
  --accent-gold-glow: rgba(160, 120, 66, 0.14);
  
  --border-light: rgba(0, 0, 0, 0.08);
  --border-gold: rgba(160, 120, 66, 0.3);
  --border-gold-strong: rgba(160, 120, 66, 0.6);

  --shadow-sm: 0 4px 14px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 20px 50px rgba(0, 0, 0, 0.12);
  --shadow-gold: 0 8px 30px rgba(160, 120, 66, 0.18);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  background-color: var(--bg-dark);
  color: var(--text-primary);
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  width: 100%;
}

body {
  font-family: var(--font-body);
  line-height: 1.65;
  overflow-x: hidden;
  width: 100%;
  position: relative;
  background-color: var(--bg-dark);
  color: var(--text-primary);
  transition: background-color var(--transition-smooth), color var(--transition-smooth);
}

body.modal-open {
  overflow: hidden;
}

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

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

button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  border: none;
  background: none;
  outline: none;
}

button {
  cursor: pointer;
}

/* --- Layout Utilities --- */
.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 100px 0;
  position: relative;
}

.section-dark {
  background-color: var(--bg-dark);
  transition: background-color var(--transition-smooth);
}

.section-surface {
  background-color: var(--bg-surface);
  transition: background-color var(--transition-smooth);
}

/* Eyebrows & Headings */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent-gold);
  margin-bottom: 14px;
}

.eyebrow::before {
  content: '';
  display: inline-block;
  width: 24px;
  height: 1px;
  background-color: var(--accent-gold);
}

.heading-lg {
  font-family: var(--font-heading);
  font-size: clamp(2.25rem, 5vw, 3.75rem);
  font-weight: 600;
  line-height: 1.15;
  color: var(--text-primary);
  margin-bottom: 20px;
  letter-spacing: -0.01em;
}

.heading-md {
  font-family: var(--font-heading);
  font-size: clamp(1.875rem, 3.5vw, 2.625rem);
  font-weight: 600;
  line-height: 1.2;
  color: var(--text-primary);
  margin-bottom: 18px;
}

.heading-sm {
  font-family: var(--font-heading);
  font-size: 1.625rem;
  font-weight: 600;
  line-height: 1.3;
  color: var(--text-primary);
}

.lead-text {
  font-size: 1.0625rem;
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 700px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 30px;
  font-size: 0.9375rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  border-radius: var(--radius-md);
  transition: all var(--transition-smooth);
  position: relative;
  white-space: nowrap;
  min-height: 48px;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent-gold) 0%, var(--accent-gold-dark) 100%);
  color: #FFFFFF;
  box-shadow: var(--shadow-gold);
}

.btn-primary:hover {
  transform: translateY(-2px);
  background: linear-gradient(135deg, var(--accent-gold-light) 0%, var(--accent-gold) 100%);
  box-shadow: 0 10px 30px rgba(160, 120, 66, 0.3);
}

.btn-secondary {
  background: transparent;
  color: var(--text-primary);
  border: 1px solid var(--border-gold);
}

.btn-secondary:hover {
  border-color: var(--accent-gold);
  background: var(--accent-gold-glow);
  transform: translateY(-2px);
  color: var(--accent-gold);
}

.btn-full {
  width: 100%;
}

/* --- Reveal Animation --- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

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

.navbar.scrolled {
  height: 72px;
  background-color: rgba(11, 13, 17, 0.94);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-light);
  box-shadow: var(--shadow-md);
}

body.light-theme .navbar.scrolled {
  background-color: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: var(--shadow-sm);
}

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

/* VECTOR SVG HORIZONTAL LOGO DESIGN FOR NAVBAR & FOOTER */
.brand-logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.nav-logo-img {
  height: 48px;
  width: auto;
  object-fit: contain;
  transition: transform var(--transition-fast);
}

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

.footer-logo-img {
  height: 56px;
  width: auto;
  object-fit: contain;
  margin-bottom: 16px;
  display: inline-block;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.nav-link {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-secondary);
  letter-spacing: 0.03em;
  position: relative;
  padding: 8px 0;
}

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

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--accent-gold);
  transition: width var(--transition-fast);
}

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

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

/* SLEEK THEME TOGGLE BUTTON STYLING */
.theme-toggle-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--bg-surface-elevated);
  border: 1px solid var(--border-gold);
  color: var(--accent-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition-fast);
  box-shadow: var(--shadow-sm);
}

.theme-toggle-btn:hover {
  transform: scale(1.08);
  border-color: var(--accent-gold);
  background: var(--bg-surface-hover);
  box-shadow: var(--shadow-gold);
}

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 32px;
  height: 22px;
  padding: 2px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1001;
}

.hamburger span {
  width: 100%;
  height: 2px;
  background-color: var(--text-primary);
  transition: all var(--transition-fast);
  border-radius: 2px;
}

.hamburger.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

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

.hamburger.active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* Mobile Drawer Overlay */
.mobile-nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(11, 13, 17, 0.96);
  backdrop-filter: blur(20px);
  z-index: 999;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-smooth);
}

body.light-theme .mobile-nav-overlay {
  background: rgba(248, 250, 252, 0.96);
}

.mobile-nav-overlay.active {
  opacity: 1;
  visibility: visible;
}

.mobile-nav-links {
  list-style: none;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 36px;
}

.mobile-nav-link {
  font-family: var(--font-heading);
  font-size: 1.875rem;
  color: var(--text-primary);
}

.mobile-nav-link:hover {
  color: var(--accent-gold);
}

/* --- Hero Section --- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: var(--nav-height);
  overflow: hidden;
  background-color: var(--bg-dark);
}

.hero-bg-wrapper {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.hero-bg-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg, 
    rgba(11, 13, 17, 0.75) 0%, 
    rgba(11, 13, 17, 0.65) 50%, 
    rgba(11, 13, 17, 0.95) 100%
  ),
  radial-gradient(
    circle at 20% 40%, 
    rgba(197, 168, 128, 0.12) 0%, 
    transparent 60%
  );
}

body.light-theme .hero-overlay {
  background: linear-gradient(
    180deg, 
    rgba(248, 250, 252, 0.82) 0%, 
    rgba(248, 250, 252, 0.72) 50%, 
    rgba(248, 250, 252, 0.96) 100%
  ),
  radial-gradient(
    circle at 20% 40%, 
    rgba(160, 120, 66, 0.12) 0%, 
    transparent 60%
  );
}

.hero-content-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 48px;
  align-items: center;
  padding: 40px 0;
}

.hero-text-block {
  max-width: 680px;
}

.hero-trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: var(--bg-surface-elevated);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-full);
  font-size: 0.8125rem;
  color: var(--text-primary);
  margin-top: 28px;
  backdrop-filter: blur(8px);
}

.hero-trust-badge .stars {
  color: #FFC107;
  letter-spacing: 2px;
}

.hero-cta-group {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 32px;
  flex-wrap: wrap;
}

/* Floating Hero Card */
.hero-card {
  background: var(--bg-surface-elevated);
  backdrop-filter: blur(20px);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-lg);
  position: relative;
}

.hero-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 32px;
  right: 32px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent-gold), transparent);
}

.hero-card-tag {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--accent-gold);
  text-transform: uppercase;
  margin-bottom: 12px;
  display: block;
}

.hero-card-title {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 600;
  line-height: 1.25;
  margin-bottom: 14px;
}

.hero-card-desc {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  margin-bottom: 20px;
}

.scroll-indicator {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  font-size: 0.6875rem;
  letter-spacing: 0.2em;
  color: var(--text-muted);
  text-transform: uppercase;
}

.scroll-indicator .line {
  width: 1px;
  height: 32px;
  background: linear-gradient(180deg, var(--accent-gold), transparent);
  animation: scrollPulse 2s infinite ease-in-out;
}

@keyframes scrollPulse {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  50.1% { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

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

.about-img-container {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.about-img-container::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-lg);
  pointer-events: none;
}

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

.about-img-container:hover .about-img {
  transform: scale(1.03);
}

.about-badge {
  position: absolute;
  bottom: 24px;
  right: 24px;
  background: var(--bg-surface);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  max-width: 210px;
}

.about-badge-text {
  font-family: var(--font-heading);
  font-size: 1.0625rem;
  color: var(--accent-gold);
  line-height: 1.3;
}

.about-features {
  list-style: none;
  margin: 28px 0 36px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.about-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.9375rem;
  color: var(--text-primary);
}

.about-feature-icon {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--accent-gold-glow);
  border: 1px solid var(--border-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-gold);
  flex-shrink: 0;
  margin-top: 2px;
  font-size: 0.75rem;
}

/* --- Services Section --- */
.services-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 50px;
}

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

.service-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  transition: all var(--transition-smooth);
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.service-card:hover {
  background: var(--bg-surface-elevated);
  border-color: var(--border-gold);
  transform: translateY(-6px);
  box-shadow: var(--shadow-gold);
}

.service-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 28px;
}

.service-number {
  font-family: var(--font-heading);
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--accent-gold);
  opacity: 0.85;
}

.service-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  background: var(--accent-gold-glow);
  border: 1px solid var(--border-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-gold);
}

.service-title {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 14px;
  line-height: 1.25;
}

.service-desc {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  margin-bottom: 28px;
  line-height: 1.6;
}

.service-arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--accent-gold);
  transition: gap var(--transition-fast);
}

.service-card:hover .service-arrow {
  gap: 12px;
}

/* --- Featured Projects --- */
.projects-header-flex {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 44px;
  flex-wrap: wrap;
  gap: 20px;
}

.project-filters {
  display: flex;
  gap: 8px;
  background: var(--bg-surface);
  padding: 5px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
}

.filter-btn {
  padding: 8px 16px;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--text-secondary);
  border-radius: var(--radius-sm);
  transition: all var(--transition-fast);
}

.filter-btn.active, .filter-btn:hover {
  background: var(--accent-gold);
  color: #FFFFFF;
  font-weight: 600;
}

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

.project-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition-smooth);
  position: relative;
}

.project-card:hover {
  border-color: var(--border-gold);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.project-img-wrapper {
  position: relative;
  height: 280px;
  overflow: hidden;
}

.project-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.project-tag {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--bg-surface);
  backdrop-filter: blur(8px);
  border: 1px solid var(--border-gold);
  padding: 5px 12px;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--accent-gold);
}

.project-location {
  position: absolute;
  bottom: 16px;
  left: 16px;
  background: var(--bg-surface-elevated);
  backdrop-filter: blur(8px);
  padding: 5px 12px;
  border-radius: var(--radius-sm);
  font-size: 0.75rem;
  color: var(--text-primary);
}

.project-content {
  padding: 28px;
}

.project-title {
  font-family: var(--font-heading);
  font-size: 1.625rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.project-desc {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  margin-bottom: 20px;
}

.project-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  border-top: 1px solid var(--border-light);
}

.placeholder-badge {
  font-size: 0.75rem;
  color: var(--accent-gold);
  font-weight: 600;
}

/* --- Why Choose Fortune --- */
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 48px;
}

.why-card {
  background: var(--bg-surface-elevated);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  transition: all var(--transition-smooth);
  position: relative;
}

.why-card:hover {
  border-color: var(--border-gold);
  background: var(--bg-surface-hover);
  transform: translateY(-4px);
}

.why-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background: var(--accent-gold-glow);
  border: 1px solid var(--border-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-gold);
  margin-bottom: 20px;
}

.why-title {
  font-family: var(--font-heading);
  font-size: 1.375rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.why-desc {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* --- Parallax Strong CTA Section --- */
.cta-banner {
  position: relative;
  padding: 100px 0;
  overflow: hidden;
  background-color: var(--bg-dark);
}

.cta-banner-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.25;
}

.cta-banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(11, 13, 17, 0.8) 0%, rgba(11, 13, 17, 0.95) 100%);
}

body.light-theme .cta-banner-overlay {
  background: linear-gradient(180deg, rgba(248, 250, 252, 0.85) 0%, rgba(248, 250, 252, 0.96) 100%);
}

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

/* --- Split Contact Section --- */
.contact-grid-split {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 36px;
  align-items: stretch;
}

.contact-info-panel {
  background: var(--bg-surface-elevated);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.contact-header-subtitle {
  color: var(--accent-gold);
  font-size: 0.8125rem;
  letter-spacing: 0.1em;
  font-weight: 600;
  margin-bottom: 28px;
  text-transform: uppercase;
}

.contact-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 32px;
}

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

.contact-item-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-md);
  background: var(--accent-gold-glow);
  border: 1px solid var(--border-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-gold);
  font-size: 1.125rem;
  flex-shrink: 0;
}

.contact-item-title {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent-gold);
  margin-bottom: 3px;
  font-weight: 600;
}

.contact-item-value {
  font-size: 0.9375rem;
  color: var(--text-primary);
  line-height: 1.5;
}

.contact-actions-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.contact-map-compact {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-gold);
  background: var(--bg-surface-elevated);
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-md);
}

.map-top-bar {
  padding: 14px 20px;
  background: var(--bg-surface);
  border-bottom: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.map-top-title {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-primary);
}

.compact-map-body {
  flex: 1;
  min-height: 260px;
  width: 100%;
}

.compact-map-body iframe {
  width: 100%;
  height: 100%;
  min-height: 260px;
  border: none;
}

/* --- REDESIGNED INTERACTIVE LUXURY FAQ ACCORDION --- */
.faq-accordion {
  max-width: 880px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background: var(--bg-surface-elevated);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all var(--transition-fast);
}

.faq-item:hover {
  border-color: var(--border-gold);
  box-shadow: var(--shadow-gold);
}

.faq-item.active {
  border-color: var(--accent-gold);
  background: var(--bg-surface-hover);
  box-shadow: var(--shadow-gold);
}

.faq-question {
  width: 100%;
  padding: 22px 26px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-align: left;
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-primary);
  background: none;
  border: none;
  cursor: pointer;
  gap: 20px;
}

.faq-question:hover {
  color: var(--accent-gold-light);
}

.faq-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--accent-gold-glow);
  border: 1px solid var(--border-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-gold);
  font-size: 1.25rem;
  flex-shrink: 0;
  transition: transform var(--transition-fast), background-color var(--transition-fast), color var(--transition-fast);
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
  background: var(--accent-gold);
  color: #FFFFFF;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1), padding 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  padding: 0 26px;
  color: var(--text-secondary);
  font-size: 0.9375rem;
  line-height: 1.7;
}

.faq-item.active .faq-answer {
  max-height: 400px;
  padding: 0 26px 24px 26px;
}

/* --- Non-Scrollable Compact Enquiry Modal --- */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(8, 10, 14, 0.88);
  backdrop-filter: blur(16px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-smooth);
}

body.light-theme .modal-overlay {
  background: rgba(248, 250, 252, 0.88);
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal-dialog {
  background: var(--bg-surface-elevated);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-lg);
  max-width: 620px;
  width: calc(100% - 24px);
  padding: 24px 28px;
  position: relative;
  box-shadow: var(--shadow-lg);
  transform: scale(0.95);
  transition: transform var(--transition-smooth);
  overflow: hidden; /* Non-scrollable modal */
}

.modal-overlay.active .modal-dialog {
  transform: scale(1);
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 18px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--bg-surface);
  border: 1px solid var(--border-light);
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition-fast);
  z-index: 10;
}

.modal-close:hover {
  background: var(--accent-gold);
  color: #FFFFFF;
}

.modal-header {
  margin-bottom: 16px;
}

.modal-header .eyebrow {
  margin-bottom: 4px;
  font-size: 0.75rem;
}

.modal-header .heading-sm {
  font-size: 1.375rem;
  margin-bottom: 4px;
}

.modal-header p {
  font-size: 0.8125rem;
  color: var(--text-secondary);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 14px;
}

.form-group {
  margin-bottom: 0;
}

.form-group.full {
  grid-column: span 2;
}

.form-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 4px;
}

.form-input, .form-select, .form-textarea {
  width: 100%;
  padding: 8px 12px;
  background: var(--bg-surface);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  color: var(--text-primary);
  font-size: 0.875rem;
  transition: border-color var(--transition-fast);
  height: 38px;
}

.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--accent-gold);
  box-shadow: 0 0 0 2px var(--accent-gold-glow);
}

.form-select option {
  background-color: var(--bg-surface-elevated);
  color: var(--text-primary);
}

.form-textarea {
  resize: none;
  height: 48px;
  padding: 8px 12px;
}

.modal-submit-btn {
  margin-top: 12px;
  padding: 10px 20px;
  font-size: 0.875rem;
  min-height: 44px;
}

/* Success State inside Modal */
.modal-success-state {
  display: none;
  text-align: center;
  padding: 16px 8px;
}

.modal-success-state.active {
  display: block;
}

.success-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--accent-gold-glow);
  border: 2px solid var(--accent-gold);
  color: var(--accent-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
  font-size: 1.25rem;
}

/* --- Floating Actions --- */
.floating-whatsapp {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 900;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25D366;
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
  transition: transform var(--transition-fast);
  animation: whatsappPulse 3s infinite;
}

.floating-whatsapp:hover {
  transform: scale(1.1);
}

@keyframes whatsappPulse {
  0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6); }
  70% { box-shadow: 0 0 0 14px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

.mobile-call-cta {
  display: none;
  position: fixed;
  bottom: 24px;
  left: 24px;
  z-index: 900;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--bg-surface-elevated);
  border: 1px solid var(--border-gold);
  color: var(--accent-gold);
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
}

/* --- Footer --- */
.footer {
  background-color: #07080A;
  border-top: 1px solid var(--border-light);
  padding: 70px 0 36px;
}

body.light-theme .footer {
  background-color: #0F172A;
}

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

.footer-brand-desc {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  margin: 18px 0 20px;
  max-width: 320px;
}

body.light-theme .footer-brand-desc {
  color: #94A3B8;
}

.footer-title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  color: var(--text-primary);
  margin-bottom: 20px;
}

body.light-theme .footer-title {
  color: #FFFFFF;
}

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

.footer-link {
  font-size: 0.875rem;
  color: var(--text-secondary);
}

body.light-theme .footer-link {
  color: #CBD5E1;
}

.footer-link:hover {
  color: var(--accent-gold);
}

.footer-bottom {
  padding-top: 24px;
  border-top: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.8125rem;
  color: var(--text-muted);
  flex-wrap: wrap;
  gap: 14px;
}

body.light-theme .footer-bottom {
  border-top-color: rgba(255, 255, 255, 0.1);
  color: #94A3B8;
}

/* ==========================================================================
   MOBILE & TABLET RESPONSIVE BREAKPOINTS (Fluid Layout)
   ========================================================================== */
@media (max-width: 1024px) {
  .hero-content-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .about-grid, .contact-grid-split {
    grid-template-columns: 1fr;
    gap: 36px;
  }

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

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

  .timeline-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .timeline-grid::before {
    display: none;
  }

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

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

  .nav-menu, .nav-actions .btn {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .mobile-call-cta {
    display: flex;
  }

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

  .projects-header-flex {
    flex-direction: column;
    align-items: flex-start;
  }

  .project-filters {
    width: 100%;
    overflow-x: auto;
  }

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

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

  .form-group.full {
    grid-column: span 1;
  }

  .hero-card {
    padding: 24px;
  }

  .modal-dialog {
    padding: 20px 16px;
  }

  .contact-info-panel {
    padding: 28px 20px;
  }

  .compact-map-body {
    min-height: 240px;
  }

  .compact-map-body iframe {
    min-height: 240px;
  }

  .faq-question {
    padding: 18px 20px;
    font-size: 1.125rem;
  }

  .nav-logo-img {
    height: 38px;
  }
}

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

  .heading-lg {
    font-size: 2.125rem;
  }

  .heading-md {
    font-size: 1.75rem;
  }

  .btn {
    width: 100%;
  }

  .hero-cta-group {
    flex-direction: column;
    width: 100%;
  }

  .contact-actions-row {
    flex-direction: column;
    width: 100%;
  }

  .contact-actions-row .btn {
    width: 100%;
  }

  .floating-whatsapp {
    bottom: 16px;
    right: 16px;
    width: 50px;
    height: 50px;
  }

  .mobile-call-cta {
    bottom: 16px;
    left: 16px;
    width: 44px;
    height: 44px;
  }
}

/* ==========================================================================
   INTERACTIVE DUAL-CITY PROJECTS SECTION (BHUBANESWAR & ROURKELA)
   ========================================================================== */
.city-cards-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.city-card {
  background: var(--bg-surface-elevated);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  transition: all var(--transition-smooth);
  display: flex;
  flex-direction: column;
  position: relative;
  box-shadow: var(--shadow-md);
}

.city-card:hover {
  transform: translateY(-8px);
  border-color: var(--accent-gold);
  box-shadow: var(--shadow-gold), 0 12px 40px rgba(0, 0, 0, 0.4);
}

.city-card-image-wrapper {
  position: relative;
  height: 260px;
  width: 100%;
  overflow: hidden;
}

.city-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.city-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(11, 13, 17, 0.1) 0%, rgba(11, 13, 17, 0.85) 100%);
}

body.light-theme .city-card-overlay {
  background: linear-gradient(180deg, rgba(248, 250, 252, 0.1) 0%, rgba(15, 23, 42, 0.75) 100%);
}

.city-card-badge {
  position: absolute;
  top: 18px;
  left: 18px;
  background: rgba(11, 13, 17, 0.8);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-full);
  padding: 6px 14px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--accent-gold);
  display: flex;
  align-items: center;
  gap: 8px;
}

.city-card-badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #10B981;
  box-shadow: 0 0 10px #10B981;
}

.city-card-content {
  padding: 28px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.city-card-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 12px;
}

.city-card-title {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--text-primary);
  line-height: 1.2;
}

.city-card-location {
  font-size: 0.8125rem;
  color: var(--accent-gold);
  margin-top: 4px;
  font-weight: 500;
}

.city-card-arrow {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--accent-gold-glow);
  border: 1px solid var(--border-gold);
  color: var(--accent-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
  transition: all var(--transition-fast);
}

.city-card:hover .city-card-arrow {
  background: var(--accent-gold);
  color: #FFFFFF;
  transform: translateX(4px);
}

.city-card-desc {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 20px;
}

.city-card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}

.city-tag {
  background: var(--bg-surface);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  padding: 4px 10px;
  font-size: 0.75rem;
  color: var(--text-secondary);
  font-weight: 500;
}

.city-card-footer {
  margin-top: auto;
}

/* City Projects Subview Header & Tabs */
.city-projects-view {
  animation: fadeInView 0.5s ease forwards;
}

@keyframes fadeInView {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.city-view-header {
  margin-bottom: 40px;
}

.back-to-cities-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: var(--radius-md);
  background: var(--bg-surface-elevated);
  border: 1px solid var(--border-gold);
  color: var(--accent-gold);
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  margin-bottom: 24px;
  transition: all var(--transition-fast);
}

.back-to-cities-btn:hover {
  background: var(--accent-gold-glow);
  transform: translateX(-4px);
}

.status-filter-tabs {
  display: flex;
  gap: 12px;
  margin-top: 24px;
  flex-wrap: wrap;
}

.status-tab-btn {
  padding: 10px 20px;
  border-radius: var(--radius-full);
  background: var(--bg-surface-elevated);
  border: 1px solid var(--border-light);
  color: var(--text-secondary);
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.status-tab-btn:hover {
  border-color: var(--border-gold);
  color: var(--accent-gold);
}

.status-tab-btn.active {
  background: linear-gradient(135deg, var(--accent-gold) 0%, var(--accent-gold-dark) 100%);
  color: #FFFFFF;
  border-color: var(--accent-gold);
  box-shadow: var(--shadow-gold);
}

/* Detailed Project Card */
.projects-detail-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.project-detail-card {
  background: var(--bg-surface-elevated);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition-smooth);
  display: flex;
  flex-direction: column;
}

.project-detail-card:hover {
  border-color: var(--border-gold);
  transform: translateY(-4px);
  box-shadow: var(--shadow-gold);
}

.project-detail-img-wrapper {
  position: relative;
  height: 240px;
  width: 100%;
  overflow: hidden;
}

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

.project-detail-card:hover .project-detail-img {
  transform: scale(1.05);
}

.badge-status {
  position: absolute;
  top: 16px;
  left: 16px;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  backdrop-filter: blur(10px);
}

.badge-ongoing {
  background: rgba(234, 179, 8, 0.9);
  color: #000000;
  box-shadow: 0 4px 12px rgba(234, 179, 8, 0.3);
}

.badge-completed {
  background: rgba(16, 185, 129, 0.9);
  color: #FFFFFF;
  box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}

.project-detail-location {
  position: absolute;
  bottom: 12px;
  left: 16px;
  right: 16px;
  background: rgba(11, 13, 17, 0.85);
  backdrop-filter: blur(8px);
  border-radius: var(--radius-sm);
  padding: 6px 12px;
  font-size: 0.75rem;
  color: #FFFFFF;
  font-weight: 500;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.project-detail-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.project-detail-title {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 10px;
  line-height: 1.25;
}

.project-detail-desc {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 20px;
}

.project-specs-list {
  background: var(--bg-surface);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 14px 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
}

.spec-item {
  font-size: 0.8125rem;
  color: var(--text-primary);
}

.spec-label {
  font-weight: 600;
  color: var(--accent-gold);
  margin-right: 6px;
}

@media (max-width: 1024px) {
  .city-cards-grid, .projects-detail-grid {
    grid-template-columns: 1fr;
  }
}

