/* Awkward Earthworks - Custom Stylesheet */

/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@700;800;900&family=Montserrat:wght@400;500;600;700&family=Outfit:wght@300;400;500;600;700;800&display=swap');

/* CSS Variables */
:root {
  --color-bg: #0c0c0e;
  --color-nav-bg: rgba(12, 12, 14, 0.85);
  --color-primary: #f5b316;
  /* Earthwork Gold/Yellow */
  --color-primary-hover: #ffffff;
  --color-text: #ffffff;
  --color-text-muted: #d1d5db;
  --color-border: rgba(255, 255, 255, 0.15);
  --color-border-hover: #f5b316;

  --font-heading: 'Barlow Condensed', sans-serif;
  --font-body: 'Outfit', sans-serif;
  --font-alt: 'Montserrat', sans-serif;

  --transition-fast: 0.2s ease;
  --transition-normal: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-slow: 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html,
body {
  width: 100%;
  height: 100%;
  background-color: var(--color-bg);
  color: var(--color-text);
  font-family: var(--font-body);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* Scrollbar styling */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: #111;
}

::-webkit-scrollbar-thumb {
  background: #333;
  border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--color-primary);
}

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

ul {
  list-style: none;
}

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

/* Header & Navigation */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: var(--color-nav-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  transition: padding var(--transition-normal), background-color var(--transition-normal);
  padding: 20px 4%;
}

.header.scrolled {
  padding: 12px 4%;
  background-color: rgba(12, 12, 14, 0.95);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.nav-container {
  max-width: 1440px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

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

.logo-img {
  height: 48px;
  /* Adjusted height for premium navbar look */
  object-fit: contain;
  transition: height var(--transition-normal), transform var(--transition-normal);
  transform: scale(2.1);
  transform-origin: left center;
}

.header.scrolled .logo-img {
  height: 40px;
  transform: scale(1.8);
}

/* Navigation Links */
.nav-menu {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-link {
  font-family: var(--font-alt);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #c8c8cb;
  position: relative;
  padding: 8px 0;
  transition: color var(--transition-fast);
}

.nav-link:hover {
  color: #ffffff;
}

.nav-link.active {
  color: var(--color-primary);
}

/* Slidable yellow indicator under active/hover items */
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--color-primary);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform var(--transition-normal);
}

.nav-link:hover::after,
.nav-link.active::after {
  transform: scaleX(1);
  transform-origin: left;
}

/* Right Navigation (Phone & CTA) */
.nav-right {
  display: flex;
  align-items: center;
  gap: 28px;
}

.phone-contact {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-alt);
  font-weight: 700;
  font-size: 18px;
  color: #ffffff;
  transition: color var(--transition-fast);
}

.phone-contact:hover {
  color: var(--color-primary);
}

.phone-contact svg {
  width: 20px;
  height: 20px;
  stroke: var(--color-primary);
  stroke-width: 2.5;
  fill: none;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  font-family: var(--font-alt);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 0px;
  /* Square/Angular buttons as in design */
  cursor: pointer;
  transition: all var(--transition-normal);
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background-color: var(--color-primary);
  color: #0c0c0e;
  border: 1px solid var(--color-primary);
}

.btn-primary:hover {
  background-color: #ffffff;
  border-color: #ffffff;
  color: #0c0c0e;
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(245, 179, 22, 0.2);
}

.btn-outline {
  background-color: transparent;
  color: #ffffff;
  border: 1.5px solid var(--color-border);
  gap: 10px;
}

.btn-outline svg {
  width: 16px;
  height: 16px;
  stroke: var(--color-primary);
  stroke-width: 2.5;
  fill: none;
  transition: stroke var(--transition-normal);
}

.btn-outline:hover {
  border-color: var(--color-border-hover);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(255, 255, 255, 0.05);
}

.btn-outline:hover svg {
  stroke: #ffffff;
}

/* Mobile Hamburger Menu */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 26px;
  height: 18px;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 1001;
}

.hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: #ffffff;
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding-top: 80px;
  /* Accounts for fixed navbar */
  overflow: hidden;
  z-index: 1;
  /* Establishes a stacking context so negative z-index background is visible */
}

/* Hero Background and Ken Burns effect */
.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
  background-color: #0c0c0e;
  background-image: linear-gradient(to right,
      rgba(12, 12, 14, 0.75) 0%,
      rgba(12, 12, 14, 0.4) 60%,
      rgba(12, 12, 14, 0.15) 100%), url('hero.png');
  background-size: cover;
  background-position: right center;
  transform: scale(1.05);
  opacity: 1;
  animation: kenBurns 12s ease-out 0.2s forwards;
}

/* Hero Content Wrapper */
.hero-content {
  flex-grow: 1;
  display: flex;
  align-items: center;
  max-width: 1440px;
  width: 100%;
  margin: 0 auto;
  padding: 40px 6%;
}

.hero-text-block {
  max-width: 680px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* Small Tag prefix */
.hero-tagline-container {
  display: flex;
  align-items: center;
  gap: 12px;
  opacity: 0;
  transform: translateX(-30px);
  animation: slideInRight var(--transition-slow) 0.4s forwards;
}

.hero-tagline-bar {
  width: 32px;
  height: 3px;
  background-color: var(--color-primary);
}

.hero-tagline {
  font-family: var(--font-alt);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: var(--color-primary);
}

/* Main Typography Headers */
.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(48px, 6.5vw, 92px);
  line-height: 0.95;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -1px;
}

