:root {
  /* Colors - Premium & Comforting Palette */
  --bg-primary: #f8f9fa; /* Off-white for airy feel */
  --bg-secondary: #ffffff; /* Pure white */
  --text-primary: #1a202c; /* Charcoal, not pure black */
  --text-secondary: #4a5568; /* Light slate */
  --accent-primary: #0f2c41; /* Deep Midnight Blue from modern architectural examples */
  --accent-secondary: #214358;
  --gold-accent: #c3a361; /* Champagne Gold for luxury feel */
  --border-color: #e2e8f0;

  /* Typography */
  --font-heading: 'Cinzel', 'Playfair Display', serif; /* Elegant, premium headings */
  --font-body: 'Inter', 'Montserrat', sans-serif; /* Clean, modern body text */

  /* Spacing */
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 1.5rem;
  --spacing-lg: 3rem;
  --spacing-xl: 4.5rem;

  /* Layout */
  --max-width: 1650px; /* Widened to utilize more monitor space */
  --header-height: 90px;
  --border-radius: 4px; /* Slight rounding for comfort, not too soft */
  
  /* Navigation */
  --nav-backdrop: rgba(255, 255, 255, 0.85); /* Glassmorphism */
}

/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

body {
  font-family: var(--font-body);
  color: var(--text-primary);
  background-color: var(--bg-primary);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.3s ease;
}

ul {
  list-style: none;
}

/* Typography Classes */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 400; /* Lighter weight for modern luxury feel */
  line-height: 1.2;
  color: var(--accent-primary);
  margin-bottom: var(--spacing-sm);
}

h1 {
  font-size: clamp(1.75rem, 6vw, 4.5rem);
  letter-spacing: -0.02em;
}

h2 {
  font-size: clamp(1.5rem, 3.5vw, 2.5rem);
  margin-bottom: var(--spacing-md); /* Standardized title spacing */
}

h3 {
  font-size: clamp(1.2rem, 2.5vw, 2rem);
  margin-bottom: var(--spacing-sm); /* Standardized subtitle spacing */
}

p {
  margin-bottom: var(--spacing-sm);
  font-size: clamp(1rem, 2.5vw, 1.125rem);
  color: var(--text-secondary);
  font-weight: 300;
  letter-spacing: 0.01em;
}

/* Global paragraph readability standard */
.container p:not(.lead-text) {
  max-width: 900px;
}

p.lead-text,
.text-center p {
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

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

/* Reusable Layout Classes */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 5%; /* Solid fallback */
  padding: 0 max(2rem, 5vw); /* Dynamically scales padding to provide more breathing room on all screens */
}

.section-padding {
  padding-top: var(--spacing-xl);
  padding-bottom: var(--spacing-xl);
}

/* Responsive section spacing */
@media (max-width: 768px) {
  .section-padding {
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
  }
}
@media (max-width: 480px) {
  .section-padding {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }
}

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

.grid {
  display: grid;
  gap: var(--spacing-lg);
}

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

.grid-cols-3 {
  grid-template-columns: repeat(3, 1fr);
}

.developments-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--spacing-lg);
}

.developments-grid > .card,
.developments-grid > .contact-card {
  width: calc(33.333% - (var(--spacing-lg) * 2 / 3));
}

@media (max-width: 992px) {
  .grid-cols-3 {
    grid-template-columns: repeat(2, 1fr);
  }
  .developments-grid > .card,
  .developments-grid > .contact-card {
    width: calc(50% - (var(--spacing-lg) / 2));
  }
}
@media (max-width: 768px) {
  .grid-cols-2, .grid-cols-3 {
    grid-template-columns: 1fr;
  }
  .developments-grid > .card,
  .developments-grid > .contact-card {
    width: 100%;
  }
}

/* Navigation Menu */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  background: transparent;
  z-index: 1000;
  transition: background 0.4s ease, backdrop-filter 0.4s ease, border-bottom 0.4s ease;
  display: flex;
  align-items: center;
}

header.scrolled {
  background: var(--nav-backdrop);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  position: relative; /* Anchor for absolute centering */
}

.logo {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--accent-primary);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  z-index: 1001;
}

.nav-logo {
  height: 28px;
  width: auto;
  transition: filter 0.4s ease;
  display: block;
}

header:not(.scrolled) .logo.light-hero {
  color: var(--bg-secondary);
}

header:not(.scrolled) .logo.light-hero .nav-logo {
  filter: brightness(0) invert(1);
}

