/* ===== GLOBAL RESET ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary-color: #ff6b35;
  --secondary-color: #f7931e;
  --accent-color: #ffd700;
  --dark-bg: #0a0e27;
  --darker-bg: #060918;
  --card-bg: rgba(255, 255, 255, 0.05);
  --text-primary: #ffffff;
  --text-secondary: #b8c5d6;
  --gradient-1: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
  --gradient-2: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  --gradient-3: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
  --shadow-1: 0 10px 40px rgba(255, 107, 53, 0.3);
  --shadow-2: 0 20px 60px rgba(0, 0, 0, 0.4);
  --navbar-height: 90px;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  background: var(--dark-bg);
  color: var(--text-primary);
  overflow-x: hidden;
  line-height: 1.6;
}

#home, #services, #pricing, #contact, #process, #about {
  padding-top: 50px;
}

/* Scroll margin for smooth scrolling - REMOVED scroll-behavior to avoid conflict with JS */
/* section[id] {
  scroll-margin-top: 100px;
} */

::selection {
  color: var(--primary-color);
  background: var(--text-primary);
}

/* ===== CUSTOM CURSOR ===== */
.cursor {
  width: 20px;
  height: 20px;
  border: 2px solid var(--primary-color);
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  z-index: 9999;
  transition: all 0.1s ease;
  transform: translate(-50%, -50%);
  display: none;
}

.cursor-follower {
  width: 40px;
  height: 40px;
  background: rgba(255, 107, 53, 0.1);
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  z-index: 9998;
  transition: all 0.3s ease;
  transform: translate(-50%, -50%);
  display: none;
}

@media (min-width: 992px) {
  .cursor,
  .cursor-follower {
    display: block;
  }
}

/* ===== PRELOADER ===== */
.preloader {
  position: fixed;
  inset: 0;
  background: var(--dark-bg);
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.5s, visibility 0.5s;
}

.preloader.hidden {
  opacity: 0;
  visibility: hidden;
}

.loader {
  text-align: center;
}

.shield-icon {
  width: 80px;
  height: 80px;
  background: var(--gradient-1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
  color: #fff;
  margin: 0 auto 20px;
  animation: pulse 1.5s infinite;
}

.loader-text {
  font-size: 32px;
  font-weight: 800;
  background: var(--gradient-1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.1); }
}

/* ===== NAVBAR ===== */
.navbar {
  padding: 20px 0;
  background: transparent;
  backdrop-filter: blur(0px);
  transition: all 0.4s ease;
  z-index: 1000;
}

.navbar.scrolled {
  padding: 15px 0;
  background: rgba(10, 14, 39, 0.95);
  backdrop-filter: blur(20px);
  box-shadow: 0 5px 30px rgba(0, 0, 0, 0.3);
}

.navbar-brand {
  text-decoration: none;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 28px;
  font-weight: 800;
  color: #fff;
}

.brand-logo i {
  font-size: 32px;
  background: var(--gradient-1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.navbar-nav {
  gap: 10px;
}

.nav-link {
  color: var(--text-secondary) !important;
  font-weight: 500;
  font-size: 15px;
  padding: 10px 20px !important;
  transition: all 0.3s ease;
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 5px;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--gradient-1);
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

.nav-link:hover {
  color: var(--text-primary) !important;
}

.nav-link:hover::after {
  width: 30px;
}

.nav-buttons {
  display: flex;
  align-items: center;
  gap: 15px;
}

.nav-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text-secondary);
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
}

.nav-phone:hover {
  color: var(--primary-color);
}

.nav-cta {
  padding: 12px 28px;
  background: var(--gradient-1);
  color: #fff;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-1);
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 50px rgba(255, 107, 53, 0.5);
}

/* ===== MOBILE NAVBAR FIX ===== */
@media (max-width: 991px) {
  .navbar {
    padding: 15px 0;
  }
  
  .navbar.scrolled {
    padding: 12px 0;
  }
  
  .navbar-toggler {
    border: none !important;
    padding: 8px 12px;
    background: rgba(255, 107, 53, 0.2) !important;
    border-radius: 8px;
  }
  
  .navbar-toggler:focus {
    box-shadow: none !important;
    outline: none !important;
  }
  
  .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255, 107, 53, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
    background-size: 100% 100%;
  }
  
  .navbar-collapse {
    background: rgba(10, 14, 39, 0.98);
    backdrop-filter: blur(20px);
    border-radius: 15px;
    margin-top: 15px;
    padding: 20px;
    border: 1px solid rgba(255, 107, 53, 0.2);
  }
  
  .navbar-nav {
    gap: 10px;
    margin-top: 15px;
  }
  
  .nav-link {
    padding: 12px 20px !important;
    border-radius: 10px;
    transition: all 0.3s ease;
  }
  
  .nav-link:hover {
    background: rgba(255, 107, 53, 0.1);
  }
  
  .nav-buttons {
    flex-direction: column;
    gap: 15px;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }
  
  .nav-phone {
    justify-content: center;
    padding: 12px;
    background: rgba(255, 107, 53, 0.1);
    border-radius: 10px;
    border: 1px solid rgba(255, 107, 53, 0.3);
  }
  
  .nav-cta {
    text-align: center;
    width: 100%;
  }
}