.hero-title span {
  display: block;
}

.hero-title .white-text {
  color: #ffffff;
  opacity: 0;
  transform: translateY(40px);
  animation: revealUp var(--transition-slow) 0.6s forwards;
}

.hero-title .yellow-text {
  color: var(--color-primary);
  opacity: 0;
  transform: translateY(40px);
  animation: revealUp var(--transition-slow) 0.75s forwards;
}

/* Subtitle description */
.hero-desc {
  font-family: var(--font-body);
  font-size: clamp(16px, 1.3vw, 20px);
  line-height: 1.6;
  font-weight: 400;
  color: var(--color-text-muted);
  max-width: 580px;
  margin-top: 10px;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp var(--transition-slow) 0.9s forwards;
}

/* Button Container */
.hero-btns {
  display: flex;
  gap: 16px;
  margin-top: 15px;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp var(--transition-slow) 1.05s forwards;
}

/* Features Row */
.features-bar {
  width: 100%;
  background-color: rgba(12, 12, 14, 0.9);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 30px 4%;
  opacity: 0;
  transform: translateY(40px);
  animation: slideUpBottom var(--transition-slow) 1.2s forwards;
}

.features-container {
  max-width: 1440px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: center;
}

.feature-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 10px 20px;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  transition: transform var(--transition-normal);
}

.feature-item:last-child {
  border-right: none;
}

.feature-icon-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-icon-wrapper svg {
  width: 38px;
  height: 38px;
  stroke: var(--color-primary);
  stroke-width: 1.5;
  fill: none;
  transition: transform var(--transition-normal), stroke var(--transition-normal);
}

.feature-text {
  font-family: var(--font-alt);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  line-height: 1.3;
  color: #ffffff;
  transition: color var(--transition-fast);
}

/* Feature hover animations */
.feature-item:hover {
  transform: translateY(-4px);
}

.feature-item:hover .feature-icon-wrapper svg {
  transform: scale(1.1) rotate(5deg);
  stroke: #ffffff;
}

.feature-item:hover .feature-text {
  color: var(--color-primary);
}

/* Animations Definitions */
@keyframes kenBurns {
  0% {
    transform: scale(1.06);
  }

  100% {
    transform: scale(1);
  }
}

@keyframes slideInRight {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

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

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

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

/* About Section */
.about-section {
  background-color: #ffffff;
  color: #111111;
  padding: 120px 6%;
  overflow: hidden;
  position: relative;
}

.about-container {
  max-width: 1440px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 80px;
  align-items: center;
}

.about-image-wrapper {
  width: 100%;
  height: 100%;
  max-height: 480px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.about-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform var(--transition-slow);
}

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

.about-content {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.about-tagline-container {
  display: flex;
  align-items: center;
  gap: 12px;
}

.about-tagline-bar {
  width: 32px;
  height: 3px;
  background-color: var(--color-primary);
}

.about-tagline {
  font-family: var(--font-alt);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: var(--color-primary);
}

.about-title {
  font-family: var(--font-heading);
  font-size: clamp(36px, 4.2vw, 58px);
  line-height: 1.05;
  font-weight: 900;
  text-transform: uppercase;
  color: #111111;
  letter-spacing: -0.5px;
}

.about-title .yellow-text {
  color: var(--color-primary);
}

.about-desc {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: #4b5563;
}

.about-btn-container {
  margin-top: 10px;
}

/* Animations for Scroll Reveal */
.reveal-item {
  opacity: 0;
  transition: opacity var(--transition-slow), transform var(--transition-slow);
}

.about-image-wrapper.reveal-item {
  transform: translateX(-50px);
}

.about-content.reveal-item {
  transform: translateX(50px);
}

.reveal-item.revealed {
  opacity: 1;
  transform: translate(0) !important;
}

/* Mobile responsive styles */
@media (max-width: 1024px) {
  .header {
    padding: 15px 5%;
  }

  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background-color: #0c0c0e;
    flex-direction: column;
    align-items: flex-start;
    padding: 100px 40px;
    gap: 24px;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5);
    transition: right 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 1000;
  }

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

  .hamburger {
    display: flex;
  }

  .nav-right {
    margin-right: 40px;
  }

  .features-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }

  .feature-item {
    border-right: none;
    justify-content: flex-start;
  }

  .feature-item:nth-child(odd) {
    border-right: 1px solid rgba(255, 255, 255, 0.08);
  }

  .about-section {
    padding: 90px 5%;
  }

  .about-container {
    gap: 50px;
  }
}

@media (max-width: 768px) {
  .hero {
    min-height: 80vh;
  }

  .nav-right {
    display: none;
  }

  .hero-content {
    padding: 30px 6% 20px 6%;
  }

  .hero-text-block {
    gap: 15px;
  }

  .hero-title {
    font-size: clamp(36px, 9.5vw, 46px);
    line-height: 1.0;
  }

  .hero-desc {
    font-size: 15px;
    margin-top: 5px;
    line-height: 1.5;
  }

  .hero-btns {
    flex-direction: column;
    gap: 12px;
    width: 100%;
    margin-top: 10px;
  }

  .hero-btns .btn {
    width: 100%;
    padding: 12px 24px;
    font-size: 12px;
  }

  .features-bar {
    padding: 15px 4%;
  }

  .features-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
  }

  .feature-item {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding: 16px 12px;
    justify-content: flex-start;
    gap: 12px;
  }

  .feature-item:nth-child(odd) {
    border-right: 1px solid rgba(255, 255, 255, 0.08);
  }

  .feature-item:nth-child(3),
  .feature-item:nth-child(4) {
    border-bottom: none;
  }

  .feature-icon-wrapper svg {
    width: 28px;
    height: 28px;
  }

  .feature-text {
    font-size: 11px;
    letter-spacing: 1px;
  }

  .hero-bg {
    background-image: linear-gradient(to bottom,
        rgba(12, 12, 14, 0.75) 0%,
        rgba(12, 12, 14, 0.35) 50%,
        rgba(12, 12, 14, 0.75) 100%), url('hero.png');
    background-position: 65% center;
  }

  .about-section {
    padding: 70px 6%;
  }

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

  .about-image-wrapper {
    max-height: 380px;
  }

  .about-image-wrapper.reveal-item,
  .about-content.reveal-item {
    transform: translateY(40px);
  }
}