.nav-links {
  margin-left: auto;
  margin-right: max(2%, 2rem);
  display: flex;
  align-items: center;
  gap: 1.25rem; /* Reduced spacing to prevent overlap */
}

/* Base style for all top-level nav links and dropdown triggers */
.nav-links > a,
.nav-links .dropdown-trigger {
  font-family: var(--font-body);
  font-size: 0.85rem; /* Reduced for better fit */
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent-primary);
  position: relative;
  padding-bottom: 4px;
  white-space: nowrap; /* Forces text to stay on one line */
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 4px;
}

/* Thin vertical separator lines on top-level items */
.nav-links > *:not(:first-child)::before {
  content: '';
  position: absolute;
  left: -0.625rem; /* Half of the 1.25rem gap */
  top: 50%;
  transform: translateY(-50%);
  height: 14px;
  width: 1px;
  background-color: rgba(150, 150, 150, 0.4);
}

header:not(.scrolled) .nav-links.light-hero > a,
header:not(.scrolled) .nav-links.light-hero .dropdown-trigger {
  color: var(--bg-secondary);
}

header:not(.scrolled) .nav-links.light-hero > *:not(:first-child)::before {
  background-color: rgba(255, 255, 255, 0.3);
}

/* Underline effect */
.nav-links > a::after,
.nav-links .dropdown-trigger::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 1px;
  background-color: var(--gold-accent);
  transition: width 0.3s ease;
}

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

.nav-links > a.active,
.nav-links .dropdown-trigger.active {
  color: var(--gold-accent);
}

header:not(.scrolled) .nav-links.light-hero > a.active,
header:not(.scrolled) .nav-links.light-hero .dropdown-trigger.active {
  color: var(--gold-accent);
}

/* Dropdown Menu Containers */
.nav-dropdown {
  position: relative;
  display: inline-block;
}

.dropdown-trigger .arrow {
  font-size: 0.65rem;
  transition: transform 0.3s ease;
  display: inline-block;
  vertical-align: middle;
}

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

.dropdown-menu {
  display: block;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  background-color: var(--bg-secondary);
  min-width: 210px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  border-radius: var(--border-radius);
  padding: 0.5rem 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
  z-index: 1002;
  border: 1px solid var(--border-color);
  margin-top: 10px; /* Gap to prevent accidental closing */
}

/* Hover active state to reveal dropdown */
.nav-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

/* Dropdown Menu Links */
.dropdown-menu a {
  display: block;
  padding: 0.7rem 1.5rem;
  color: var(--text-primary) !important; /* Forces dark charcoal readable text in all states */
  font-family: var(--font-body);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 500;
  transition: background 0.2s ease, color 0.2s ease;
  text-align: left;
  position: relative;
}

.dropdown-menu a::after {
  display: none !important; /* No gold underline in dropdown links */
}

.dropdown-menu a::before {
  display: none !important; /* No separators inside dropdown */
}

.dropdown-menu a:hover {
  background-color: var(--bg-primary);
  color: var(--gold-accent) !important;
}

.dropdown-menu a.active {
  color: var(--gold-accent) !important;
  font-weight: 600;
}

.translate-wrapper {
  margin-right: var(--spacing-md);
  margin-left: auto;
  display: flex;
  align-items: center;
}

.custom-lang-switcher.dropdown {
  position: relative;
  display: inline-block;
}

.custom-lang-switcher .active-lang {
  background: transparent;
  border: 1px solid rgba(150, 150, 150, 0.3);
  padding: 6px 12px;
  border-radius: var(--border-radius);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: all 0.3s ease;
}

header:not(.scrolled) .translate-wrapper.light-hero .active-lang {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.3);
}

.custom-lang-switcher .active-lang:hover {
  border-color: var(--gold-accent);
  color: var(--gold-accent);
}

.lang-dropdown-content {
  display: none;
  position: absolute;
  top: 100%;
  right: 0;
  background-color: var(--bg-secondary);
  min-width: 90px;
  box-shadow: 0px 10px 25px rgba(0,0,0,0.1);
  z-index: 1005;
  border-radius: var(--border-radius);
  overflow: hidden;
  margin-top: 5px;
  border: 1px solid var(--border-color);
}

.lang-dropdown-content a {
  color: var(--text-primary);
  padding: 10px 16px;
  text-decoration: none;
  display: block;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
  text-align: center;
  transition: background 0.2s ease, color 0.2s ease;
}

