:root {
  --color-primary: #ff0000;
  --color-primary-dark: #cc0000;
  --color-secondary: #1a1a1a;
  --color-dark: #0a0a0a;
  --color-darker: #050505;
  --color-text: #ffffff;
  --color-text-muted: #cccccc;
  --color-border: #4a4a4a;
  --color-accent: #ff4d4d;

  --spacing-unit: 8px;
  --container-max: 1200px;

  --font-primary: 'Inter', sans-serif;

  --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-primary);
  background-color: var(--color-dark);
  color: var(--color-text);
  line-height: 1.6;
  overflow-x: hidden;
}

.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 calc(var(--spacing-unit) * 3);
}

/* Navbar */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background-color: rgba(10, 10, 10, 0.8);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--color-border);
  transition: var(--transition-smooth);
}

.navbar.scrolled {
  background-color: rgba(10, 10, 10, 0.95);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: calc(var(--spacing-unit) * 2) 0;
}

.logo {
  display: flex;
  align-items: center;
  height: 100%; /* Takes full height of navbar */
}

.logo img {
  height: 120px;           /* Larger on desktop */
  width: auto;
  max-width: 280px;       /* Prevents it from getting too wide */
  object-fit: contain;
  transition: transform 0.3s ease;
  display: block;
}

/* Hover effect */
.logo:hover img {
  transform: scale(1.08);
}

/* Tablet */
@media (max-width: 992px) {
  .logo img {
    height: 70px;
    max-width: 240px;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .logo img {
    height: 96px;         /* Good visible size on mobile */
    max-width: 200px;
  }
}

/* Small phones */
@media (max-width: 480px) {
  .logo img {
    height: 90px;
    max-width: 180px;
  }
}
/* Desktop Menu */
.nav-menu {
  display: flex;
  gap: calc(var(--spacing-unit) * 4);
  align-items: center;
  list-style: none;
}

.nav-menu a {
  color: var(--color-text);
  text-decoration: none;
  font-weight: 500;
  font-size: 15px;
  position: relative;
  transition: var(--transition-smooth);
}

.nav-menu a:not(.nav-cta)::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-primary);
  transition: var(--transition-smooth);
}

.nav-menu a:not(.nav-cta):hover::after { width: 100%; }

.nav-cta {
  background: var(--color-primary);
  padding: calc(var(--spacing-unit) * 1.5) calc(var(--spacing-unit) * 3);
  border-radius: 6px;
  font-weight: 600;
}

.nav-cta:hover {
  background: var(--color-primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 0, 0, 0.3);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.mobile-menu-toggle span {
  width: 25px;
  height: 2px;
  background: var(--color-text);
  transition: var(--transition-smooth);
}

/* Mobile Styles */
@media (max-width: 968px) {
  .mobile-menu-toggle { display: flex; }

  .nav-menu {
    position: fixed;
    top: 65px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 65px);
    flex-direction: column;
    background: rgba(10, 10, 10, 0.98);
    backdrop-filter: blur(10px);
    padding: calc(var(--spacing-unit) * 4);
    gap: calc(var(--spacing-unit) * 3);
    transition: left 0.4s ease, opacity 0.4s ease;
    opacity: 0;
    visibility: hidden;
    z-index: 999;
    overflow-y: auto;
  }

  .nav-menu.active {
    left: 0;
    opacity: 1;
    visibility: visible;
  }

  .nav-menu li { width: 100%; }
  .nav-menu a { display: block; padding: calc(var(--spacing-unit) * 2) 0; width: 100%; }

  .mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
  }
  .mobile-menu-toggle.active span:nth-child(2) { opacity: 0; }
  .mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
  }

  body.menu-open { overflow: hidden; }
}

/* Sticky Contact Buttons */
.sticky-buttons {
  position: fixed;
  bottom: 30px;
  right: 30px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  z-index: 999;
}

.sticky-button {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  border: none;
  cursor: pointer;
}

