@import url("https://fonts.googleapis.com/css2?family=Aboreto&family=Inter:wght@300;400;500;600;700;800&display=swap");

:root {
  --color-bg: #000000;
  --color-text: #ffffff;
  --color-gray: #808080;
  --color-light-gray: #cccccc;
  --color-dark-gray: #1a1a1a;
  --color-border: #333333;
  /* Updated font variables to match requirements */
  --font-heading: "Aboreto", serif;
  --font-subheading: "Helvetica Neue", "Inter", sans-serif;
  --font-body: "Helvetica Neue", "Inter", sans-serif;
  --font-cta: "Helvetica Neue", "Inter", sans-serif;
  --transition: all 0.3s ease;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Updated body to use Helvetica Neue Light */
body {
  font-family: var(--font-body);
  font-weight: 300;
  background-color: var(--color-bg);
  color: var(--color-text);
  line-height: 1.6;
  overflow-x: hidden;
}

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

a:hover {
  color: var(--color-light-gray);
}

img {
  max-width: 100%;
  height: auto;
  /* Removed grayscale filter to show colorful images */
  /* filter: grayscale(100%); */
}

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Header Styles */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(10px);
  z-index: 1000;
  border-bottom: 1px solid var(--color-border);
  transition: var(--transition);
}

.site-header.scrolled {
  background-color: rgba(0, 0, 0, 0.98);
  box-shadow: 0 2px 20px rgba(255, 255, 255, 0.1);
}

/* Centered navigation menu layout with logo on left, nav in center */
.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 2rem;
  max-width: 1400px;
  margin: 0 auto;
}

.logo {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex: 0 0 auto;
}

/* Fixed header logo sizing to be smaller and consistent */
.logo img {
  height: 60px; /* Updated from 40px to 45px */
  width: auto;
  filter: none;
  display: block;
}

.logo a {
  display: flex;
  align-items: center;
}

.logo-text {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-text);
}

/* Centered navigation menu with proper alignment */
.main-nav {
  flex: 1;
  display: flex;
  justify-content: center;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 2.5rem;
  align-items: center;
  margin: 0;
  padding: 0;
}

.nav-menu a {
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  position: relative;
}

.nav-menu a::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--color-text);
  transition: width 0.3s ease;
}

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

/* Added elegant dropdown/submenu styling */
/* Navigation Dropdown Menus */
.nav-menu li {
  position: relative;
}

.nav-menu .sub-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #1a1a1a;
  min-width: 250px;
  padding: 0;
  margin: 0;
  list-style: none;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-top: 2px solid #ffffff;
  z-index: 1000;
}

.nav-menu li:hover > .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-menu .sub-menu li {
  display: block;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.nav-menu .sub-menu li:last-child {
  border-bottom: none;
}

.nav-menu .sub-menu a {
  display: block;
  padding: 1rem 1.5rem;
  font-size: 0.9rem;
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0.3px;
  color: rgba(255, 255, 255, 0.8);
  transition: all 0.3s ease;
  position: relative;
}

.nav-menu .sub-menu a::after {
  display: none;
}

.nav-menu .sub-menu a::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 3px;
  background-color: #ffffff;
  transform: scaleY(0);
  transition: transform 0.3s ease;
}

.nav-menu .sub-menu a:hover {
  background-color: rgba(255, 255, 255, 0.05);
  color: #ffffff;
  padding-left: 2rem;
}

.nav-menu .sub-menu a:hover::before {
  transform: scaleY(1);
}

/* Parent menu item indicator for dropdown */
.nav-menu .menu-item-has-children > a::after {
  content: "\25BE";
  font-size: 0.8rem;
  margin-left: 0.5rem;
  display: inline-block;
  transition: transform 0.3s ease;
}

.nav-menu .menu-item-has-children:hover > a::after {
  transform: rotate(180deg);
}

.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.hamburger {
  display: block;
  width: 30px;
  height: 2px;
  background-color: var(--color-text);
  position: relative;
  transition: var(--transition);
}