.lang-dropdown-content a:hover {
  background-color: var(--bg-primary);
  color: var(--gold-accent);
}

.custom-lang-switcher.dropdown.open .lang-dropdown-content {
  display: block;
}

.lang-dropdown-content a.active {
    font-weight: 700;
    color: var(--gold-accent);
}

/* Hide ALL Native Google Translate Elements strictly */
#google_translate_element { display: none !important; }
.skiptranslate { display: none !important; }
.goog-te-banner-frame { display: none !important; }
body { top: 0px !important; } /* Stop goole translate from pushing body down */
.VIpgJd-ZVi9od-ORHb-OEVmcd { display: none !important; } /* Hide google banner */

/* Mobile Menu Toggle */
.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-around;
  width: 30px;
  height: 20px;
  cursor: pointer;
  z-index: 1001;
}

.menu-toggle span {
  width: 100%;
  height: 2px;
  background-color: var(--accent-primary);
  transition: all 0.3s ease;
}

header:not(.scrolled) .menu-toggle.light-hero span {
  background-color: var(--bg-secondary);
}

/* Mobile Menu Styles */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  height: 100vh;
  background: linear-gradient(135deg, var(--accent-primary) 0%, #05131c 100%);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 4vh 0;
  overflow-y: auto;
  z-index: 1000;
  transition: right 0.5s cubic-bezier(0.77, 0, 0.175, 1);
}

.mobile-menu.active {
  right: 0;
}

.mobile-menu > a {
  font-family: var(--font-heading) !important;
  font-size: clamp(0.95rem, 4vw, 1.1rem) !important;
  color: #ffffff !important;
  margin: 0.25rem 0 !important;
  padding: 0.6rem 1.5rem !important;
  width: 90%;
  max-width: 320px;
  text-align: center;
  text-transform: uppercase !important;
  letter-spacing: 0.15em !important;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(10px);
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1) !important;
}

.mobile-menu > a:hover {
  color: var(--gold-accent) !important;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.15);
  transform: translateY(-1px);
}

.mobile-menu > a.active {
  color: var(--gold-accent) !important;
  background: rgba(212, 175, 55, 0.15);
  border-color: var(--gold-accent);
  font-weight: 600;
}

.menu-toggle.active span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
  background-color: var(--bg-primary);
}

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

.menu-toggle.active span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
  background-color: var(--bg-primary);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2.5rem;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  cursor: pointer;
  border: 1px solid transparent;
  border-radius: var(--border-radius);
  transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.btn-primary {
  background-color: var(--accent-primary);
  color: var(--bg-secondary);
}

.btn-primary:hover {
  background-color: transparent;
  color: var(--accent-primary);
  border-color: var(--accent-primary);
}

.btn-outline {
  background-color: transparent;
  color: var(--accent-primary);
  border-color: var(--accent-primary);
}

.btn-outline:hover {
  background-color: var(--accent-primary);
  color: var(--bg-secondary);
}

.btn-gold {
  background-color: var(--gold-accent);
  color: var(--bg-secondary);
}
.btn-gold:hover {
  background-color: transparent;
  color: var(--gold-accent);
  border-color: var(--gold-accent);
}

/* Pulsing Glow Button for emphasis */
.btn-pulse-glow {
  background-color: var(--gold-accent);
  color: var(--bg-secondary);
  border: none;
  position: relative;
  overflow: hidden;
  box-shadow: 0 0 10px rgba(195, 163, 97, 0.5);
  animation: pulse-glow 2.5s infinite;
  padding: 1rem 2rem;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border-radius: var(--border-radius);
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.btn-pulse-glow:hover {
  transform: translateY(-4px) scale(1.02);
  background-color: var(--accent-primary);
  color: var(--gold-accent);
  border: 1px solid var(--gold-accent);
}

@keyframes pulse-glow {
  0% {
    box-shadow: 0 0 0 0 rgba(195, 163, 97, 0.6);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(195, 163, 97, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(195, 163, 97, 0);
  }
}

.btn-pulse-glow::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,0.3) 50%, rgba(255,255,255,0) 100%);
  transform: skewX(-25deg);
  animation: shine 3s infinite;
  z-index: -1;
}

@keyframes shine {
  0% { left: -100%; }
  20% { left: 200%; }
  100% { left: 200%; }
}