/* Hamburger Active State Styling */
.hamburger.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

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

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

/* =========================================
   SERVICES SECTION
   ========================================= */

.services-section {
  background-color: var(--color-bg);
  padding: 120px 6%;
  overflow: hidden;
  position: relative;
}

/* Subtle diagonal texture overlay */
.services-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(
      -55deg,
      transparent,
      transparent 60px,
      rgba(245, 179, 22, 0.018) 60px,
      rgba(245, 179, 22, 0.018) 61px
    );
  pointer-events: none;
  z-index: 0;
}

/* Section Header */
.services-header {
  max-width: 1440px;
  margin: 0 auto 70px;
  text-align: center;
  position: relative;
  z-index: 1;
}

.services-tagline-container {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
}

.services-tagline {
  font-family: var(--font-alt);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--color-primary);
  background: rgba(245, 179, 22, 0.1);
  border: 1px solid rgba(245, 179, 22, 0.25);
  padding: 6px 16px;
  border-radius: 2px;
}

.services-title {
  font-family: var(--font-heading);
  font-size: clamp(32px, 4vw, 56px);
  font-weight: 900;
  text-transform: uppercase;
  line-height: 1.05;
  letter-spacing: -0.5px;
  color: #ffffff;
  margin-bottom: 24px;
}

.services-title .yellow-text {
  color: var(--color-primary);
}

.services-title-bar {
  width: 60px;
  height: 3px;
  background: var(--color-primary);
  margin: 0 auto;
}

/* Services Grid */
.services-grid {
  max-width: 1440px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  position: relative;
  z-index: 1;
}

/* Individual Service Card */
.service-card {
  position: relative;
  height: 380px;
  overflow: hidden;
  cursor: pointer;
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: border-color var(--transition-normal), transform var(--transition-normal), box-shadow var(--transition-normal);
}

/* Background Image Layer */
.service-card-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-color: #1a1a20;
  transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1), filter 0.5s ease;
  filter: brightness(0.55) saturate(0.7);
}

/* Dark gradient overlay */
.service-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(12, 12, 14, 0.97) 0%,
    rgba(12, 12, 14, 0.65) 45%,
    rgba(12, 12, 14, 0.2) 100%
  );
  transition: background var(--transition-normal);
  z-index: 1;
}

/* Card Content */
.service-card-content {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 32px 28px;
  transition: padding var(--transition-normal);
}

/* Icon Badge */
.service-icon-badge {
  width: 52px;
  height: 52px;
  background: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  transition: background var(--transition-normal), transform var(--transition-normal);
  clip-path: polygon(0 0, 90% 0, 100% 10%, 100% 100%, 10% 100%, 0 90%);
}

.service-icon-badge svg {
  width: 24px;
  height: 24px;
  stroke: #0c0c0e;
  stroke-width: 2;
  fill: none;
  transition: stroke var(--transition-normal);
}

.service-card-title {
  font-family: var(--font-heading);
  font-size: clamp(22px, 2.2vw, 28px);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #ffffff;
  margin-bottom: 10px;
  transition: color var(--transition-normal);
}

.service-card-desc {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.65);
  max-width: 280px;
  transition: color var(--transition-normal), max-height var(--transition-normal), opacity var(--transition-normal);
}

/* "Learn More" arrow – hidden by default, appears on hover */
.service-card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 14px;
  font-family: var(--font-alt);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--color-primary);
  opacity: 0;
  transform: translateY(8px);
  transition: opacity var(--transition-normal), transform var(--transition-normal);
}

.service-card-link svg {
  width: 14px;
  height: 14px;
  stroke: var(--color-primary);
  stroke-width: 2.5;
  fill: none;
  transition: transform var(--transition-normal);
}

/* ---- Hover States ---- */
.service-card:hover {
  border-color: rgba(245, 179, 22, 0.35);
  transform: translateY(-6px);
  box-shadow:
    0 24px 60px rgba(0, 0, 0, 0.6),
    0 0 0 1px rgba(245, 179, 22, 0.12);
}

.service-card:hover .service-card-bg {
  transform: scale(1.08);
  filter: brightness(0.42) saturate(0.5);
}

.service-card:hover .service-card-overlay {
  background: linear-gradient(
    to top,
    rgba(12, 12, 14, 0.98) 0%,
    rgba(12, 12, 14, 0.78) 55%,
    rgba(12, 12, 14, 0.35) 100%
  );
}

.service-card:hover .service-icon-badge {
  background: #ffffff;
  transform: scale(1.08) rotate(-3deg);
}

.service-card:hover .service-icon-badge svg {
  stroke: var(--color-primary);
}

