/* Dossier India Design System - Custom CSS */

/* CSS Custom Properties for Design System */
/* Dossier India - Professional Hero Section Styles */

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

/* CSS Custom Properties */
:root {
  --primary-red: #e63946;
  --dark-bg: #212529;
  --text-light: #f8f9fa;
  --text-muted: rgba(255, 255, 255, 0.7);
  --border-radius: 50px;
}

/* Global Styles */
* {
  box-sizing: border-box;
}

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    sans-serif;
  line-height: 1.6;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

/* Custom Utility Classes */
.text-danger {
  color: var(--primary-red) !important;
}
.bg-danger {
  background-color: var(--primary-red) !important;
}
.btn-danger {
  background-color: var(--primary-red);
  border-color: var(--primary-red);
  color: white;
  transition: all 0.3s ease;
}
.btn-danger:hover {
  background-color: #d32f2f;
  border-color: #d32f2f;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(230, 57, 70, 0.3);
}

/* Navbar Styles */
.navbar {
  backdrop-filter: blur(10px);
  background-color: rgba(0, 0, 0, 0) !important;
  background: transparent !important;
  box-shadow: none;
  padding: 1rem 0;
  z-index: 1050;
  transition: all 0.3s ease;
}

.navbar.scrolled {
  background-color: rgba(32, 32, 32, 0.95) !important;
  background: rgba(32, 32, 32, 0.95) !important;
  backdrop-filter: blur(15px);
}

.navbar-brand {
  font-size: 1.8rem !important;
  font-weight: 800 !important;
  letter-spacing: -0.5px;
  transition: all 0.3s ease;
}

.navbar-brand:hover {
  transform: scale(1.05);
}

.navbar-nav .nav-link {
  font-weight: 600 !important;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  color: var(--text-light) !important;
  padding: 0.75rem 1.25rem !important;
  transition: all 0.3s ease;
  position: relative;
}

.navbar-nav .nav-link:hover {
  color: var(--primary-red) !important;
  transform: translateY(-2px);
}

.navbar-nav .nav-link::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 0;
  left: 50%;
  background-color: var(--primary-red);
  transition: all 0.3s ease;
}

.navbar-nav .nav-link:hover::after {
  width: 80%;
  left: 10%;
}

.navbar-nav .nav-link.active {
  color: var(--primary-red) !important;
}

/* Dropdown Styles */
/* Dropdown Styles - Override Bootstrap defaults */
.navbar .dropdown-toggle::after {
  content: none !important;
  display: none !important;
}

/* Minimalistic dropdown arrow */
.dropdown-arrow {
  font-size: 1.5em;
  margin-left: 0.2em;
  opacity: 0.8;
  font-weight: 300;
  line-height: 1;
}

.dropdown-toggle::after {
  content: "▼";
  display: inline-block;
  margin-left: 0.5em;
  font-size: 0.8em;
  vertical-align: middle;
}

.dropdown-toggle:empty::after {
  margin-left: 0;
}

/* Ensure dropdown arrow is visible and properly styled */
.navbar .dropdown-toggle::after {
  color: currentColor;
  opacity: 1;
}

.dropdown-menu {
  border: none;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
  border-radius: 12px;
  padding: 0.5rem 0;
  margin-top: 0.5rem;
}

.dropdown-item {
  padding: 0.75rem 1.5rem;
  font-weight: 500;
  transition: all 0.3s ease;
}

.dropdown-item:hover {
  background-color: var(--primary-red);
  color: white;
  transform: translateX(5px);
}

/* Hero Section */
.hero-section {
  height: 85vh;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  position: relative;
  padding-top: 100px;
  border-radius: 0 0 50px 50px;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(0, 0, 0, 0.7) 0%,
    rgba(0, 0, 0, 0.5) 100%
  );
  z-index: 1;
}

.hero-section .container {
  position: relative;
  z-index: 2;
}

.hero-subtitle {
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 3px;
  color: var(--text-muted);
  margin-bottom: 2rem;
  opacity: 0;
  animation: fadeInUp 1s ease 0.5s forwards;
}