/* Image Utilities */
.img-cover {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.img-zoom-container {
  overflow: hidden;
  position: relative;
}

.img-zoom-container img {
  transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.img-zoom-container:hover img {
  transform: scale(1.05);
}

/* Hero Section Base */
.hero {
  height: 100vh;
  min-height: 600px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding-top: var(--header-height); /* Account for fixed header height to prevent text cutoff */
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4); /* Darkening for text legibility */
  z-index: -1;
}

.hero-content {
  text-align: center;
  color: var(--bg-secondary);
  max-width: 900px;
  width: 100%;
  padding: 0 1.5rem;
  z-index: 1;
  margin: 0 auto;
}

.hero-content h1 {
  color: var(--bg-secondary);
  text-shadow: 0 4px 12px rgba(0,0,0,0.1);
  word-break: break-word;
  hyphens: auto;
}
.hero-content p {
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1rem, 2.5vw, 1.25rem);
}

/* Hero CTA buttons — stack on small screens */
.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-top: 2rem;
}

/* Story/Info Sections */
.split-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: clamp(2rem, 5vw, var(--spacing-xl));
}

.split-section.reverse .split-content {
  order: 2;
}
.split-section.reverse .split-image {
  order: 1;
}


.split-image {
  position: relative;
  height: 450px;
  max-height: 60vh;
  border-radius: var(--border-radius);
  overflow: hidden;
}

.split-image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.split-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* Cards (Projects, Services) */
.card {
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius);
  overflow: hidden;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  display: flex;
  flex-direction: column;
}

a.card {
  text-decoration: none;
  color: inherit;
}

.card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.card-image {
  height: 300px;
  overflow: hidden;
}

.card-content {
  padding: var(--spacing-md);
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.card-content > div:last-child,
.card-content > span:last-child,
.card-content > a.btn:last-child {
  margin-top: auto !important;
}

.card-content .btn {
  margin-top: auto !important;
  align-self: center;
}

.card-content h3 {
  font-size: 1.5rem;
  margin-bottom: var(--spacing-xs);
}

.card-content p {
  font-size: 1rem;
  margin-bottom: var(--spacing-md);
}

/* Footer */
footer {
  background-color: var(--accent-primary);
  color: var(--bg-secondary);
  padding: var(--spacing-xl) 0 var(--spacing-md);
}

footer h4 {
  color: var(--gold-accent);
  font-family: var(--font-body);
  font-size: 1.2rem;
  margin-bottom: var(--spacing-sm);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

footer p, footer a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
  transition: color 0.3s ease;
}

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

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--spacing-md);
  margin-bottom: var(--spacing-xl);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: var(--spacing-md);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
  flex-wrap: wrap;
}

.footer-bottom > div:first-child p {
  margin-bottom: 0.25rem;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
}

.footer-bottom > div:first-child a {
  color: rgba(255, 255, 255, 0.6);
  transition: color 0.3s ease;
}

.footer-bottom > div:first-child a:hover {
  color: var(--gold-accent);
}

.footer-social {
  display: flex;
  gap: var(--spacing-sm);
  flex-wrap: wrap;
  justify-content: flex-end;
}

.footer-social a {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.5);
  transition: color 0.3s ease;
}

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

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

@media (max-width: 1366px) {
  .nav-links {
    display: none;
  }
  .menu-toggle {
    display: flex;
  }
}

@media (max-width: 768px) {
  :root {
    --header-height: 70px; /* Reduced header height on mobile for better space utilization */
  }

  .split-section {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-lg);
  }
  .split-image {
    order: 1 !important;
    height: 280px !important;
    position: relative !important;
    width: 100% !important;
  }
  .split-content {
    order: 2 !important;
    padding-right: 0 !important;
    text-align: left !important;
  }
  /* Left-align inline links inside split-content on mobile */
  .split-content a {
    display: block;
    text-align: left;
  }
  .container {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: var(--spacing-md);
  }
  .footer-bottom {
    flex-direction: column;
    gap: var(--spacing-sm);
    text-align: center;
  }
  /* Card image on mobile */
  .card-image {
    height: 220px;
  }
  /* Reduce grid gap on mobile */
  .grid {
    gap: var(--spacing-md);
  }
  /* Center grid children that have inline max-width (e.g. about page) */
  .grid > div[style*="max-width"] {
    max-width: 100% !important;
    text-align: center;
  }
  /* Card text alignment on mobile */
  .card-content {
    text-align: center;
  }
}

