/* ===========================
   ROOT VARIABLES
   =========================== */
:root {
  /* Colors */
  --primary-orange: #FF6B35;
  --dark-blue: #0A1128;
  --secondary-blue: #1A2B4F;
  --white: #FFFFFF;
  --text-secondary: #E0E0E0;
  
  /* Spacing */
  --spacing-xs: 8px;
  --spacing-sm: 16px;
  --spacing-md: 24px;
  --spacing-lg: 32px;
  --spacing-xl: 48px;
  --spacing-2xl: 64px;
  --spacing-3xl: 96px;
  
  /* Typography */
  --font-family: 'Inter', sans-serif;
  
  /* Transitions */
  --transition-speed: 0.3s;
  
  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.15);
  --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.2);
  --shadow-orange: 0 8px 32px rgba(255, 107, 53, 0.3);
}

/* ===========================
   GLOBAL STYLES
   =========================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

html {
  scroll-behavior: smooth;
}

/* ===========================
   CUSTOM SCROLLBAR
   =========================== */
/* Webkit browsers (Chrome, Safari, Edge) */
::-webkit-scrollbar {
  width: 12px;
}

::-webkit-scrollbar-track {
  background: rgba(26, 43, 79, 0.3);
  border-radius: 10px;
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(135deg, #FF6B35 0%, #FFA07A 100%);
  border-radius: 10px;
  border: 2px solid rgba(26, 43, 79, 0.3);
  transition: all 0.3s ease;
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(135deg, #FF8E53 0%, #FFB84D 100%);
  box-shadow: 0 0 10px rgba(255, 107, 53, 0.5);
}

/* Firefox */
* {
  scrollbar-width: thin;
  scrollbar-color: #FF6B35 rgba(26, 43, 79, 0.3);
}

a {
  text-decoration: none;
  color: inherit;
  transition: all var(--transition-speed) ease;
}

a:hover {
  color: var(--primary-orange);
}

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

section {
  padding: var(--spacing-3xl) 0;
  position: relative;
}

/* ===========================
   TYPOGRAPHY - UNIVERSAL FONT STYLES
   =========================== */

/* Universal H1 Style - Same everywhere */
h1 {
  font-family: 'Bebas Neue', cursive;
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: var(--spacing-md);
  letter-spacing: 2px;
  color: var(--white);
}

/* Universal H2 Style - Same everywhere */
h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: var(--spacing-md);
  letter-spacing: 1px;
  color: var(--white);
}

/* Universal H3 Style - Same everywhere */
h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: var(--spacing-md);
  letter-spacing: 0.5px;
  color: var(--white);
}

/* Universal H4 Style - Same everywhere */
h4 {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(1.25rem, 2.5vw, 1.5rem);
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: var(--spacing-md);
  letter-spacing: 0.5px;
  color: var(--white);
}

/* Universal H5 Style - Same everywhere */
h5 {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(1.1rem, 2vw, 1.25rem);
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: var(--spacing-sm);
  letter-spacing: 0.3px;
  color: var(--white);
}

/* Universal H6 Style - Same everywhere */
h6 {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(1rem, 1.8vw, 1.1rem);
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: var(--spacing-sm);
  letter-spacing: 0.3px;
  color: var(--white);
}

/* Universal Paragraph Style - Same everywhere */
p {
  font-family: 'Raleway', sans-serif;
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1.7;
  color: var(--text-secondary);
  margin-bottom: var(--spacing-md);
  letter-spacing: 0.2px;
}

.section-title {
  text-align: center;
  margin-bottom: var(--spacing-2xl);
}

