/* ===== VARIABLES ===== */
:root {
  /* Colors - Improved Accessibility Palette */
  --primary-color: #175AB4;  /* Brand blue matching logo */
  --primary-light: #4A7FFF;
  --primary-dark: #223E66;
  --primary-tint: #A8BFF8;   /* 30% tint for secondary buttons */
  
  --secondary-color: #d69e2e;
  --secondary-light: #f6e05e;
  --accent-color: #38a169;
  --highlight-color: #FF9C4A; /* Warm supporting hue for accents */
  
  /* Improved Text Colors for Better Contrast */
  --text-dark: #1a202c;
  --text-medium: #5A5A5A;     /* Neutral mid-tone for better contrast */
  --text-light: #6B6B6B;     /* Accessible light text */
  --text-subtle: #718096;    /* For very subtle elements */
  
  --white: #ffffff;
  --gray-50: #f7fafc;
  --gray-100: #edf2f7;
  --gray-200: #e2e8f0;
  --gray-300: #cbd5e0;
  
  /* Typography */
  --font-primary: 'Open Sans', sans-serif;
  --font-heading: 'Open Sans', sans-serif;
  
  /* Spacing */
  --container-max-width: 1200px;
  --section-padding: 5rem 0;
  --section-padding-mobile: 3rem 0;
  
  /* Transitions */
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-fast: all 0.2s ease;
  
  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.15);
  --shadow-xl: 0 25px 50px rgba(0, 0, 0, 0.25);
}

/* ===== RESET & BASE ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-primary);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text-dark);
  background-color: var(--white);
}

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

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

ul {
  list-style: none;
}

button {
  border: none;
  background: none;
  cursor: pointer;
  font-family: inherit;
}

/* ===== UTILITIES ===== */
.container {
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding: 0 2rem;
}

.nav .container {
  padding: 0;
  max-width: none;
  width: 100%;
}

.section {
  padding: var(--section-padding);
}

.section__header {
  margin-bottom: 3rem;
}

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

.section__subtitle {
  display: inline-block;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--secondary-color);
  margin-bottom: 0.5rem;
}

.section__title {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 600;
  line-height: 1.2;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.section__description {
  font-size: 1.125rem;
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 1.75rem;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: 0.5rem;
  transition: var(--transition);
  cursor: pointer;
  border: 2px solid transparent;
  text-decoration: none;
}

.btn--primary {
  background-color: var(--primary-color);
  color: var(--white);
  border-color: var(--primary-color);
}

.btn--primary:hover {
  background-color: #1A4FE6;
  border-color: #1A4FE6;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(30, 90, 255, 0.4);
}

.btn--secondary {
  background-color: transparent;
  color: var(--primary-tint);
  border-color: var(--primary-tint);
}

.btn--secondary:hover {
  background-color: var(--primary-tint);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn--large {
  padding: 1.125rem 2.25rem;
  font-size: 1rem;
  border-radius: 0.5rem;
  min-height: 48px;
  min-width: 120px;
}

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

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 6rem;
  padding: 1rem 2rem;
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  transition: var(--transition);
  cursor: pointer;
}

.nav__logo:hover {
  opacity: 0.8;
}

.nav__logo-img {
  width: 60px;
  height: 60px;
  object-fit: contain;
}

.nav__logo-text {
  font-family: var(--font-heading);
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--primary-color);
  line-height: 1.1;
  white-space: nowrap;
}

.nav__logo-text small {
  font-size: 0.75rem;
  font-weight: 400;
  color: var(--text-light);
}

.nav__menu {
  display: flex;
  align-items: center;
  margin-left: 4rem;
}

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

.nav__link {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-dark);
  transition: var(--transition);
  position: relative;
  padding: 0.5rem 0;
  text-decoration: none;
}

.nav__link:hover,
.nav__link.active-link {
  color: var(--primary-color);
  text-decoration: none;
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: -0.5rem;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary-color);
  transition: var(--transition);
}

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

.nav__actions {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-shrink: 0;
  margin-left: 3rem;
}

.nav__phone {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--primary-color);
  transition: var(--transition);
  white-space: nowrap;
  flex-shrink: 0;
  text-decoration: none;
}

.nav__phone span {
  white-space: nowrap;
  font-variant-numeric: tabular-nums;
}

.nav__phone:hover {
  color: var(--highlight-color);
  transform: scale(1.05);
}

.nav__toggle,
.nav__close {
  display: none;
  font-size: 1.25rem;
  color: var(--text-dark);
  cursor: pointer;
  min-width: 44px;
  min-height: 44px;
  align-items: center;
  justify-content: center;
}

/* Scroll header effect */
.scroll-header {
  background-color: rgba(255, 255, 255, 0.98);
  box-shadow: var(--shadow-sm);
}

/* Hero navbar special styling (home page only) */
.header--hero-mode {
  background-color: #222732;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  border-bottom: none;
  box-shadow: none;
}

.header--hero-mode .nav__link {
  color: rgba(255, 255, 255, 0.9);
}

.header--hero-mode .nav__link:hover {
  color: #C6A155;
  transform: translateY(-1px);
}

.header--hero-mode .nav__link.active {
  color: #C6A155;
}

.header--hero-mode .nav__logo-text {
  color: rgba(255, 255, 255, 0.95);
}

.header--hero-mode .nav__logo-text small {
  color: rgba(255, 255, 255, 0.7);
}

.header--hero-mode .nav__phone {
  color: rgba(255, 255, 255, 0.9);
}

.header--hero-mode .nav__phone:hover {
  color: #C6A155;
  transform: scale(1.05);
}

.header--hero-mode .btn--primary {
  background-color: #EC6538;
  color: var(--white);
  border-color: #EC6538;
  box-shadow: 0 4px 15px rgba(236, 101, 56, 0.3);
}

.header--hero-mode .btn--primary:hover {
  background-color: #D85532;
  border-color: #D85532;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(236, 101, 56, 0.4);
}