@media (max-width: 480px) {
  .split-image {
    height: 220px;
  }
  .container {
    padding-left: 1rem;
    padding-right: 1rem;
  }
  /* Hero section adjustments for very small screens */
  .hero-content {
    padding: 0 1rem;
  }
  /* Stack hero CTA buttons vertically on phones */
  .hero-cta {
    flex-direction: column;
    align-items: center;
  }
  .hero-cta .btn {
    width: 100%;
    max-width: 280px;
    text-align: center;
    justify-content: center;
  }
  /* Footer padding */
  footer {
    padding-top: 3rem;
    padding-bottom: 1.5rem;
  }
  footer h4 {
    font-size: 1rem;
  }
}

/* Animation Utility Classes (GSAP Triggered) */
.gsap-fade-up {
  opacity: 0;
  transform: translateY(40px);
}
.gsap-fade-in {
  opacity: 0;
}

/* Co-Create Section Styles */
.cocreate-section {
  position: relative;
  z-index: 1;
}

.cocreate-top {
  background-color: var(--accent-primary);
  padding: 5rem 0 3rem 0;
}

.cocreate-title {
  color: #fff !important;
  font-family: var(--font-heading);
  margin-bottom: 0.5rem;
  font-size: 2.5rem;
}

.cocreate-divider {
  width: 50px;
  border: 1px solid #fff;
  margin: 0 auto 1.5rem auto;
}

.cocreate-subtitle {
  color: #fff !important;
  max-width: 800px;
  margin: 0 auto;
  font-size: 1.05rem;
  font-weight: 300;
  line-height: 1.6;
}

.cocreate-bottom {
  position: relative;
  padding-bottom: 5rem;
  background-color: var(--bg-secondary);
}

.cocreate-bottom::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 120px;
  background-color: var(--accent-primary);
}

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

.cocreate-grid {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  max-width: 1100px;
  margin: 0 auto;
  align-items: stretch;
}