/* ===== HERO SECTION ===== */
.hero {
  min-height: 100vh;
  position: relative;
  overflow: hidden;
  padding: 140px 0 80px;
  display: flex;
  align-items: center;
}

.hero-particles {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.hero-gradient-bg {
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(circle at 20% 50%, rgba(255, 107, 53, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(102, 126, 234, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 40% 20%, rgba(240, 147, 251, 0.1) 0%, transparent 50%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 10;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 107, 53, 0.15);
  border: 1px solid rgba(255, 107, 53, 0.3);
  backdrop-filter: blur(10px);
  padding: 10px 20px;
  border-radius: 50px;
  margin-bottom: 30px;
  animation: slideInDown 0.8s ease-out;
}

.tag-dot {
  width: 8px;
  height: 8px;
  background: var(--primary-color);
  border-radius: 50%;
  animation: blink 1.5s infinite;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

.hero-tag span {
  color: var(--text-primary);
  font-size: 14px;
  font-weight: 500;
}

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: 72px;
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 30px;
  animation: fadeInUp 1s ease-out 0.2s both;
}

.highlight-text {
  display: inline-block;
  position: relative;
}

.word {
  display: inline-block;
  background: var(--gradient-1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: wordReveal 0.8s ease-out 0.4s both;
}

@keyframes wordReveal {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-description {
  font-size: 18px;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 40px;
  max-width: 600px;
  animation: fadeInUp 1s ease-out 0.6s both;
}

.hero-features {
  display: flex;
  gap: 30px;
  margin-bottom: 40px;
  animation: fadeInUp 1s ease-out 0.8s both;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 15px;
}

.feature-icon {
  width: 50px;
  height: 50px;
  background: rgba(255, 107, 53, 0.1);
  border: 1px solid rgba(255, 107, 53, 0.3);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--primary-color);
}

.feature-text h6 {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 3px;
}

.feature-text p {
  font-size: 13px;
  color: var(--text-secondary);
  margin: 0;
}

.hero-cta {
  display: flex;
  gap: 20px;
  margin-bottom: 50px;
  animation: fadeInUp 1s ease-out 1s both;
}

.btn-primary-custom {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 40px;
  background: var(--gradient-1);
  color: #fff;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.4s ease;
  box-shadow: var(--shadow-1);
  position: relative;
  overflow: hidden;
}

.btn-primary-custom::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.6s ease;
}

.btn-primary-custom:hover::before {
  left: 100%;
}

.btn-primary-custom:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 60px rgba(255, 107, 53, 0.5);
}

.btn-primary-custom.light {
  background: #fff;
  color: var(--primary-color);
}

.btn-secondary-custom {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 40px;
  background: transparent;
  color: #fff;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  font-size: 16px;
  border: 2px solid rgba(255, 255, 255, 0.2);
  transition: all 0.4s ease;
}

.btn-secondary-custom:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--primary-color);
  transform: translateY(-3px);
}

.btn-secondary-custom.light {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.3);
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: 20px;
  animation: fadeInUp 1s ease-out 1.2s both;
}

.trust-avatars {
  display: flex;
}

.trust-avatars img {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  border: 3px solid var(--dark-bg);
  margin-left: -10px;
  object-fit: cover;
}

.trust-avatars img:first-child {
  margin-left: 0;
}