.header--hero-mode .nav__toggle {
  color: rgba(255, 255, 255, 0.9);
}

/* ===== HERO VIDEO SECTION ===== */
.hero-video {
  position: relative;
  height: 100vh;
  min-height: 800px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 2rem;
  background: radial-gradient(ellipse at center, #283E63 0%, #212633 60%);
}

.hero-video__content {
  position: relative;
  z-index: 3;
  text-align: center;
  color: var(--white);
  max-width: 800px;
  margin: 0 auto;
  padding: 0 2rem;
}

.hero-video__badges {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.badge--video {
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: var(--white);
  font-weight: 600;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
  padding: 0.875rem 1.75rem;
  font-size: 0.875rem;
  white-space: nowrap;
  min-height: 2.5rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.hero-video__title {
  font-family: var(--font-primary);
  font-size: 4rem;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
  animation: fadeInUp 1s ease-out 0.5s both;
}

.hero-video__title--accent {
  color: var(--secondary-color);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.7);
}

.hero-video__title--location {
  font-size: 3.5rem;
  opacity: 0.9;
}

.hero-video__subtitle {
  font-size: 1.5rem;
  margin-bottom: 2.5rem;
  opacity: 0.95;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
  animation: fadeInUp 1s ease-out 0.7s both;
}

.hero-video__cta {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
  animation: fadeInUp 1s ease-out 0.9s both;
}

.btn--video {
  backdrop-filter: blur(10px);
  border: 2px solid transparent;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
}

.btn--primary.btn--video {
  background: linear-gradient(135deg, #FF6B35 0%, #FF5722 100%);
  border-color: rgba(255, 255, 255, 0.3);
  box-shadow: 0 4px 15px rgba(255, 107, 53, 0.4);
}

.btn--primary.btn--video:hover {
  background: linear-gradient(135deg, #FF5722 0%, #E64A19 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 107, 53, 0.6);
}

.btn--secondary.btn--video {
  background: rgba(255, 255, 255, 0.15);
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.3);
}

.btn--secondary.btn--video:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.trust-indicators--video {
  animation: fadeInUp 1s ease-out 1.1s both;
}

.trust-indicators--video .trust-indicator__text {
  color: rgba(255, 255, 255, 0.9);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.hero-video__controls {
  position: absolute;
  bottom: 2rem;
  right: 2rem;
  z-index: 4;
  display: flex;
  gap: 1rem;
}

.hero-video__play-pause,
.hero-video__mute {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: var(--white);
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-video__play-pause:hover,
.hero-video__mute:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: scale(1.1);
}

.hero-video__scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 4;
  text-align: center;
  color: rgba(255, 255, 255, 0.8);
  animation: bounce 2s infinite;
  cursor: pointer;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.hero-video__scroll-indicator:hover {
  opacity: 1;
  transform: translateX(-50%) scale(1.1);
}

.scroll-arrow {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 0.5rem;
}

.scroll-text {
  font-size: 0.875rem;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

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

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateX(-50%) translateY(0);
  }
  40% {
    transform: translateX(-50%) translateY(-10px);
  }
  60% {
    transform: translateX(-50%) translateY(-5px);
  }
}

.hero__container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero__content {
  z-index: 2;
}

.hero__badges {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.badge {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background-color: var(--secondary-color);
  color: var(--white);
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: 2rem;
  white-space: nowrap;
}

.hero__title {
  font-family: var(--font-primary);
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.1;
  color: var(--text-dark);
  margin-bottom: 1.5rem;
}

.hero__title--accent {
  color: var(--primary-color);
}

.hero__subtitle {
  font-size: 1.25rem;
  color: var(--text-light);
  margin-bottom: 2.5rem;
}

.hero__cta {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.hero__trust {
  margin-top: 2rem;
}

.trust-indicators {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  justify-content: center;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--text-light);
}

.trust-item i {
  color: var(--highlight-color);
}

.stars {
  display: flex;
  gap: 0.125rem;
}

.stars i {
  color: var(--highlight-color);
  font-size: 0.875rem;
}

.hero__image {
  position: relative;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.hero__img {
  width: 100%;
  height: 500px;
  object-fit: cover;
}

.hero__image-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
  padding: 2rem;
}

.project-info h3 {
  color: var(--white);
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.project-info p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.875rem;
}

/* ===== ABOUT SECTION ===== */
.about {
  background-color: var(--white);
}

.about__container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about__text {
  margin-bottom: 2rem;
}

.about__text p {
  font-size: 1.125rem;
  color: var(--text-light);
  margin-bottom: 1.5rem;
}

.about__features {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.feature {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.feature i {
  font-size: 1.5rem;
  color: var(--primary-color);
  margin-top: 0.25rem;
}

.feature h4 {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.feature p {
  color: var(--text-light);
}

.about__image {
  position: relative;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.about__img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

.about__image-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
  padding: 1.5rem;
  text-align: center;
}

.about__image-info h4 {
  color: var(--white);
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.about__image-info p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.875rem;
}

.about__image-cta {
  position: static;
  margin-top: 1rem;
  text-align: center;
}

.btn--about-cta {
  background-color: #EC6538;
  color: var(--white);
  border: 2px solid #EC6538;
  padding: 0.75rem 1.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  border-radius: 0.5rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(236, 101, 56, 0.3);
  backdrop-filter: blur(10px);
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.btn--about-cta:hover {
  background-color: #2C58AB;
  border-color: #2C58AB;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(44, 88, 171, 0.4);
}

.btn--about-cta i {
  margin-right: 0.5rem;
}

/* Hero Video Enhanced Responsive Styles */
@media screen and (max-width: 1200px) {
  .hero-video__title {
    font-size: 3.75rem;
  }
  
  .hero-video__title--location {
    font-size: 3.25rem;
  }
  
  .hero-video__subtitle {
    font-size: 1.375rem;
  }
  
  .hero-video__content {
    max-width: 700px;
    padding: 0 2rem;
  }
}

@media screen and (max-width: 1024px) {
  .hero-video {
    height: 100vh;
    min-height: 700px;
  }
  
  .hero-video__title {
    font-size: 3.25rem;
    line-height: 1.1;
  }
  
  .hero-video__title--location {
    font-size: 2.75rem;
  }
  
  .hero-video__subtitle {
    font-size: 1.25rem;
    margin-bottom: 2.25rem;
  }
  
  .hero-video__content {
    max-width: 600px;
    padding: 0 1.75rem;
  }
  
  .hero-video__cta {
    gap: 1.25rem;
    margin-bottom: 2.5rem;
  }
  
  .hero-video__badges {
    gap: 0.75rem;
    margin-bottom: 1.75rem;
  }
}

@media screen and (max-width: 900px) {
  .hero-video__title {
    font-size: 2.875rem;
  }
  
  .hero-video__title--location {
    font-size: 2.5rem;
  }
  
  .hero-video__subtitle {
    font-size: 1.1875rem;
  }
  
  .hero-video__content {
    max-width: 550px;
  }
}

@media screen and (max-width: 768px) {
  .hero-video {
    height: 100vh;
    min-height: 600px;
  }
  
  .hero-video__content {
    padding: 0 1.5rem;
  }
  
  .hero-video__title {
    font-size: 2.5rem;
    line-height: 1.1;
  }
  
  .hero-video__title--location {
    font-size: 2.25rem;
  }
  
  .hero-video__subtitle {
    font-size: 1.125rem;
    margin-bottom: 2rem;
  }
  
  .btn--large.btn--video {
    padding: 0.875rem 1.5rem;
    font-size: 0.875rem;
    width: 100%;
    max-width: 280px;
  }
}

/* Additional midsize screen optimizations */
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .hero-video__cta {
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
  }
  
  .btn--large.btn--video {
    min-width: 200px;
    flex: 0 1 auto;
  }
  
  .trust-indicators--video {
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2rem;
  }
}

@media screen and (min-width: 901px) and (max-width: 1200px) {
  .hero-video__badges {
    justify-content: center;
    max-width: 600px;
    margin: 0 auto 1.75rem;
    gap: 0.875rem;
  }
  
  .badge--video {
    font-size: 0.875rem;
    padding: 0.875rem 1.75rem;
    min-height: 2.5rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
}

/* ===== NAVBAR RESPONSIVE FIXES ===== */
@media screen and (max-width: 1200px) {
  .nav__menu {
    margin-left: 2rem;
  }
  
  .nav__actions {
    margin-left: 1.5rem;
    gap: 1.5rem;
  }
  
  .nav__list {
    gap: 2rem;
  }
  
  .nav__logo-text {
    font-size: 1rem;
  }
  
  .nav__logo-text small {
    font-size: 0.7rem;
  }
}

@media screen and (max-width: 1024px) {
  .nav__menu {
    margin-left: 1rem;
  }
  
  .nav__actions {
    margin-left: 1rem;
    gap: 1rem;
  }
  
  .nav__list {
    gap: 1.5rem;
  }
  
  .nav__link {
    font-size: 0.8rem;
  }
  
  .nav__logo-text {
    font-size: 0.95rem;
  }
  
  .nav__logo-text small {
    font-size: 0.68rem;
  }
}

@media screen and (max-width: 900px) {
  .nav__menu {
    position: fixed;
    top: 0;
    right: -320px;
    width: 320px;
    height: 100vh;
    background: linear-gradient(180deg, var(--primary-dark) 0%, #1a2d4a 100%);
    flex-direction: column;
    justify-content: flex-start;
    padding-top: 5rem;
    transition: right 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1000;
    margin-left: 0;
    box-shadow: -4px 0 24px rgba(0, 0, 0, 0.3);
    border-left: none;
  }

  .nav__menu.show-menu {
    right: 0;
  }

  .nav__menu::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.35s ease;
    z-index: -1;
  }

  .nav__menu.show-menu::before {
    opacity: 1;
    visibility: visible;
  }

  .nav__list {
    flex-direction: column;
    gap: 0;
    padding: 1rem 0;
  }

  .nav__item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .nav__link {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.9);
    padding: 1rem 2rem;
    display: block;
    transition: all 0.2s ease;
    letter-spacing: 0.02em;
    font-weight: 500;
  }

  .nav__link:hover,
  .nav__link:focus {
    color: var(--secondary-color);
    background-color: rgba(255, 255, 255, 0.05);
    outline: none;
  }

  .nav__link::after {
    display: none;
  }

  .nav__close {
    display: block;
    position: absolute;
    top: 1.25rem;
    right: 1.25rem;
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.5rem;
    cursor: pointer;
    transition: color 0.2s ease;
    background: none;
    border: none;
    padding: 0.5rem;
  }

  .nav__close:hover {
    color: var(--white);
  }

  .nav__toggle {
    display: block;
  }
}

/* ===== RESPONSIVE DESIGN ===== */
@media screen and (max-width: 1024px) {
  .section__title {
    font-size: 2.25rem;
  }
  
  .hero__title {
    font-size: 3rem;
  }
  
  .hero__container,
  .about__container {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .hero__image {
    order: -1;
  }
}

@media screen and (max-width: 768px) {
  .section {
    padding: var(--section-padding-mobile);
  }
  
  .nav__menu {
    position: fixed;
    top: 0;
    right: -320px;
    width: 320px;
    height: 100vh;
    background: linear-gradient(180deg, var(--primary-dark) 0%, #1a2d4a 100%);
    flex-direction: column;
    justify-content: flex-start;
    padding-top: 5rem;
    transition: right 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1000;
    margin-left: 0;
    box-shadow: -4px 0 24px rgba(0, 0, 0, 0.3);
    border-left: none;
  }

  .nav__menu.show-menu {
    right: 0;
  }

  /* Mobile menu overlay */
  .nav__menu::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.35s ease;
    z-index: -1;
  }

  .nav__menu.show-menu::before {
    opacity: 1;
    visibility: visible;
  }

  .nav__list {
    flex-direction: column;
    gap: 0;
    padding: 1rem 0;
  }

  .nav__item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .nav__link {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.9);
    padding: 1rem 2rem;
    display: block;
    transition: all 0.2s ease;
    letter-spacing: 0.02em;
    font-weight: 500;
  }

  .nav__link:hover,
  .nav__link:focus {
    color: var(--secondary-color);
    background-color: rgba(255, 255, 255, 0.05);
    outline: none;
  }

  .nav__link::after {
    display: none;
  }

  .nav__close {
    display: block;
    position: absolute;
    top: 1.25rem;
    right: 1.25rem;
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.5rem;
    cursor: pointer;
    transition: color 0.2s ease;
    background: none;
    border: none;
    padding: 0.5rem;
  }

  .nav__close:hover {
    color: var(--white);
  }

  .nav__toggle {
    display: block;
  }

  .nav__actions {
    gap: 0.5rem;
    margin-left: auto;
    flex-shrink: 0;
  }
  
  .nav__actions .btn {
    padding: 0.5rem 0.75rem;
    font-size: 0.7rem;
    white-space: nowrap;
    min-width: auto;
    min-height: 44px;
  }
  
  .nav {
    height: 4rem;
    padding: 0 1.5rem;
  }
  
  .nav__list {
    gap: 1.5rem;
  }
  
  .nav__actions {
    gap: 1rem;
  }
  
  .nav__logo {
    flex-shrink: 1;
    min-width: 0;
  }
  
  .nav__logo-text {
    font-size: 0.9rem;
    line-height: 1.1;
  }
  
  .nav__logo-text small {
    font-size: 0.65rem;
  }
  
  .nav__phone span {
    display: none;
  }
  
  .nav__toggle {
    margin-left: 0.5rem;
  }
  
  .hero__container {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }
  
  .hero {
    padding-top: 5rem;
    min-height: auto;
    padding-bottom: 3rem;
  }
  
  .hero__title {
    font-size: 2.5rem;
  }
  
  .hero__cta {
    flex-direction: column;
    gap: 1rem;
  }
  
  .hero__image {
    order: -1;
    margin-bottom: 2rem;
  }
  
  .trust-indicators {
    flex-direction: column;
    gap: 1rem;
  }
  
  .section__title {
    font-size: 2rem;
  }
  
  .btn--about-cta {
    padding: 0.625rem 1.25rem;
    font-size: 0.8rem;
  }
}

@media screen and (max-width: 480px) {
  .container {
    padding: 0 1rem;
  }
  
  .container {
    padding: 0 0.75rem;
  }
  
  .nav {
    height: 3.5rem;
    padding: 0 1rem;
  }
  
  .nav__list {
    gap: 1rem;
  }
  
  .nav__actions {
    gap: 0.75rem;
  }
  
  .nav__logo {
    gap: 0.5rem;
    flex-shrink: 1;
    min-width: 0;
    overflow: hidden;
  }
  
  .nav__logo-img {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
  }
  
  .nav__logo-text {
    font-size: 0.8rem;
    line-height: 1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  
  .nav__logo-text small {
    font-size: 0.6rem;
    display: block;
  }
  
  .nav__actions {
    gap: 0.25rem;
    margin-left: 0.5rem;
    flex-shrink: 0;
  }
  
  .nav__actions .btn {
    padding: 0.35rem 0.5rem;
    font-size: 0.6rem;
    letter-spacing: 0.01em;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .nav__phone {
    display: none;
  }
  
  .nav__toggle {
    margin-left: 0.25rem;
    font-size: 1.1rem;
  }
  
  .hero {
    padding-top: 4rem;
  }
  
  .hero__title {
    font-size: 1.75rem;
    line-height: 1.2;
  }
  
  .hero__subtitle {
    font-size: 1rem;
  }
  
  .hero__image {
    margin-bottom: 1.5rem;
  }
  
  .hero__img {
    border-radius: 0.75rem;
  }
  
  .hero__badges {
    flex-direction: column;
    gap: 0.5rem;
  }
  
  .section__title {
    font-size: 1.75rem;
  }
}

/* ===== SERVICES SECTION ===== */
.services {
  background-color: var(--gray-50);
}

.services__container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.service-card {
  background-color: var(--white);
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  text-align: center;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(30, 90, 255, 0.15);
}

.service-card__icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  transition: var(--transition);
}

.service-card:hover .service-card__icon {
  transform: scale(1.1);
}

.service-card__icon i {
  font-size: 2rem;
  color: var(--white);
}

.service-card__title {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.service-card__description {
  color: var(--text-light);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.service-card__link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--primary-color);
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.875rem;
  letter-spacing: 0.05em;
  transition: var(--transition);
}

.service-card__link:hover {
  color: var(--highlight-color);
  transform: translateX(5px);
}

.services__cta {
  text-align: center;
}

/* ===== PROCESS SECTION ===== */
.process {
  background-color: var(--white);
}

.process__timeline {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  position: relative;
}

.process-step {
  text-align: center;
  position: relative;
}

.process-step__number {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 40px;
  background-color: var(--highlight-color);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.125rem;
  z-index: 2;
}

.process-step__icon {
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  position: relative;
  transition: var(--transition);
}

.process-step:hover .process-step__icon {
  transform: scale(1.05);
  box-shadow: 0 8px 25px rgba(30, 90, 255, 0.3);
}

.process-step__icon i {
  font-size: 2.5rem;
  color: var(--white);
}

.process-step__content h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.process-step__content p {
  color: var(--text-light);
  line-height: 1.6;
}

/* ===== TESTIMONIALS SECTION ===== */
.testimonials {
  background-color: var(--gray-50);
}

.testimonials__container {
  position: relative;
  max-width: 800px;
  margin: 0 auto 3rem;
}

.testimonial-card {
  background-color: var(--white);
  padding: 3rem 2rem;
  border-radius: 1rem;
  box-shadow: var(--shadow-md);
  text-align: center;
  display: none;
  opacity: 0;
  transition: var(--transition);
}

.testimonial-card.active {
  display: block;
  opacity: 1;
}

.testimonial-card__stars {
  display: flex;
  justify-content: center;
  gap: 0.25rem;
  margin-bottom: 1.5rem;
}

.testimonial-card__stars i {
  color: var(--highlight-color);
  font-size: 1.25rem;
}

.testimonial-card__quote {
  font-size: 1.25rem;
  font-style: italic;
  color: var(--text-dark);
  line-height: 1.6;
  margin-bottom: 2rem;
  position: relative;
}


.testimonial-card__author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.testimonial-card__avatar {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 1.25rem;
}

.testimonial-card__info h4 {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.25rem;
}

.testimonial-card__info p {
  color: var(--text-light);
  font-size: 0.875rem;
}

.testimonials__navigation {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}

.testimonial-nav {
  width: 50px;
  height: 50px;
  background-color: var(--white);
  border: 2px solid var(--gray-200);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  transition: var(--transition);
  cursor: pointer;
}

.testimonial-nav:hover {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  color: var(--white);
  transform: scale(1.1);
  box-shadow: 0 4px 12px rgba(30, 90, 255, 0.3);
}

.testimonial-dots {
  display: flex;
  gap: 0.5rem;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: var(--gray-300);
  border: none;
  cursor: pointer;
  transition: var(--transition);
}

.dot:hover {
  background-color: var(--text-light);
  transform: scale(1.2);
}

.dot.active {
  background-color: var(--primary-color);
}

/* ===== ANIMATED LOGO VIDEO ===== */
.animated-logo-video {
  margin: 2rem 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.logo-video {
  max-width: 300px;
  height: auto;
  border-radius: 1rem;
  box-shadow: 0 8px 32px rgba(30, 90, 255, 0.15);
  transition: var(--transition);
  background: var(--white);
}

.logo-video:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(30, 90, 255, 0.25);
}

/* Fallback styles for browsers that don't support video */
.logo-fallback {
  display: none;
}

.logo-video:not([src]):not([srcset]) + .logo-fallback,
.logo-video[src=""] + .logo-fallback {
  display: flex;
  justify-content: center;
  align-items: center;
}

.logo-fallback .logo-container {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 1.5rem 2rem;
  background: linear-gradient(135deg, var(--white) 0%, var(--gray-50) 100%);
  border-radius: 1rem;
  box-shadow: 0 8px 32px rgba(30, 90, 255, 0.1);
  border: 2px solid rgba(30, 90, 255, 0.1);
}

.logo-fallback .logo-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-fallback .logo-icon i {
  font-size: 1.5rem;
  color: var(--white);
}

.logo-fallback .logo-text {
  display: flex;
  flex-direction: column;
  text-align: left;
}

.logo-fallback .logo-main {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-color);
  line-height: 1.1;
}

.logo-fallback .logo-sub {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* Responsive Design for Video Logo */
@media screen and (max-width: 768px) {
  .logo-video {
    max-width: 250px;
  }
  
  .logo-fallback .logo-container {
    gap: 1rem;
    padding: 1rem 1.5rem;
  }
  
  .logo-fallback .logo-icon {
    width: 50px;
    height: 50px;
  }
  
  .logo-fallback .logo-icon i {
    font-size: 1.25rem;
  }
  
  .logo-fallback .logo-main {
    font-size: 1.25rem;
  }
  
  .logo-fallback .logo-sub {
    font-size: 0.75rem;
  }
}

@media screen and (max-width: 480px) {
  .animated-logo-video {
    margin: 1.5rem 0;
  }
  
  .logo-video {
    max-width: 200px;
  }
  
  .logo-fallback .logo-container {
    flex-direction: column;
    text-align: center;
    gap: 0.75rem;
    padding: 1rem;
  }
  
  .logo-fallback .logo-text {
    text-align: center;
  }
}

/* ===== CONTACT SECTION ===== */
.contact {
  background-color: var(--white);
}

.contact__container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  margin-bottom: 3rem;
}

.contact__info {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contact__item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.contact__icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact__icon i {
  color: var(--white);
  font-size: 1.25rem;
}

.contact__details h4 {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.contact__details p,
.contact__details a {
  color: var(--text-light);
  line-height: 1.6;
}

.contact__details a {
  transition: var(--transition);
}

.contact__details a:hover {
  color: var(--highlight-color);
  text-decoration: underline;
}

.contact__form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form__group {
  position: relative;
}

.form__input,
.form__textarea,
.form__select {
  width: 100%;
  padding: 1rem;
  border: 2px solid var(--gray-200);
  border-radius: 0.5rem;
  font-size: 1rem;
  font-family: inherit;
  transition: var(--transition);
  background-color: var(--white);
}

.form__input:focus,
.form__textarea:focus,
.form__select:focus {
  outline: none;
  border-color: var(--primary-color);
}

.form__label {
  position: absolute;
  top: 1rem;
  left: 1rem;
  color: var(--text-subtle);
  font-size: 1rem;
  transition: var(--transition);
  pointer-events: none;
}

.form__input:focus + .form__label,
.form__input:not(:placeholder-shown) + .form__label,
.form__textarea:focus + .form__label,
.form__textarea:not(:placeholder-shown) + .form__label {
  top: -0.5rem;
  left: 0.75rem;
  font-size: 0.875rem;
  color: var(--primary-color);
  background-color: var(--white);
  padding: 0 0.25rem;
}

.btn--full {
  width: 100%;
  justify-content: center;
}

/* Form validation styles */
.form__input.error,
.form__textarea.error,
.form__select.error {
  border-color: #e53e3e;
  background-color: #fed7d7;
}

.field-error {
  display: block;
  color: #e53e3e;
  font-size: 0.875rem;
  margin-top: 0.25rem;
  margin-left: 0.75rem;
}

.notification--error {
  border-left: 4px solid #e53e3e;
}

.notification--error .notification__content i {
  color: #e53e3e;
}

/* ===== FOOTER ===== */
.footer {
  background-color: #223E66;
  color: var(--white);
  padding: 3rem 0 1rem;
}

.footer__container {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

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

.footer__logo-text {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.footer__logo-text small {
  font-size: 1rem;
  font-weight: 400;
  opacity: 0.8;
}

.footer__logo-img {
  width: 100px;
  height: 100px;
  object-fit: contain;
  margin-bottom: 1rem;
}

.footer__description {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.footer__social {
  display: flex;
  gap: 1rem;
}

.footer__social-link {
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  transition: var(--transition);
}

.footer__social-link:hover {
  background-color: var(--highlight-color);
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(255, 156, 74, 0.3);
}

.footer__title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer__link {
  color: rgba(255, 255, 255, 0.8);
  transition: var(--transition);
}

.footer__link:hover {
  color: var(--highlight-color);
  transform: translateX(5px);
}

.footer__contact {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.footer__contact p {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.8);
}

.footer__contact i {
  color: var(--highlight-color);
  width: 16px;
}

.footer__contact a {
  color: rgba(255, 255, 255, 0.8);
  transition: var(--transition);
}

.footer__contact a:hover {
  color: var(--highlight-color);
}

.footer__payment {
  display: flex;
  gap: 1rem;
}

.footer__payment i {
  font-size: 2rem;
  color: rgba(255, 255, 255, 0.6);
}

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  flex-wrap: wrap;
  gap: 1rem;
}

.footer__copyright {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.875rem;
}

.footer__legal {
  display: flex;
  gap: 2rem;
}

.footer__legal-link {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.875rem;
  transition: var(--transition);
}

.footer__legal-link:hover {
  color: var(--highlight-color);
}

/* ===== NOTIFICATION STYLES ===== */
.notification {
  position: fixed;
  top: 2rem;
  right: 2rem;
  background-color: var(--white);
  border-radius: 0.5rem;
  box-shadow: var(--shadow-xl);
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  transform: translateX(400px);
  opacity: 0;
  transition: var(--transition);
  z-index: 1000;
  max-width: 400px;
}

.notification.show {
  transform: translateX(0);
  opacity: 1;
}

.notification--success {
  border-left: 4px solid var(--accent-color);
}

.notification--info {
  border-left: 4px solid var(--primary-color);
}

.notification__content {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.notification__content i {
  color: var(--accent-color);
  font-size: 1.25rem;
}

.notification--info .notification__content i {
  color: var(--primary-color);
}

.notification__close {
  background: none;
  border: none;
  color: var(--text-light);
  cursor: pointer;
  padding: 0.25rem;
  transition: var(--transition);
}

.notification__close:hover {
  color: var(--text-dark);
}

/* ===== LOAD MORE FUNCTIONALITY ===== */
.portfolio-item.hidden {
  display: none;
}

/* ===== ADDITIONAL RESPONSIVE BREAKPOINTS ===== */
@media screen and (max-width: 1200px) {
  .nav__menu {
    margin-left: 2rem;
  }
  
  .nav__actions {
    gap: 1.5rem;
    margin-left: 2rem;
  }
  
  .nav__phone {
    font-size: 0.8rem;
  }
}

@media screen and (max-width: 1100px) {
  .nav__menu {
    margin-left: 1.5rem;
  }
  
  .nav__actions {
    margin-left: 1.5rem;
    gap: 1rem;
  }
  
  .nav__phone span {
    display: none;
  }
  
  .nav__phone {
    min-width: 24px;
    justify-content: center;
  }
  
  .nav__phone i {
    margin: 0;
  }
}

@media screen and (max-width: 1024px) {
  .hero__container {
    gap: 3rem;
  }
  
  .nav__phone {
    display: none;
  }
  
  .services__container {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  }
  
  .process__timeline {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  }
  
  .contact__container {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

@media screen and (max-width: 768px) {
  .services__container {
    grid-template-columns: 1fr;
  }
  
  .process__timeline {
    grid-template-columns: 1fr;
  }
  
  .testimonial-card {
    padding: 2rem 1.5rem;
  }
  
  .testimonial-card__quote {
    font-size: 1.125rem;
  }
  
  .hero__container {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }
  
  .hero {
    padding-top: 5rem;
    min-height: auto;
    padding-bottom: 3rem;
  }
  
  .footer__content {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .footer__bottom {
    flex-direction: column;
    text-align: center;
  }
  
  .notification {
    right: 1rem;
    left: 1rem;
    max-width: none;
    transform: translateY(-100px);
  }
  
  .notification.show {
    transform: translateY(0);
  }
  
  .footer__logo-img {
    width: 80px;
    height: 80px;
    display: block;
    margin: 0 auto 1rem auto;
  }
}

@media screen and (max-width: 480px) {
  .service-card {
    padding: 1.5rem;
  }
  
  .process-step__icon {
    width: 80px;
    height: 80px;
  }
  
  .process-step__icon i {
    font-size: 2rem;
  }
  
  .testimonials__navigation {
    gap: 1rem;
  }
  
  .testimonial-nav {
    width: 40px;
    height: 40px;
  }
}

/* ===== SERVICES PAGE STYLES ===== */
.services-hero {
  background: linear-gradient(135deg, var(--gray-50) 0%, var(--white) 100%);
  padding: 8rem 0 4rem;
  text-align: center;
}

.services-hero__title {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 1.5rem;
}

.services-hero__subtitle {
  font-size: 1.25rem;
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto 2rem;
}

.services-hero__badges {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

/* Services Navigation */
.services-nav {
  position: sticky;
  top: 6rem;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--gray-200);
  z-index: 100;
  padding: 1rem 0;
  margin-bottom: 2rem;
}

.services-nav__list {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  max-width: 1000px;
  margin: 0 auto;
}

.services-nav__link {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-medium);
  padding: 0.5rem 1rem;
  border-radius: 2rem;
  transition: var(--transition);
  text-decoration: none;
}

.services-nav__link:hover,
.services-nav__link.active {
  background-color: var(--primary-color);
  color: var(--white);
  transform: translateY(-1px);
}

/* Service Detail Sections */
.service-detail {
  padding: 4rem 0;
}

.service-detail:nth-child(even) {
  background-color: var(--gray-50);
}

.service-detail__container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.service-detail--reverse .service-detail__container {
  direction: rtl;
}

.service-detail--reverse .service-detail__content {
  direction: ltr;
}

.service-detail__header {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.service-detail__icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.service-detail__icon i {
  font-size: 2rem;
  color: var(--white);
}

.service-detail__title {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.service-detail__subtitle {
  font-size: 1.125rem;
  color: var(--text-light);
}

.service-detail__description {
  margin-bottom: 2rem;
}

.service-detail__description p {
  font-size: 1.125rem;
  color: var(--text-light);
  line-height: 1.6;
}

.service-features h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.service-features__list {
  list-style: none;
  margin-bottom: 2rem;
}

.service-features__list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  font-size: 1rem;
  color: var(--text-light);
}

.service-features__list i {
  color: var(--accent-color);
  font-size: 1rem;
}

.service-detail__cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.service-detail__image {
  position: relative;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.service-detail__img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

.service-detail__stats {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  right: 1.5rem;
  display: flex;
  gap: 2rem;
}

.stat {
  background-color: rgba(255, 255, 255, 0.95);
  padding: 1rem;
  border-radius: 0.5rem;
  text-align: center;
  flex: 1;
  backdrop-filter: blur(10px);
}

.stat__number {
  display: block;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 0.25rem;
}

.stat__label {
  font-size: 0.875rem;
  color: var(--text-light);
}

/* Why Choose Us Section */
.why-choose {
  background-color: var(--gray-50);
}

.why-choose__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.why-choose__item {
  background-color: var(--white);
  padding: 2rem;
  border-radius: 1rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.why-choose__item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(30, 90, 255, 0.2);
}

.why-choose__icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.why-choose__icon i {
  font-size: 2rem;
  color: var(--white);
}

.why-choose__item h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.why-choose__item p {
  color: var(--text-light);
  line-height: 1.6;
}

/* CTA Section */
.cta-section {
  background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
  color: var(--white);
  text-align: center;
}

.cta-section__title {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.cta-section__description {
  font-size: 1.125rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.cta-section__buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.cta-section .btn--primary {
  background-color: #EC6538;
  color: var(--white);
  border-color: #EC6538;
}

.cta-section .btn--primary:hover {
  background-color: #C6A155;
  border-color: #C6A155;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(236, 101, 56, 0.4);
}

.cta-section .btn--secondary {
  background-color: transparent;
  color: var(--white);
  border-color: var(--white);
}

.cta-section .btn--secondary:hover {
  background-color: var(--white);
  color: var(--primary-color);
}

/* ===== PORTFOLIO PAGE STYLES ===== */
.portfolio-hero {
  background: linear-gradient(135deg, var(--gray-50) 0%, var(--white) 100%);
  padding: 8rem 0 4rem;
  text-align: center;
}

.portfolio-hero__title {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 1.5rem;
}

.portfolio-hero__subtitle {
  font-size: 1.25rem;
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto 3rem;
}

.portfolio-stats {
  display: flex;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
}

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

.portfolio-stat__number {
  display: block;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.portfolio-stat__label {
  font-size: 1rem;
  color: var(--text-light);
}

/* Portfolio Filter */
.portfolio-filter {
  background-color: var(--white);
  padding: 2rem 0;
  border-bottom: 1px solid var(--gray-200);
  position: sticky;
  top: 6rem;
  z-index: 99;
}

.portfolio__filters {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 0.75rem 1.5rem;
  background-color: transparent;
  border: 2px solid var(--gray-300);
  border-radius: 2rem;
  color: var(--text-light);
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
}

.filter-btn:hover,
.filter-btn.active {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  color: var(--white);
}

/* Portfolio Grid */
.portfolio-grid {
  padding: 3rem 0;
}

.portfolio__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}
.portfolio-item {
  position: relative;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  transition: all 0.3s ease;
  opacity: 1;
  transform: translateY(0);
}

.portfolio-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(30, 90, 255, 0.15);
}

.portfolio-item__image {
  position: relative;
  height: 300px;
  overflow: hidden;
  cursor: pointer;
}

.portfolio-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.portfolio-img.before,
.portfolio-img.after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.3s ease;
}

/* Default states - before visible, after hidden */
.portfolio-img.before {
  display: block;
}

.portfolio-img.after {
  display: none;
}

.portfolio-item__overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(transparent 40%, rgba(0, 0, 0, 0.8));
  display: flex;
  align-items: flex-end;
  padding: 1.5rem;
  opacity: 0;
  z-index: 10;
  transition: opacity 0.3s ease;
}

.portfolio-item:hover .portfolio-item__overlay {
  opacity: 1;
}

/* Ensure overlay content is clickable when visible */
.portfolio-item__content,
.portfolio-item__toggle,
.toggle-switch,
.before-after-toggle {
  pointer-events: auto;
  cursor: pointer;
}

.portfolio-item__content {
  color: var(--white);
  width: 100%;
}

.portfolio-item__content h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.portfolio-item__location {
  font-size: 0.875rem;
  opacity: 0.8;
  margin-bottom: 0.75rem;
}

.portfolio-item__description {
  font-size: 0.875rem;
  line-height: 1.4;
  margin-bottom: 1rem;
  opacity: 0.9;
}

.portfolio-item__toggle {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.toggle-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.toggle-switch {
  position: relative;
  width: 50px;
  height: 24px;
  display: inline-block;
  cursor: pointer;
}

.toggle-switch input {
  position: absolute;
  opacity: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
  z-index: 2;
}

.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(255, 255, 255, 0.3);
  transition: var(--transition);
  border-radius: 24px;
}

.slider:before {
  position: absolute;
  content: "";
  height: 18px;
  width: 18px;
  left: 3px;
  bottom: 3px;
  background-color: var(--white);
  transition: var(--transition);
  border-radius: 50%;
}

input:checked + .slider {
  background-color: var(--highlight-color);
}

input:checked + .slider:before {
  transform: translateX(26px);
}

.portfolio-item__details {
  display: flex;
  gap: 1rem;
}

.detail-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  opacity: 0.8;
}

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

/* Project Process */
.project-process {
  background-color: var(--gray-50);
}

.process-timeline {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.process-item {
  background-color: var(--white);
  padding: 2rem;
  border-radius: 1rem;
  text-align: center;
  position: relative;
  box-shadow: var(--shadow-sm);
}

.process-item__number {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 40px;
  background-color: var(--primary-color);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.125rem;
}

.process-item__content h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 1rem;
  margin-top: 1rem;
}

.process-item__content p {
  color: var(--text-light);
  line-height: 1.6;
}

/* Responsive Design for New Pages */
@media screen and (max-width: 1024px) {
  .service-detail__container {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .service-detail--reverse .service-detail__container {
    direction: ltr;
  }
  
  .service-detail__image {
    order: -1;
  }
  
  .portfolio__grid {
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  }
}

@media screen and (max-width: 768px) {
  .services-hero__title,
  .portfolio-hero__title {
    font-size: 2.5rem;
  }
  
  .service-detail__title {
    font-size: 2rem;
  }
  
  .service-detail__header {
    flex-direction: column;
    text-align: center;
  }
  
  .service-detail__cta {
    flex-direction: column;
  }
  
  .service-detail__stats {
    flex-direction: column;
    gap: 1rem;
  }
  
  .services-nav {
    top: 4rem;
    padding: 0.75rem 0;
    overflow-x: hidden;
  }
  
  .services-nav__list {
    gap: 0.5rem;
    justify-content: flex-start;
    overflow-x: auto;
    overflow-y: hidden;
    flex-wrap: nowrap;
    padding: 0.5rem 1rem 0.5rem 1.25rem;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }
  
  .services-nav__list::-webkit-scrollbar {
    display: none;
  }
  
  .services-nav__link {
    font-size: 0.75rem;
    padding: 0.375rem 0.75rem;
    white-space: nowrap;
    flex-shrink: 0;
  }
  
  .portfolio-stats {
    gap: 2rem;
  }

  .portfolio-filter {
    top: 4rem;
    padding: 0 0 0.75rem;
  }

  .portfolio__filters {
    flex-wrap: nowrap;
    overflow-x: auto;
    overflow-y: hidden;
    justify-content: flex-start;
    padding: 0.25rem 1rem 0.25rem 1.25rem;
    gap: 0.625rem;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }

  .portfolio__filters::-webkit-scrollbar {
    display: none;
  }

  .filter-btn {
    flex-shrink: 0;
    white-space: nowrap;
    font-size: 0.875rem;
    padding: 0.5rem 1rem;
  }

  .portfolio__grid {
    grid-template-columns: 1fr;
  }
  
  .why-choose__grid {
    grid-template-columns: 1fr;
  }
  
  .process-timeline {
    grid-template-columns: 1fr;
  }
  
  .cta-section__buttons {
    flex-direction: column;
    align-items: center;
  }
}

@media screen and (max-width: 480px) {
  .services-hero__title,
  .portfolio-hero__title {
    font-size: 2rem;
  }
  
  .service-detail__title {
    font-size: 1.75rem;
  }
  
  .cta-section__title {
    font-size: 2rem;
  }
  
  .portfolio-stat__number {
    font-size: 2rem;
  }
}

/* ===== LIGHTBOX MODAL ===== */
.lightbox-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1000;
}

.lightbox-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.lightbox-container {
  position: relative;
  max-width: 90vw;
  max-height: 90vh;
  background-color: var(--white);
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.lightbox-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background-color: rgba(0, 0, 0, 0.7);
  color: var(--white);
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 1001;
  font-size: 1.25rem;
  transition: var(--transition);
}

.lightbox-close:hover {
  background-color: var(--primary-color);
  transform: scale(1.1);
}

.lightbox-content {
  display: flex;
  flex-direction: column;
}

.lightbox-image {
  width: 100%;
  max-width: 800px;
  height: auto;
  max-height: 60vh;
  object-fit: cover;
  display: block;
}

.lightbox-info {
  padding: 1.5rem;
  background-color: var(--white);
}

.lightbox-title {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.lightbox-location {
  font-size: 0.875rem;
  color: var(--primary-color);
  font-weight: 500;
  margin-bottom: 1rem;
}

.lightbox-description {
  color: var(--text-medium);
  line-height: 1.6;
  margin-bottom: 1rem;
}

.lightbox-details {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.lightbox-details .detail-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--text-light);
}

.lightbox-details .detail-item i {
  color: var(--primary-color);
}

/* Mobile lightbox styles */
@media screen and (max-width: 768px) {
  .lightbox-overlay {
    padding: 1rem;
  }
  
  .lightbox-container {
    max-width: 95vw;
    max-height: 95vh;
  }
  
  .lightbox-content {
    flex-direction: column;
  }
  
  .lightbox-image {
    max-height: 50vh;
  }
  
  .lightbox-info {
    padding: 1rem;
  }
  
  .lightbox-title {
    font-size: 1.25rem;
  }
}