.section-subtitle {
  background: linear-gradient(135deg, #FF6B35 0%, #FF8E53 25%, #FFA07A 50%, #FFB84D 75%, #FF6B9D 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  background-size: 200% auto;
  animation: gradient-shift 3s ease infinite;
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: var(--spacing-sm);
}

/* ===========================
   GRADIENT TEXT
   =========================== */
.text-gradient {
  background: linear-gradient(135deg, var(--primary-orange) 0%, var(--white) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ===========================
   BUTTONS
   =========================== */
.btn-primary-orange {
  background: linear-gradient(135deg, #FF6B35 0%, #FFA07A 100%);
  color: var(--white);
  padding: 16px 40px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1.1rem;
  border: none;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 8px 30px rgba(255, 107, 53, 0.4);
  display: inline-block;
  position: relative;
  overflow: hidden;
  letter-spacing: 0.5px;
}

.btn-primary-orange::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.5s ease;
}

.btn-primary-orange:hover::before {
  left: 100%;
}

.btn-primary-orange:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 15px 50px rgba(255, 107, 53, 0.5);
  color: var(--white);
}

.btn-secondary-outline {
  background: transparent;
  color: var(--white);
  padding: 16px 40px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1.1rem;
  border: 2px solid rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: inline-block;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(10px);
  letter-spacing: 0.5px;
}

.btn-secondary-outline::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background: rgba(255, 255, 255, 0.1);
  transition: width 0.4s ease;
  z-index: -1;
}

.btn-secondary-outline:hover::before {
  width: 100%;
}

.btn-secondary-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.6);
  color: var(--white);
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 10px 30px rgba(255, 255, 255, 0.2);
}

/* ===========================
   FIXED NAVIGATION
   =========================== */

/* Logo - Upper Left */
/* ===========================
   FIXED LOGO CONTAINER - LEFT SIDE
   =========================== */
.fixed-logo-container {
  position: fixed;
  top: 10px;
  left: 30px;
  z-index: 1000;
}

.logo-link {
  text-decoration: none;
  display: inline-block;
}

.main-logo-image {
  height: 130px;
  width: auto;
  max-width: 450px;
  min-width: 330px;
  object-fit: contain;
  display: block;
}

/* Scrolled state for logo */
.navbar-scrolled .main-logo-image {
  height: 110px;
  max-width: 400px;
  min-width: 290px;
}

/* Responsive logo sizing */
@media (max-width: 1200px) {
  .main-logo-image {
    height: 115px;
    max-width: 410px;
    min-width: 300px;
  }
  
  .navbar-scrolled .main-logo-image {
    height: 100px;
    max-width: 360px;
    min-width: 270px;
  }
}

@media (max-width: 992px) {
  .fixed-logo-container {
    top: 10px;
    left: 25px;
  }
  
  .main-logo-image {
    height: 100px;
    max-width: 360px;
    min-width: 270px;
  }
  
  .navbar-scrolled .main-logo-image {
    height: 90px;
    max-width: 330px;
    min-width: 250px;
  }
}

@media (max-width: 768px) {
  .fixed-logo-container {
    top: 8px;
    left: 20px;
  }
  
  .main-logo-image {
    height: 80px;
    max-width: 300px;
    min-width: 230px;
  }
  
  .navbar-scrolled .main-logo-image {
    height: 75px;
    max-width: 280px;
    min-width: 210px;
  }
}

@media (max-width: 576px) {
  .fixed-logo-container {
    top: 6px;
    left: 15px;
  }
  
  .main-logo-image {
    height: 65px;
    max-width: 250px;
    min-width: 190px;
  }
  
  .navbar-scrolled .main-logo-image {
    height: 60px;
    max-width: 230px;
    min-width: 170px;
  }
}

@media (max-width: 480px) {
  .fixed-logo-container {
    top: 5px;
    left: 12px;
  }
  
  .main-logo-image {
    height: 55px;
    max-width: 220px;
    min-width: 170px;
  }
  
  .navbar-scrolled .main-logo-image {
    height: 50px;
    max-width: 200px;
    min-width: 150px;
  }
}

/* Menu - Center */
.fixed-menu {
  position: fixed;
  top: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1000;
}

.fixed-menu-list {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 0.5rem;
  background: rgba(26, 43, 79, 0.6);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50px;
  padding: 0.75rem 1.5rem;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.fixed-menu-item {
  margin: 0;
}

.fixed-menu-link {
  color: var(--white);
  font-weight: 500;
  padding: 0.5rem 1.25rem;
  text-decoration: none;
  position: relative;
  border-radius: 25px;
  display: block;
  font-size: 0.95rem;
}

.fixed-menu-link:hover,
.fixed-menu-link.active {
  color: var(--primary-orange);
  background: rgba(255, 107, 53, 0.1);
}

/* Get Started Button - Upper Right */
.fixed-get-started {
  position: fixed;
  top: 30px;
  right: 30px;
  z-index: 1000;
}

.fixed-get-started .btn-primary-orange {
  padding: 12px 30px;
  font-size: 1rem;
}

/* Mobile Menu Toggle - Hidden on Desktop */
.mobile-menu-toggle {
  display: none;
}

.mobile-menu-overlay {
  display: none;
}

/* ===========================
   HERO SECTION
   =========================== */
.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(10, 17, 40, 0.8) 0%, rgba(26, 43, 79, 0.8) 100%), url('../assets/images/background/back.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

.hero-section .col-lg-7 {
  padding-left: 40px;
  padding-right: 40px;
}

@media (min-width: 1200px) {
  .hero-section .col-lg-7 {
    padding-left: 60px;
  }
}

.hero-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(255, 107, 53, 0.15) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 0;
  animation: pulse 8s ease-in-out infinite;
}