.avatar-count {
  width: 45px;
  height: 45px;
  background: var(--gradient-1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  margin-left: -10px;
  border: 3px solid var(--dark-bg);
}

.trust-text {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.trust-rating {
  display: flex;
  gap: 3px;
  color: var(--accent-color);
  font-size: 14px;
}

.trust-text p {
  font-size: 13px;
  color: var(--text-secondary);
  margin: 0;
}

/* Hero Visual */
.hero-visual {
  position: relative;
  height: 650px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
}

.hero-main-card {
  width: 420px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 30px;
  padding: 35px;
  position: relative;
  box-shadow: var(--shadow-2);
  animation: float 6s ease-in-out infinite;
}

.card-glow {
  position: absolute;
  inset: -2px;
  background: var(--gradient-1);
  border-radius: 30px;
  opacity: 0.3;
  filter: blur(20px);
  z-index: -1;
}

.card-header-section {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
}

.card-status {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--text-secondary);
}

.status-dot {
  width: 8px;
  height: 8px;
  background: #10b981;
  border-radius: 50%;
  animation: blink 1.5s infinite;
}

.card-badge {
  width: 40px;
  height: 40px;
  background: var(--gradient-1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: #fff;
}

.card-main-content {
  margin-bottom: 30px;
}

.coverage-amount {
  display: flex;
  align-items: baseline;
  gap: 5px;
  margin-bottom: 10px;
}

.currency {
  font-size: 28px;
  font-weight: 700;
  color: var(--primary-color);
}

.amount {
  font-size: 48px;
  font-weight: 800;
  background: var(--gradient-1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.coverage-label {
  font-size: 14px;
  color: var(--text-secondary);
  margin-bottom: 30px;
}

.coverage-breakdown {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.breakdown-item {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 15px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 15px;
  transition: all 0.3s ease;
}

.breakdown-item:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateX(5px);
}

.breakdown-icon {
  width: 45px;
  height: 45px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: #fff;
}

.breakdown-icon.health {
  background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.breakdown-icon.life {
  background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

.breakdown-icon.vehicle {
  background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
}

.breakdown-info {
  flex: 1;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.breakdown-info span {
  font-size: 14px;
  color: var(--text-secondary);
}

.breakdown-info strong {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-primary);
}

.card-footer-section {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 25px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-info {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.footer-info span {
  font-size: 13px;
  color: var(--text-secondary);
}

.footer-info strong {
  font-size: 20px;
  font-weight: 700;
  color: var(--primary-color);
}

.upgrade-btn {
  width: 50px;
  height: 50px;
  background: var(--gradient-1);
  border: none;
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: #fff;
  cursor: pointer;
  transition: all 0.3s ease;
}

.upgrade-btn:hover {
  transform: translateY(-3px) rotate(90deg);
  box-shadow: var(--shadow-1);
}



/* Floating Elements */
.floating-element {
  position: absolute;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 20px;
  padding: 18px 22px;
  display: flex;
  align-items: center;
  gap: 15px;
  box-shadow: var(--shadow-2);
  animation: float 5s ease-in-out infinite;
}

.element-icon {
  width: 45px;
  height: 45px;
  background: var(--gradient-1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: #fff;
}

.element-icon.success {
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
}

.element-icon.premium {
  background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
}

.element-icon.support {
  background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
}

.element-content {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.element-content span {
  font-size: 12px;
  color: var(--text-secondary);
}

.element-content strong {
  font-size: 15px;
  font-weight: 700;
  color: var(--text-primary);
}

.element-1 {
  top: 80px;
  left: -50px;
  animation-delay: 0s;
}

.element-2 {
  top: 200px;
  right: -60px;
  animation-delay: 1s;
}

.element-3 {
  bottom: 200px;
  left: -70px;
  animation-delay: 2s;
}

.element-4 {
  bottom: 80px;
  right: -50px;
  animation-delay: 1.5s;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-20px); }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Scroll Indicator */
.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  z-index: 10;
  animation: fadeInUp 1s ease-out 1.5s both;
}

.mouse {
  width: 30px;
  height: 50px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 20px;
  position: relative;
  margin: 0 auto 10px;
}

.wheel {
  width: 4px;
  height: 10px;
  background: var(--primary-color);
  border-radius: 2px;
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  animation: scroll 2s infinite;
}

@keyframes scroll {
  0% { top: 10px; opacity: 1; }
  100% { top: 30px; opacity: 0; }
}

.scroll-indicator p {
  font-size: 12px;
  color: var(--text-secondary);
  margin: 0;
}

/* ===== PARTNERS SECTION ===== */
.partners-section {
  padding: 80px 0;
  background: var(--darker-bg);
  overflow: hidden;
}

/* ===== PARTNERS SLIDER ===== */
.partnerSwiper {
  overflow: hidden;
  padding: 20px 0;
}

.partnerSwiper .swiper-wrapper {
  transition-timing-function: linear !important;
}

.partner-item {
  text-align: center;
  padding: 15px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  margin: 10px;
  transition: all 0.3s ease;
}

.partner-item:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 107, 53, 0.3);
  transform: translateY(-5px);
}

.partner-logo {
  width: 100%;
  max-width: 140px;
  height: 80px;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.7;
  transition: all 0.3s ease;
}

.partner-item span {
  display: block;
  margin-top: 10px;
  color: var(--text-secondary);
  font-size: 14px;
  font-weight: 500;
  opacity: 0;
  transform: translateY(8px);
  transition: all 0.3s ease;
}

.partner-item:hover .partner-logo {
  filter: grayscale(0);
  opacity: 1;
  transform: translateY(-3px);
}

.partner-item:hover span {
  opacity: 1;
  transform: translateY(0);
}

/* Badge Orange */
.badge-orange {
  background-color: var(--primary-color);
  color: #fff;
  font-weight: 600;
  border-radius: 50px;
  display: inline-block;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ===== SECTION COMMON ===== */
section {
  padding: 120px 0;
  position: relative;
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 80px;
}

.section-tag {
  display: inline-block;
  padding: 8px 20px;
  background: rgba(255, 107, 53, 0.1);
  border: 1px solid rgba(255, 107, 53, 0.3);
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  color: var(--primary-color);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: 56px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 20px;
}

.gradient-text {
  background: var(--gradient-1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-description {
  font-size: 18px;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ===== SERVICES SECTION ===== */
.services-section {
  background: var(--darker-bg);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
}

.service-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 25px;
  padding: 40px;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--gradient-1);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-card:hover {
  background: rgba(255, 255, 255, 0.06);
  transform: translateY(-10px);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
}

.service-card.featured {
  background: rgba(255, 107, 53, 0.08);
  border-color: rgba(255, 107, 53, 0.3);
}

.featured-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  padding: 6px 16px;
  background: var(--gradient-1);
  border-radius: 50px;
  font-size: 12px;
  font-weight: 600;
  color: #fff;
}

.service-icon-wrapper {
  position: relative;
  margin-bottom: 25px;
}

.service-icon {
  width: 80px;
  height: 80px;
  background: var(--gradient-1);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  color: #fff;
  position: relative;
  z-index: 2;
  transition: all 0.4s ease;
}

.service-glow {
  position: absolute;
  inset: 0;
  background: var(--gradient-1);
  border-radius: 20px;
  filter: blur(20px);
  opacity: 0.5;
  transition: all 0.4s ease;
}

.service-card:hover .service-glow {
  opacity: 0.8;
  filter: blur(30px);
}

.service-card:hover .service-icon {
  transform: scale(1.1) rotate(5deg);
}

.service-card h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 15px;
}

.service-card p {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 20px;
}

.service-features {
  list-style: none;
  margin-bottom: 25px;
}

.service-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--text-secondary);
  margin-bottom: 10px;
}

.service-features li i {
  color: var(--primary-color);
  font-size: 12px;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  transition: all 0.3s ease;
}

.service-link:hover {
  gap: 15px;
}

/* ===== PROCESS SECTION ===== */
.process-section {
  background: var(--dark-bg);
  position: relative;
  overflow: hidden;
}

.process-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: 100%;
  background: linear-gradient(to bottom, transparent, var(--primary-color), transparent);
  opacity: 0.3;
}

.process-steps-vertical {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.process-step-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 25px;
  padding: 50px 40px;
  margin-bottom: 40px;
  text-align: center;
  position: relative;
  transition: all 0.4s ease;
  backdrop-filter: blur(10px);
}

.process-step-card:last-child {
  margin-bottom: 0;
}

.process-step-card:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 107, 53, 0.3);
  transform: translateY(-5px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.step-icon-wrapper {
  position: relative;
  display: inline-block;
  margin-bottom: 30px;
}

.step-icon-box {
  width: 90px;
  height: 90px;
  background: var(--gradient-1);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  color: #fff;
  box-shadow: 0 10px 40px rgba(255, 107, 53, 0.4);
  transition: all 0.3s ease;
}

.process-step-card:hover .step-icon-box {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 15px 50px rgba(255, 107, 53, 0.6);
}

.step-number {
  position: absolute;
  bottom: -10px;
  right: -10px;
  width: 40px;
  height: 40px;
  background: var(--dark-bg);
  border: 3px solid var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 800;
  color: var(--primary-color);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.step-content h3 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--text-primary);
}

.step-content p {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 500px;
  margin: 0 auto;
}

/* ===== STATS SECTION ===== */
.stats-section {
  background: var(--darker-bg);
  padding: 100px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.stat-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 25px;
  padding: 40px;
  text-align: center;
  transition: all 0.4s ease;
}

.stat-card:hover {
  background: rgba(255, 255, 255, 0.06);
  transform: translateY(-10px);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
}

.stat-icon {
  width: 80px;
  height: 80px;
  background: var(--gradient-1);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  color: #fff;
  margin: 0 auto 25px;
}

.stat-number {
  font-size: 56px;
  font-weight: 800;
  background: var(--gradient-1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 10px;
}

.stat-label {
  font-size: 16px;
  color: var(--text-secondary);
  font-weight: 500;
}

/* ===== ABOUT SECTION ===== */
.about-section {
  background: var(--dark-bg);
  padding: 120px 0;
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-image {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.about-image img {
  width: 100%;
  height: auto;
  display: block;
}

.about-text h2 {
  font-family: 'Playfair Display', serif;
  font-size: 42px;
  font-weight: 800;
  margin-bottom: 25px;
  line-height: 1.2;
}

.about-text p {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 20px;
}

.about-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 30px;
}

.about-stat {
  background: rgba(255, 107, 53, 0.1);
  border: 1px solid rgba(255, 107, 53, 0.2);
  border-radius: 15px;
  padding: 20px;
  text-align: center;
}

.about-stat h3 {
  font-size: 32px;
  font-weight: 800;
  color: var(--primary-color);
  margin-bottom: 5px;
}

.about-stat p {
  font-size: 14px;
  color: var(--text-secondary);
  margin: 0;
}

/* ===== PRICING SECTION ===== */
.pricing-section {
  background: var(--dark-bg);
}

.pricing-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-bottom: 60px;
}

.pricing-toggle span {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-secondary);
}

.toggle-switch {
  position: relative;
  width: 60px;
  height: 30px;
}

.toggle-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.toggle-slider {
  position: absolute;
  cursor: pointer;
  inset: 0;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 30px;
  transition: 0.4s;
}

.toggle-slider::before {
  content: '';
  position: absolute;
  height: 24px;
  width: 24px;
  left: 3px;
  bottom: 3px;
  background: #fff;
  border-radius: 50%;
  transition: 0.4s;
}

input:checked + .toggle-slider {
  background: var(--gradient-1);
}

input:checked + .toggle-slider::before {
  transform: translateX(30px);
}

.save-badge {
  padding: 4px 12px;
  background: rgba(16, 185, 129, 0.2);
  border: 1px solid rgba(16, 185, 129, 0.4);
  border-radius: 50px;
  font-size: 12px;
  font-weight: 600;
  color: #10b981;
  margin-left: 10px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  max-width: 1100px;
  margin: 0 auto;
}

.pricing-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 25px;
  padding: 40px;
  position: relative;
  transition: all 0.4s ease;
}

.pricing-card:hover {
  background: rgba(255, 255, 255, 0.06);
  transform: translateY(-10px);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
}

.pricing-card.featured {
  background: rgba(255, 107, 53, 0.08);
  border-color: rgba(255, 107, 53, 0.3);
  transform: scale(1.05);
}

.popular-badge {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  padding: 8px 24px;
  background: var(--gradient-1);
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  color: #fff;
  box-shadow: var(--shadow-1);
}

.pricing-header {
  text-align: center;
  margin-bottom: 30px;
}

.pricing-header h3 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 10px;
}

.pricing-header p {
  font-size: 15px;
  color: var(--text-secondary);
}

.pricing-price {
  text-align: center;
  margin-bottom: 35px;
  padding-bottom: 35px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.pricing-price .currency {
  font-size: 28px;
  font-weight: 700;
  color: var(--primary-color);
  vertical-align: top;
}

.pricing-price .amount {
  font-size: 56px;
  font-weight: 800;
  background: var(--gradient-1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.pricing-price .period {
  font-size: 16px;
  color: var(--text-secondary);
}

.pricing-features {
  list-style: none;
  margin-bottom: 35px;
}

.pricing-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  color: var(--text-secondary);
  margin-bottom: 15px;
}

.pricing-features li i {
  color: var(--primary-color);
  font-size: 14px;
}

.pricing-features li.disabled {
  opacity: 0.4;
}

.pricing-features li.disabled i {
  color: #ef4444;
}

.pricing-btn {
  display: block;
  width: 100%;
  padding: 16px;
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 50px;
  color: #fff;
  text-decoration: none;
  text-align: center;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.4s ease;
}

.pricing-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--primary-color);
  transform: translateY(-3px);
}

.pricing-btn.primary {
  background: var(--gradient-1);
  border-color: transparent;
  box-shadow: var(--shadow-1);
}

.pricing-btn.primary:hover {
  box-shadow: 0 20px 60px rgba(255, 107, 53, 0.5);
}

/* ===== TESTIMONIALS SECTION ===== */
.testimonials-section {
  background: var(--darker-bg);
}

.testimonials-slider {
  max-width: 1200px;
  margin: 0 auto;
}

.testimonial-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 25px;
  padding: 40px;
  position: relative;
  transition: all 0.4s ease;
}