.sticky-button.phone {
  background: linear-gradient(135deg, #4CAF50 0%, #2E7D32 100%);
}

.sticky-button.whatsapp {
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
}

.sticky-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.4);
}

.sticky-button:active {
  transform: translateY(0);
}

.sticky-button svg {
  width: 28px;
  height: 28px;
  fill: white;
}

.sticky-button .pulse {
  position: absolute;
  width: 100%;
  height: 100%;
  background: inherit;
  border-radius: 50%;
  opacity: 0.7;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 0.7;
  }
  70% {
    transform: scale(1.5);
    opacity: 0;
  }
  100% {
    transform: scale(1);
    opacity: 0;
  }
}

/* Tooltip */
.tooltip {
  position: absolute;
  right: 75px;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.8);
  color: white;
  padding: 8px 16px;
  border-radius: 6px;
  font-size: 14px;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  pointer-events: none;
}

.tooltip::after {
  content: '';
  position: absolute;
  right: -5px;
  top: 50%;
  transform: translateY(-50%);
  border-width: 5px;
  border-style: solid;
  border-color: transparent transparent transparent rgba(0, 0, 0, 0.8);
}

.sticky-button:hover .tooltip {
  opacity: 1;
  visibility: visible;
  right: 70px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .sticky-buttons {
    bottom: 20px;
    right: 20px;
  }
  
  .sticky-button {
    width: 50px;
    height: 50px;
  }
  
  .sticky-button svg {
    width: 24px;
    height: 24px;
  }
  
  .tooltip {
    font-size: 12px;
    padding: 6px 12px;
  }
}

/* AOS Animation Reset */
[data-aos].animate {
  opacity: 1 !important;
  transform: translateY(0) !important;
}
.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: white;
}

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

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

.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5); /* Dark overlay for better text readability */
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 40px 0;
}

.hero-title {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.highlight {
  color: var(--color-primary);
  position: relative;
  display: inline-block;
}

.highlight::after {
  content: '';
  position: absolute;
  bottom: 5px;
  left: 0;
  width: 100%;
  height: 8px;
  background: var(--color-primary);
  opacity: 0.3;
  z-index: -1;
  border-radius: 4px;
}

.hero-subtitle {
  font-size: 1.25rem;
  line-height: 1.6;
  margin-bottom: 2.5rem;
  max-width: 700px;
  opacity: 0.95;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

/* About Section */
.about-section {
  padding: 80px 0;
  background: var(--color-darker);
  position: relative;
  overflow: hidden;
}

.about-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 2;
}

.about-title {
  font-size: 2.5rem;
  color: var(--color-text);
  margin-bottom: 1.5rem;
  font-weight: 700;
  position: relative;
  display: inline-block;
}

.about-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: var(--color-primary);
  border-radius: 2px;
}

.about-text {
  font-size: 1.25rem;
  line-height: 1.8;
  color: var(--color-text-muted);
  margin: 0 auto;
  max-width: 700px;
}

@media (max-width: 768px) {
  .about-section {
    padding: 60px 20px;
  }
  
  .about-title {
    font-size: 2rem;
  }
  
  .about-text {
    font-size: 1.1rem;
  }
}

/* Scroll Indicator */
.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  animation: bounce 2s infinite;
}

.scroll-indicator span {
  display: block;
  width: 20px;
  height: 30px;
  border: 2px solid white;
  border-radius: 10px;
  position: relative;
}

.scroll-indicator span::after {
  content: '';
  position: absolute;
  top: 5px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 6px;
  background: white;
  border-radius: 2px;
  animation: scroll 2s infinite;
}

@keyframes scroll {
  0% {
    transform: translate(-50%, 0);
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    transform: translate(-50%, 10px);
    opacity: 0;
  }
}

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

/* Responsive Adjustments */
@media (max-width: 768px) {
  .hero {
    min-height: 600px;
  }
  
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-subtitle {
    font-size: 1.1rem;
  }
  
  .btn {
    padding: 12px 28px;
    font-size: 1rem;
  }
}