.hero-section::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255, 107, 53, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 0;
  animation: pulse 10s ease-in-out infinite reverse;
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
    opacity: 0.8;
  }
  50% {
    transform: scale(1.1);
    opacity: 1;
  }
}

.hero-section .container {
  padding-left: 0;
  padding-right: 0;
  position: relative;
  z-index: 1;
}

.hero-section .col-lg-7,
.hero-section .col-lg-12 {
  padding-left: 0;
  margin-left: 0;
  position: relative;
  z-index: 2;
}

.hero-section .col-lg-7 h1,
.hero-section .col-lg-12 h1 {
  font-family: 'Bebas Neue', cursive;
  font-size: clamp(3rem, 7vw, 6.5rem);
  font-weight: 400;
  line-height: 1;
  margin-bottom: var(--spacing-md);
  letter-spacing: 3px;
  color: var(--white);
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5), 0 0 50px rgba(255, 107, 53, 0.4);
  text-transform: uppercase;
  background: linear-gradient(135deg, #FFFFFF 0%, #FF6B35 50%, #FFA07A 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  background-size: 200% auto;
  animation: gradient-shift 4s ease infinite;
  position: relative;
}

.hero-section .col-lg-7 h1::after,
.hero-section .col-lg-12 h1::after {
  content: 'Fueling Brands With Content';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(255, 107, 53, 0.2) 0%, transparent 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  z-index: -1;
  filter: blur(2px);
  opacity: 0.5;
}

@keyframes gradient-shift {
  0%, 100% {
    background-position: 0% center;
  }
  50% {
    background-position: 100% center;
  }
}