.service-card:hover .service-card-title {
  color: var(--color-primary);
}

.service-card:hover .service-card-desc {
  color: rgba(255, 255, 255, 0.85);
}

.service-card:hover .service-card-link {
  opacity: 1;
  transform: translateY(0);
}

.service-card:hover .service-card-link svg {
  transform: translateX(4px);
}

/* ---- Staggered Reveal Animation ---- */
.service-card.reveal-item {
  opacity: 0;
  transform: translateY(50px) scale(0.97);
  transition:
    opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1) var(--delay, 0s),
    transform 0.7s cubic-bezier(0.16, 1, 0.3, 1) var(--delay, 0s),
    border-color var(--transition-normal),
    box-shadow var(--transition-normal);
}

.service-card.reveal-item.revealed {
  opacity: 1;
  transform: translateY(0) scale(1) !important;
}

/* Services section header reveal */
.services-header.reveal-item {
  opacity: 0;
  transform: translateY(30px);
}

.services-header.reveal-item.revealed {
  opacity: 1;
  transform: translateY(0) !important;
}

/* =========================================
   SERVICES RESPONSIVE
   ========================================= */

@media (max-width: 1024px) {
  .services-section {
    padding: 90px 5%;
  }

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

  .service-card {
    height: 340px;
  }
}

@media (max-width: 640px) {
  .services-section {
    padding: 70px 5%;
  }

  .services-header {
    margin-bottom: 48px;
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .service-card {
    height: 300px;
  }

  .service-card-content {
    padding: 24px 22px;
  }

  .service-icon-badge {
    width: 44px;
    height: 44px;
    margin-bottom: 14px;
  }

  .service-icon-badge svg {
    width: 20px;
    height: 20px;
  }
}

/* =========================================
   WHY CHOOSE US SECTION
   ========================================= */

.why-section {
  position: relative;
  background-color: #0a0a0c;
  padding: 110px 6% 0;
  overflow: hidden;
}

/* Dark image background with heavy overlay — user can replace 'why-bg.png' */
.why-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(
      to bottom,
      rgba(10, 10, 12, 0.88) 0%,
      rgba(10, 10, 12, 0.78) 60%,
      rgba(10, 10, 12, 0.97) 100%
    ),
    url('why-bg.png');
  background-size: cover;
  background-position: center 40%;
  background-attachment: fixed;
  z-index: 0;
}

/* Fallback texture if no image is present */
.why-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(
      45deg,
      transparent,
      transparent 80px,
      rgba(245, 179, 22, 0.015) 80px,
      rgba(245, 179, 22, 0.015) 81px
    );
  pointer-events: none;
}

.why-inner {
  position: relative;
  z-index: 1;
  max-width: 1440px;
  margin: 0 auto;
}

/* ---- Section Header ---- */
.why-header {
  text-align: center;
  margin-bottom: 72px;
}

.why-tagline-container {
  margin-bottom: 18px;
}

.why-tagline {
  font-family: var(--font-alt);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 4px;
  color: var(--color-primary);
  background: rgba(245, 179, 22, 0.08);
  border: 1px solid rgba(245, 179, 22, 0.2);
  padding: 6px 18px;
  border-radius: 2px;
  display: inline-block;
}

.why-title {
  font-family: var(--font-heading);
  font-size: clamp(32px, 4.5vw, 62px);
  font-weight: 900;
  text-transform: uppercase;
  line-height: 1.0;
  letter-spacing: -1px;
  color: #ffffff;
  margin-bottom: 22px;
}

.why-title .yellow-text {
  color: var(--color-primary);
}

.why-title-bar {
  width: 60px;
  height: 3px;
  background: var(--color-primary);
  margin: 0 auto;
}

/* ---- Features 6-Column Grid ---- */
.why-features-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 2px;
  overflow: hidden;
  margin-bottom: 0;
}

.why-feature {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 44px 24px 40px;
  border-right: 1px solid rgba(255, 255, 255, 0.07);
  background: rgba(255, 255, 255, 0.02);
  transition: background var(--transition-normal), transform var(--transition-normal);
  cursor: default;
}

.why-feature:last-child {
  border-right: none;
}

.why-feature:hover {
  background: rgba(245, 179, 22, 0.05);
  transform: translateY(-4px);
}

/* Circular ring icon */
.why-feature-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  border: 1.5px solid var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  transition: background var(--transition-normal), border-color var(--transition-normal), box-shadow var(--transition-normal), transform var(--transition-normal);
  position: relative;
}

/* Soft gold glow ring on hover */
.why-feature-icon::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 1px solid rgba(245, 179, 22, 0);
  transition: border-color var(--transition-normal), box-shadow var(--transition-normal);
}

.why-feature:hover .why-feature-icon {
  background: rgba(245, 179, 22, 0.12);
  border-color: var(--color-primary);
  box-shadow: 0 0 24px rgba(245, 179, 22, 0.25), 0 0 0 4px rgba(245, 179, 22, 0.07);
  transform: scale(1.07) rotate(-3deg);
}

.why-feature:hover .why-feature-icon::before {
  border-color: rgba(245, 179, 22, 0.4);
}

.why-feature-icon svg {
  width: 30px;
  height: 30px;
  stroke: var(--color-primary);
  transition: stroke var(--transition-normal), transform var(--transition-normal);
}

.why-feature:hover .why-feature-icon svg {
  stroke: #ffffff;
  transform: rotate(3deg);
}