/* Add this to your existing :root variables if not already present */
:root {
  --color-primary: #ff3d3d; /* Adjust to match your brand color */
  --color-accent: #ff6b6b;
  --color-darker: #0a0a0a;
  --color-text-muted: rgba(255, 255, 255, 0.7);
}
  section {
    padding: calc(var(--spacing-unit) * 12) 0;
  }
  
  .section-title {
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 800;
    text-align: center;
    margin-bottom: calc(var(--spacing-unit) * 8);
    letter-spacing: -1px;
  }
  
  .services {
    background-color: var(--color-secondary);
    position: relative;
  }
  
  .services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--color-border), transparent);
  }
  
  .services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: calc(var(--spacing-unit) * 4);
  }
  
  .service-card {
    background-color: var(--color-dark);
    padding: calc(var(--spacing-unit) * 4);
    border-radius: 12px;
    border: 1px solid var(--color-border);
    transition: var(--transition-smooth);
    cursor: pointer;
  }
  
  .service-card:hover {
    transform: translateY(-8px);
    border-color: var(--color-primary);
    box-shadow: 0 8px 30px rgba(255, 107, 53, 0.2);
  }
  
  .service-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: calc(var(--spacing-unit) * 3);
    transition: var(--transition-bounce);
  }
  
  .service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
  }
  
  .service-icon svg {
    width: 28px;
    height: 28px;
    color: var(--color-text);
  }
  
  .service-card h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: calc(var(--spacing-unit) * 2);
  }
  
  .service-card p {
    color: var(--color-text-muted);
    line-height: 1.6;
  }
  
  .why-us {
    background-color: var(--color-dark);
    position: relative;
    padding: 100px 0;
    overflow: hidden;
  }

  .section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
  }

  .section-subtitle {
    color: var(--color-text-muted);
    font-size: 1.2rem;
    margin-top: 16px;
    line-height: 1.6;
  }

  .features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
  }

  .feature-card {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 16px;
    padding: 40px 30px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    overflow: hidden;
    z-index: 1;
  }

  .feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 0, 0, 0.1) 0%, rgba(255, 77, 77, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
  }

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

  .feature-card:hover::before {
    opacity: 1;
  }

  .feature-icon {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    background: rgba(255, 0, 0, 0.1);
    color: var(--color-primary);
    transition: all 0.3s ease;
  }

  .feature-card:hover .feature-icon {
    background: var(--color-primary);
    color: white;
    transform: rotate(5deg) scale(1.1);
  }

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

  .feature-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: white;
    font-weight: 700;
  }

  .feature-card p {
    color: var(--color-text-muted);
    line-height: 1.7;
    margin: 0;
    font-size: 1rem;
  }

  @media (max-width: 968px) {
    .mobile-menu-toggle {
      display: flex !important;
      z-index: 1001;
    }
    
    .nav-menu {
      position: fixed;
      top: 0;
      right: -100%;
      width: 80%;
      max-width: 400px;
      height: 100vh;
      background: rgba(10, 10, 10, 0.98);
      backdrop-filter: blur(20px);
      flex-direction: column;
      padding: 100px 30px 40px;
      transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
      z-index: 1000;
      margin: 0;
      border-left: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .nav-menu.active {
      right: 0;
    }
    
    .nav-menu li {
      width: 100%;
      opacity: 0;
      transform: translateX(20px);
      transition: all 0.3s ease;
    }
    
    .nav-menu.active li {
      opacity: 1;
      transform: translateX(0);
    }
    
    .nav-menu li:nth-child(1) { transition-delay: 0.1s; }
    .nav-menu li:nth-child(2) { transition-delay: 0.2s; }
    .nav-menu li:nth-child(3) { transition-delay: 0.3s; }
    
    .nav-menu a {
      display: block;
      padding: 15px 0;
      font-size: 18px;
      border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }
    
    .nav-cta {
      margin-top: 20px;
      text-align: center;
      display: block;
    }
    
    .mobile-menu-toggle {
      position: relative;
      width: 30px;
      height: 24px;
      background: transparent;
      border: none;
      cursor: pointer;
      padding: 0;
      z-index: 1002;
    }
    
    .mobile-menu-toggle span {
      display: block;
      position: absolute;
      height: 2px;
      width: 100%;
      background: white;
      border-radius: 2px;
      opacity: 1;
      left: 0;
      transform: rotate(0deg);
      transition: .25s ease-in-out;
    }
    
    .mobile-menu-toggle span:nth-child(1) {
      top: 0px;
    }
    
    .mobile-menu-toggle span:nth-child(2),
    .mobile-menu-toggle span:nth-child(3) {
      top: 10px;
    }
    
    .mobile-menu-toggle span:nth-child(4) {
      top: 20px;
    }
    
    .mobile-menu-toggle.active span:nth-child(1) {
      top: 18px;
      width: 0%;
      left: 50%;
    }
    
    .mobile-menu-toggle.active span:nth-child(2) {
      transform: rotate(45deg);
    }
    
    .mobile-menu-toggle.active span:nth-child(3) {
      transform: rotate(-45deg);
    }
    
    .mobile-menu-toggle.active span:nth-child(4) {
      top: 18px;
      width: 0%;
      left: 50%;
    }
    
    body.menu-open {
      overflow: hidden;
    }
  }

  @media (max-width: 768px) {
    .features-grid {
      grid-template-columns: 1fr;
      gap: 20px;
    }
    
    .feature-card {
      padding: 30px 25px;
    }
    
    .section-header {
      margin-bottom: 40px;
    }
    
    .section-subtitle {
      font-size: 1.1rem;
    }
  }

  .features-flow {
    display: flex;
    flex-direction: column;
    gap: calc(var(--spacing-unit) * 10);
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: 0 auto;
    padding: calc(var(--spacing-unit) * 4) 0;
  }

  .feature-item {
    display: flex;
    align-items: center;
    gap: calc(var(--spacing-unit) * 6);
    position: relative;
    opacity: 0;
    animation: fadeInSlide 0.8s ease-out forwards;
  }

  .feature-item:nth-child(1) { animation-delay: 0.1s; }
  .feature-item:nth-child(2) { animation-delay: 0.2s; }
  .feature-item:nth-child(3) { animation-delay: 0.3s; }
  .feature-item:nth-child(4) { animation-delay: 0.4s; }

  .feature-item.feature-left {
    flex-direction: row;
    justify-content: flex-start;
  }

  .feature-item.feature-right {
    flex-direction: row-reverse;
    justify-content: flex-end;
  }

  .feature-content {
    flex: 1;
    display: flex;
    align-items: center;
    gap: calc(var(--spacing-unit) * 4);
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.6) 0%, rgba(10, 10, 10, 0.8) 100%);
    padding: calc(var(--spacing-unit) * 5);
    border-radius: 20px;
    border: 1px solid var(--color-border);
    transition: var(--transition-smooth);
    backdrop-filter: blur(10px);
  }

  .feature-item:hover .feature-content {
    border-color: var(--color-primary);
    box-shadow: 0 8px 30px rgba(255, 107, 53, 0.2);
    transform: translateX(calc(var(--spacing-unit) * 1));
  }

  .feature-item.feature-right:hover .feature-content {
    transform: translateX(calc(var(--spacing-unit) * -1));
  }

  .feature-number-badge {
    width: 60px;
    height: 60px;
    min-width: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 800;
    background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
    border-radius: 12px;
    color: var(--color-text);
    box-shadow: 0 4px 20px rgba(255, 107, 53, 0.4);
    transition: var(--transition-bounce);
  }

  .feature-item:hover .feature-number-badge {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 8px 30px rgba(255, 107, 53, 0.6);
  }

  .feature-text {
    flex: 1;
  }

  .feature-text h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: calc(var(--spacing-unit) * 2);
    color: var(--color-text);
    transition: var(--transition-smooth);
  }

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

  .feature-text p {
    color: var(--color-text-muted);
    line-height: 1.7;
    font-size: 17px;
  }

  .feature-icon-circle {
    width: 120px;
    height: 120px;
    min-width: 120px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1), rgba(0, 217, 255, 0.1));
    border: 3px solid var(--color-border);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
    position: relative;
  }

  .feature-icon-circle::before {
    content: '';
    position: absolute;
    inset: -3px;
    border-radius: 50%;
    padding: 3px;
    background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    opacity: 0;
    transition: var(--transition-smooth);
  }

  .feature-item:hover .feature-icon-circle {
    border-color: var(--color-primary);
    transform: scale(1.1);
    box-shadow: 0 8px 30px rgba(255, 107, 53, 0.3);
  }

  .feature-item:hover .feature-icon-circle::before {
    opacity: 1;
  }

  .feature-icon-circle svg {
    width: 48px;
    height: 48px;
    color: var(--color-primary);
    transition: var(--transition-smooth);
    position: relative;
    z-index: 1;
  }

  .feature-item:hover .feature-icon-circle svg {
    color: var(--color-text);
    transform: rotate(10deg) scale(1.1);
  }

  @keyframes fadeInSlide {
    from {
      opacity: 0;
      transform: translateX(-50px);
    }
    to {
      opacity: 1;
      transform: translateX(0);
    }
  }
  
  /* Contact Section */
  .contact-section {
    background-color: var(--color-darker);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
  }

  .contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  }

  .contact-wrapper {
    position: relative;
    z-index: 1;
  }

  .contact-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
  }

  .contact-header .section-title {
    font-size: clamp(32px, 5vw, 48px);
    margin-bottom: 16px;
    line-height: 1.2;
  }

  .contact-header .section-subtitle {
    font-size: 18px;
    color: var(--color-text-muted);
    line-height: 1.7;
  }

  .contact-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
  }

  /* Contact Info */
  .contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
  }

  .info-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 24px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    transition: var(--transition-smooth);
  }

  .info-card:hover {
    background: rgba(255, 255, 255, 0.03);
    border-color: rgba(255, 0, 0, 0.2);
    transform: translateY(-5px);
  }

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

  .info-icon svg {
    width: 24px;
    height: 24px;
  }

  .info-content h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
    color: white;
  }

  .info-link, .info-address {
    color: var(--color-text-muted);
    text-decoration: none;
    transition: color 0.3s ease;
    line-height: 1.6;
    font-style: normal;
  }

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

  /* Social Links */
  .social-links {
    margin-top: 20px;
  }

  .social-links h3 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 16px;
    color: white;
  }

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

  .social-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-text-muted);
    transition: all 0.3s ease;
  }

  .social-icon:hover {
    background: var(--color-primary);
    color: white;
    transform: translateY(-3px);
  }

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

  /* Contact Form */
  .contact-form-container {
    position: relative;
  }

  .form-card {
    background: rgba(10, 10, 10, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
  }

  .form-card h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 30px;
    color: white;
  }

  .form-group {
    margin-bottom: 20px;
  }

  .form-group label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 8px;
    color: var(--color-text-muted);
  }

  .form-input, .form-textarea {
    width: 100%;
    padding: 14px 16px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    color: white;
    font-size: 15px;
    transition: all 0.3s ease;
  }

  .form-input:focus, .form-textarea:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(255, 0, 0, 0.1);
  }

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

  .btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
    color: white;
    border: none;
    border-radius: 10px;
    padding: 14px 28px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
  }

  .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(255, 0, 0, 0.2);
  }

  .btn-primary svg {
    width: 18px;
    height: 18px;
  }

  /* Responsive */
  @media (max-width: 1024px) {
    .contact-content {
      grid-template-columns: 1fr;
      max-width: 600px;
    }
    
    .contact-header {
      margin-bottom: 40px;
    }
    
    .contact-info {
      margin-bottom: 20px;
    }
  }

  @media (max-width: 640px) {
    .contact-section {
      padding: 80px 0;
    }
    
    .form-card {
      padding: 30px 20px;
    }
    
    .info-card {
      padding: 20px;
    }
    
    .info-icon {
      width: 44px;
      height: 44px;
    }
    
    .info-icon svg {
      width: 20px;
      height: 20px;
    }
  }

  .contact::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
  }

  .contact::after {
    content: '';
    position: absolute;
    bottom: -20%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(0, 217, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
  }

  .contact-wrapper {
    position: relative;
    z-index: 1;
  }

  .contact-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto calc(var(--spacing-unit) * 10);
  }

  .contact-header h2 {
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 800;
    margin-bottom: calc(var(--spacing-unit) * 3);
    letter-spacing: -1px;
  }

  .contact-tagline {
    font-size: 18px;
    line-height: 1.7;
    color: var(--color-text-muted);
  }

  .contact-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: calc(var(--spacing-unit) * 4);
    max-width: 1000px;
    margin: 0 auto;
  }

  .contact-card {
    background: linear-gradient(135deg, rgba(10, 10, 10, 0.8) 0%, rgba(26, 26, 26, 0.6) 100%);
    border: 1px solid var(--color-border);
    border-radius: 20px;
    padding: calc(var(--spacing-unit) * 5);
    display: flex;
    align-items: center;
    gap: calc(var(--spacing-unit) * 4);
    transition: var(--transition-smooth);
    cursor: pointer;
    text-decoration: none;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
  }

  .contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1), rgba(0, 217, 255, 0.1));
    opacity: 0;
    transition: var(--transition-smooth);
  }

  .contact-card:hover {
    transform: translateY(-8px);
    border-color: var(--color-primary);
    box-shadow: 0 12px 40px rgba(255, 107, 53, 0.3);
  }

  .contact-card:hover::before {
    opacity: 1;
  }

  .contact-card-icon {
    width: 72px;
    height: 72px;
    min-width: 72px;
    background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-bounce);
    position: relative;
    z-index: 1;
    box-shadow: 0 4px 20px rgba(255, 107, 53, 0.3);
  }

  .contact-card:hover .contact-card-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 8px 30px rgba(255, 107, 53, 0.5);
  }

  .contact-card-icon svg {
    width: 32px;
    height: 32px;
    color: var(--color-text);
  }

  .contact-card-content {
    flex: 1;
    position: relative;
    z-index: 1;
  }

  .contact-card-label {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--color-text-muted);
    margin-bottom: calc(var(--spacing-unit) * 1);
    font-weight: 600;
  }

  .contact-card-value {
    color: var(--color-text);
    font-size: 18px;
    font-weight: 600;
    line-height: 1.5;
    transition: var(--transition-smooth);
  }

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

  .contact-card-arrow {
    width: 40px;
    height: 40px;
    min-width: 40px;
    border-radius: 50%;
    background-color: rgba(255, 107, 53, 0.1);
    border: 1px solid rgba(255, 107, 53, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
    position: relative;
    z-index: 1;
  }

  .contact-card:hover .contact-card-arrow {
    background-color: var(--color-primary);
    border-color: var(--color-primary);
    transform: translateX(4px);
  }

  .contact-card-arrow svg {
    width: 20px;
    height: 20px;
    color: var(--color-primary);
    transition: var(--transition-smooth);
  }

  .contact-card:hover .contact-card-arrow svg {
    color: var(--color-text);
  }
  
  .footer {
    background-color: var(--color-darker);
    padding: 80px 0 0;
    color: var(--color-text-muted);
    position: relative;
    border-top: 1px solid var(--color-border);
  }

  .footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  }

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

  .footer-brand {
    margin-bottom: 30px;
  }

  .footer-logo {
    margin-bottom: 15px;
  }
  
  .footer-logo-img {
    height: 90px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
  }
  
  @media (max-width: 768px) {
    .footer-logo-img {
      height: 410px;
    }
  }

  .footer-tagline {
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 24px;
    max-width: 280px;
  }

  .social-links {
    display: flex;
    gap: 16px;
    margin-top: 20px;
  }

  .social-link {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--color-text-muted);
    transition: all 0.3s ease;
  }

  .social-link:hover {
    background: var(--color-primary);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 0, 0, 0.2);
  }

  .social-link svg {
    width: 18px;
    height: 18px;
  }

  .footer-heading {
    color: white;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 24px;
    position: relative;
    padding-bottom: 12px;
  }

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

  .footer-nav {
    list-style: none;
    padding: 0;
    margin: 0;
  }

  .footer-nav li {
    margin-bottom: 12px;
  }

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

  .footer-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 1px;
    bottom: -2px;
    left: 0;
    background-color: var(--color-primary);
    transition: width 0.3s ease;
  }

  .footer-link:hover {
    color: white;
    padding-left: 8px;
  }

  .footer-link:hover::after {
    width: 100%;
  }

  .newsletter-text {
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 20px;
  }

  .newsletter-form .form-group {
    display: flex;
    gap: 10px;
    position: relative;
  }

  .newsletter-form .form-input {
    flex: 1;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: white;
    font-size: 14px;
    transition: all 0.3s ease;
  }

  .newsletter-form .form-input:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(255, 0, 0, 0.1);
  }

  .newsletter-form .btn {
    padding: 0;
    width: 46px;
    height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background: var(--color-primary);
    color: white;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
  }

  .newsletter-form .btn:hover {
    background: var(--color-primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 0, 0, 0.2);
  }

  .newsletter-form .btn svg {
    width: 20px;
    height: 20px;
  }

  .footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 30px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .footer-copyright {
    font-size: 14px;
    color: var(--color-text-muted);
  }

  .footer-legal {
    display: flex;
    align-items: center;
    gap: 15px;
  }

  .footer-legal-link {
    color: var(--color-text-muted);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
  }

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

  .divider {
    color: rgba(255, 255, 255, 0.1);
    font-size: 18px;
    line-height: 1;
  }
  
  @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);
    }
  }
  
  @keyframes scrollDown {
    0% {
      opacity: 0;
      transform: translateX(-50%) translateY(0);
    }
    50% {
      opacity: 1;
    }
    100% {
      opacity: 0;
      transform: translateX(-50%) translateY(16px);
    }
  }
  
  @media (max-width: 968px) {
    .contact-cards {
      grid-template-columns: 1fr;
    }

    .contact-header {
      margin-bottom: calc(var(--spacing-unit) * 6);
    }
    
    .footer-grid {
      grid-template-columns: 1fr;
      gap: 40px;
    }
    
    .footer-tagline {
      max-width: 100%;
    }
    
    .footer-bottom {
      flex-direction: column;
      text-align: center;
      gap: 20px;
    }
  }
  
  @media (max-width: 640px) {
    .newsletter-form .form-group {
      flex-direction: column;
    }
    
    .newsletter-form .btn {
      width: 100%;
      height: 48px;
    }
    
    .footer-legal {
      flex-wrap: wrap;
      justify-content: center;
    }
    
    .footer-grid {
      gap: 50px;
    }
  }
  
  @media (max-width: 640px) {
    .container {
      padding: 0 calc(var(--spacing-unit) * 2);
    }
  
    .services-grid {
      grid-template-columns: 1fr;
    }

    .features-flow {
      gap: calc(var(--spacing-unit) * 6);
    }

    .feature-item {
      flex-direction: column !important;
      align-items: center !important;
      gap: calc(var(--spacing-unit) * 4);
    }

    .feature-content {
      flex-direction: column;
      text-align: center;
      width: 100%;
    }

    .feature-item:hover .feature-content {
      transform: translateY(calc(var(--spacing-unit) * -1));
    }

    .feature-icon-circle {
      width: 100px;
      height: 100px;
      min-width: 100px;
    }

    .feature-icon-circle svg {
      width: 40px;
      height: 40px;
    }

    .feature-number-badge {
      width: 50px;
      height: 50px;
      min-width: 50px;
      font-size: 20px;
    }

    .feature-text h3 {
      font-size: 24px;
    }

    .why-us::before {
      display: none;
    }
  }
  