.hero-section .col-lg-7 h1.text-gradient,
.hero-section .col-lg-12 h1.text-gradient {
  background: linear-gradient(135deg, var(--white) 0%, var(--primary-orange) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: none;
}

.hero-section .col-lg-7 h2,
.hero-section .col-lg-12 h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(1.5rem, 3vw, 2.8rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: var(--spacing-lg);
  letter-spacing: 1px;
  text-shadow: 0 3px 15px rgba(0, 0, 0, 0.3), 0 0 30px rgba(255, 107, 53, 0.2);
  text-transform: uppercase;
  background: linear-gradient(135deg, #FFFFFF 0%, #E0E0E0 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-section .col-lg-7 .lead,
.hero-section .col-lg-12 .lead {
  font-family: 'Raleway', sans-serif;
  font-size: clamp(1.1rem, 1.6vw, 1.4rem);
  font-weight: 500;
  line-height: 1.9;
  color: var(--white);
  margin-bottom: var(--spacing-2xl);
  max-width: 85%;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  opacity: 0.98;
  letter-spacing: 0.5px;
}

.hero-section .col-lg-7,
.hero-section .col-lg-12 {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding-left: 40px;
  padding-right: 40px;
  margin-top: -10px;
}

.hero-section .col-lg-7 .d-flex,
.hero-section .col-lg-12 .d-flex {
  gap: var(--spacing-md);
  margin-bottom: var(--spacing-2xl);
  justify-content: center;
  width: 100%;
  flex-wrap: wrap;
}

.hero-section .col-lg-5 {
  margin-left: 0;
  margin-right: 0;
  padding-right: 40px;
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

@media (min-width: 1200px) {
  .hero-section .col-lg-5 {
    padding-right: 60px;
  }
}

.hero-section .col-lg-5 .position-relative {
  width: 100%;
  max-width: 400px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: var(--spacing-md);
}

.hero-section .stat-card {
  background: linear-gradient(135deg, rgba(26, 43, 79, 0.8) 0%, rgba(26, 43, 79, 0.6) 100%);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 2px solid rgba(255, 107, 53, 0.2);
  border-radius: 24px;
  padding: var(--spacing-xl);
  text-align: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  width: 100%;
  max-width: 320px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
  position: relative;
  overflow: hidden;
}

.hero-section .stat-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(255, 107, 53, 0.1) 0%, transparent 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.hero-section .stat-card:hover {
  transform: translateY(-10px) scale(1.02);
  border-color: rgba(255, 107, 53, 0.5);
  box-shadow: 0 20px 60px rgba(255, 107, 53, 0.3);
}

.hero-section .stat-card:hover::before {
  opacity: 1;
}

.hero-section .stat-value {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 900;
  background: linear-gradient(135deg, var(--primary-orange) 0%, #FFA07A 50%, var(--white) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: var(--spacing-sm);
  position: relative;
  z-index: 1;
  line-height: 1;
}

.hero-section .stat-label {
  color: var(--white);
  font-size: clamp(0.9rem, 1.2vw, 1.1rem);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  position: relative;
  z-index: 1;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

/* ===========================
   FORM STYLES
   =========================== */
.form-control,
.form-select {
  background: rgba(26, 43, 79, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--white);
  padding: 12px 16px;
  border-radius: 8px;
}

.form-control:focus,
.form-select:focus {
  background: rgba(26, 43, 79, 0.6);
  border-color: var(--primary-orange);
  color: var(--white);
  box-shadow: 0 0 0 0.2rem rgba(255, 107, 53, 0.25);
}

.form-control::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.form-label {
  color: var(--white);
  font-weight: 500;
  margin-bottom: 8px;
}

/* ===========================
   BREADCRUMB
   =========================== */
.breadcrumb {
  background: transparent;
  padding: 0;
  margin-bottom: var(--spacing-md);
}

.breadcrumb-item a {
  color: var(--text-secondary);
}

.breadcrumb-item.active {
  color: var(--primary-orange);
}

/* ===========================
   FOOTER
   =========================== */
.footer {
  background: rgba(26, 43, 79, 0.4);
  backdrop-filter: blur(12px);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: var(--spacing-2xl) 0 var(--spacing-md);
  margin-top: var(--spacing-3xl);
}

.footer-logo {
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: var(--spacing-md);
}

.footer h5 {
  color: var(--white);
  font-size: 1.125rem;
  margin-bottom: var(--spacing-md);
  font-weight: 600;
}

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

.footer ul li {
  margin-bottom: var(--spacing-sm);
}

.footer ul li a {
  color: var(--text-secondary);
  transition: all var(--transition-speed) ease;
}

.footer ul li a:hover {
  color: var(--primary-orange);
  padding-left: 5px;
}

.social-icons {
  display: flex;
  gap: var(--spacing-sm);
  margin-top: var(--spacing-md);
}

.social-icons a {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-speed) ease;
}

.social-icons a:hover {
  background: var(--primary-orange);
  transform: translateY(-3px);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: var(--spacing-xl);
  padding-top: var(--spacing-md);
  text-align: center;
  color: var(--text-secondary);
  font-size: 0.875rem;
}

/* ===========================
   BACK TO TOP BUTTON
   =========================== */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: var(--primary-orange);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.5rem;
  cursor: pointer;
  transition: all var(--transition-speed) ease;
  opacity: 0;
  visibility: hidden;
  z-index: 999;
  box-shadow: var(--shadow-orange);
}

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

.back-to-top:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(255, 107, 53, 0.5);
}

/* ===========================
   WHATSAPP FLOATING BUTTON
   =========================== */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  left: 30px;
  width: 60px;
  height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 2rem;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 999;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  text-decoration: none;
  animation: whatsapp-pulse 2s infinite;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6);
  color: var(--white);
}

@keyframes whatsapp-pulse {
  0% {
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  }
  50% {
    box-shadow: 0 4px 30px rgba(37, 211, 102, 0.6);
  }
  100% {
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  }
}

/* ===========================
   UTILITY CLASSES
   =========================== */
.bg-dark {
  background-color: var(--dark-blue) !important;
}

.lead {
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--text-secondary);
}

.text-secondary {
  color: var(--text-secondary) !important;
}

.min-vh-100 {
  min-height: 100vh;
}

/* ===========================
   SERVICES PAGE STYLES
   =========================== */

/* Service Card Images - Full Cover */
.service-image-card {
  padding: 0 !important;
  overflow: hidden;
  border-radius: 16px;
  min-height: 500px;
  position: relative;
  width: 100%;
  height: 100%;
  background: var(--light-gray);
  /* Original card size: 50% width (col-lg-6), min-height: 500px */
}