/* Global CTA Block for high-impact Centering */
.cta-block {
  max-width: 1000px;
  margin: 0 auto !important;
  padding: var(--spacing-lg);
  background: var(--accent-primary);
  border-radius: var(--border-radius);
  text-align: center !important;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.cta-block h2 {
  color: var(--gold-accent) !important;
  font-family: var(--font-heading);
  margin-bottom: 1rem;
  text-align: center !important;
  width: 100%;
}
.cta-block p {
  color: rgba(255, 255, 255, 0.8) !important;
  font-size: 1.1rem;
  max-width: 800px;
  margin: 0 auto 2rem !important;
  text-align: center !important;
}

.cocreate-invite {
  background-color: var(--accent-secondary);
  color: #fff;
  padding: 2.5rem 2rem;
  border-radius: var(--border-radius);
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  min-width: 300px;
}

.cocreate-invite p {
  color: #fff;
  margin: 0 auto;
  font-size: 0.95rem;
  line-height: 1.6;
  text-align: center;
}

.cocreate-cards {
  display: flex;
  gap: 1rem;
  flex: 1.7;
}

.cocreate-card {
  background-color: #fff;
  border-radius: var(--border-radius);
  padding: 2.5rem 1.5rem;
  flex: 1;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  border: 1px solid var(--border-color);
}

.cocreate-icon {
  color: var(--accent-primary);
  margin-bottom: 1.5rem;
}

.cocreate-card p {
  font-size: 0.85rem;
  margin: 0;
  color: var(--text-primary);
  line-height: 1.5;
  font-weight: 500;
}

.cocreate-btn-container {
  margin-top: 3.5rem;
}

.cocreate-btn {
  background-color: var(--gold-accent);
  color: #fff;
  border-color: var(--gold-accent);
  padding: 1rem 3rem;
  border-radius: var(--border-radius);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.05em;
}

.cocreate-btn:hover {
  background-color: transparent;
  color: var(--gold-accent);
  border-color: var(--gold-accent);
}

@media (max-width: 992px) {
  .cocreate-grid {
    flex-direction: column;
  }
  .cocreate-cards {
    flex-direction: column;
  }
  .cocreate-invite {
    min-width: 100%;
  }
}

/* --- Corporate Info Modal --- */
.modal-overlay {
  display: none;
  position: fixed;
  top: 0; left: 0; width: 100%; height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 2000;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.modal-overlay.active {
  display: flex;
  opacity: 1;
}
.modal-content {
  background: var(--bg-secondary);
  padding: var(--spacing-lg);
  max-width: 800px;
  width: 90%;
  border-radius: var(--border-radius);
  position: relative;
  max-height: 85vh;
  overflow-y: auto;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
  transform: translateY(20px);
  transition: transform 0.3s ease;
}
.modal-overlay.active .modal-content {
  transform: translateY(0);
}
.modal-close {
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  font-size: 2.5rem;
  line-height: 1;
  cursor: pointer;
  color: var(--text-secondary);
  transition: color 0.3s ease;
}
.modal-close:hover {
  color: var(--gold-accent);
}

/* --- Product Card Hover Info --- */
.product-card {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 160px;
}
.product-info-default {
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.product-info-hover {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: var(--accent-primary);
  color: var(--bg-secondary);
  padding: var(--spacing-md);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translateY(100%);
  transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}
.product-card:hover .product-info-default {
  opacity: 0;
  transform: translateY(-20px);
}
.product-card:hover .product-info-hover {
  opacity: 1;
  transform: translateY(0);
}
.product-info-hover p {
  color: #ffffff !important;
  font-size: 0.8rem;
  line-height: 1.5;
  margin: 0;
  text-transform: none;
}

/* Mobile Menu Dropdowns */
.mobile-dropdown {
  width: 90%;
  max-width: 320px;
  text-align: center;
  margin: 0.25rem 0;
}

.mobile-dropdown-title {
  font-family: var(--font-heading);
  font-size: clamp(0.95rem, 4vw, 1.1rem);
  color: var(--gold-accent);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  display: block;
  margin-bottom: 0.25rem;
  font-weight: 500;
  opacity: 0.9;
}

.mobile-dropdown-links {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.2rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.07);
  padding: 0.4rem 0.5rem;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  backdrop-filter: blur(10px);
  width: 100%;
}

.mobile-dropdown-links a {
  font-family: var(--font-body) !important;
  font-size: 0.8rem !important;
  color: rgba(255, 255, 255, 0.8) !important;
  text-transform: uppercase !important;
  letter-spacing: 0.05em !important;
  margin: 0 !important;
  padding: 0.35rem 0.5rem !important;
  width: 100%;
  text-align: center;
  border-radius: 6px;
  transition: all 0.25s ease !important;
}

.mobile-dropdown-links a:hover {
  color: var(--gold-accent) !important;
  background: rgba(255, 255, 255, 0.06);
}

.mobile-dropdown-links a.active {
  color: var(--gold-accent) !important;
  background: rgba(212, 175, 55, 0.15);
  font-weight: 600;
}

/* Activities Page Unique Styles */
.activities-hero-subtitle {
  font-size: 1.5rem !important;
  color: var(--gold-accent) !important;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-top: 0.5rem;
}

.brand-section {
  padding: var(--spacing-lg) 0;
  border-bottom: 1px solid var(--border-color);
}

.brand-section:last-of-type {
  border-bottom: none;
}

.brand-badge {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--gold-accent);
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.brand-tagline {
  font-style: italic;
  font-size: 1.15rem;
  color: var(--text-secondary);
  margin-top: 0.75rem;
  border-left: 2px solid var(--gold-accent);
  padding-left: 1rem;
  max-width: 900px;
}

.brand-list {
  margin-top: 1.25rem;
  list-style: none;
  padding-left: 0;
}

.brand-list li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.6rem;
  font-size: 1rem;
  color: var(--text-secondary);
  max-width: 900px;
}

.brand-list li strong {
  color: var(--accent-primary);
}

.brand-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--gold-accent);
  font-size: 1.2rem;
  top: -2px;
}

/* Brand Logo Display Styles for Homepage */
.brand-logo-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
  padding: 1.5rem;
  transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  width: 100%;
}

.brand-logo-container:hover {
  transform: scale(1.05);
}

.brand-logo-icon {
  width: 100px;
  max-width: 80%;
  height: auto;
  filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.04));
}

.brand-logo-text {
  font-family: var(--font-heading);
  font-size: clamp(1.2rem, 2.5vw, 1.6rem);
  letter-spacing: 0.15em;
  font-weight: 500;
  text-align: center;
  text-transform: uppercase;
}

/* Interactive Logo Hover Cards for Activities */
.interactive-logo-card {
  display: block;
  position: relative;
  width: 100%;
  height: 100%;
  background-color: #ffffff;
  border: 1px solid var(--border-color);
  overflow: hidden;
  transition: border-color 0.4s ease, box-shadow 0.4s ease;
}