.hero-title {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 3rem;
  opacity: 0;
  animation: fadeInUp 1s ease 0.8s forwards;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-title .text-danger {
  position: relative;
  display: inline-block;
}

/* Hero Clients Section */
.hero-clients {
  opacity: 0;
  animation: fadeInUp 1s ease 2s forwards;
}

.client-intro {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 2px;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.client-banner-inline {
  background-color: var(--primary-red);
  border-radius: 50px;
  padding: 15px 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1000px;
  margin: 40px auto 0;
  box-shadow: 0 10px 30px rgba(230, 57, 70, 0.3);
  position: relative;
  z-index: 10;
}

.client-logos-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  align-items: center;
  flex: 1;
}

.client-pill {
  background: rgba(255, 255, 255, 0.25);
  color: white;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 1px;
  padding: 12px 24px;
  border-radius: 25px;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.client-pill:hover {
  background: rgba(255, 255, 255, 0.4);
  transform: scale(1.05);
}

.view-clients-btn {
  background: white !important;
  color: var(--dark-bg) !important;
  font-size: 0.8rem;
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
  padding: 15px 25px !important;
  border-radius: 50px !important;
  margin-left: 20px;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.view-clients-btn:hover {
  background: #f8f9fa !important;
  color: var(--primary-red) !important;
  transform: scale(1.05);
}

/* Client Logos Section */
.client-logos-section {
  position: relative;
  z-index: 10;
  box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.1);
}

/* About Us Section */
.about-section {
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  padding: 100px 0;
  position: relative;
}

.about-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="20" cy="20" r="1" fill="%23000" opacity="0.02"/><circle cx="60" cy="40" r="1" fill="%23000" opacity="0.02"/><circle cx="80" cy="80" r="1" fill="%23000" opacity="0.02"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>')
    repeat;
  pointer-events: none;
  z-index: 1;
}

.about-section .container {
  position: relative;
  z-index: 2;
}

.stats-container {
  display: flex;
  flex-direction: column;
  gap: 40px;
  margin-bottom: 40px;
  padding: 30px;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 20px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(230, 57, 70, 0.1);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
}

.stat-item {
  text-align: left;
  padding: 20px 0;
  border-bottom: 1px solid rgba(230, 57, 70, 0.1);
  transition: all 0.3s ease;
}

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

.stat-item:hover {
  transform: translateX(10px);
  padding-left: 15px;
}

.stat-number {
  font-size: 3.8rem;
  font-weight: 900;
  line-height: 1;
  margin-bottom: 8px;
  background: linear-gradient(135deg, var(--primary-red) 0%, #ff6b6b 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-number.red {
  background: linear-gradient(135deg, var(--primary-red) 0%, #ff6b6b 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-label {
  font-size: 1.1rem;
  font-weight: 600;
  color: #666;
  text-transform: none;
  opacity: 0.8;
}

/* Image Collage - Center Layout */
.image-collage-center {
  position: relative;
  height: 450px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 20px;
}

.center-image {
  width: 100%;
  height: 380px;
  position: relative;
  border-radius: 25px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
  transition: all 0.4s ease;
  border: 3px solid rgba(230, 57, 70, 0.1);
}

.center-image:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.2);
  border-color: rgba(230, 57, 70, 0.3);
}

.center-image::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(230, 57, 70, 0.1) 0%,
    transparent 50%,
    rgba(230, 57, 70, 0.05) 100%
  );
  pointer-events: none;
  z-index: 1;
}

/* Legacy Image Collage (keeping for compatibility) */
.image-collage {
  position: relative;
  height: 300px;
  margin-top: 40px;
  display: flex;
  align-items: center;
}

.image-wrapper {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.main-image {
  width: 100%;
  height: 300px;
  position: relative;
}

.collage-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 4/3;
}

.image-tag {
  position: absolute;
  top: 15px;
  left: 15px;
  padding: 8px 16px;
  border-radius: 20px;
  font-weight: 700;
  font-size: 0.9rem;
  color: white;
}

.design-tag {
  background: var(--primary-red);
}

.execution-tag {
  background: linear-gradient(135deg, var(--primary-red) 0%, #ff6b6b 100%);
}

/* Secondary Image */
.image-collage-secondary {
  position: relative;
  height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.secondary-image {
  width: 100%;
  height: 250px;
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
  transition: all 0.3s ease;
  border: 2px solid rgba(230, 57, 70, 0.1);
}

.secondary-image:hover {
  transform: translateY(-3px) scale(1.01);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
  border-color: rgba(230, 57, 70, 0.2);
}

/* About Content */
.about-content {
  padding: 40px 30px 0 40px;
  background: rgba(255, 255, 255, 0.6);
  border-radius: 20px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(230, 57, 70, 0.1);
  height: fit-content;
}

.about-subtitle {
  color: var(--primary-red);
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
}

.about-subtitle::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 50px;
  height: 2px;
  background: var(--primary-red);
}

.about-title {
  font-size: 2.8rem;
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 35px;
  color: #333;
  position: relative;
}

.about-description {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #555;
  margin-bottom: 30px;
  text-align: justify;
  position: relative;
  padding-left: 20px;
}

.about-description::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 3px;
  height: 100%;
  background: linear-gradient(to bottom, var(--primary-red), transparent);
  border-radius: 2px;
}

.about-stats {
  display: flex;
  gap: 40px;
  margin: 45px 0;
  padding: 30px 0;
  border-top: 2px solid rgba(230, 57, 70, 0.1);
  border-bottom: 2px solid rgba(230, 57, 70, 0.1);
  background: rgba(248, 249, 250, 0.5);
  border-radius: 15px;
  position: relative;
}