.service-image-card img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.5s ease;
}

.service-image-card:hover img {
  transform: scale(1.05);
}

/* Responsive service image cards */
@media (max-width: 992px) {
  .service-image-card {
    min-height: 400px;
  }
}

@media (max-width: 768px) {
  .service-image-card {
    min-height: 350px;
  }
}

@media (max-width: 576px) {
  .service-image-card {
    min-height: 300px;
  }
}

/* Services Hero Section */
.services-hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 0;
  padding-bottom: 0;
  position: relative;
  overflow: hidden;
}

.hero-background-purple {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--primary-purple) 0%, var(--deep-purple) 100%);
  z-index: -1;
}

.hero-background-purple::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grid)"/></svg>');
  opacity: 0.3;
}

.hero-title-white {
  font-family: 'Bebas Neue', 'Oswald', 'Montserrat', sans-serif;
  font-size: clamp(42px, 7vw, 96px);
  font-weight: 400;
  background: linear-gradient(135deg, #FF6B35 0%, #FF8E53 20%, #FFA07A 40%, #FFB84D 60%, #FF6B9D 80%, #C44569 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  background-size: 200% auto;
  animation: gradient-shift 3s ease infinite;
  text-shadow: none;
  margin-bottom: 25px;
  letter-spacing: 2px;
  line-height: 1.1;
  text-transform: uppercase;
  filter: drop-shadow(0 4px 30px rgba(0, 0, 0, 0.4));
}

.hero-subtitle-white {
  font-family: 'Raleway', 'Inter', sans-serif;
  font-size: clamp(14px, 2vw, 20px);
  color: rgba(255, 255, 255, 0.95);
  font-weight: 600;
  line-height: 1.8;
  letter-spacing: 4px;
  text-transform: uppercase;
  text-shadow: 0 2px 15px rgba(0, 0, 0, 0.3);
}

.breadcrumb-nav {
  margin-bottom: 40px;
}

.services-hero .container {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  padding-top: 100px;
  padding-bottom: 100px;
}

.breadcrumb-nav .breadcrumb {
  background: transparent;
  padding: 0;
  margin: 0;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
}

.breadcrumb-nav .breadcrumb-item {
  display: inline-flex;
  align-items: center;
  font-size: 0.95rem;
}

.breadcrumb-nav .breadcrumb-item a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: all 0.3s ease;
  font-weight: 400;
  letter-spacing: 0.5px;
}

.breadcrumb-nav .breadcrumb-item a:hover {
  color: #FF6B35;
}

.breadcrumb-nav .breadcrumb-item.active {
  color: #FFFFFF;
  font-weight: 500;
  background: linear-gradient(135deg, #FF6B35 0%, #FFA07A 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.breadcrumb-nav .breadcrumb-item + .breadcrumb-item::before {
  content: '›';
  color: rgba(255, 107, 53, 0.6);
  padding: 0 14px;
  font-size: 1.1rem;
  font-weight: 300;
  display: inline-block;
  vertical-align: middle;
}

/* Process Section */
.process-section {
  padding: var(--spacing-3xl) 0;
  position: relative;
  overflow: hidden;
}

.process-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255, 107, 53, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  animation: pulse 8s ease-in-out infinite;
  pointer-events: none;
}

.process-section::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255, 160, 122, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  animation: pulse 10s ease-in-out infinite reverse;
  pointer-events: none;
}

.process-timeline-wrapper {
  position: relative;
  padding: var(--spacing-xl) 0;
  z-index: 1;
}

/* Process Connector Line */
.process-connector {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  z-index: 0;
  pointer-events: none;
}

.process-line {
  animation: dash 20s linear infinite;
}

@keyframes dash {
  to {
    stroke-dashoffset: -1000;
  }
}

/* Process Card Styles */
.process-card {
  min-height: 130px;
  position: relative;
  z-index: 2;
}

.process-card .service-card {
  height: 100%;
  min-height: 130px;
}

.process-card .service-card-front {
  background: rgba(26, 43, 79, 0.5);
}

.process-card .service-card-back {
  background: linear-gradient(135deg, rgba(26, 43, 79, 0.95) 0%, rgba(26, 43, 79, 0.85) 100%);
}

.process-card:hover {
  transform: translateY(-10px);
}