/* The default logo image (takes up full width/height, object-fit: cover just like original) */
.interactive-logo-card .logo-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 2;
  opacity: 1;
  transform: scale(1);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

/* The hero image that fades in on-hover */
.interactive-logo-card .hero-bg-hover {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  opacity: 0;
  transform: scale(1.05);
  transition: opacity 0.5s ease, transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

/* Clean overlay to darken the hero image slightly and style it */
.interactive-logo-card .hero-overlay-hover {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(15, 44, 65, 0.4);
  z-index: 1.5;
  opacity: 0;
  transition: opacity 0.5s ease;
}

/* Hover States */
.interactive-logo-card:hover {
  border-color: var(--gold-accent);
  box-shadow: 0 15px 35px rgba(15, 44, 65, 0.15);
}

.interactive-logo-card:hover .logo-img {
  opacity: 0;
  transform: scale(0.98);
}

.interactive-logo-card:hover .hero-bg-hover {
  opacity: 1;
  transform: scale(1);
}

.interactive-logo-card:hover .hero-overlay-hover {
  opacity: 1;
}

/* About Page Redesign Styles */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-lg);
  margin-bottom: var(--spacing-lg);
}

.about-card-narrative {
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  padding: var(--spacing-lg);
  border-radius: var(--border-radius);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
  transition: transform 0.4s ease, border-color 0.4s ease;
}

.about-card-narrative:hover {
  border-color: var(--gold-accent);
}

.about-card-narrative h3 {
  font-size: 1.75rem;
  color: var(--accent-primary);
  margin-bottom: 1.25rem;
  border-bottom: 2px solid var(--gold-accent);
  padding-bottom: 0.5rem;
  display: inline-block;
}

.narrative-lead {
  font-size: 1.15rem;
  line-height: 1.8;
  color: var(--accent-primary);
  font-weight: 400;
  margin-bottom: 1.25rem;
}

.about-panoramic-image {
  position: relative;
  height: 380px;
  width: 100%;
  border-radius: var(--border-radius);
  overflow: hidden;
  margin-top: var(--spacing-lg);
}

.about-panoramic-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

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

.panoramic-overlay {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: rgba(15, 44, 65, 0.15); /* Soft premium tint */
  pointer-events: none;
}

/* Twin Cards for Vision and Mission */
.twin-cards-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-lg);
}

.twin-card {
  background: var(--accent-primary);
  color: #ffffff;
  padding: var(--spacing-lg);
  border-radius: var(--border-radius);
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(15, 44, 65, 0.1);
  transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.4s ease;
}

.twin-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(15, 44, 65, 0.2);
}

.twin-card h2 {
  color: #ffffff;
  font-size: 2rem;
  margin-bottom: 1.5rem;
  font-family: var(--font-heading);
}

.twin-card-text {
  color: rgba(255, 255, 255, 0.9) !important;
  font-size: 1.2rem;
  line-height: 1.8;
  font-weight: 300;
  margin: 0;
  max-width: 100% !important;
}

.card-accent-line {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background-color: var(--gold-accent);
}

@media (max-width: 768px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: var(--spacing-md);
  }
  .about-panoramic-image {
    height: 240px;
  }
  .twin-cards-grid {
    grid-template-columns: 1fr;
    gap: var(--spacing-md);
  }
  .twin-card {
    padding: var(--spacing-md) var(--spacing-sm);
  }
}

/* Centered Main Menu Redesign for Desktop */
@media (min-width: 1367px) {
  .nav-links {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 2.25rem;
    margin: 0;
  }
  
  .nav-links > *:not(:first-child)::before {
    display: none !important; /* Clean modern centered menu without vertical separators */
  }
}

/* Visual Image Alignment Rules */
.split-section.align-start {
  align-items: start;
}
.split-section.align-center {
  align-items: center;
}

/* Tight spacing classes for layout connection */
.spacing-tight {
  padding-top: clamp(2rem, 3vw, 3rem) !important;
  padding-bottom: clamp(2rem, 3vw, 3rem) !important;
}
.spacing-tight-top {
  padding-top: clamp(1.5rem, 2.5vw, 2.5rem) !important;
}
.spacing-tight-bottom {
  padding-bottom: clamp(1.5rem, 2.5vw, 2.5rem) !important;
}