.about-stats::before {
  content: "";
  position: absolute;
  top: 0;
  left: 20px;
  right: 20px;
  height: 2px;
  background: linear-gradient(90deg, var(--primary-red), transparent);
}

.about-stat {
  display: flex;
  align-items: center;
  gap: 15px;
  flex: 1;
  padding: 0 20px;
}

.stat-icon {
  width: 45px;
  height: 45px;
  background: linear-gradient(135deg, var(--primary-red), #ff6b6b);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  box-shadow: 0 4px 15px rgba(230, 57, 70, 0.3);
}

.stat-title {
  font-size: 0.9rem;
  color: #777;
  font-weight: 600;
  margin-bottom: 2px;
}

.stat-value {
  font-size: 1.4rem;
  font-weight: 800;
  color: #333;
}

.know-more-btn {
  background: linear-gradient(
    135deg,
    var(--primary-red) 0%,
    #ff6b6b 100%
  ) !important;
  border: none;
  padding: 18px 35px;
  border-radius: 30px;
  font-weight: 700;
  font-size: 1rem;
  text-transform: none;
  letter-spacing: 0.5px;
  transition: all 0.4s ease;
  box-shadow: 0 8px 25px rgba(230, 57, 70, 0.3);
  position: relative;
  overflow: hidden;
}

.know-more-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: left 0.6s ease;
}

.know-more-btn:hover {
  background: linear-gradient(135deg, #d32f2f 0%, #e63946 100%) !important;
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 15px 40px rgba(230, 57, 70, 0.4);
}

.know-more-btn:hover::before {
  left: 100%;
}

.client-logo-img {
  max-height: 60px;
  width: auto;
  filter: brightness(0) invert(1);
  opacity: 0.9;
  transition: all 0.3s ease;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  padding: 10px;
}

.client-logo-img:hover {
  opacity: 1;
  transform: scale(1.1);
  background: rgba(255, 255, 255, 0.2);
}

.client-logo-text {
  color: white;
  font-weight: 700;
  font-size: 1.2rem;
  letter-spacing: 1px;
  padding: 15px 25px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  transition: all 0.3s ease;
  backdrop-filter: blur(5px);
}

.client-logo-text:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: scale(1.05);
}

/* Carousel Custom Styles */
.carousel-item {
  transition: transform 0.8s ease-in-out;
}

.carousel-inner {
  overflow: visible;
}

/* Button Styles */
.btn {
  border-radius: var(--border-radius);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  border: none;
}

.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.btn-light {
  background: white;
  color: var(--dark-bg) !important;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.btn-light:hover {
  background: #f8f9fa;
  color: var(--primary-red) !important;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

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

@keyframes slideIn {
  from {
    opacity: 0;
    width: 0;
  }
  to {
    opacity: 1;
    width: 100%;
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .navbar-brand {
    font-size: 1.5rem !important;
  }

  .hero-section {
    height: 80vh;
    padding-top: 80px;
    background-attachment: scroll;
    border-radius: 0 0 30px 30px;
  }

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

  .about-content {
    padding-left: 0;
    margin-top: 40px;
  }

  .about-title {
    font-size: 2.2rem;
  }

  .stats-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 30px;
  }

  .stat-number {
    font-size: 2.5rem;
  }

  .image-collage {
    height: 250px;
    margin-top: 20px;
  }

  .main-image {
    width: 100%;
    height: 250px;
  }

  .image-collage-center {
    height: 300px;
    margin-top: 30px;
  }

  .center-image {
    height: 280px;
  }

  .image-collage-secondary {
    height: 220px;
    margin-top: 20px;
  }

  .secondary-image {
    height: 200px;
  }

  .about-stats {
    flex-direction: column;
    gap: 20px;
  }

  .hero-subtitle {
    font-size: 0.8rem;
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
  }

  .hero-title {
    font-size: 2.5rem;
    margin-bottom: 2rem;
  }

  .client-logo-text {
    font-size: 1rem;
    padding: 10px 15px;
    margin: 0.5rem;
  }

  .client-logos-section .col-lg-2 {
    margin-top: 1rem;
    text-align: center !important;
  }

  .carousel-inner .d-flex {
    flex-wrap: wrap;
    justify-content: center;
  }

  .client-logos-inline {
    gap: 1rem;
  }

  .client-name {
    font-size: 0.8rem;
    padding: 6px 12px;
  }

  .client-banner-inline {
    flex-direction: column;
    gap: 20px;
    padding: 20px;
    border-radius: 30px;
  }

  .client-logos-strip {
    justify-content: center;
    gap: 10px;
  }

  .client-pill {
    font-size: 0.8rem;
    padding: 8px 16px;
  }

  .view-clients-btn {
    margin-left: 0;
    font-size: 0.75rem;
    padding: 12px 20px !important;
  }

  .hero-section {
    border-radius: 0 0 30px 30px;
  }

  .rounded-section {
    margin: 0 10px;
    border-radius: 20px;
  }
}

@media (max-width: 576px) {
  .hero-title {
    font-size: 2rem;
  }

  .navbar-nav .nav-link {
    padding: 0.5rem 1rem !important;
    text-align: center;
  }

  .client-logo-text {
    font-size: 0.9rem;
    padding: 8px 12px;
  }
}

/* Smooth Scrolling */
html {
  scroll-behavior: smooth;
}

/* Loading Animation */
.hero-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--dark-bg);
  z-index: 3;
  animation: fadeOut 1s ease 2s forwards;
}

@keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    visibility: hidden;
  }
}

/* What We Do Section */
.what-we-do-section {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  padding: 120px 0;
  position: relative;
}

.what-we-do-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="20" cy="20" r="0.5" fill="%23000" opacity="0.05"/><circle cx="80" cy="40" r="0.3" fill="%23000" opacity="0.03"/><circle cx="40" cy="80" r="0.4" fill="%23000" opacity="0.04"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
  pointer-events: none;
}

.what-we-do-content {
  position: relative;
  z-index: 2;
}

.section-subtitle {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 3px;
  color: #6c757d;
  margin-bottom: 1.5rem;
  text-transform: lowercase;
  position: relative;
  display: inline-block;
}

.section-subtitle::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 40px;
  height: 2px;
  background: var(--primary-red);
}

.section-title {
  font-size: 2.8rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 4rem;
  color: #212529;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Enhanced Video Showcase */
.video-showcase {
  margin-top: 3rem;
}

.timeline-title {
  font-size: 2rem;
  font-weight: 700;
  color: #212529;
  margin-bottom: 0.8rem;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.timeline-subtitle {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 3rem;
  position: relative;
}

.video-container {
  position: relative;
  border-radius: 25px;
  overflow: hidden;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
  transform: perspective(1000px) rotateX(2deg);
  transition: all 0.3s ease;
}

.video-container:hover {
  transform: perspective(1000px) rotateX(0deg) translateY(-10px);
  box-shadow: 0 35px 70px rgba(0, 0, 0, 0.2);
}

.video-preview {
  position: relative;
  height: 350px;
  overflow: hidden;
  background: linear-gradient(45deg, #000, #333);
}

.video-player {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
  filter: brightness(0.9) contrast(1.1);
}

.video-preview:hover .video-player {
  transform: scale(1.02);
  filter: brightness(1) contrast(1.2);
}

.video-tags {
  position: absolute;
  top: 25px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: space-between;
  padding: 0 25px;
  z-index: 3;
}

.video-tag {
  padding: 10px 20px;
  border-radius: 25px;
  font-size: 0.85rem;
  font-weight: 600;
  color: white;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}

.video-tag:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.design-tag-video {
  background: linear-gradient(135deg, var(--primary-red) 0%, #d32f2f 100%);
}

.handover-tag {
  background: linear-gradient(135deg, var(--primary-red) 0%, #d32f2f 100%);
}

/* Enhanced Services Cards */
.services-cards {
  display: flex;
  flex-direction: column;
  gap: 25px;
  padding-left: 3rem;
  position: relative;
}

.services-cards::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(to bottom, var(--primary-red), transparent);
  border-radius: 2px;
}

.service-card {
  background: white;
  padding: 35px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
  border-left: 4px solid var(--primary-red);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-red), transparent);
  transform: translateX(-100%);
  transition: transform 0.4s ease;
}

.service-card:hover::before {
  transform: translateX(0);
}

.service-card:hover {
  transform: translateY(-8px) translateX(8px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
  border-left-color: #d32f2f;
}

.service-title {
  font-size: 1.4rem;
  font-weight: 700;
  color: #212529;
  margin-bottom: 1.2rem;
  position: relative;
}

.service-description {
  font-size: 1rem;
  line-height: 1.7;
  color: #6c757d;
  margin: 0;
}

/* Responsive Design for What We Do Section */
@media (max-width: 991px) {
  .what-we-do-section {
    padding: 80px 0;
  }

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

  .services-cards {
    padding-left: 0;
    margin-top: 4rem;
  }

  .services-cards::before {
    display: none;
  }

  .video-preview {
    height: 280px;
  }

  .video-container {
    transform: none;
  }

  .video-container:hover {
    transform: translateY(-5px);
  }
}

@media (max-width: 768px) {
  .what-we-do-section {
    padding: 60px 0;
  }

  .section-title {
    font-size: 1.9rem;
  }

  .timeline-title {
    font-size: 1.6rem;
  }

  .video-preview {
    height: 220px;
  }

  .service-card {
    padding: 25px;
  }

  .video-tags {
    padding: 0 15px;
  }

  .video-tag {
    padding: 8px 15px;
    font-size: 0.75rem;
  }
}

/* Our Services Section */
.our-services-section {
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  padding: 120px 0;
  position: relative;
}

.our-services-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="servicesGrain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="0.4" fill="%23000" opacity="0.03"/><circle cx="75" cy="50" r="0.3" fill="%23000" opacity="0.02"/><circle cx="50" cy="75" r="0.5" fill="%23000" opacity="0.04"/></pattern></defs><rect width="100" height="100" fill="url(%23servicesGrain)"/></svg>');
  pointer-events: none;
}

.services-subtitle {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 3px;
  color: #888;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  position: relative;
  display: inline-block;
}

.services-subtitle::before {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: -10px;
  width: 30px;
  height: 2px;
  background: var(--primary-red);
}

.services-title {
  font-size: 3rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 2rem;
  color: #333;
}

.services-description {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #666;
  margin-bottom: 0;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* Service Items */
.service-item {
  background: white;
  border-radius: 20px;
  padding: 40px 30px;
  height: 100%;
  transition: all 0.4s ease;
  position: relative;
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  overflow: hidden;
}

.service-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-red), #ff6b6b);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

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

.service-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(230, 57, 70, 0.15);
}

.service-item.featured {
  background: linear-gradient(135deg, #fff 0%, #f8f9fa 100%);
  border: 2px solid var(--primary-red);
  position: relative;
}

.service-item.featured::before {
  transform: scaleX(1);
}

.service-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--primary-red);
  color: white;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.service-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--primary-red), #ff6b6b);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
  transition: all 0.3s ease;
}