.process-card .service-icon {
  width: 90px;
  height: 90px;
  background: rgba(255, 107, 53, 0.15);
  border: 2px solid rgba(255, 107, 53, 0.3);
  margin-bottom: var(--spacing-md);
  transition: all 0.3s ease;
}

.process-card:hover .service-icon {
  background: rgba(255, 107, 53, 0.25);
  border-color: rgba(255, 107, 53, 0.5);
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 8px 24px rgba(255, 107, 53, 0.3);
}

.process-card .service-icon i {
  font-size: 2.5rem;
  color: var(--primary-orange);
}

.process-card .process-number {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #FF6B35 0%, #FFA07A 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--white);
  margin-top: var(--spacing-sm);
  box-shadow: 0 4px 15px rgba(255, 107, 53, 0.4);
  transition: all 0.3s ease;
}

.process-card:hover .process-number {
  transform: scale(1.15);
  box-shadow: 0 6px 20px rgba(255, 107, 53, 0.6);
}

.process-card .service-card-back .process-number {
  margin-bottom: var(--spacing-md);
}

.process-card h4 {
  font-size: 1.1rem;
  margin-bottom: var(--spacing-sm);
}

.process-card .service-card-back h4 {
  font-size: 1.2rem;
  margin-bottom: var(--spacing-sm);
}

.process-card .service-card-back p {
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--text-secondary);
}

/* Process Timeline (Legacy Support) */
.process-timeline {
  position: relative;
}

.process-step {
  position: relative;
  padding: 30px 20px;
}

.process-number {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, #FF6B35 0%, #FFA07A 100%);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 800;
  margin: 0 auto 20px;
  box-shadow: 0 8px 20px rgba(255, 107, 53, 0.3);
}

.process-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, #FF6B35 0%, #FFA07A 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  box-shadow: 0 8px 20px rgba(255, 107, 53, 0.3);
}

.process-icon i {
  font-size: 32px;
  color: var(--white);
}

.process-step h5 {
  color: var(--white);
  font-weight: 700;
  font-size: 18px;
}

.process-step p {
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 1.6;
}

/* FAQs Section */
.faqs-section {
  padding: var(--spacing-3xl) 0;
  position: relative;
  overflow: hidden;
}

.faqs-section::before {
  content: '';
  position: absolute;
  top: -30%;
  left: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255, 107, 53, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  animation: pulse 8s ease-in-out infinite;
  pointer-events: none;
}

.faqs-section::after {
  content: '';
  position: absolute;
  bottom: -30%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255, 160, 122, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  animation: pulse 10s ease-in-out infinite reverse;
  pointer-events: none;
}

.faq-container {
  position: relative;
  z-index: 1;
}

/* FAQ Item Styles */
.faq-item {
  background: rgba(26, 43, 79, 0.5);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  margin-bottom: var(--spacing-md);
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

.faq-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #FF6B35 0%, #FF8E53 20%, #FFA07A 40%, #FFB84D 60%, #FF6B9D 80%, #C44569 100%);
  background-size: 200% 100%;
  animation: gradient-shift 3s ease infinite;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.faq-item:hover {
  border-color: rgba(255, 107, 53, 0.3);
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(255, 107, 53, 0.2);
}

.faq-item:hover::before {
  opacity: 1;
}

.faq-item.active {
  border-color: rgba(255, 107, 53, 0.5);
  box-shadow: 0 15px 50px rgba(255, 107, 53, 0.3);
}

.faq-item.active::before {
  opacity: 1;
}

/* FAQ Question */
.faq-question {
  padding: var(--spacing-lg);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s ease;
  position: relative;
  z-index: 1;
}

.faq-question-content {
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
  flex: 1;
}

.faq-icon {
  font-size: 1.5rem;
  color: var(--primary-orange);
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.faq-question span {
  color: var(--white);
  font-weight: 600;
  font-size: 1.1rem;
  font-family: 'Montserrat', sans-serif;
  letter-spacing: 0.3px;
  transition: color 0.3s ease;
}

.faq-item:hover .faq-question span {
  color: var(--primary-orange);
}

.faq-item.active .faq-question span {
  color: var(--primary-orange);
}

.faq-arrow {
  font-size: 1.25rem;
  color: var(--text-secondary);
  transition: all 0.3s ease;
  flex-shrink: 0;
  margin-left: var(--spacing-sm);
}

.faq-item:hover .faq-arrow {
  color: var(--primary-orange);
  transform: translateY(2px);
}

.faq-item.active .faq-arrow {
  color: var(--primary-orange);
  transform: rotate(180deg);
}

.faq-item.active .faq-icon {
  transform: scale(1.1);
  color: #FF8E53;
}

/* FAQ Answer */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease;
  padding: 0 var(--spacing-lg);
  position: relative;
}

.faq-item.active .faq-answer {
  max-height: 500px;
  padding: 0 var(--spacing-lg) var(--spacing-lg);
}

.faq-answer p {
  color: var(--text-secondary);
  line-height: 1.8;
  font-size: 1rem;
  margin-bottom: 0;
  font-family: 'Raleway', sans-serif;
  padding-top: var(--spacing-sm);
  opacity: 0;
  transition: opacity 0.3s ease 0.1s;
}

.faq-item.active .faq-answer p {
  opacity: 1;
}

/* Legacy Accordion Support */
.accordion-item {
  border: none;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(124, 58, 237, 0.1);
  background: #FFFFFF;
}

.accordion-button {
  background: #FFFFFF;
  color: var(--dark-text);
  font-weight: 600;
  font-size: 18px;
  padding: 20px 25px;
  border: none;
  box-shadow: none;
}

.accordion-button:not(.collapsed) {
  background: linear-gradient(135deg, var(--primary-purple), var(--secondary-purple));
  color: #FFFFFF;
}

.accordion-button:focus {
  box-shadow: none;
  border: none;
}

.accordion-button::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23124'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
  transition: transform 0.3s ease;
}