.hamburger::before,
.hamburger::after {
  content: "";
  position: absolute;
  width: 30px;
  height: 2px;
  background-color: var(--color-text);
  transition: var(--transition);
}

.hamburger::before {
  top: -8px;
}

.hamburger::after {
  bottom: -8px;
}

.mobile-menu-toggle.active .hamburger {
  background-color: transparent;
}

.mobile-menu-toggle.active .hamburger::before {
  top: 0;
  transform: rotate(45deg);
}

.mobile-menu-toggle.active .hamburger::after {
  bottom: 0;
  transform: rotate(-45deg);
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 8rem 2rem 4rem;
  /* Reduced overlay opacity to show more color in hero images */
  background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.5)), url("../images/hero-home.jpg") center / cover
    no-repeat;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.03) 0%, transparent 70%);
  pointer-events: none;
}

.hero-content {
  max-width: 900px;
  animation: fadeInUp 1s ease-out;
  position: relative;
  z-index: 1;
}

/* Updated hero h1 to use Aboreto font */
.hero h1 {
  font-family: var(--font-heading);
  font-size: 125px;
  font-weight: 600;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  letter-spacing: -2px;
}

.h2hero {
    font-family: var(--font-heading);
    font-size: 75px;
    font-weight: 600;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -2px;
}

/* Updated hero p to use Helvetica Neue Regular */
.hero p {
  font-family: var(--font-subheading);
  font-weight: 400;
  font-size: clamp(1rem, 2vw, 1.5rem);
  color: var(--color-light-gray);
  margin-bottom: 2.5rem;
  line-height: 1.6;
}

/* Updated CTA button to use Helvetica Neue Medium */
.cta-button {
  display: inline-block;
  padding: 1rem 2.5rem;
  background-color: var(--color-text);
  color: var(--color-bg);
  font-family: var(--font-cta);
  font-size: 1.1rem;
  font-weight: 500;
  border-radius: 50px;
  border: 2px solid var(--color-text);
  transition: var(--transition);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.cta-button:hover {
  background-color: transparent;
  color: var(--color-text);
  transform: translateY(-2px);
}

/* Section Styles */
section {
  padding: 6rem 2rem;
  position: relative;
}

section:nth-child(even) {
  background-color: var(--color-dark-gray);
}

/* Updated section title to use Aboreto */
.section-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 400;
  margin-bottom: 1rem;
  text-align: center;
  letter-spacing: -1px;
}

/* Updated section subtitle to use Helvetica Neue Regular */
.section-subtitle {
  font-family: var(--font-subheading);
  font-weight: 400;
  font-size: 1.2rem;
  color: var(--color-gray);
  text-align: center;
  margin-bottom: 4rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* Content Grid */
.content-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2.5rem;
  margin-top: 3rem;
}

.content-card {
  background-color: var(--color-dark-gray);
  padding: 2.5rem;
  border-radius: 12px;
  border: 1px solid var(--color-border);
  transition: var(--transition);
}

.content-card:hover {
  transform: translateY(-5px);
  border-color: var(--color-text);
  box-shadow: 0 10px 30px rgba(255, 255, 255, 0.1);
}

.content-card h3 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

.content-card p {
  color: var(--color-light-gray);
  line-height: 1.8;
}

/* Pillars Grid */
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.pillar-card {
  background-color: var(--color-dark-gray);
  border: 1px solid var(--color-border);
  border-radius: 12px;
  overflow: hidden;
  transition: var(--transition);
  text-align: center;
  padding: 3rem 2rem;
}

.pillar-card:hover {
  transform: translateY(-8px);
  border-color: var(--color-text);
  box-shadow: 0 15px 40px rgba(255, 255, 255, 0.15);
}

.pillar-icon {
  font-size: 3rem;
  margin-bottom: 1.5rem;
}

.pillar-card h3 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