.testimonial-card:hover {
  background: rgba(255, 255, 255, 0.06);
  transform: translateY(-5px);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
}

.quote-icon {
  position: absolute;
  top: 30px;
  right: 30px;
  font-size: 40px;
  color: var(--primary-color);
  opacity: 0.2;
}

.testimonial-rating {
  display: flex;
  gap: 5px;
  color: var(--accent-color);
  margin-bottom: 20px;
}

.testimonial-text {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 30px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 15px;
}

.testimonial-author img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--primary-color);
}

.author-info h5 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 5px;
}

.author-info p {
  font-size: 14px;
  color: var(--text-secondary);
  margin: 0;
}

.swiper-pagination {
  position: relative;
  margin-top: 40px;
}

.swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background: rgba(255, 255, 255, 0.3);
  opacity: 1;
  transition: all 0.3s ease;
}

.swiper-pagination-bullet-active {
  background: var(--primary-color);
  width: 40px;
  border-radius: 10px;
}

/* ===== FAQ SECTION ===== */
.faq-section {
  background: var(--dark-bg);
}

.faq-container {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.faq-item {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item:hover {
  background: rgba(255, 255, 255, 0.06);
}

.faq-item.active {
  background: rgba(255, 107, 53, 0.08);
  border-color: rgba(255, 107, 53, 0.3);
}

.faq-question {
  padding: 25px 30px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s ease;
}

.faq-question h5 {
  font-size: 18px;
  font-weight: 600;
  margin: 0;
}

.faq-question i {
  font-size: 14px;
  color: var(--primary-color);
  transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: all 0.4s ease;
}

.faq-item.active .faq-answer {
  max-height: 500px;
  padding: 0 30px 25px;
}

.faq-answer p {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin: 0;
}

/* ===== CTA SECTION ===== */
.cta-section {
  padding: 100px 0;
  background: var(--darker-bg);
}

.cta-content {
  background: var(--gradient-1);
  border-radius: 30px;
  padding: 80px 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-content::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 500px;
  height: 500px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  animation: float 10s infinite;
}

.cta-content::after {
  content: '';
  position: absolute;
  bottom: -50%;
  left: -20%;
  width: 400px;
  height: 400px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  animation: float 8s infinite reverse;
}

.cta-icon {
  width: 100px;
  height: 100px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  color: #fff;
  margin: 0 auto 30px;
  position: relative;
  z-index: 2;
}

.cta-content h2 {
  font-family: 'Playfair Display', serif;
  font-size: 48px;
  font-weight: 800;
  margin-bottom: 20px;
  position: relative;
  z-index: 2;
}

.cta-content > p {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 2;
}

.cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-bottom: 50px;
  position: relative;
  z-index: 2;
}

.cta-timer {
  position: relative;
  z-index: 2;
}

.cta-timer > p {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 20px;
}

.timer {
  display: flex;
  gap: 20px;
  justify-content: center;
}

.time-box {
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  border-radius: 15px;
  padding: 20px 30px;
  min-width: 100px;
}

.time-box span:first-child {
  display: block;
  font-size: 36px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 5px;
}

.time-label {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.8);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ===== CONTACT SECTION ===== */
.contact-section {
  background: var(--dark-bg);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 60px;
  max-width: 1200px;
  margin: 0 auto;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.info-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 25px;
  display: flex;
  align-items: center;
  gap: 20px;
  transition: all 0.3s ease;
}

.info-card:hover {
  background: rgba(255, 255, 255, 0.06);
  transform: translateX(5px);
}

.info-icon {
  width: 60px;
  height: 60px;
  background: var(--gradient-1);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: #fff;
  flex-shrink: 0;
}

.info-content h5 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 5px;
}