.accordion-button:not(.collapsed)::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
  transform: rotate(180deg);
}

.accordion-body {
  padding: 20px 25px;
  color: var(--medium-gray);
  line-height: 1.8;
  font-size: 16px;
}

/* Final CTA Section */
.cta-section-final {
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.cta-section-final::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  animation: float 6s ease-in-out infinite;
}

.cta-section-final::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -5%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  animation: float 8s ease-in-out infinite reverse;
}

.btn-white {
  background: #FFFFFF;
  color: var(--primary-purple);
  border: none;
  border-radius: 12px;
  transition: all 0.3s ease;
}

.btn-white:hover {
  background: var(--light-purple);
  color: var(--primary-purple);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(255, 255, 255, 0.3);
}

.btn-outline-white {
  background: transparent;
  color: #FFFFFF;
  border: 2px solid #FFFFFF;
  border-radius: 12px;
  transition: all 0.3s ease;
}

.btn-outline-white:hover {
  background: #FFFFFF;
  color: var(--primary-purple);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(255, 255, 255, 0.3);
}

.contact-info a {
  transition: opacity 0.3s ease;
}

.contact-info a:hover {
  opacity: 0.8;
}

/* Section Labels and Headings */
.section-label {
  display: inline-block;
  color: var(--secondary-purple);
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 15px;
}

.section-heading-gradient {
  font-size: 48px;
  font-weight: 800;
  background: linear-gradient(135deg, var(--primary-purple), var(--secondary-purple));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 20px;
}

/* Responsive Styles for Services Page */
@media (max-width: 992px) {
  .hero-title-white {
    font-size: 48px;
  }
  
  .section-heading-gradient {
    font-size: 36px;
  }
  
  .process-step {
    margin-bottom: 40px;
  }
}

@media (max-width: 768px) {
  .services-hero,
  .about-hero {
    min-height: 100vh;
    padding-top: 0;
    padding-bottom: 0;
  }
  
  .services-hero .container,
  .about-hero .container {
    padding-top: 120px;
    padding-bottom: 80px;
  }
  
  .hero-title-white {
    font-size: clamp(32px, 8vw, 48px);
  }
  
  .hero-subtitle-white {
    font-size: clamp(16px, 4vw, 20px);
  }
  
  .section-heading-gradient {
    font-size: 32px;
  }
  
  .process-number,
  .process-icon {
    width: 60px;
    height: 60px;
  }
  
  .process-icon i {
    font-size: 24px;
  }
  
  .cta-buttons .btn {
    display: block;
    width: 100%;
    margin-bottom: 15px;
  }
}

/* ===========================
   ABOUT PAGE STYLES
   =========================== */

/* About Hero Section */
.about-hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 0;
  padding-bottom: 0;
  position: relative;
  overflow: hidden;
}