.service-item:hover .service-icon {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 10px 25px rgba(230, 57, 70, 0.3);
}

.service-icon i {
  font-size: 1.8rem;
  color: white;
}

.service-name {
  font-size: 1.5rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 15px;
}

.service-desc {
  font-size: 1rem;
  line-height: 1.6;
  color: #666;
  margin-bottom: 25px;
}

.service-features {
  list-style: none;
  padding: 0;
  margin: 0;
}

.service-features li {
  position: relative;
  padding: 8px 0 8px 25px;
  color: #555;
  font-size: 0.95rem;
  font-weight: 500;
}

.service-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--primary-red);
  font-weight: 700;
  font-size: 1rem;
}

/* Services CTA */
.services-cta {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  padding: 50px 40px;
  border-radius: 25px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.services-cta::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="ctaPattern" width="50" height="50" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%23e63946" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23ctaPattern)"/></svg>');
  pointer-events: none;
}

.cta-text {
  font-size: 2.2rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 15px;
  position: relative;
  z-index: 2;
}

.cta-subtext {
  font-size: 1.1rem;
  color: #666;
  margin-bottom: 30px;
  position: relative;
  z-index: 2;
}

.cta-buttons {
  position: relative;
  z-index: 2;
}

.cta-buttons .btn {
  padding: 15px 30px;
  border-radius: 30px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
}

.cta-buttons .btn-danger:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(230, 57, 70, 0.3);
}

.cta-buttons .btn-outline-secondary {
  border-color: #666;
  color: #666;
}

.cta-buttons .btn-outline-secondary:hover {
  background: #666;
  border-color: #666;
  color: white;
  transform: translateY(-2px);
}

/* Responsive Design for Services Section */
@media (max-width: 991px) {
  .our-services-section {
    padding: 80px 0;
  }

  .services-title {
    font-size: 2.5rem;
  }

  .service-item {
    padding: 30px 25px;
    margin-bottom: 30px;
  }

  .cta-text {
    font-size: 1.8rem;
  }

  .cta-buttons .btn {
    display: block;
    width: 100%;
    margin-bottom: 15px;
  }

  .cta-buttons .btn:last-child {
    margin-bottom: 0;
  }
}

@media (max-width: 768px) {
  .our-services-section {
    padding: 60px 0;
  }

  .services-title {
    font-size: 2rem;
  }

  .services-description {
    font-size: 1rem;
  }

  .service-item {
    padding: 25px 20px;
  }

  .service-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
  }

  .service-icon i {
    font-size: 1.5rem;
  }

  .service-name {
    font-size: 1.3rem;
  }

  .services-cta {
    padding: 40px 25px;
  }

  .cta-text {
    font-size: 1.6rem;
  }
}

/* Portfolio Section */
.portfolio-section {
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
  padding: 80px 0;
  position: relative;
  border-radius: 50px;
  margin-top: 50px;
}