.info-content p {
  font-size: 15px;
  color: var(--text-secondary);
  margin: 0;
}

.social-links {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.social-links a {
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  font-size: 20px;
  transition: all 0.3s ease;
}

.social-links a:hover {
  background: var(--gradient-1);
  border-color: transparent;
  color: #fff;
  transform: translateY(-5px);
}

.contact-form-wrapper {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 25px;
  padding: 50px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 25px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.form-group label {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-primary);
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 16px 20px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  color: var(--text-primary);
  font-size: 15px;
  font-family: 'Inter', sans-serif;
  transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-secondary);
}

.form-group select {
  cursor: pointer;
}

.form-group select option {
  background: var(--dark-bg);
  color: var(--text-primary);
}

.form-group textarea {
  min-height: 120px;
  resize: vertical;
}

.submit-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 18px 40px;
  background: var(--gradient-1);
  border: none;
  border-radius: 50px;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.4s ease;
  box-shadow: var(--shadow-1);
}

.submit-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 60px rgba(255, 107, 53, 0.5);
}

/* ===== FOOTER ===== */
.footer {
  background: var(--darker-bg);
  padding: 80px 0 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-main {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 60px;
  margin-bottom: 60px;
}

.footer-brand .brand-logo {
  margin-bottom: 20px;
}

.footer-brand p {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 25px;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social a {
  width: 45px;
  height: 45px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  font-size: 18px;
  transition: all 0.3s ease;
}

.footer-social a:hover {
  background: var(--gradient-1);
  border-color: transparent;
  color: #fff;
  transform: translateY(-5px);
}

.footer-links-section h5 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 25px;
  color: var(--text-primary);
}

.footer-links-section ul {
  list-style: none;
}

.footer-links-section ul li {
  margin-bottom: 12px;
}

.footer-links-section ul li a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 15px;
  transition: all 0.3s ease;
  display: inline-block;
}