.why-feature-title {
  font-family: var(--font-alt);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.8px;
  color: #ffffff;
  margin-bottom: 10px;
  transition: color var(--transition-normal);
}

.why-feature:hover .why-feature-title {
  color: var(--color-primary);
}

.why-feature-desc {
  font-family: var(--font-body);
  font-size: 13.5px;
  font-weight: 400;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.5);
  max-width: 160px;
  transition: color var(--transition-normal);
}

.why-feature:hover .why-feature-desc {
  color: rgba(255, 255, 255, 0.75);
}

/* ---- Gold Horizontal Divider ---- */
.why-divider {
  width: 100%;
  height: 1px;
  background: linear-gradient(
    to right,
    transparent 0%,
    rgba(245, 179, 22, 0.5) 20%,
    rgba(245, 179, 22, 0.8) 50%,
    rgba(245, 179, 22, 0.5) 80%,
    transparent 100%
  );
  margin: 0;
  opacity: 0;
  transition: opacity 0.9s ease var(--delay, 0s);
}

.why-divider.revealed {
  opacity: 1;
}

/* ---- Stats Counter Row ---- */
.why-stats-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  align-items: center;
  padding: 52px 40px;
  gap: 0;
}

.why-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 10px;
  padding: 10px 20px;
}

.why-stat-number {
  font-family: var(--font-heading);
  font-size: clamp(44px, 5vw, 72px);
  font-weight: 900;
  color: var(--color-primary);
  line-height: 1;
  letter-spacing: -2px;
  text-shadow: 0 0 30px rgba(245, 179, 22, 0.35);
  transition: text-shadow var(--transition-normal);
}

.why-stat:hover .why-stat-number {
  text-shadow: 0 0 50px rgba(245, 179, 22, 0.6);
}

.why-stat-label {
  font-family: var(--font-alt);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: rgba(255, 255, 255, 0.55);
  transition: color var(--transition-normal);
}

.why-stat:hover .why-stat-label {
  color: rgba(255, 255, 255, 0.85);
}

/* Vertical separator between stats */
.why-stat-sep {
  width: 1px;
  height: 64px;
  background: linear-gradient(
    to bottom,
    transparent,
    rgba(255, 255, 255, 0.12) 30%,
    rgba(255, 255, 255, 0.12) 70%,
    transparent
  );
  align-self: center;
}

/* Reveal animation overrides for Why section items */
.why-header.reveal-item {
  opacity: 0;
  transform: translateY(30px);
}

.why-header.reveal-item.revealed {
  opacity: 1;
  transform: translateY(0) !important;
}

.why-feature.reveal-item {
  opacity: 0;
  transform: translateY(40px);
  transition:
    opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1) var(--delay, 0s),
    transform 0.7s cubic-bezier(0.16, 1, 0.3, 1) var(--delay, 0s),
    background var(--transition-normal);
}

.why-feature.reveal-item.revealed {
  opacity: 1;
  transform: translateY(0) !important;
}

.why-stats-grid.reveal-item {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.8s ease var(--delay, 0s),
    transform 0.8s cubic-bezier(0.16, 1, 0.3, 1) var(--delay, 0s);
}

.why-stats-grid.reveal-item.revealed {
  opacity: 1;
  transform: translateY(0) !important;
}

/* =========================================
   WHY SECTION — RESPONSIVE
   ========================================= */

@media (max-width: 1200px) {
  .why-features-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .why-feature:nth-child(3) {
    border-right: none;
  }

  .why-feature:nth-child(4) {
    border-top: 1px solid rgba(255, 255, 255, 0.07);
  }

  .why-feature:nth-child(5) {
    border-top: 1px solid rgba(255, 255, 255, 0.07);
  }

  .why-feature:nth-child(6) {
    border-top: 1px solid rgba(255, 255, 255, 0.07);
    border-right: none;
  }
}

@media (max-width: 900px) {
  .why-stats-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    padding: 40px 20px;
    gap: 0;
  }

  .why-stat-sep {
    display: none;
  }

  .why-stat {
    padding: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  }

  .why-stat:nth-child(4),
  .why-stat:nth-child(7) {
    border-bottom: none;
  }
}

@media (max-width: 768px) {
  .why-section {
    padding: 80px 5% 0;
  }

  .why-header {
    margin-bottom: 52px;
  }

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

  .why-feature:nth-child(2),
  .why-feature:nth-child(4),
  .why-feature:nth-child(6) {
    border-right: none;
  }

  .why-feature:nth-child(3),
  .why-feature:nth-child(4),
  .why-feature:nth-child(5),
  .why-feature:nth-child(6) {
    border-top: 1px solid rgba(255, 255, 255, 0.07);
  }

  .why-feature {
    padding: 36px 16px 32px;
  }

  .why-feature-icon {
    width: 60px;
    height: 60px;
  }

  .why-feature-icon svg {
    width: 26px;
    height: 26px;
  }

  .why-bg {
    background-attachment: scroll;
  }
}

@media (max-width: 480px) {
  .why-features-grid {
    grid-template-columns: 1fr;
  }

  .why-feature {
    border-right: none;
    border-top: 1px solid rgba(255, 255, 255, 0.07);
  }

  .why-feature:first-child {
    border-top: none;
  }

  .why-stats-grid {
    grid-template-columns: 1fr;
    padding: 30px 20px;
  }

  .why-stat {
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    padding: 24px 10px;
  }

  .why-stat:last-child {
    border-bottom: none;
  }
}

/* =========================================
   PROJECTS SECTION
   ========================================= */