.portfolio-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="portfolioGrain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="30" cy="30" r="0.3" fill="%23fff" opacity="0.05"/><circle cx="70" cy="60" r="0.2" fill="%23fff" opacity="0.03"/><circle cx="50" cy="90" r="0.4" fill="%23fff" opacity="0.04"/></pattern></defs><rect width="100" height="100" fill="url(%23portfolioGrain)"/></svg>');
  pointer-events: none;
}

.portfolio-subtitle {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 3px;
  color: #888;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  position: relative;
  display: inline-block;
}

.portfolio-subtitle::before {
  content: "";
  position: absolute;
  left: -20px;
  top: 50%;
  transform: translateY(-50%);
  width: 15px;
  height: 2px;
  background: var(--primary-red);
}

.portfolio-title {
  font-size: 3rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 4rem;
  color: white;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* Portfolio Gallery */
.portfolio-item {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  height: 280px;
  cursor: pointer;
  transition: all 0.4s ease;
}

.portfolio-item:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.portfolio-image {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 20px;
}

.portfolio-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
  filter: brightness(0.8) contrast(1.1);
}

.portfolio-item:hover .portfolio-image img {
  transform: scale(1.1);
  filter: brightness(0.6) contrast(1.2);
}

.portfolio-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(230, 57, 70, 0.8) 0%,
    rgba(0, 0, 0, 0.6) 100%
  );
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all 0.4s ease;
}

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

.portfolio-info {
  text-align: center;
  color: white;
  transform: translateY(20px);
  transition: transform 0.4s ease 0.1s;
}

.portfolio-item:hover .portfolio-info {
  transform: translateY(0);
}

.portfolio-info h4 {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.portfolio-info p {
  font-size: 1rem;
  opacity: 0.9;
  margin: 0;
}

/* Portfolio CTA */
.portfolio-cta {
  margin-top: 3rem;
}

.cta-title {
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1.3;
  color: white;
  margin-bottom: 0;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.portfolio-buttons {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 15px;
  margin-top: 2rem;
}

.portfolio-buttons .btn {
  padding: 12px 25px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  border-width: 2px;
}

.portfolio-buttons .btn-danger {
  box-shadow: 0 5px 15px rgba(230, 57, 70, 0.3);
}

.portfolio-buttons .btn-danger:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(230, 57, 70, 0.4);
}

.portfolio-buttons .btn-outline-light {
  border-color: rgba(255, 255, 255, 0.3);
  color: white;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
}

.portfolio-buttons .btn-outline-light:hover {
  background: white;
  color: #1a1a1a;
  border-color: white;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 255, 255, 0.2);
}

/* Responsive Design for Portfolio Section */
@media (max-width: 991px) {
  .portfolio-section {
    padding: 60px 0;
    border-radius: 30px;
  }

  .portfolio-title {
    font-size: 2.5rem;
  }

  .cta-title {
    font-size: 1.8rem;
  }

  .portfolio-buttons {
    justify-content: center;
    margin-top: 3rem;
  }
}

@media (max-width: 768px) {
  .portfolio-section {
    padding: 50px 0;
    border-radius: 20px;
  }

  .portfolio-title {
    font-size: 2rem;
  }

  .cta-title {
    font-size: 1.5rem;
    text-align: center;
  }

  .portfolio-item {
    height: 240px;
  }

  .portfolio-buttons {
    flex-direction: column;
    align-items: stretch;
  }

  .portfolio-buttons .btn {
    margin-bottom: 10px;
  }
}

/* Testimonials Section - Enhanced UI/UX Light Mode */
.testimonials {
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  padding: 100px 0 150px 0; /* Optimal bottom padding for footer separation */
  color: #333;
  overflow: hidden;
  position: relative;
  /* Cache buster - force browser refresh */
  z-index: 1;
}

.testimonials::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
      circle at 30% 40%,
      rgba(230, 57, 70, 0.05) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 20%,
      rgba(230, 57, 70, 0.03) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 40% 80%,
      rgba(230, 57, 70, 0.04) 0%,
      transparent 50%
    );
  pointer-events: none;
}

.testimonials h2 {
  text-align: center;
  margin-bottom: 60px;
  color: var(--primary-red);
  font-size: 3rem;
  font-weight: 800;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  position: relative;
  z-index: 2;
}

.testimonials h2::after {
  content: "";
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-red), transparent);
  border-radius: 2px;
}

.testimonials-scroll-container {
  width: 100%;
  overflow: hidden;
  position: relative;
  z-index: 2;
}

.testimonials-scroll-track {
  display: flex;
  width: calc(
    1200% + 360px
  ); /* 36 testimonials (12x3 for perfect seamless loop) */
  animation: scroll-testimonials 240s linear infinite; /* Much slower for better readability */
}

@keyframes scroll-testimonials {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(
      calc(-400% - 120px)
    ); /* Move by exactly 12 testimonials for perfect loop */
  }
}