.pillar-card p {
  color: var(--color-light-gray);
  margin-bottom: 2rem;
  line-height: 1.6;
}

.pillar-link {
  display: inline-block;
  padding: 0.8rem 1.8rem;
  border: 2px solid var(--color-text);
  border-radius: 50px;
  font-weight: 600;
  transition: var(--transition);
}

.pillar-link:hover {
  background-color: var(--color-text);
  color: var(--color-bg);
}

/* Footer */
.site-footer {
  background-color: #000000;
  border-top: 1px solid var(--color-border);
  padding: 4rem 2rem 2rem;
}

/* Added footer logo styling */
.footer-logo {
  text-align: left;
  margin-bottom: 3rem;
}

/* Reduced footer logo size from 60px to 50px */
.footer-logo img {
  height: 80px;
  width: auto;
  filter: none;
  transition: var(--transition);
  display: block;
  margin: 0;
	left: 160px;
    position: relative;
}

.footer-logo a {
  display: inline-block;
}

.footer-logo a:hover img {
  opacity: 0.8;
}

.footer-content {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-section h3 {
  font-size: 1.3rem;
  margin-bottom: 1.5rem;
  font-weight: 600;
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 0.8rem;
}

.footer-section a {
  color: var(--color-gray);
  transition: var(--transition);
}

.footer-section a:hover {
  color: var(--color-text);
}

.social-links {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

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

.social-links a:hover {
  background-color: var(--color-text);
  color: var(--color-bg);
  border-color: var(--color-text);
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid var(--color-border);
  color: var(--color-gray);
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in {
  animation: fadeInUp 0.8s ease-out;
}

/* Added elegant alternating layout styles inspired by reference image */

/* Fixed elegant section styling to properly display alternating image-content layout */
/* Elegant Section Container */
.elegant-section {
  padding: 0;
  background-color: #ffffff;
  overflow: hidden;
}

.elegant-section.alt {
  background-color: #f8f8f8;
}

.container-elegant {
  max-width: 100%;
  margin: 0 auto;
  padding: 0;
}

/* Elegant Row Layout - Alternating Image and Content */
.elegant-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 500px;
  align-items: stretch;
  gap: 0;
}

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

.elegant-row.reverse .elegant-content {
  order: 1;
}

.elegant-row.reverse .elegant-image {
  order: 2;
}

/* Elegant Image Container */
.elegant-image {
  height: 100%;
  min-height: 500px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.elegant-image:hover img {
  transform: scale(1.05);
}

/* Elegant Content Container */
.elegant-content {
  padding: 4rem 5rem;
  background-color: transparent;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 500px;
}

.elegant-content h2 {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  color: #2c2c2c;
  margin-bottom: 1.5rem;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.elegant-content p {
  font-family: var(--font-body);
  font-size: 1.05rem;
  color: #555555;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.elegant-list {
  list-style: none;
  padding: 0;
  margin: 2rem 0 0 0;
}

.elegant-list li {
  font-family: var(--font-body);
  font-size: 1rem;
  color: #666666;
  padding: 0.75rem 0;
  padding-left: 2rem;
  position: relative;
  line-height: 1.6;
}

.elegant-list li:before {
  content: "→";
  position: absolute;
  left: 0;
  color: #c9a961;
  font-weight: bold;
  font-size: 1.2rem;
}

.section-intro-elegant {
  text-align: center;
  padding: 5rem 2rem;
  max-width: 800px;
  margin: 0 auto;
}

.section-title-elegant {
  font-family: var(--font-heading);
  font-size: 3rem;
  color: #2c2c2c;
  margin-bottom: 1rem;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.section-subtitle-elegant {
  font-family: var(--font-subheading);
  font-size: 1.2rem;
  color: #666666;
  line-height: 1.8;
}

/* Project Meta Styling */
.project-meta-elegant {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid #e0e0e0;
}

.project-meta-elegant span {
  font-family: var(--font-subheading);
  font-weight: 400;
  font-size: 0.95rem;
  color: #666;
}

.project-meta-elegant strong {
  font-weight: 500;
  color: #2c2c2c;
}

/* Video Meta Styling */
.video-meta-elegant {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid #e0e0e0;
}

.video-meta-elegant span {
  font-family: var(--font-subheading);
  font-weight: 400;
  font-size: 0.95rem;
  color: #666;
}

.video-meta-elegant strong {
  font-weight: 500;
  color: #2c2c2c;
}

/* Video Thumbnail with Play Button */
.video-thumbnail-elegant {
  position: relative;
  cursor: pointer;
}

.play-button-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  background-color: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.video-thumbnail-elegant:hover .play-button-overlay {
  background-color: #c4975a;
  transform: translate(-50%, -50%) scale(1.1);
}

.play-button-overlay svg {
  margin-left: 4px;
}

.video-duration-badge {
  position: absolute;
  bottom: 1rem;
  right: 1rem;
  background-color: rgba(0, 0, 0, 0.8);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 4px;
  font-family: var(--font-subheading);
  font-weight: 500;
  font-size: 0.9rem;
}

/* Section Intro for Scope */
.section-intro-elegant {
  text-align: center;
  padding: 4rem 2rem;
  background-color: #ffffff;
}

.section-title-elegant {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 400;
  color: #2c2c2c;
  margin-bottom: 1rem;
  letter-spacing: 2px;
}

.section-subtitle-elegant {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 1.2rem;
  color: #666;
  max-width: 700px;
  margin: 0 auto;
}

/* CTA Section Styling */
.cta-section-elegant {
  background-color: #2c2c2c;
  padding: 6rem 2rem;
}

.cta-content-center {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.cta-content-center h2 {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 400;
  color: #ffffff;
  margin-bottom: 1.5rem;
  letter-spacing: 2px;
}

.cta-content-center p {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 1.2rem;
  color: #cccccc;
  margin-bottom: 2.5rem;
  line-height: 1.8;
}

.cta-button-elegant {
  display: inline-block;
  padding: 1.2rem 3rem;
  background-color: #c4975a;
  color: #ffffff;
  font-family: var(--font-cta);
  font-weight: 500;
  font-size: 1.1rem;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  transition: all 0.3s ease;
  border: 2px solid #c4975a;
}

.cta-button-elegant:hover {
  background-color: transparent;
  border-color: #ffffff;
  color: #ffffff;
  transform: translateY(-2px);
}

/* Page Header Styles */
.page-header {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 8rem 2rem 4rem;
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url("../images/hero-home.jpg") center / cover
    no-repeat;
  position: relative;
}

.page-header .hero-content h1 {
  font-family: var(--font-heading);
  font-size: 110px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 1rem;
  letter-spacing: 2px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-header .hero-content p {
  font-family: var(--font-subheading);
  font-weight: 400;
  font-size: 1.3rem;
  color: #e0e0e0;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .elegant-row {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .elegant-row.reverse {
    direction: ltr;
  }

  .elegant-image {
    min-height: 400px;
    order: 1;
  }

  .elegant-content {
    padding: 3rem 2rem;
    order: 2;
  }

  .elegant-content h2 {
    font-size: 2rem;
  }

  .elegant-content p {
    font-size: 1rem;
  }
}

@media (max-width: 768px) {
  .elegant-image {
    min-height: 300px;
  }

  .elegant-content {
    padding: 2rem 1.5rem;
  }

  .elegant-content h2 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
  }

  .project-meta-elegant,
  .video-meta-elegant {
    flex-direction: column;
    gap: 1rem;
  }

  .cta-content-center h2 {
    font-size: 2rem;
  }

  .section-title-elegant {
    font-size: 2rem;
  }
}

/* Responsive Design for Elegant Sections */
@media (max-width: 968px) {
  .elegant-row {
    grid-template-columns: 1fr;
    min-height: auto;
  }

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

  .elegant-row.reverse .elegant-content {
    order: 1;
  }

  .elegant-row.reverse .elegant-image {
    order: 2;
  }

  .elegant-image {
    min-height: 400px;
  }

  .elegant-content {
    padding: 3rem 2rem;
    min-height: auto;
  }

  .elegant-content h2 {
    font-size: 2rem;
  }

  .section-title-elegant {
    font-size: 2.2rem;
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  /* Updated mobile menu positioning for centered layout */
  .header-content {
    justify-content: space-between;
  }

  .main-nav {
    flex: none;
  }

  .nav-menu {
    position: fixed;
    top: 80px;
    left: -100%;
    flex-direction: column;
    background-color: rgba(0, 0, 0, 0.98);
    width: 100%;
    padding: 2rem;
    transition: left 0.3s ease;
    border-top: 1px solid var(--color-border);
  }

  .nav-menu.active {
    left: 0;
  }

  /* Adjust dropdown for mobile */
  .nav-menu .sub-menu {
    position: static; /* Remove absolute positioning on mobile */
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    box-shadow: none;
    border: none;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    background-color: rgba(0, 0, 0, 0.5);
    padding-left: 1.5rem; /* Indent sub-menu items */
    margin-top: 0.5rem;
  }

  .nav-menu .sub-menu li {
    border-bottom: none;
  }

  .nav-menu .sub-menu a {
    padding: 0.8rem 1rem;
    color: rgba(255, 255, 255, 0.7);
  }

  .nav-menu .sub-menu a:hover {
    padding-left: 1rem; /* Adjust padding for mobile hover */
  }

  .nav-menu .sub-menu a::before {
    display: none; /* Hide indicator on mobile */
  }

  .nav-menu .menu-item-has-children > a::after {
    display: none; /* Hide dropdown arrow on mobile */
  }

  .mobile-menu-toggle {
    display: block;
  }

  .hero {
    padding: 6rem 1.5rem 3rem;
  }

  section {
    padding: 4rem 1.5rem;
  }

  .content-grid,
  .pillars-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  /* Responsive adjustments for new pages */
  .two-column-grid {
    grid-template-columns: 1fr;
  }

  .project-item,
  .project-item.reverse {
    grid-template-columns: 1fr;
    direction: ltr;
  }

  .project-meta {
    flex-direction: column;
    gap: 0.5rem;
  }

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

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

/* Page-Specific Styles */
.page-header {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 8rem 2rem 4rem;
  /* Reduced overlay opacity to show more color */
  background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.5)), url("../images/hero-home.jpg") center / cover
    no-repeat;
  position: relative;
}

/* Added specific background images for each page template */
.page-template-page-business .page-header {
  background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.5)), url("../images/hero-business.jpg") center / cover
    no-repeat;
}

.page-template-page-lifestyle .page-header {
  background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.5)), url("../images/hero-lifestyle.jpg") center /
    cover no-repeat;
}

.page-template-page-innovation .page-header {
  background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.5)), url("../images/hero-innovation.jpg") center /
    cover no-repeat;
}