.projects-section {
  background-color: #ffffff;
  color: #111111;
  padding: 110px 6% 100px;
  overflow: hidden;
}

/* ---- Section Header ---- */
.projects-header {
  text-align: center;
  margin-bottom: 60px;
}

.projects-tagline-container {
  margin-bottom: 14px;
}

.projects-tagline {
  font-family: var(--font-alt);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3.5px;
  color: var(--color-primary);
}

.projects-title {
  font-family: var(--font-heading);
  font-size: clamp(30px, 4vw, 54px);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.5px;
  line-height: 1.05;
  color: #111111;
  margin-bottom: 20px;
}

.projects-title-highlight {
  color: #111111;
  /* Matches design — plain dark, not yellow */
}

.projects-title-bar {
  width: 50px;
  height: 3px;
  background: var(--color-primary);
  margin: 0 auto;
}

/* ---- 6-Column Gallery Grid ---- */
.projects-grid {
  max-width: 1440px;
  margin: 0 auto 56px;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 6px;
}

/* ---- Individual Tile ---- */
.project-tile {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

/* Image wrapper — fixed aspect ratio box */
.project-tile-img-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background-color: #e0ddd8;
  cursor: pointer;
}

.project-tile-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Dark gold tint overlay — hidden by default */
.project-tile-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(245, 179, 22, 0.75) 0%,
    rgba(12, 12, 14, 0.82) 100%
  );
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.4s ease;
}

/* Magnifier zoom icon */
.project-tile-zoom {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  border: 1.5px solid rgba(255, 255, 255, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  transform: scale(0.7);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), background 0.3s ease;
}

.project-tile-zoom svg {
  width: 22px;
  height: 22px;
  stroke: #ffffff;
  stroke-width: 2;
}

/* Hover interactions */
.project-tile:hover .project-tile-img {
  transform: scale(1.07);
}

.project-tile:hover .project-tile-overlay {
  opacity: 1;
}

.project-tile:hover .project-tile-zoom {
  transform: scale(1);
  background: rgba(255, 255, 255, 0.25);
}

/* Label below image */
.project-tile-label {
  font-family: var(--font-alt);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.8px;
  color: #222222;
  text-align: center;
  transition: color var(--transition-fast);
  padding: 0 4px;
  line-height: 1.4;
}

.project-tile:hover .project-tile-label {
  color: var(--color-primary);
}

/* ---- CTA Button ---- */
.projects-cta {
  text-align: center;
  margin-top: 10px;
}

.projects-cta-btn {
  font-size: 14px;
  font-weight: 800;
  padding: 16px 48px;
  letter-spacing: 2px;
  background-color: var(--color-primary);
  color: #0c0c0e;
  border: none;
  position: relative;
  overflow: hidden;
  transition: background var(--transition-normal), transform var(--transition-normal), box-shadow var(--transition-normal);
}

/* Sheen sweep effect on hover */
.projects-cta-btn::after {
  content: '';
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    120deg,
    transparent 0%,
    rgba(255, 255, 255, 0.35) 50%,
    transparent 100%
  );
  transform: skewX(-20deg);
  transition: left 0.5s ease;
}

.projects-cta-btn:hover::after {
  left: 130%;
}

.projects-cta-btn:hover {
  background-color: #111111;
  color: var(--color-primary);
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(245, 179, 22, 0.25);
}

/* ---- Reveal Animations ---- */
.projects-header.reveal-item {
  opacity: 0;
  transform: translateY(30px);
}

.projects-header.reveal-item.revealed {
  opacity: 1;
  transform: translateY(0) !important;
}

.project-tile.reveal-item {
  opacity: 0;
  transform: translateY(40px) scale(0.97);
  transition:
    opacity 0.65s cubic-bezier(0.16, 1, 0.3, 1) var(--delay, 0s),
    transform 0.65s cubic-bezier(0.16, 1, 0.3, 1) var(--delay, 0s);
}

.project-tile.reveal-item.revealed {
  opacity: 1;
  transform: translateY(0) scale(1) !important;
}

.projects-cta.reveal-item {
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.6s ease var(--delay, 0s),
    transform 0.6s ease var(--delay, 0s);
}

.projects-cta.reveal-item.revealed {
  opacity: 1;
  transform: translateY(0) !important;
}

/* =========================================
   PROJECTS — RESPONSIVE
   ========================================= */

@media (max-width: 1200px) {
  .projects-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
  }
}

@media (max-width: 768px) {
  .projects-section {
    padding: 80px 5% 70px;
  }

  .projects-header {
    margin-bottom: 40px;
  }

  .projects-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
    margin-bottom: 40px;
  }

  .project-tile-img-wrap {
    aspect-ratio: 4 / 3;
  }
}

@media (max-width: 480px) {
  .projects-grid {
    grid-template-columns: 1fr 1fr;
    gap: 6px;
  }

  .projects-cta-btn {
    padding: 14px 36px;
    font-size: 13px;
  }
}

/* =========================================
   TESTIMONIALS SECTION
   ========================================= */

.testi-section {
  background-color: #f2f2f0;
  padding: 110px 0 80px;
  overflow: hidden;
}

/* ---- Section Header ---- */
.testi-header {
  text-align: center;
  margin-bottom: 60px;
  padding: 0 6%;
}

.testi-tagline-container {
  margin-bottom: 12px;
}

.testi-tagline {
  font-family: var(--font-alt);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3.5px;
  color: var(--color-primary);
}