.testimonial-card {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 20px;
  padding: 40px;
  margin: 0 15px;
  backdrop-filter: blur(15px);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  text-align: left;
  height: 500px; /* Increased height to accommodate company logo */
  display: flex;
  flex-direction: column;
  flex: 0 0 calc(33.333% - 30px); /* 3 testimonials visible at once */
  min-width: calc(33.333% - 30px);
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.testimonial-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-red), #ff6b6b, transparent);
  transform: translateX(-100%);
  transition: transform 0.6s ease;
}

.testimonial-card::after {
  content: "";
  position: absolute;
  top: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" fill="%23e63946" viewBox="0 0 24 24"><path d="M14.017 21v-7.391c0-5.704 3.731-9.57 8.983-10.609l.995 2.151c-2.432.917-3.995 3.638-3.995 5.849h4v10h-9.983zm-14.017 0v-7.391c0-5.704 3.748-9.57 9-10.609l.996 2.151c-2.433.917-3.996 3.638-3.996 5.849h4v10h-10z"/></svg>');
  background-size: contain;
  background-repeat: no-repeat;
  opacity: 0.2;
  transition: all 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-15px) scale(1.02);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15), 0 0 30px rgba(230, 57, 70, 0.1);
  border-color: rgba(230, 57, 70, 0.3);
  background: rgba(255, 255, 255, 0.95);
}

.testimonial-card:hover::before {
  transform: translateX(0);
}

.testimonial-card:hover::after {
  opacity: 0.4;
  transform: scale(1.1);
}

.testimonial-content {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.testimonial-text {
  flex: 1;
  margin-bottom: 30px;
}

.testimonial-text p {
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 15px;
  color: #555;
  font-weight: 400;
  position: relative;
  padding-left: 20px;
}

.testimonial-text p::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 3px;
  height: 3px;
  background: var(--primary-red);
  border-radius: 50%;
  opacity: 0.7;
}

.testimonial-text p:first-child {
  font-size: 1.1rem;
  font-weight: 500;
  color: #333;
}