.page-template-page-culture .page-header {
  background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.5)), url("../images/hero-culture.jpg") center / cover
    no-repeat;
}

.page-template-page-community .page-header {
  background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.5)), url("../images/hero-community.jpg") center /
    cover no-repeat;
}

/* Added hero images for new pages */
.page-template-page-about .page-header {
  background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.5)), url("../images/vision.jpg") center / cover
    no-repeat;
}

.page-template-page-projects .page-header {
  background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.5)), url("../images/project-1.jpg") center / cover
    no-repeat;
}

.page-template-page-free-zone .page-header {
  background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.5)), url("../images/hero-free-zone.jpg") center /
    cover no-repeat;
}

/* ============================================= */
/* CONTACT PAGE STYLES */
/* ============================================= */

.page-template-page-contact .page-header {
  background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.5)), url("../images/hero-home.jpg") center / cover
    no-repeat;
}

/* Contact Section Container */
.contact-section {
  background-color: #0a0a0a;
  padding: 6rem 0;
}

.contact-section .container-elegant {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 4rem;
}

/* Contact Grid - Two Column Layout */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 6rem;
  align-items: start;
}

/* Contact Information Column */
.contact-info {
  padding-right: 2rem;
}

.contact-info h2 {
  font-family: var(--font-heading);
  font-size: 2rem;
  color: #ffffff;
  margin-bottom: 1.5rem;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.contact-intro {
  font-family: var(--font-body);
  font-size: 1.05rem;
  color: #999999;
  line-height: 1.8;
  margin-bottom: 3rem;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.contact-item h3 {
  font-family: var(--font-subheading);
  font-size: 0.9rem;
  font-weight: 500;
  color: #c4975a;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 0.8rem;
}

.contact-item p {
  font-family: var(--font-body);
  font-size: 1rem;
  color: #cccccc;
  line-height: 1.8;
}

.contact-item a {
  color: #cccccc;
  transition: color 0.3s ease;
}

.contact-item a:hover {
  color: #ffffff;
}

/* Contact Form Column */
.contact-form-wrapper {
  background-color: #111111;
  padding: 3.5rem;
  border-radius: 8px;
  border: 1px solid #222222;
}

.contact-form-wrapper h2 {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  color: #ffffff;
  margin-bottom: 2.5rem;
  letter-spacing: 3px;
  text-transform: uppercase;
}

/* Form Styles */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.8rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.form-group label {
  font-family: var(--font-subheading);
  font-size: 0.85rem;
  font-weight: 500;
  color: #888888;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.form-group label .required {
  color: #c4975a;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 1rem 1.2rem;
  background-color: #0a0a0a;
  border: 1px solid #333333;
  border-radius: 4px;
  color: #ffffff;
  font-family: var(--font-body);
  font-size: 1rem;
  transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #c4975a;
  box-shadow: 0 0 0 2px rgba(196, 151, 90, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #555555;
}

.form-group select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23888' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
}

.form-group select option {
  background-color: #111111;
  color: #ffffff;
}

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

/* Submit Button */
.submit-btn {
  display: inline-block;
  width: 100%;
  padding: 1.2rem 2rem;
  background-color: #c4975a;
  color: #ffffff;
  font-family: var(--font-cta);
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  border: 2px solid #c4975a;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 1rem;
}

.submit-btn:hover {
  background-color: transparent;
  color: #c4975a;
  transform: translateY(-2px);
}

/* Map Section */
.map-section {
  position: relative;
  background-color: #000000;
}

.map-container {
  width: 100%;
  height: 500px;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  filter: grayscale(100%) invert(92%) contrast(83%);
}

.map-overlay {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
}

.map-info {
  background-color: rgba(0, 0, 0, 0.9);
  padding: 1.5rem 3rem;
  border-radius: 4px;
  text-align: center;
  border: 1px solid #333333;
}

.map-info h3 {
  font-family: var(--font-heading);
  font-size: 1rem;
  color: #c4975a;
  letter-spacing: 2px;
  margin-bottom: 0.5rem;
}

.map-info p {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: #cccccc;
}

/* Contact Page Responsive */
@media (max-width: 1024px) {
  .contact-section .container-elegant {
    padding: 0 2rem;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 4rem;
  }

  .contact-info {
    padding-right: 0;
  }
}

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

  .contact-section .container-elegant {
    padding: 0 1.5rem;
  }

  .contact-form-wrapper {
    padding: 2rem;
  }

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

  .map-container {
    height: 350px;
  }

  .map-overlay {
    bottom: 1rem;
    left: 1rem;
    right: 1rem;
    transform: none;
  }

  .map-info {
    padding: 1rem 1.5rem;
  }
}
@media (max-width: 767px) {
    .footer-logo img {
        height: 80px;
        width: auto;
        filter: none;
        transition: var(--transition);
        display: block;
        margin: 0;
    }
}