.footer-links-section ul li a:hover {
  color: var(--primary-color);
  transform: translateX(5px);
}

.contact-list li {
  display: flex;
  align-items: center;
  gap: 12px;
}

.contact-list li i {
  color: var(--primary-color);
  font-size: 16px;
}

.contact-list li a,
.contact-list li span {
  color: var(--text-secondary);
  font-size: 15px;
}

.footer-bottom {
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom p {
  font-size: 14px;
  color: var(--text-secondary);
  margin: 0;
}

.footer-bottom-links {
  display: flex;
  gap: 30px;
}

.footer-bottom-links a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 14px;
  transition: all 0.3s ease;
}

.footer-bottom-links a:hover {
  color: var(--primary-color);
}
.footer-links-section ul:not(.contact-list) li a {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-links-section ul:not(.contact-list) li a i {
  color: var(--primary-color);
  font-size: 14px;
  transition: 0.3s ease;
}

.footer-links-section ul:not(.contact-list) li:hover a i {
  transform: translateX(4px);
}

/* ===== WHATSAPP & SCROLL TOP ===== */
.whatsapp-btn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 65px;
  height: 65px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  color: #fff;
  z-index: 999;
  box-shadow: 0 10px 40px rgba(37, 211, 102, 0.4);
  transition: all 0.3s ease;
  animation: pulse 2s infinite;
}