.client-info {
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.testimonial-author {
  font-weight: 700;
  color: var(--primary-red);
  font-size: 1.3rem;
  margin-bottom: 5px;
  letter-spacing: 0.5px;
}

.testimonial-position {
  color: #666;
  font-size: 0.95rem;
  font-weight: 500;
  opacity: 0.9;
}

.company-logo {
  margin-top: auto;
  padding-top: 20px;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  display: flex;
  justify-content: flex-start;
  align-items: center;
  min-height: 60px; /* Ensure minimum height for company logo area */
}

.company-name {
  display: inline-block;
  background: linear-gradient(135deg, var(--primary-red) 0%, #ff4757 100%);
  color: white;
  font-weight: 700;
  font-size: 0.85rem;
  padding: 10px 18px;
  border-radius: 25px;
  box-shadow: 0 4px 15px rgba(230, 57, 70, 0.3);
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  position: relative;
  overflow: hidden;
  min-width: 80px;
  text-align: center;
}

.company-name::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: left 0.6s ease;
}

.company-name:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 8px 25px rgba(230, 57, 70, 0.5);
  background: linear-gradient(135deg, #d32f2f 0%, var(--primary-red) 100%);
}

.company-name:hover::before {
  left: 100%;
}

/* Pause animation on hover */
.testimonials-scroll-track:hover {
  animation-play-state: paused;
}

/* Enhanced responsive design */
@media (max-width: 768px) {
  .testimonials {
    padding: 80px 0 120px 0; /* Reduced bottom padding for mobile */
  }

  .testimonials h2 {
    font-size: 2.2rem;
    margin-bottom: 40px;
  }

  .testimonial-card {
    flex: 0 0 calc(100% - 30px); /* 1 testimonial visible on mobile */
    min-width: calc(100% - 30px);
    padding: 30px;
    height: 450px;
  }

  .testimonials-scroll-track {
    width: calc(1800% + 540px); /* 18 testimonials for mobile */
    animation-duration: 160s;
  }

  .testimonial-text p {
    font-size: 0.95rem;
  }

  .testimonial-author {
    font-size: 1.2rem;
  }

  .company-name {
    font-size: 0.8rem;
    padding: 8px 14px;
    letter-spacing: 0.6px;
  }
}

@media (max-width: 576px) {
  .testimonials {
    padding: 60px 0 100px 0; /* Reduced bottom padding for small mobile */
  }

  .testimonials h2 {
    font-size: 1.8rem;
  }

  .testimonial-card {
    padding: 25px;
    height: 420px;
  }

  .testimonial-text p:first-child {
    font-size: 1rem;
  }

  .company-name {
    font-size: 0.75rem;
    padding: 6px 12px;
    letter-spacing: 0.5px;
    min-width: 70px;
  }
}

/* Footer Section */
.footer-section {
  position: relative;
  background: #1a1a1a; /* Same as header dark color */
  color: white;
}

/* CTA Banner */
.cta-banner {
  background: linear-gradient(135deg, var(--primary-red) 0%, #ff4757 100%);
  padding: 40px 0;
  margin: 0 20px;
  border-radius: 25px;
  position: relative;
  top: -50px;
  z-index: 10;
  box-shadow: 0 20px 60px rgba(230, 57, 70, 0.3);
}

.cta-content .cta-title {
  font-size: 2.2rem;
  font-weight: 700;
  color: white;
  margin-bottom: 15px;
  line-height: 1.3;
}

.cta-content .cta-description {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
  margin-bottom: 0;
}

.btn-cta {
  background: #1a1a1a; /* Match header color */
  color: white;
  font-weight: 700;
  font-size: 1rem;
  padding: 15px 35px;
  border: none;
  border-radius: 25px;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(26, 26, 26, 0.3);
}

.btn-cta:hover {
  background: #0d0d0d;
  transform: translateY(-2px);
  box-shadow: 0 12px 35px rgba(26, 26, 26, 0.4);
  color: white;
}

/* Main Footer */
.footer-main {
  padding: 80px 0 60px;
  background: #1a1a1a; /* Match header color */
}

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

.brand-logos {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 25px;
}

.footer-brand-logo {
  font-size: 1.8rem;
  font-weight: 800;
  letter-spacing: -0.5px;
}

.logo-91 {
  background: var(--primary-red);
  color: white;
  padding: 8px 15px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.9rem;
}

.logo-combinator {
  display: flex;
  align-items: center;
  gap: 8px;
}

.combinator-y {
  background: #ff8c42;
  color: white;
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  font-weight: 700;
  font-size: 1.2rem;
}

.combinator-text {
  color: #ff8c42;
  font-weight: 600;
  font-size: 1rem;
}

.brand-description {
  color: #b8c5d1;
  line-height: 1.6;
  margin-bottom: 30px;
  font-size: 0.95rem;
}

.social-links {
  display: flex;
  gap: 10px;
}

.social-link {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #b8c5d1;
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-link:hover {
  background: var(--primary-red);
  color: white;
  transform: translateY(-2px);
}

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

.footer-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: white;
  margin-bottom: 25px;
  position: relative;
}

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

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

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

.footer-links a {
  color: #b8c5d1;
  text-decoration: none;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  position: relative;
}

.footer-links a:hover {
  color: white;
  padding-left: 10px;
}

.contact-info {
  margin-top: 10px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 20px;
  color: #b8c5d1;
  font-size: 0.95rem;
}

.contact-item i {
  color: var(--primary-red);
  margin-top: 2px;
  font-size: 1rem;
  min-width: 16px;
}

.contact-item span {
  line-height: 1.5;
}

/* Footer Bottom */
.footer-bottom {
  background: rgba(0, 0, 0, 0.2);
  padding: 25px 0;
  border-radius: 20px 20px 0 0;
  margin: 0 20px;
}

.footer-links-bottom a {
  color: #b8c5d1;
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

.footer-links-bottom a:hover {
  color: white;
}

.copyright {
  color: #b8c5d1;
  font-size: 0.9rem;
}

/* Scroll to Top Button */
.scroll-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: var(--primary-red);
  color: white;
  border: none;
  border-radius: 50%;
  font-size: 1.2rem;
  font-weight: 300;
  cursor: pointer;
  transition: all 0.3s ease;
  opacity: 0;
  visibility: hidden;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  box-shadow: 0 4px 15px rgba(230, 57, 70, 0.3);
}

.scroll-to-top.show {
  opacity: 1;
  visibility: visible;
}

.scroll-to-top:hover {
  background: #d32f2f;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(230, 57, 70, 0.4);
}

/* Responsive Design for Footer */
@media (max-width: 768px) {
  .cta-banner {
    margin: 0 15px;
    padding: 30px 20px;
    text-align: center;
  }

  .cta-content .cta-title {
    font-size: 1.8rem;
    margin-bottom: 20px;
  }

  .btn-cta {
    margin-top: 20px;
    width: 100%;
    max-width: 200px;
  }

  .footer-main {
    padding: 60px 0 40px;
  }

  .brand-logos {
    justify-content: center;
    text-align: center;
  }

  .footer-column {
    text-align: center;
    margin-bottom: 40px;
  }

  .footer-title::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .social-links {
    justify-content: center;
  }

  .footer-bottom {
    margin: 0 15px;
    text-align: center;
  }

  .footer-bottom .row > div {
    text-align: center !important;
    margin-bottom: 15px;
  }

  .scroll-to-top {
    bottom: 20px;
    right: 20px;
    width: 45px;
    height: 45px;
    font-size: 1.1rem;
  }
}
