@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@200;300;400;500;600;700&display=swap');

:root {
  --primary: #58595B;
  /* Charcoal grey from logo */
  --secondary: #414042;
  /* Darker grey */
  --accent: #E31837;
  /* Corporate Red from logo */
  --accent-hover: #BB122A;
  --text-light: #F8F9FA;
  --text-dark: #1E1E1E;
  --background-light: #FFFFFF;
  --background-off-white: #F5F5F5;
  --header-bg: #111111;
  /* New dark header background */
  --success: #198754;
  --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

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

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

body {
  font-family: 'Oswald', sans-serif;
  color: var(--text-dark);
  background-color: var(--background-light);
  line-height: 1.6;
  overflow-x: hidden;
  font-weight: 300; /* Sophisticated light weight */
  letter-spacing: 0.2px;
}

html {
  scroll-behavior: smooth;
}

/* Utilities */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 5%;
}

.section {
  padding: 100px 0;
  scroll-margin-top: 80px;
}

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

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

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

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

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

@media (max-width: 600px) {
  .grid-responsive-4,
  .grid-responsive-3,
  .grid-responsive-2 {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

/* Typography */
h1,
h2,
h3,
h4 {
  font-weight: 600; /* Bold/Thick titles */
  line-height: 1.25;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

h2 {
  font-size: clamp(2rem, 5vw, 2.5rem);
  margin-bottom: 2rem;
  color: var(--primary);
}

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

.subtitle {
  font-size: 1.25rem;
  color: #666;
  margin-bottom: 3rem;
  max-width: 700px;
  margin-inline: auto;
  font-weight: 200; /* Extra Light */
}

/* Header & Nav */
header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  transition: var(--transition);
  padding: 15px 0;
  background-color: var(--header-bg);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

header.scrolled {
  padding: 10px 0;
  background: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(10px);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.logo {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text-light);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-links {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.nav-links a {
  color: #FFFFFF;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  text-transform: capitalize;
  transition: var(--transition);
  position: relative;
  opacity: 0.9;
}

.nav-links a:hover {
  opacity: 1;
}

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

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

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

.dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 6px;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #1a1a1a;
  min-width: 260px;
  border-radius: 8px;
  padding: 15px 0;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
  opacity: 0;
  visibility: hidden;
  transform: translateY(15px);
  transition: all 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
  z-index: 100;
  border: 1px solid rgba(255, 255, 255, 0.05);
  margin-top: 10px;
}

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

.dropdown-menu a {
  padding: 12px 25px;
  display: block;
  color: white;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: var(--transition);
  opacity: 0.8 !important;
}

.dropdown-menu a::after {
  display: none;
}

.dropdown-menu a:hover {
  background-color: rgba(227, 24, 55, 0.1);
  color: var(--accent) !important;
  opacity: 1 !important;
  padding-left: 30px;
}

.dropdown-toggle i {
  font-size: 0.7rem;
  transition: transform 0.3s;
}

.dropdown:hover .dropdown-toggle i {
  transform: rotate(180deg);
}

.mobile-nav-toggle {
  display: none;
}

.btn-cta {
  background-color: var(--accent);
  color: #FFFFFF;
  padding: 10px 24px;
  border-radius: 4px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-size: 0.9rem;
}

.btn-cta:hover {
  background-color: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(227, 24, 55, 0.4);
}

.btn {
  padding: 14px 32px;
  border-radius: 6px;
  font-weight: 600;
  text-decoration: none;
  transition: var(--transition);
  display: inline-block;
  cursor: pointer;
  border: none;
  letter-spacing: 0.5px;
  font-size: 0.95rem;
}

.btn-primary {
  background-color: var(--accent);
  color: #FFFFFF !important;
  /* Force white text */
}

.btn-primary:hover {
  background-color: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(255, 107, 0, 0.4);
}

.btn-outline {
  border: 2px solid var(--text-light);
  color: var(--text-light);
}

.btn-outline:hover {
  background-color: var(--text-light);
  color: var(--primary);
}

/* First Nation Badge */
.fn-badge {
  background: rgba(227, 24, 55, 0.1);
  /* Light red tint */
  border: 1px solid rgba(227, 24, 55, 0.2);
  padding: 8px 16px;
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  color: var(--accent);
  /* Red text */
  backdrop-filter: blur(5px);
  font-weight: 600;
}

/* Hero Section Slider */
.hero {
  height: 100vh;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  color: var(--text-light);
  background: #000; /* Fallback */
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.slider-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 300%; /* For 3 slides */
  height: 100%;
  display: flex;
  transition: transform 0.8s cubic-bezier(0.7, 0, 0.3, 1);
}

.slide {
  width: 33.333%;
  height: 100%;
  position: relative;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.slide::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.3) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 10;
  max-width: 800px;
  padding: 0 5%;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
}

.slide .hero-content {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease;
}

.slide.active .hero-content {
  opacity: 1;
  transform: translateY(0);
}

.hero h1 {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  line-height: 1.1;
  color: var(--text-light);
}

/* Specific animations for slider elements */
.slide h1 {
  transform: translateY(20px);
  opacity: 0;
  transition: all 0.6s ease 0.3s;
}

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

.hero p {
  font-size: 1.25rem;
  margin-bottom: 2.5rem;
  max-width: 600px;
}

.slide p {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s ease 0.5s;
}

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

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

.hero-btns {
  display: flex;
  gap: 20px;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s ease 0.7s;
}

.slide.active .hero-btns {
  transform: translateY(0);
  opacity: 1;
}

/* Slider Pagination */
.slider-dots {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 15px;
  z-index: 20;
}

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

.dot.active {
  background: var(--accent);
  transform: scale(1.3);
  border-color: rgba(255, 255, 255, 0.2);
}

/* Slider Arrows */
.slider-arrows {
  position: absolute;
  top: 50%;
  width: 100%;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  padding: 0 40px;
  z-index: 30;
  pointer-events: none;
}

.slider-arrow {
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(5px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.2rem;
  cursor: pointer;
  pointer-events: auto;
  transition: var(--transition);
}

.slider-arrow:hover {
  background: var(--accent);
  border-color: var(--accent);
  transform: scale(1.1);
}

.hero-buttons {
  display: flex;
  gap: 20px;
}

/* About / USP section */
.about {
  background-color: var(--background-light);
}

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

.usp-list {
  list-style: none;
  margin-top: 30px;
}

.usp-item {
  display: flex;
  gap: 20px;
  margin-bottom: 24px;
}

.usp-icon {
  width: 54px;
  height: 54px;
  background-color: var(--background-off-white);
  color: var(--accent);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
  transition: var(--transition);
  border: 1px solid rgba(0,0,0,0.03);
}

.usp-item:hover .usp-icon {
  background-color: var(--accent);
  color: white;
  transform: scale(1.1) rotate(5deg);
}

.about-since {
  display: inline-block;
  background: var(--accent);
  color: white;
  padding: 4px 12px;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 15px;
  letter-spacing: 1px;
}

/* Services section */
.services {
  background-color: var(--background-off-white);
}

.services-carousel {
  display: flex;
  overflow-x: auto;
  gap: 30px;
  padding: 20px 0 60px;
  scroll-snap-type: x mandatory;
  -ms-overflow-style: none; /* IE and Edge */
  scrollbar-width: none; /* Firefox */
}

.services-carousel::-webkit-scrollbar {
  display: none; /* Chrome, Safari and Opera */
}

.service-card {
  flex: 0 0 280px;
  background: var(--background-light);
  border-radius: 16px;
  padding: 40px 30px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.03);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  scroll-snap-align: start;
  border: 1px solid rgba(0,0,0,0.05);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 50px rgba(227, 24, 55, 0.08);
  border-color: rgba(227, 24, 55, 0.1);
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--accent);
  transform: scaleX(0);
  transition: var(--transition);
  transform-origin: left;
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-icon-wrapper {
  width: 60px;
  height: 60px;
  background: rgba(227, 24, 55, 0.05);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
  transition: var(--transition);
}

.service-icon {
  font-size: 1.8rem;
  color: var(--accent);
  transition: var(--transition);
}

.service-card h3 {
  font-size: 1.25rem;
  margin-bottom: 15px;
  color: var(--primary);
  line-height: 1.2;
}

.service-card p {
  font-size: 0.85rem;
  color: #666;
  line-height: 1.5;
}

.services-footer {
  margin-top: 40px;
  text-align: center;
}

.service-tabs {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 35px;
}

.service-tabs button {
  background: white;
  border: 1px solid rgba(0,0,0,0.1);
  padding: 12px 28px;
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  color: var(--primary);
  box-shadow: 0 4px 15px rgba(0,0,0,0.03);
}

.service-tabs button.active {
  background: var(--accent);
  color: white;
  border-color: var(--accent);
  box-shadow: 0 10px 25px rgba(227, 24, 55, 0.25);
}

.service-tabs button:hover:not(.active) {
  background: var(--background-off-white);
  border-color: var(--accent);
  color: var(--accent);
}

.service-card.hidden {
  display: none !important;
}

/* Projects Section */
.projects {
  background-color: var(--background-light);
  padding: 100px 0;
}

.projects h2 {
  margin-bottom: 60px;
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.project-card {
  background: #fff;
  display: flex;
  flex-direction: column;
  transition: var(--transition);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 15px 45px rgba(0,0,0,0.05);
  border: 1px solid rgba(0,0,0,0.03);
}

.project-card:hover {
  transform: translateY(-5px);
}

.project-thumb {
  width: 100%;
  aspect-ratio: 16/10;
  overflow: hidden;
  border-radius: 4px;
  margin-bottom: 20px;
  position: relative;
}

.status-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: rgba(88, 89, 91, 0.9); /* Charcoal primary with opacity */
  color: white;
  padding: 6px 14px;
  border-radius: 4px;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  z-index: 5;
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(4px);
}

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

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

.project-info {
  padding: 30px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.project-info h3 {
  font-size: 1.25rem;
  color: var(--accent);
  margin-bottom: 20px;
  font-weight: 700;
  line-height: 1.3;
}

.project-info p {
  font-size: 0.95rem;
  color: #555;
  margin-bottom: 40px;
  line-height: 1.6;
  flex-grow: 1;
}

.link-info {
  font-size: 0.9rem;
  font-weight: 600;
  color: #999;
  text-decoration: none;
  text-transform: capitalize;
  transition: var(--transition);
  margin-top: auto;
  display: inline-block;
}

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

/* Contact Section & Footer */
.contact {
  background-color: var(--background-light);
}

.contact-wrap {
  background: var(--primary);
  border-radius: 12px;
  padding: 60px;
  color: var(--text-light);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

.contact-info h3 {
  font-size: 2rem;
  margin-bottom: 30px;
}

.contact-detail {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
  font-size: 1.1rem;
}

.contact-detail i {
  color: var(--accent);
  font-size: 1.5rem;
}

/* Footer Styles */
.main-footer {
  background-color: #1a1a1a;
  color: var(--text-light);
  padding: 80px 0 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

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

.footer-logo {
  height: 50px;
  width: auto;
  filter: brightness(0) invert(1);
  margin-bottom: 25px;
}

.footer-brand p {
  opacity: 0.7;
  font-size: 0.95rem;
  max-width: 300px;
}

.footer-grid h4 {
  font-size: 1.1rem;
  margin-bottom: 25px;
  color: white;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-links a,
.footer-contact p {
  display: block;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  margin-bottom: 12px;
  font-size: 0.95rem;
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--accent);
  transform: translateX(5px);
}

.footer-contact p {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-contact i {
  color: var(--accent);
  width: 20px;
}

.social-icons {
  display: flex;
  gap: 15px;
}

.social-icons a {
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: white;
  text-decoration: none;
  transition: var(--transition);
  font-size: 1.1rem;
}

.social-icons a:hover {
  background-color: var(--accent);
  transform: translateY(-5px);
}

.footer-bottom {
  padding-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  text-align: center;
  font-size: 0.85rem;
  opacity: 0.5;
}

@media (max-width: 1000px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}

@media (max-width: 600px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

/* Featured Section */
.featured-section {
  background-color: #0d0d0d;
  color: var(--text-light);
  padding: 120px 0;
  position: relative;
  overflow: hidden;
  display: flex;
}

.scroll-sidebar {
  position: absolute;
  left: 30px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  z-index: 10;
}

.scroll-text {
  writing-mode: vertical-rl;
  text-orientation: mixed;
  transform: rotate(180deg);
  font-size: 0.8rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  opacity: 0.5;
}

.scroll-line {
  width: 1px;
  height: 60px;
  background-color: rgba(255, 255, 255, 0.2);
}

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

.featured-image {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
}

.featured-image img {
  width: 100%;
  height: auto;
  display: block;
  transform: scale(1.05); /* Slight zoom for interest */
  transition: transform 0.8s ease;
}

.featured-section:hover .featured-image img {
  transform: scale(1);
}

.text-accent-caps {
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.9rem;
  margin-bottom: 25px;
  display: block;
}

.featured-text h2 {
  font-size: 3.5rem;
  line-height: 1.1;
  color: var(--text-light);
  margin-bottom: 20px;
  font-weight: 800;
  letter-spacing: -1px;
}

.featured-text p {
  font-size: 1.1rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 25px;
  max-width: 500px;
  font-weight: 400;
}

.featured-bullets {
  list-style: none;
  margin-bottom: 35px;
  padding: 0;
}

.featured-bullets li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 12px;
  font-size: 0.95rem;
  font-weight: 500;
}

.featured-bullets li i {
  color: var(--accent);
  font-size: 0.8rem;
}

.link-more {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  color: var(--accent);
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: var(--transition);
}

.link-more::before {
  content: '';
  width: 40px;
  height: 1px;
  background-color: var(--accent);
  transition: var(--transition);
}

.link-more:hover {
  gap: 20px;
  opacity: 0.8;
}

.link-more:hover::before {
  width: 60px;
}

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

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.2, 0.8, 0.2, 1), transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }

/* Responsive */
@media (max-width: 992px) {
  .nav-links {
    display: none;
  }

  .mobile-nav-toggle {
    display: block;
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 1001;
  }

  .nav-right {
    gap: 1rem;
  }

  /* Mobile Menu Overlay */
  .nav-links.mobile-active {
    display: flex !important;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: var(--header-bg);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    z-index: 1000;
    animation: fadeIn 0.3s ease forwards;
  }

  .nav-links.mobile-active a {
    font-size: 1.5rem;
  }

  .dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    background: transparent;
    text-align: center;
    display: none;
  }

  .dropdown.active .dropdown-menu {
    display: block;
  }

  .hero h1 {
    font-size: clamp(2rem, 8vw, 3rem);
  }
  
  .hero p {
    font-size: 1rem;
  }

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

  /* Fix commercial hero overlap */
  .hero-stats-bar {
    position: relative !important;
    bottom: auto !important;
    background: #111 !important;
  }
  
  .commercial-hero-premium {
    height: auto !important;
    min-height: 80vh;
    padding-top: 120px;
    padding-bottom: 0;
  }
}

/* Fade In Animation */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 768px) {
  .featured-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .scroll-sidebar {
    display: none;
  }

  .featured-text h2 {
    font-size: 2rem;
  }

  .featured-section {
    padding: 60px 0;
  }
}


/* Partners Section */
.partner-logo:hover img {
  filter: grayscale(0) !important;
  opacity: 1 !important;
}
/* -------------------------------------------------------------------------- */
/* Call to Action Premium Section */
/* -------------------------------------------------------------------------- */

.cta-premium {
  background-color: #050505;
  padding: 80px 0;
  color: white;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-bg-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  opacity: 0.15;
  pointer-events: none;
}

.cta-header {
  position: relative;
  z-index: 10;
}

.cta-header h2 {
  font-size: 2.5rem;
  color: white;
  margin-bottom: 15px;
}

.cta-subtitle {
  font-size: 1rem;
  opacity: 0.7;
  max-width: 600px;
  margin: 0 auto 40px;
  font-weight: 200;
  text-transform: none;
}

.cta-card-wrapper {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  align-items: stretch;
  gap: 40px;
  position: relative;
  z-index: 10;
}

.cta-card {
  flex: 1;
  background: #111;
  padding: 40px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.cta-card-text {
  font-size: 1rem;
  margin-bottom: 20px;
  font-weight: 500;
}

.cta-primary-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: white;
  color: black;
  padding: 15px 35px;
  border-radius: 100px;
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  text-decoration: none;
  font-size: 1.2rem;
  transition: var(--transition);
  box-shadow: 0 10px 30px rgba(255, 255, 255, 0.1);
}

.cta-primary-btn:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(255, 255, 255, 0.2);
  background: #f0f0f0;
}

.cta-primary-btn i {
  font-size: 1.2rem;
  color: var(--accent);
}

.cta-card-subtext {
  margin-top: 25px;
  font-size: 0.85rem;
  opacity: 0.4;
  font-weight: 200;
  text-transform: none;
}

.cta-divider {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 0 10px;
}

.cta-divider::before,
.cta-divider::after {
  content: '';
  width: 1px;
  flex: 1;
  background: rgba(255, 255, 255, 0.1);
}

.cta-divider span {
  padding: 15px 0;
  font-size: 0.8rem;
  font-weight: 700;
  opacity: 0.3;
}

.cta-form-container {
  flex: 1.2;
}

.cta-mini-form {
  width: 100%;
  text-align: left;
}

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

.cta-mini-form input,
.cta-mini-form textarea {
  width: 100%;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 15px 20px;
  border-radius: 12px;
  color: white;
  font-family: 'Oswald', sans-serif;
  font-weight: 300;
  font-size: 1rem;
  outline: none;
  transition: var(--transition);
}

.cta-mini-form input:focus,
.cta-mini-form textarea:focus {
  background: rgba(255, 255, 255, 0.05);
  border-color: var(--accent);
}

.btn-submit-premium {
  width: 100%;
  background: var(--accent);
  color: white;
  border: none;
  padding: 14px;
  border-radius: 12px;
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  cursor: pointer;
  margin-top: 10px;
  transition: var(--transition);
}

.btn-submit-premium:hover {
  background: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(227, 24, 55, 0.3);
}

@media (max-width: 900px) {
  .cta-card-wrapper {
    flex-direction: column;
    gap: 30px;
  }
  
  .cta-divider {
    flex-direction: row;
    height: auto;
    padding: 0;
  }
  
  .cta-divider::before,
  .cta-divider::after {
    height: 1px;
    width: auto;
  }
  
  .cta-divider span {
    padding: 0 15px;
  }
}

@media (max-width: 768px) {
  .cta-header h2 {
    font-size: 2rem;
  }
  
  .form-row {
    grid-template-columns: 1fr;
  }
  
  .cta-primary-btn {
    padding: 12px 25px;
    font-size: 1.1rem;
  }
  
  .cta-card {
    padding: 30px 20px;
  }
}


/* Multi-Image Project Gallery Carousel */
.project-gallery-carousel {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: 40px 0;
}

.gallery-track {
  display: flex;
  gap: 15px;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-slide {
  flex: 0 0 calc(20% - 12px); /* 5 images per view on desktop */
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 20px rgba(0,0,0,0.1);
  transition: var(--transition);
  cursor: pointer;
}

.gallery-slide:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(227, 24, 55, 0.2);
}

.gallery-slide img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  display: block;
}

.gallery-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  background: white;
  color: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
  cursor: pointer;
  z-index: 10;
  transition: var(--transition);
}

.gallery-arrow:hover {
  background: var(--accent);
  color: white;
}

.gallery-prev { left: -25px; }
.gallery-next { right: -25px; }

@media (max-width: 1100px) {
  .gallery-slide { flex: 0 0 calc(33.333% - 10px); }
}

@media (max-width: 768px) {
  .gallery-slide { flex: 0 0 calc(50% - 8px); }
  .gallery-prev { left: 10px; }
  .gallery-next { right: 10px; }
}

@media (max-width: 480px) {
  .gallery-slide { flex: 0 0 100%; }
}

/* Floor Plan Grid - Show complete images without cropping */
.floor-plan-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  padding: 20px 0;
  max-width: 1200px;
  margin: 0 auto;
}

.floor-plan-item {
  background: white;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.08);
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(0,0,0,0.05);
}

.floor-plan-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(227, 24, 55, 0.15);
}

.floor-plan-item img {
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
}

@media (max-width: 900px) {
  .floor-plan-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  }
}

@media (max-width: 600px) {
  .floor-plan-grid {
    grid-template-columns: 1fr;
  }
}