.whatsapp-btn:hover {
  transform: scale(1.1);
  background: #128c7e;
}

.scroll-top-btn {
  position: fixed;
  bottom: 110px;
  right: 30px;
  width: 55px;
  height: 55px;
  background: var(--gradient-1);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: #fff;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
  z-index: 998;
  box-shadow: var(--shadow-1);
}

.scroll-top-btn.show {
  opacity: 1;
  visibility: visible;
}

.scroll-top-btn:hover {
  transform: translateY(-5px);
}

/* ===== COMPREHENSIVE RESPONSIVE FIXES ===== */

/* Large Devices (Tablets - 992px) */
@media (max-width: 992px) {
  :root {
    --navbar-height: 75px;
  }
  
  /* Scroll margin fixes for tablet */
  section[id] {
    scroll-margin-top: 90px;
  }
  
  .hero {
    padding: 100px 0 60px;
    min-height: auto;
  }
  
  .hero-content {
    text-align: center;
    margin-top: 70px;
  }
  
  .hero-tag {
    margin: 0 auto 25px;
    max-width: fit-content;
  }
  
  .hero-title {
    font-size: 42px;
    line-height: 1.2;
    margin-bottom: 20px;
  }
  
  .hero-description {
    margin: 0 auto 30px;
    font-size: 16px;
  }
  
  .hero-features {
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 30px;
  }
  
  .feature-item {
    flex: 0 0 calc(50% - 10px);
    max-width: calc(50% - 10px);
    background: rgba(255, 107, 53, 0.05);
    border: 1px solid rgba(255, 107, 53, 0.2);
    border-radius: 12px;
    padding: 15px;
  }
  
  .feature-icon {
    width: 40px;
    height: 40px;
    font-size: 16px;
  }
  
  .feature-text h6 {
    font-size: 13px;
  }
  
  .feature-text p {
    font-size: 11px;
  }
  
  .hero-cta {
    flex-direction: column;
    gap: 15px;
    margin-bottom: 40px;
  }
  
  .btn-primary-custom,
  .btn-secondary-custom {
    width: 100%;
    justify-content: center;
    padding: 15px 30px;
  }
  
  .hero-trust {
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
  }
  
  .trust-avatars {
    order: 2;
  }
  
  .trust-text {
    order: 1;
    width: 100%;
    text-align: center;
    margin-bottom: 10px;
  }
  
  .hero-visual {
    height: auto;
    margin-top: 30px;
  }
  
  .hero-main-card {
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
    padding: 25px;
  }
  
  .floating-element {
    display: none;
  }
  
  .coverage-amount {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
  }
  
  .currency {
    font-size: 24px;
  }
  
  .amount {
    font-size: 36px;
  }
  
  .breakdown-item {
    padding: 12px;
  }
  
  .breakdown-icon {
    width: 40px;
    height: 40px;
    font-size: 16px;
  }
  
  .breakdown-info span {
    font-size: 13px;
  }
  
  .breakdown-info strong {
    font-size: 14px;
  }
  
  .scroll-indicator {
    bottom: 20px;
  }
  
  .section-title {
    font-size: 40px;
  }
  
  .services-grid {
    grid-template-columns: 1fr;
  }
  
  .process-section::before {
    display: none;
  }
  
  .process-steps-vertical {
    max-width: 100%;
    padding: 0 15px;
  }
  
  .process-step-card {
    padding: 35px 25px;
    margin-bottom: 30px;
  }
  
  .step-icon-box {
    width: 80px;
    height: 80px;
    font-size: 32px;
    margin: 0 auto;
  }
  
  .step-number {
    width: 35px;
    height: 35px;
    font-size: 14px;
    bottom: -5px;
    right: -5px;
  }
  
  .step-content h3 {
    font-size: 24px;
    margin-bottom: 15px;
    text-align: center;
  }
  
  .step-content p {
    font-size: 15px;
    line-height: 1.6;
    text-align: center;
    margin: 0 auto;
  }
  
  .pricing-grid {
    grid-template-columns: 1fr;
  }
  
  .pricing-card.featured {
    transform: scale(1);
  }
  
  .contact-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-main {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
  
  .cta-content {
    padding: 60px 40px;
  }
  
  .cta-content h2 {
    font-size: 36px;
  }
  
  .timer {
    flex-wrap: wrap;
  }
  
  /* About Section */
  .about-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .about-text h2 {
    font-size: 36px;
  }
  
  .about-stats {
    grid-template-columns: 1fr 1fr;
  }
  
  /* FAQ Section Mobile Center */
  .faq-section .row {
    flex-direction: column;
  }
  
  .faq-section .col-lg-5,
  .faq-section .col-lg-7 {
    width: 100%;
    max-width: 100%;
  }
  
  .faq-section .col-lg-5 {
    text-align: center;
    margin-bottom: 40px;
  }
  
  .faq-section .section-tag {
    display: inline-block;
  }
  
  .faq-section .section-title {
    text-align: center;
  }
  
  .faq-section .section-description {
    text-align: center;
    margin: 0 auto 25px;
  }
  
  .faq-section .btn-primary-custom {
    margin: 0 auto;
    display: inline-flex;
  }
  
  .faq-container {
    max-width: 100%;
  }
}

/* Medium Devices (Tablets - 768px) */
@media (max-width: 768px) {
  :root {
    --navbar-height: 70px;
  }
  
  /* Scroll margin fixes for mobile */
  section[id] {
    scroll-margin-top: 85px;
  }
  
  .hero {
    padding: 90px 0 50px;
  }
  
  .hero-title {
    font-size: 36px;
  }
  
  .section-title {
    font-size: 32px;
  }
  
  .stats-grid {
    grid-template-columns: 1fr 1fr;
  }
  
  .form-row {
    grid-template-columns: 1fr;
  }
  
  .contact-form-wrapper {
    padding: 30px;
  }
  
  .footer-main {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }
  
  .footer-bottom-links {
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
  }
  
  .cta-buttons {
    flex-direction: column;
  }
  
  .time-box {
    min-width: 80px;
    padding: 15px 20px;
  }
  
  .time-box span:first-child {
    font-size: 28px;
  }
  
  .partner-logo {
    height: 60px;
  }
  
  .partner-item {
    padding: 12px;
    margin: 8px;
  }
  
  .process-step-card {
    padding: 30px 20px;
  }
  
  .about-text h2 {
    font-size: 32px;
  }
  
  .about-stats {
    grid-template-columns: 1fr 1fr;
  }
}

/* Small Devices (Mobile - 576px) */
@media (max-width: 576px) {
  :root {
    --navbar-height: 65px;
  }
  
  /* Scroll margin fixes for small mobile */
  section[id] {
    scroll-margin-top: 80px;
  }
  
  .hero {
    padding: 80px 0 40px;
  }
  
  .hero-title {
    font-size: 32px;
  }
  
  .section-title {
    font-size: 28px;
  }
  
  .hero-features {
    flex-direction: column;
    gap: 20px;
  }
  
  .feature-item {
    flex: 0 0 100%;
    max-width: 100%;
  }
  
  .hero-cta {
    flex-direction: column;
  }
  
  .btn-primary-custom,
  .btn-secondary-custom {
    width: 100%;
    justify-content: center;
  }
  
  .stats-grid {
    grid-template-columns: 1fr;
  }
  
  .service-card,
  .step-content,
  .stat-card,
  .pricing-card,
  .testimonial-card {
    padding: 30px;
  }
  
  .cta-content {
    padding: 50px 30px;
  }
  
  .cta-content h2 {
    font-size: 28px;
  }
  
  .process-step-card {
    padding: 30px 20px;
  }
  
  .step-icon-box {
    width: 70px;
    height: 70px;
    font-size: 28px;
  }
  
  .step-content h3 {
    font-size: 22px;
  }
  
  .step-content p {
    font-size: 14px;
  }
  
  .trust-avatars img {
    width: 35px;
    height: 35px;
  }
  
  .avatar-count {
    width: 35px;
    height: 35px;
    font-size: 12px;
  }
  
  section {
    padding: 80px 0;
  }
  
  .container {
    padding: 0 20px;
  }
  
  .about-text h2 {
    font-size: 28px;
  }
  
  .about-stats {
    grid-template-columns: 1fr;
  }
}

/* Extra Small Devices */
@media (max-width: 400px) {
  /* Scroll margin fixes for extra small mobile */
  section[id] {
    scroll-margin-top: 75px;
  }
  
  .hero-title {
    font-size: 28px;
  }
  
  .section-title {
    font-size: 24px;
  }
  
  .time-box {
    min-width: 65px;
    padding: 12px 15px;
  }
  
  .time-box span:first-child {
    font-size: 24px;
  }
  
  .time-label {
    font-size: 11px;
  }
}