.testi-title {
  font-family: var(--font-heading);
  font-size: clamp(28px, 3.8vw, 52px);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.5px;
  color: #111111;
  margin-bottom: 20px;
}

.testi-title-bar {
  width: 50px;
  height: 3px;
  background: var(--color-primary);
  margin: 0 auto;
}

/* ---- Slider Outer (contains arrows + track) ---- */
.testi-slider-outer {
  display: flex;
  align-items: center;
  gap: 0;
  position: relative;
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ---- Prev / Next Arrow Buttons ---- */
.testi-arrow {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: none;
  background: var(--color-primary);
  color: #111111;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: background var(--transition-normal), transform var(--transition-normal), box-shadow var(--transition-normal);
  box-shadow: 0 4px 16px rgba(245, 179, 22, 0.3);
}

.testi-arrow svg {
  width: 20px;
  height: 20px;
  stroke: #111111;
  stroke-width: 2.5;
  transition: stroke var(--transition-normal);
}

.testi-arrow:hover {
  background: #111111;
  transform: scale(1.08);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.testi-arrow:hover svg {
  stroke: var(--color-primary);
}

.testi-arrow:disabled {
  opacity: 0.35;
  cursor: not-allowed;
  transform: none;
}

/* ---- Track Wrapper (overflow hidden) ---- */
.testi-track-wrap {
  flex: 1;
  overflow: hidden;
  padding: 20px 12px 28px;
}

/* ---- Track (slides left/right via translateX) ---- */
.testi-track {
  display: flex;
  gap: 20px;
  transition: transform 0.55s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform;
}

/* ---- Individual Review Card ---- */
.testi-card {
  flex: 0 0 calc((100% - 40px) / 3);
  background: #ffffff;
  padding: 36px 32px 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 14px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(0, 0, 0, 0.04);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
  position: relative;
}

.testi-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
}

/* Large gold opening quote */
.testi-quote {
  font-family: Georgia, serif;
  font-size: 72px;
  line-height: 0.6;
  color: var(--color-primary);
  font-weight: 900;
  margin-bottom: 6px;
  align-self: flex-start;
  user-select: none;
}

/* Gold filled stars */
.testi-stars {
  display: flex;
  gap: 4px;
}

.testi-stars svg {
  width: 18px;
  height: 18px;
  fill: var(--color-primary);
  stroke: var(--color-primary);
  stroke-width: 1;
}

/* Review text */
.testi-text {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 400;
  line-height: 1.65;
  color: #444444;
  flex: 1;
}

/* Author name */
.testi-author {
  font-family: var(--font-alt);
  font-size: 13px;
  font-weight: 700;
  color: #111111;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 6px;
}

/* ---- Dot Pagination ---- */
.testi-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 36px;
}

.testi-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.18);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background var(--transition-normal), transform var(--transition-normal), width var(--transition-normal);
}

.testi-dot.active {
  background: var(--color-primary);
  width: 28px;
  border-radius: 5px;
}

/* ---- Reveal ---- */
.testi-header.reveal-item {
  opacity: 0;
  transform: translateY(30px);
}

.testi-header.reveal-item.revealed {
  opacity: 1;
  transform: translateY(0) !important;
}

/* =========================================
   TESTIMONIALS — RESPONSIVE
   ========================================= */

@media (max-width: 1024px) {
  /* Show 2 cards at a time */
  .testi-card {
    flex: 0 0 calc((100% - 20px) / 2);
  }
}

@media (max-width: 640px) {
  .testi-section {
    padding: 80px 0 60px;
  }

  .testi-slider-outer {
    padding: 0 10px;
    gap: 0;
  }

  /* Show 1 card at a time on mobile */
  .testi-card {
    flex: 0 0 100%;
  }

  .testi-track-wrap {
    padding: 16px 8px 24px;
  }

  .testi-arrow {
    width: 40px;
    height: 40px;
  }

  .testi-arrow svg {
    width: 16px;
    height: 16px;
  }

  .testi-quote {
    font-size: 56px;
  }
}

/* =========================================
   CONTACT / GET A QUOTE SECTION
   ========================================= */
.contact-section {
  background-color: var(--color-bg);
  padding: 120px 0;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.contact-container {
  max-width: 1200px;
  width: 90%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 1.2fr;
  min-height: 550px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.05);
  background-color: #0e0e11;
}

/* Left Column Styling */
.contact-left {
  position: relative;
  background-image: linear-gradient(
    rgba(12, 12, 14, 0.82),
    rgba(12, 12, 14, 0.82)
  ), url('about.png');
  background-size: cover;
  background-position: center;
  padding: 70px 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  z-index: 1;
}

.contact-left-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(12, 12, 14, 0.45);
  z-index: -1;
}

.contact-left-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-tagline {
  font-family: var(--font-alt);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: var(--color-primary);
}

.contact-title {
  font-family: var(--font-heading);
  font-size: clamp(32px, 3.5vw, 48px);
  line-height: 1.1;
  font-weight: 900;
  text-transform: uppercase;
  color: #ffffff;
  margin-bottom: 20px;
}

.contact-title .yellow-text {
  color: var(--color-primary);
}

.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 10px;
}

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