.about-hero .container {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  padding-top: 100px;
  padding-bottom: 100px;
}

/* Company Story Section */
.company-story-section {
  padding: 100px 0;
}

.story-image-container {
  position: relative;
}

.stat-card-inline {
  display: inline-block;
  padding: 20px 40px;
  background: linear-gradient(135deg, var(--light-purple), var(--extra-light-purple));
  border-radius: 16px;
  text-align: center;
}

.stat-value-inline {
  font-size: 48px;
  font-weight: 800;
  background: linear-gradient(135deg, var(--primary-purple), var(--secondary-purple));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-label-inline {
  font-size: 14px;
  color: var(--medium-gray);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 5px;
}

/* Value Cards Hover Effect */
.value-card:hover {
  background: linear-gradient(135deg, var(--primary-purple), var(--secondary-purple)) !important;
  transform: translateY(-10px);
  box-shadow: 0 20px 60px rgba(124, 58, 237, 0.3);
}

.value-card:hover h4,
.value-card:hover p {
  color: #FFFFFF !important;
}

.value-card:hover .value-icon {
  background: rgba(255, 255, 255, 0.2) !important;
}

.value-card:hover .value-icon i {
  color: #FFFFFF !important;
}

/* Team Cards Hover Effect */
.team-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 60px rgba(124, 58, 237, 0.2) !important;
}

.team-card:hover .team-avatar {
  transform: scale(1.1);
  border-color: var(--secondary-purple) !important;
}

.team-card .social-icons a:hover {
  transform: scale(1.1) rotate(360deg);
  background: rgba(255, 255, 255, 0.3) !important;
}

/* Responsive Styles for About Page */
@media (max-width: 992px) {
  .stat-value-inline {
    font-size: 36px;
  }
  
  .stat-value-about {
    font-size: 48px !important;
  }
  
  .services-hero .container,
  .about-hero .container {
    padding-top: 140px;
    padding-bottom: 100px;
  }
  
  .hero-title-white {
    font-size: clamp(40px, 7vw, 64px);
  }
  
  .hero-subtitle-white {
    font-size: clamp(18px, 3vw, 24px);
  }
}

@media (max-width: 768px) {
  .about-hero,
  .services-hero {
    min-height: 100vh;
    padding-top: 0;
    padding-bottom: 0;
  }
  
  .about-hero .container,
  .services-hero .container {
    padding-top: 120px;
    padding-bottom: 80px;
  }
  
  .stat-value-about {
    font-size: 40px !important;
  }
  
  .stat-icon-about {
    width: 60px !important;
    height: 60px !important;
  }
  
  .stat-icon-about i {
    font-size: 24px !important;
  }
  
  .hero-title-white {
    font-size: clamp(32px, 8vw, 48px);
  }
  
  .hero-subtitle-white {
    font-size: clamp(16px, 4vw, 20px);
  }
  
  .breadcrumb-nav {
    margin-bottom: 30px;
  }
}

@media (max-width: 576px) {
  .services-hero .container,
  .about-hero .container {
    padding-top: 100px;
    padding-bottom: 60px;
  }
}

/* ===========================
   CONTACT SECTION
   =========================== */
.contact-section {
  padding: var(--spacing-3xl) 0;
  background: linear-gradient(135deg, rgba(10, 17, 40, 0.95) 0%, rgba(26, 43, 79, 0.95) 100%);
  position: relative;
  overflow: hidden;
}

.contact-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255, 107, 53, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  animation: pulse 8s ease-in-out infinite;
  pointer-events: none;
}

.contact-section::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255, 160, 122, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  animation: pulse 10s ease-in-out infinite reverse;
  pointer-events: none;
}

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

.contact-section .glass-card {
  height: 100%;
}

.contact-section .glass-card h3 {
  color: var(--white);
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1.875rem;
  margin-bottom: 2rem;
  letter-spacing: 0.5px;
}

.map-section {
  background: rgba(10, 17, 40, 0.8);
  position: relative;
}

.map-section .glass-card {
  background: rgba(26, 43, 79, 0.5);
}

.map-section h3 {
  color: var(--white);
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1.875rem;
  margin-bottom: 2rem;
  letter-spacing: 0.5px;
}

@media (max-width: 768px) {
  .contact-section {
    padding: var(--spacing-2xl) 0;
  }
  
  .contact-section .glass-card h3,
  .map-section h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
  }
}