.contact-info-icon {
  width: 42px;
  height: 42px;
  background-color: var(--color-primary);
  border-radius: 0px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-info-icon svg {
  width: 20px;
  height: 20px;
  stroke: #0c0c0e;
  stroke-width: 2.2;
}

.contact-info-text {
  font-family: var(--font-alt);
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  color: #ffffff;
  letter-spacing: 1px;
}

.contact-link {
  transition: color var(--transition-fast);
}

.contact-link:hover {
  color: var(--color-primary);
}

/* Right Column Styling */
.contact-right {
  background-color: #0a0a0c;
  padding: 70px 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

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

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

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 16px 20px;
  background-color: #121215;
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #ffffff;
  font-family: var(--font-body);
  font-size: 15px;
  outline: none;
  border-radius: 0px;
  transition: border-color var(--transition-fast), background-color var(--transition-fast);
}

.contact-form select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg fill='white' height='24' viewBox='0 0 24 24' width='24' xmlns='http://www.w3.org/2000/svg'><path d='M7 10l5 5 5-5z'/><path d='M0 0h24v24H0z' fill='none'/></svg>");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 20px;
  padding-right: 40px;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #6b7280;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--color-primary);
  background-color: #15151a;
}

.contact-form select:invalid,
.contact-form select option[value=""] {
  color: #6b7280;
}

.submit-btn {
  width: 100%;
  padding: 18px;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 1.5px;
  margin-top: 10px;
}

/* Animations for scroll reveal */
.contact-left.reveal-item {
  transform: translateX(-60px);
}

.contact-right.reveal-item {
  transform: translateX(60px);
}

/* Form success state styling */
.contact-success-message {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 20px;
  height: 100%;
  animation: fadeInSuccess 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.success-icon-wrap {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background-color: rgba(245, 179, 22, 0.1);
  border: 2px solid var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
}

.success-icon-wrap svg {
  width: 40px;
  height: 40px;
  stroke: var(--color-primary);
  stroke-width: 3;
  fill: none;
}

.success-title {
  font-family: var(--font-heading);
  font-size: 32px;
  text-transform: uppercase;
  color: #ffffff;
}

.success-desc {
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--color-text-muted);
  max-width: 320px;
}

@keyframes fadeInSuccess {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* Responsive Styles for Contact Section */
@media (max-width: 991px) {
  .contact-section {
    padding: 80px 0;
  }
  
  .contact-container {
    grid-template-columns: 1fr;
    min-height: auto;
    width: 92%;
  }
  
  .contact-left, 
  .contact-right {
    padding: 50px 30px;
  }
  
  .contact-left.reveal-item,
  .contact-right.reveal-item {
    transform: translateY(40px);
  }
}

@media (max-width: 576px) {
  .form-grid {
    grid-template-columns: 1fr;
  }
  
  .form-group.full-width,
  .form-grid > .form-group {
    grid-column: span 1;
  }
  
  .contact-left, 
  .contact-right {
    padding: 40px 20px;
  }
  
  .contact-title {
    font-size: 28px;
  }
}

/* =========================================
   FOOTER SECTION
   ========================================= */
.footer {
  background-color: #08080a;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 80px 0 0 0;
  color: #ffffff;
  font-family: var(--font-body);
}

.footer-container {
  max-width: 1200px;
  width: 90%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 0.8fr 1fr 1.2fr;
  gap: 50px;
  padding-bottom: 60px;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.footer-logo-wrap {
  display: inline-block;
  align-self: flex-start;
  padding-top: 15px;
  margin-bottom: 10px;
}

.footer-logo {
  height: 44px;
  object-fit: contain;
  transform: scale(2.1);
  transform-origin: left center;
}

.footer-desc {
  font-size: 14px;
  line-height: 1.6;
  color: var(--color-text-muted);
  max-width: 280px;
}

.footer-socials {
  display: flex;
  gap: 14px;
  margin-top: 5px;
}

.social-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-normal);
  color: #ffffff;
}

.social-btn svg {
  width: 18px;
  height: 18px;
  stroke-width: 2;
  fill: none;
}

.social-btn:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
  transform: translateY(-4px) scale(1.05);
}

.footer-title {
  font-family: var(--font-alt);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #ffffff;
  position: relative;
  padding-bottom: 8px;
  margin-top: 12px;
}

.footer-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background-color: var(--color-primary);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-link {
  font-size: 14px;
  color: var(--color-text-muted);
  transition: all 0.3s ease;
  display: inline-block;
}

.footer-link:hover {
  color: var(--color-primary);
  transform: translateX(4px);
}

.footer-contact-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.footer-contact-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: var(--color-text-muted);
}

.footer-contact-list li svg {
  width: 18px;
  height: 18px;
  stroke: var(--color-primary);
  stroke-width: 2.2;
  fill: none;
  flex-shrink: 0;
}

.footer-contact-link {
  color: var(--color-text-muted);
  transition: color var(--transition-fast);
}

.footer-contact-link:hover {
  color: var(--color-primary);
}

/* Bottom Bar */
.footer-bottom {
  background-color: var(--color-primary);
  color: #0c0c0e;
  padding: 20px 0;
  font-family: var(--font-alt);
  font-size: 12px;
  font-weight: 700;
}

.footer-bottom-container {
  max-width: 1200px;
  width: 90%;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom p {
  margin: 0;
}

/* Scroll reveal offsets */
.footer-col.reveal-item {
  transform: translateY(30px);
}

/* Responsiveness */
@media (max-width: 991px) {
  .footer-container {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
  
  .footer-logo {
    transform: scale(1.8);
  }
}

@media (max-width: 576px) {
  .footer {
    padding-top: 60px;
  }
  
  .footer-container {
    grid-template-columns: 1fr;
    gap: 36px;
    padding-bottom: 40px;
  }
  
  .footer-bottom-container {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }
}