/* =========================================
   Tour Chain - Modern Professional Stylesheet
   Responsive Design for All Devices
   ========================================= */

/* =========================================
   1. CSS Variables & Root Settings
   ========================================= */
:root {
  /* Primary Colors */
  --primary: #667eea;
  --primary-dark: #5a67d8;
  --secondary: #764ba2;
  --accent: #f093fb;
  
  /* Gradients */
  --gradient-primary: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  --gradient-secondary: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
  --gradient-dark: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
  --gradient-hero: linear-gradient(135deg, #0f0c29 0%, #302b63 50%, #24243e 100%);
  
  /* Neutral Colors */
  --white: #ffffff;
  --light: #f8fafc;
  --gray-100: #f1f5f9;
  --gray-200: #e2e8f0;
  --gray-300: #cbd5e1;
  --gray-400: #94a3b8;
  --gray-500: #64748b;
  --gray-600: #475569;
  --gray-700: #334155;
  --gray-800: #1e293b;
  --gray-900: #0f172a;
  --dark: #1a1a2e;
  
  /* Status Colors */
  --success: #10b981;
  --warning: #f59e0b;
  --danger: #ef4444;
  --info: #3b82f6;
  
  /* Typography */
  --font-primary: 'Poppins', sans-serif;
  --font-secondary: 'Inter', sans-serif;
  
  /* Spacing */
  --section-padding: 100px;
  --section-padding-sm: 60px;
  
  /* Border Radius */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 30px;
  --radius-full: 50%;
  
  /* Shadows */
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  --shadow-glow: 0 0 40px rgba(102, 126, 234, 0.3);
  
  /* Transitions */
  --transition-fast: 0.15s ease;
  --transition-base: 0.3s ease;
  --transition-slow: 0.5s ease;
}

/* =========================================
   2. Reset & Base Styles
   ========================================= */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-secondary);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.7;
  color: var(--gray-600);
  background-color: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

::selection {
  background: var(--primary);
  color: var(--white);
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition-base);
}

ul, ol {
  list-style: none;
}

/* =========================================
   3. Typography
   ========================================= */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-primary);
  font-weight: 600;
  line-height: 1.3;
  color: var(--gray-800);
}

h1 { font-size: clamp(2.5rem, 5vw, 4rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }
h4 { font-size: clamp(1.25rem, 2vw, 1.5rem); }
h5 { font-size: 1.125rem; }
h6 { font-size: 1rem; }

p {
  margin-bottom: 1rem;
}

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

.gradient-text {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* =========================================
   4. Utility Classes
   ========================================= */
.section-padding {
  padding: var(--section-padding) 0;
}

.bg-light {
  background-color: var(--light) !important;
}

.bg-dark {
  background-color: var(--dark) !important;
}

.bg-gradient-primary {
  background: var(--gradient-hero);
}

.text-white-50 {
  color: rgba(255, 255, 255, 0.7) !important;
}

/* =========================================
   5. Buttons
   ========================================= */
.btn {
  font-family: var(--font-primary);
  font-weight: 500;
  font-size: 0.9375rem;
  padding: 12px 28px;
  border-radius: var(--radius-md);
  transition: var(--transition-base);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: none;
  cursor: pointer;
}

.btn-lg {
  padding: 16px 36px;
  font-size: 1rem;
}

.btn-sm {
  padding: 8px 20px;
  font-size: 0.875rem;
}

.btn-primary-gradient {
  background: var(--gradient-primary);
  color: var(--white);
  box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
}

.btn-primary-gradient:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(102, 126, 234, 0.5);
  color: var(--white);
}

.btn-outline-light {
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.3);
  color: var(--white);
}

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

.btn-outline-primary {
  background: transparent;
  border: 2px solid var(--primary);
  color: var(--primary);
}

.btn-outline-primary:hover {
  background: var(--gradient-primary);
  border-color: transparent;
  color: var(--white);
}

.btn-login {
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-login:hover {
  background: rgba(255, 255, 255, 0.2);
  color: var(--white);
}

/* =========================================
   6. Preloader
   ========================================= */
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gradient-hero);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 99999;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

#preloader.loaded {
  opacity: 0;
  visibility: hidden;
}

.loader {
  text-align: center;
}

.spinner {
  width: 50px;
  height: 50px;
  border: 3px solid rgba(255, 255, 255, 0.1);
  border-top-color: var(--white);
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin: 0 auto 20px;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.loader-text {
  color: var(--white);
  font-family: var(--font-primary);
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: 2px;
}

/* =========================================
   7. Header & Navigation
   ========================================= */
.header {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 1000;
  transition: var(--transition-base);
}

.navbar {
  padding: 20px 0;
  transition: var(--transition-base);
}

.header.scrolled .navbar {
  padding: 12px 0;
  background: rgba(26, 26, 46, 0.95);
  backdrop-filter: blur(20px);
  box-shadow: var(--shadow-lg);
}

.navbar-brand .logo {
  height: 50px;
  transition: var(--transition-base);
}

.header.scrolled .navbar-brand .logo {
  height: 40px;
}

.navbar-nav {
  gap: 5px;
}

.nav-link {
  font-family: var(--font-primary);
  font-size: 0.9375rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85) !important;
  padding: 10px 16px !important;
  border-radius: var(--radius-sm);
  transition: var(--transition-base);
}

.nav-link:hover,
.nav-link.active {
  color: var(--white) !important;
  background: rgba(255, 255, 255, 0.1);
}

.dropdown-menu {
  background: var(--white);
  border: none;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-xl);
  padding: 10px;
  min-width: 180px;
  margin-top: 10px;
}

.dropdown-item {
  padding: 10px 16px;
  border-radius: var(--radius-sm);
  font-size: 0.9375rem;
  color: var(--gray-700);
  display: flex;
  align-items: center;
  gap: 10px;
}

.dropdown-item:hover {
  background: var(--light);
  color: var(--primary);
}

.flag-icon {
  width: 24px;
  height: 18px;
  object-fit: contain;
  border-radius: 3px;
  vertical-align: middle;
}

.nav-link .flag-icon {
  width: 20px;
  height: 15px;
}

.dropdown-item .flag-icon {
  width: 24px;
  height: 18px;
  margin-right: 8px;
}

.lang-option {
  display: flex;
  align-items: center;
  gap: 10px;
}

.lang-option.active {
  background: var(--light);
  color: var(--primary);
}

/* Mobile Menu Toggle */
.navbar-toggler {
  border: none;
  padding: 10px;
  background: transparent;
}

.navbar-toggler:focus {
  box-shadow: none;
}

.navbar-toggler-icon {
  display: flex;
  flex-direction: column;
  gap: 5px;
  width: 28px;
}

.navbar-toggler-icon span {
  display: block;
  height: 3px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition-base);
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon span:nth-child(2) {
  opacity: 0;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -6px);
}

/* =========================================
   8. Hero Section
   ========================================= */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

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

#particles-js {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gradient-hero);
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
}

.hero-content {
  position: relative;
  z-index: 10;
  padding: 120px 0 60px;
}

.hero-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.15);
  color: var(--white);
  padding: 10px 24px;
  border-radius: var(--radius-xl);
  font-size: 0.9375rem;
  font-weight: 500;
  margin-bottom: 24px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-title {
  color: var(--white);
  margin-bottom: 20px;
  font-weight: 700;
}

.hero-subtitle {
  color: var(--white);
  font-size: 1.375rem;
  margin-bottom: 16px;
}

.hero-description {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.125rem;
  max-width: 560px;
  margin-bottom: 32px;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.hero-stats {
  display: flex;
  gap: 48px;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

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

.stat-number {
  display: block;
  font-family: var(--font-primary);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
}

.stat-label {
  display: block;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.875rem;
  margin-top: 8px;
}

/* Hero Image */
.hero-image {
  position: relative;
  padding: 40px;
}

.hero-image .main-image {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-2xl);
}

.floating-card {
  position: absolute;
  background: var(--white);
  padding: 16px 24px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 12px;
  animation: float 3s ease-in-out infinite;
}

.floating-card i {
  width: 40px;
  height: 40px;
  background: var(--gradient-primary);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.125rem;
}

.floating-card span {
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--gray-800);
}

.floating-card.card-1 {
  top: 20%;
  left: -20px;
  animation-delay: 0s;
}

.floating-card.card-2 {
  top: 50%;
  right: -30px;
  animation-delay: 1s;
}

.floating-card.card-3 {
  bottom: 20%;
  left: 10%;
  animation-delay: 2s;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-15px); }
}

/* Scroll Indicator */
.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  color: var(--white);
  text-align: center;
  font-size: 0.875rem;
  opacity: 0.7;
  transition: var(--transition-base);
}

.scroll-indicator:hover {
  opacity: 1;
  color: var(--white);
}

.scroll-indicator span {
  display: block;
  margin-bottom: 8px;
}

.scroll-indicator i {
  animation: bounce 2s infinite;
}

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

/* =========================================
   9. Section Headers
   ========================================= */
.section-header {
  margin-bottom: 40px;
}

.section-badge {
  display: inline-block;
  background: var(--gradient-primary);
  color: var(--white);
  padding: 8px 20px;
  border-radius: var(--radius-xl);
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.section-badge.light {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
}

.section-title {
  margin-bottom: 16px;
}

.section-title span {
  display: inline;
}

.section-header.text-center .section-title {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: baseline;
  gap: 0.35em;
}

.section-description {
  font-size: 1.125rem;
  color: var(--gray-500);
  max-width: 600px;
  margin: 0 auto;
}

/* =========================================
   10. Solutions Section
   ========================================= */
.solution-card {
  background: var(--white);
  padding: 40px 30px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  height: 100%;
  transition: var(--transition-base);
  position: relative;
  overflow: hidden;
  border: 1px solid var(--gray-100);
}

.solution-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--gradient-primary);
  transform: scaleX(0);
  transition: var(--transition-base);
}

.solution-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-xl);
}

.solution-card:hover::before {
  transform: scaleX(1);
}

.solution-card.featured {
  background: var(--gradient-primary);
  color: var(--white);
}

.solution-card.featured h3,
.solution-card.featured p,
.solution-card.featured li {
  color: var(--white);
}

.solution-card.featured .solution-icon {
  background: rgba(255, 255, 255, 0.2);
  color: var(--white);
}

.solution-card.featured::before {
  display: none;
}

.featured-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--warning);
  color: var(--dark);
  padding: 4px 12px;
  border-radius: var(--radius-sm);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
}

.solution-icon {
  width: 70px;
  height: 70px;
  background: var(--light);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  font-size: 1.75rem;
  color: var(--primary);
  transition: var(--transition-base);
}

.solution-card:hover .solution-icon {
  background: var(--gradient-primary);
  color: var(--white);
}

.solution-card h3 {
  font-size: 1.375rem;
  margin-bottom: 12px;
}

.solution-card p {
  color: var(--gray-500);
  margin-bottom: 20px;
}

.solution-features {
  margin-top: auto;
}

.solution-features li {
  padding: 8px 0;
  color: var(--gray-600);
  font-size: 0.9375rem;
  display: flex;
  align-items: center;
  gap: 10px;
}

.solution-features li i {
  color: var(--success);
  font-size: 0.75rem;
}

/* =========================================
   11. Features Section
   ========================================= */
.feature-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 32px;
}

.feature-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 24px;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: var(--transition-base);
  border: 1px solid var(--gray-100);
}

.feature-item:hover {
  box-shadow: var(--shadow-lg);
  transform: translateX(10px);
}

.feature-icon {
  width: 56px;
  height: 56px;
  min-width: 56px;
  background: var(--gradient-primary);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.25rem;
}

.feature-content h4 {
  font-size: 1.125rem;
  margin-bottom: 8px;
}

.feature-content p {
  color: var(--gray-500);
  margin-bottom: 0;
  font-size: 0.9375rem;
}

.features-showcase {
  position: relative;
}

.features-showcase img {
  box-shadow: var(--shadow-2xl);
}

.showcase-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--gradient-primary);
  color: var(--white);
  padding: 20px 30px;
  border-radius: var(--radius-lg);
  text-align: center;
  box-shadow: var(--shadow-lg);
}

.showcase-badge .badge-number {
  display: block;
  font-family: var(--font-primary);
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
}

.showcase-badge .badge-text {
  display: block;
  font-size: 0.875rem;
  margin-top: 5px;
  opacity: 0.9;
}

/* =========================================
   12. Products Section
   ========================================= */
.product-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  height: 100%;
  transition: var(--transition-base);
  position: relative;
}

.product-card.featured {
  transform: scale(1.02);
}

.product-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-2xl);
}

.product-card.featured:hover {
  transform: scale(1.02) translateY(-10px);
}

.product-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  background: var(--gradient-primary);
  color: var(--white);
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  z-index: 10;
}

.product-image {
  position: relative;
  height: 220px;
  overflow: hidden;
}

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

.product-card:hover .product-image img {
  transform: scale(1.1);
}

.product-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition-base);
}

.product-card:hover .product-overlay {
  opacity: 1;
}

.product-content {
  padding: 30px;
}

.product-icon {
  width: 60px;
  height: 60px;
  background: var(--gradient-primary);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.5rem;
  margin-top: -60px;
  position: relative;
  z-index: 5;
  box-shadow: var(--shadow-lg);
  margin-bottom: 20px;
}

.product-content h3 {
  font-size: 1.375rem;
  margin-bottom: 12px;
}

.product-content p {
  color: var(--gray-500);
  font-size: 0.9375rem;
  margin-bottom: 20px;
}

.product-features {
  border-top: 1px solid var(--gray-100);
  padding-top: 20px;
}

.product-features li {
  padding: 6px 0;
  color: var(--gray-600);
  font-size: 0.875rem;
  display: flex;
  align-items: center;
  gap: 10px;
}

.product-features li i {
  color: var(--success);
}

/* =========================================
   13. Mobile Support Section
   ========================================= */

/* iPhone 16 Mockup - Pure CSS */
.iphone-16-mockup {
  position: relative;
  max-width: 320px;
  margin: 0 auto;
  perspective: 1000px;
}

.iphone-frame {
  position: relative;
  background: linear-gradient(145deg, #1a1a1a 0%, #2d2d2d 50%, #1a1a1a 100%);
  border-radius: 55px;
  padding: 14px;
  box-shadow: 
    0 0 0 1px rgba(255, 255, 255, 0.1),
    0 25px 50px -12px rgba(0, 0, 0, 0.5),
    inset 0 1px 1px rgba(255, 255, 255, 0.1),
    0 0 100px rgba(102, 126, 234, 0.2);
  aspect-ratio: 9 / 19;
  transform: rotateY(-5deg) rotateX(5deg);
  transition: transform 0.5s ease;
}

.iphone-16-mockup:hover .iphone-frame {
  transform: rotateY(0deg) rotateX(0deg);
}

/* Side buttons */
.iphone-frame::before {
  content: '';
  position: absolute;
  right: -3px;
  top: 120px;
  width: 4px;
  height: 80px;
  background: linear-gradient(180deg, #3a3a3a 0%, #1a1a1a 50%, #3a3a3a 100%);
  border-radius: 0 4px 4px 0;
}

.iphone-frame::after {
  content: '';
  position: absolute;
  left: -3px;
  top: 100px;
  width: 4px;
  height: 40px;
  background: linear-gradient(180deg, #3a3a3a 0%, #1a1a1a 50%, #3a3a3a 100%);
  border-radius: 4px 0 0 4px;
  box-shadow: 0 60px 0 #2a2a2a, 0 100px 0 #2a2a2a;
}

/* Dynamic Island */
.dynamic-island {
  position: absolute;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 36px;
  background: #000;
  border-radius: 20px;
  z-index: 10;
  box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.5);
}

.dynamic-island::before {
  content: '';
  position: absolute;
  right: 22px;
  top: 50%;
  transform: translateY(-50%);
  width: 10px;
  height: 10px;
  background: radial-gradient(circle, #1a3a5c 30%, #0a1a2c 100%);
  border-radius: 50%;
  box-shadow: inset 0 0 2px rgba(255, 255, 255, 0.2);
}

/* Screen */
.screen-content {
  position: relative;
  width: 100%;
  height: 100%;
  background: #000;
  border-radius: 42px;
  overflow: hidden;
}

.screen-content img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

/* Screen reflection effect */
.screen-content::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.1) 0%,
    transparent 50%,
    transparent 100%
  );
  pointer-events: none;
}

/* Legacy phone mockup fallback */
.phone-mockup {
  position: relative;
  max-width: 280px;
  margin: 0 auto;
}

.phone-mockup .phone-frame {
  position: relative;
  z-index: 2;
  transform: none;
  background: none;
  padding: 0;
  box-shadow: none;
  border-radius: 0;
  aspect-ratio: auto;
}

.phone-screen {
  position: absolute;
  top: 12%;
  left: 7%;
  width: 86%;
  height: 76%;
  object-fit: cover;
  border-radius: 30px;
  z-index: 1;
}

.mobile-feature {
  background: rgba(255, 255, 255, 0.1);
  padding: 24px;
  border-radius: var(--radius-md);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: var(--transition-base);
}

.mobile-feature:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-5px);
}

.mobile-feature-icon {
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  color: var(--white);
  margin-bottom: 16px;
}

.mobile-feature h4 {
  color: var(--white);
  font-size: 1.125rem;
  margin-bottom: 8px;
}

.mobile-feature p {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 0;
  font-size: 0.9375rem;
}

/* =========================================
   14. About Section - New Professional Design
   ========================================= */
.about-section-new {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, var(--white) 0%, #f8faff 100%);
}

/* About Gallery */
.about-gallery {
  position: relative;
  padding: 30px;
}

.about-main-image {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 25px 80px -20px rgba(99, 102, 241, 0.25);
}

.about-main-image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.about-main-image:hover img {
  transform: scale(1.05);
}

.about-main-image .image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

/* Floating Stats Cards */
.about-floating-stats {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
}

.floating-stat-card {
  position: absolute;
  background: var(--white);
  border-radius: 16px;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 15px;
  box-shadow: 0 15px 50px -15px rgba(0, 0, 0, 0.15);
  pointer-events: auto;
  transition: all 0.3s ease;
  border: 1px solid rgba(99, 102, 241, 0.1);
}

.floating-stat-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 60px -15px rgba(99, 102, 241, 0.25);
}

.floating-stat-card .stat-icon {
  width: 50px;
  height: 50px;
  background: var(--gradient-primary);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.25rem;
}

.floating-stat-card .stat-info {
  display: flex;
  flex-direction: column;
}

.floating-stat-card .stat-number {
  font-family: var(--font-primary);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--dark);
  line-height: 1;
}

.floating-stat-card .stat-label {
  font-size: 0.8rem;
  color: var(--gray-500);
  margin-top: 4px;
}

.stat-card-1 {
  top: 0;
  right: 0;
  animation: floatCard 3s ease-in-out infinite;
}

.stat-card-2 {
  bottom: 60px;
  left: -10px;
  animation: floatCard 3s ease-in-out infinite 1.5s;
}

@keyframes floatCard {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* Experience Ring */
.about-experience-floating {
  position: absolute;
  bottom: 0;
  right: 40px;
}

.experience-ring {
  position: relative;
  width: 120px;
  height: 120px;
  background: var(--white);
  border-radius: 50%;
  box-shadow: 0 20px 60px -15px rgba(99, 102, 241, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
}

.experience-ring svg {
  position: absolute;
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
}

.experience-ring .ring-bg {
  fill: none;
  stroke: #e8ecf4;
  stroke-width: 4;
}

.experience-ring .ring-progress {
  fill: none;
  stroke: url(#gradient);
  stroke-width: 4;
  stroke-linecap: round;
  stroke-dasharray: 283;
  stroke-dashoffset: 56;
  animation: ringProgress 2s ease-out forwards;
}

@keyframes ringProgress {
  from { stroke-dashoffset: 283; }
  to { stroke-dashoffset: 56; }
}

.experience-ring .ring-progress {
  stroke: var(--primary);
}

.experience-content {
  text-align: center;
  z-index: 1;
}

.experience-content .exp-number {
  display: block;
  font-family: var(--font-primary);
  font-size: 2rem;
  font-weight: 800;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.experience-content .exp-text {
  display: block;
  font-size: 0.75rem;
  color: var(--gray-500);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
}

/* About Content New */
.about-content-new .section-header {
  margin-bottom: 24px;
}

.about-lead {
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--dark);
  line-height: 1.7;
  margin-bottom: 20px;
  padding-left: 20px;
  border-left: 4px solid var(--primary);
}

.about-text-content {
  margin-bottom: 32px;
}

.about-text-content p {
  color: var(--gray-600);
  line-height: 1.8;
  margin-bottom: 16px;
}

/* Feature Cards Grid */
.about-feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-bottom: 32px;
}

.about-feature-card {
  background: var(--white);
  border-radius: 16px;
  padding: 20px;
  display: flex;
  align-items: flex-start;
  gap: 15px;
  border: 1px solid rgba(99, 102, 241, 0.1);
  transition: all 0.3s ease;
}

.about-feature-card:hover {
  border-color: var(--primary);
  box-shadow: 0 10px 40px -10px rgba(99, 102, 241, 0.2);
  transform: translateY(-3px);
}

.about-feature-card .feature-card-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.1) 0%, rgba(99, 102, 241, 0.05) 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 1.125rem;
  transition: all 0.3s ease;
}

.about-feature-card:hover .feature-card-icon {
  background: var(--gradient-primary);
  color: var(--white);
}

.about-feature-card .feature-card-content h5 {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 4px;
}

.about-feature-card .feature-card-content p {
  font-size: 0.8rem;
  color: var(--gray-500);
  margin: 0;
  line-height: 1.4;
}

/* About CTA */
.about-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  padding-top: 10px;
}

.about-cta .btn {
  padding: 14px 28px;
}

/* Background Decorations */
.about-decorations {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.decoration-shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.5;
}

.decoration-shape.shape-1 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(99, 102, 241, 0.08) 0%, transparent 70%);
  top: -100px;
  right: -100px;
}

.decoration-shape.shape-2 {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(236, 72, 153, 0.06) 0%, transparent 70%);
  bottom: -50px;
  left: -50px;
}

.decoration-dots {
  position: absolute;
  width: 200px;
  height: 200px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-image: radial-gradient(circle, var(--primary) 1px, transparent 1px);
  background-size: 20px 20px;
  opacity: 0.1;
}

/* Legacy support - keeping old classes */
.about-content .lead {
  margin-bottom: 20px;
}

.about-image-wrapper {
  position: relative;
}

.about-image-wrapper img {
  width: 100%;
}

.about-experience-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--gradient-primary);
  color: var(--white);
  padding: 24px 30px;
  border-radius: var(--radius-lg);
  text-align: center;
  box-shadow: var(--shadow-xl);
}

.about-experience-badge .exp-number {
  display: block;
  font-family: var(--font-primary);
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1;
}

.about-experience-badge .exp-text {
  display: block;
  font-size: 0.875rem;
  margin-top: 5px;
  opacity: 0.9;
}

.about-highlights {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.highlight-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1rem;
  color: var(--gray-700);
}

.highlight-item i {
  color: var(--success);
  font-size: 1.125rem;
}

.about-stats {
  background: var(--light);
  padding: 30px;
  border-radius: var(--radius-lg);
}

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

.about-stat .stat-number {
  font-family: var(--font-primary);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary);
  line-height: 1;
}

.about-stat .stat-label {
  display: block;
  color: var(--gray-500);
  font-size: 0.875rem;
  margin-top: 8px;
}

/* =========================================
   14b. Video Showcase Section
   ========================================= */
.bg-gradient-dark {
  background: var(--gradient-hero);
}

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

.video-frame {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
  border: 4px solid rgba(255, 255, 255, 0.1);
}

.video-frame iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.video-decoration {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: -1;
}

.decoration-circle {
  position: absolute;
  border-radius: 50%;
  opacity: 0.1;
}

.decoration-circle.circle-1 {
  width: 300px;
  height: 300px;
  background: var(--primary);
  top: -100px;
  left: -100px;
  animation: pulse 4s ease-in-out infinite;
}

.decoration-circle.circle-2 {
  width: 200px;
  height: 200px;
  background: var(--secondary);
  bottom: -50px;
  right: -50px;
  animation: pulse 4s ease-in-out infinite 1s;
}

.decoration-circle.circle-3 {
  width: 150px;
  height: 150px;
  background: var(--accent);
  top: 50%;
  right: -75px;
  animation: pulse 4s ease-in-out infinite 2s;
}

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

.video-feature {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 24px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-md);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: var(--transition-base);
}

.video-feature:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-5px);
}

.video-feature-icon {
  width: 56px;
  height: 56px;
  min-width: 56px;
  background: var(--gradient-primary);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.5rem;
}

.video-feature-content h4 {
  color: var(--white);
  font-size: 1.125rem;
  margin-bottom: 8px;
}

.video-feature-content p {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 0;
  font-size: 0.9375rem;
}

.about-video {
  position: relative;
}

.video-wrapper {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/* =========================================
   15. Team Section
   ========================================= */
.team-slider {
  padding-bottom: 50px;
}

.team-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: var(--transition-base);
}

.team-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-xl);
}

.team-image {
  position: relative;
  overflow: hidden;
}

.team-image img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  transition: var(--transition-slow);
}

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

.team-social {
  position: absolute;
  bottom: -50px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  transition: var(--transition-base);
}

.team-card:hover .team-social {
  bottom: 20px;
}

.team-social a {
  width: 40px;
  height: 40px;
  background: var(--white);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  box-shadow: var(--shadow-md);
  transition: var(--transition-base);
}

.team-social a:hover {
  background: var(--gradient-primary);
  color: var(--white);
}

.team-info {
  padding: 24px;
  text-align: center;
}

.team-info h4 {
  font-size: 1.25rem;
  margin-bottom: 8px;
}

.team-info span {
  color: var(--gray-500);
  font-size: 0.9375rem;
}

/* =========================================
   16. Pricing Section
   ========================================= */
.pricing-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px 30px;
  box-shadow: var(--shadow-md);
  height: 100%;
  transition: var(--transition-base);
  position: relative;
  border: 2px solid transparent;
}

.pricing-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-xl);
}

.pricing-card.featured {
  border-color: var(--primary);
  transform: scale(1.05);
}

.pricing-card.featured:hover {
  transform: scale(1.05) translateY(-10px);
}

.pricing-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gradient-primary);
  color: var(--white);
  padding: 8px 24px;
  border-radius: var(--radius-xl);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  white-space: nowrap;
}

.pricing-header {
  text-align: center;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--gray-100);
  margin-bottom: 24px;
}

.pricing-header h3 {
  font-size: 1.5rem;
  margin-bottom: 12px;
}

.pricing-price {
  margin-bottom: 8px;
}

.price-text {
  font-family: var(--font-primary);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
}

.pricing-header p {
  color: var(--gray-500);
  font-size: 0.9375rem;
  margin-bottom: 0;
}

.pricing-features ul {
  margin-bottom: 24px;
}

.pricing-features li {
  padding: 10px 0;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9375rem;
  color: var(--gray-600);
}

.pricing-features li i {
  width: 20px;
  text-align: center;
}

.pricing-features li.included i {
  color: var(--success);
}

.pricing-features li.excluded {
  color: var(--gray-400);
  text-decoration: line-through;
}

.pricing-features li.excluded i {
  color: var(--gray-400);
}

/* =========================================
   17. Contact Section
   ========================================= */
.contact-info {
  height: 100%;
}

.contact-details {
  margin-top: 40px;
}

.contact-item {
  display: flex;
  gap: 20px;
  margin-bottom: 24px;
}

.contact-icon {
  width: 56px;
  height: 56px;
  min-width: 56px;
  background: var(--gradient-primary);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.25rem;
}

.contact-text h4 {
  font-size: 1.125rem;
  margin-bottom: 4px;
}

.contact-text p {
  color: var(--gray-500);
  margin-bottom: 0;
}

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

.social-link {
  width: 44px;
  height: 44px;
  background: var(--light);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-600);
  transition: var(--transition-base);
}

.social-link:hover {
  background: var(--gradient-primary);
  color: var(--white);
}

.contact-form-wrapper {
  background: var(--white);
  padding: 40px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
}

.contact-form .form-section {
  margin-bottom: 30px;
}

.contact-form .form-section h4 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--gray-700);
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--primary);
}

.form-floating .form-control,
.form-floating .form-select {
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-md);
  padding: 1rem 0.75rem;
  height: 60px;
  transition: var(--transition-base);
}

.form-floating .form-control:focus,
.form-floating .form-select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(102, 126, 234, 0.1);
}

.form-floating label {
  padding: 1rem 0.75rem;
  color: var(--gray-500);
}

.form-group {
  margin-bottom: 0;
}

.form-group .form-label {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--gray-600);
  margin-bottom: 8px;
  display: block;
}

.form-group .form-label .text-danger {
  color: #ef4444;
}

.form-group .form-control.custom-input,
.form-group .form-select.custom-select {
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-md);
  padding: 14px 16px;
  height: 52px;
  font-size: 0.9375rem;
  color: var(--gray-700);
  background-color: var(--white);
  transition: var(--transition-base);
  width: 100%;
}

.form-group .form-control.custom-input:focus,
.form-group .form-select.custom-select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(102, 126, 234, 0.1);
  outline: none;
}

.form-group .form-control.custom-input::placeholder {
  color: var(--gray-400);
}

.form-group .form-select.custom-select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23667eea' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 16px 12px;
}

.form-group .form-select.custom-select option {
  padding: 12px 16px;
  color: var(--gray-700);
}

.form-group .form-select.custom-select option:first-child {
  color: var(--gray-400);
}

.form-footer {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
  justify-content: space-between;
  padding-top: 20px;
  border-top: 1px solid var(--gray-100);
}

.form-note {
  color: var(--gray-500);
  font-size: 0.875rem;
  margin: 0;
}

/* =========================================
   18. Footer
   ========================================= */
.footer {
  background: var(--dark);
  padding-top: 80px;
  color: var(--white);
}

.footer-logo {
  height: 50px;
}

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

.footer-widget h4 {
  color: var(--white);
  font-size: 1.25rem;
  margin-bottom: 24px;
  position: relative;
}

.footer-widget h4::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 40px;
  height: 3px;
  background: var(--gradient-primary);
  border-radius: 2px;
}

.footer-widget p {
  color: rgba(255, 255, 255, 0.7);
}

.footer-contact p {
  margin-bottom: 12px;
  font-size: 0.9375rem;
}

.footer-contact i {
  color: var(--primary);
  margin-right: 8px;
}

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

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  transition: var(--transition-base);
  font-size: 0.9375rem;
}

.footer-links a:hover {
  color: var(--white);
  padding-left: 5px;
}

.business-hours li {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.7);
}

.footer .social-links {
  gap: 10px;
}

.footer .social-links a {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  transition: var(--transition-base);
}

.footer .social-links a:hover {
  background: var(--gradient-primary);
}

.footer-bottom {
  background: rgba(0, 0, 0, 0.2);
  padding: 20px 0;
  margin-top: 40px;
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.875rem;
}

.footer-bottom a {
  color: var(--primary);
}

/* =========================================
   19. Back to Top Button
   ========================================= */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: var(--gradient-primary);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.25rem;
  box-shadow: var(--shadow-lg);
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: var(--transition-base);
  z-index: 999;
}

.back-to-top.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  color: var(--white);
  transform: translateY(-5px);
}

/* =========================================
   20. Swiper Customization
   ========================================= */
.swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background: var(--gray-300);
  opacity: 1;
}

.swiper-pagination-bullet-active {
  background: var(--primary);
  width: 30px;
  border-radius: 5px;
}

/* =========================================
   21. Responsive Design
   ========================================= */

/* Extra Large Devices (1400px and up) */
@media (min-width: 1400px) {
  .container {
    max-width: 1320px;
  }
}

/* Large Devices (1200px and down) */
@media (max-width: 1199.98px) {
  .section-padding {
    padding: 80px 0;
  }
  
  .hero-stats {
    gap: 30px;
  }
  
  .floating-card {
    display: none;
  }
}

/* Medium Devices (992px and down) */
@media (max-width: 991.98px) {
  .navbar-collapse {
    position: fixed;
    top: 0;
    right: -300px;
    width: 300px;
    height: 100vh;
    background: var(--dark);
    padding: 80px 30px 30px;
    transition: var(--transition-base);
    z-index: 1001;
  }
  
  .navbar-collapse.show {
    right: 0;
  }
  
  .navbar-nav {
    flex-direction: column;
  }
  
  .nav-item {
    width: 100%;
  }
  
  .nav-link {
    padding: 15px 0 !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
  
  .nav-item .btn {
    width: 100%;
    margin-top: 15px;
    margin-left: 0 !important;
  }
  
  .hero-content {
    text-align: center;
    padding-top: 140px;
  }
  
  .hero-description {
    margin: 0 auto 32px;
  }
  
  .hero-buttons {
    justify-content: center;
  }
  
  .hero-stats {
    justify-content: center;
  }
  
  .section-header.text-center .section-description {
    margin: 0 auto;
  }
  
  .feature-list {
    margin-top: 50px;
  }
  
  .features-showcase {
    margin-top: 50px;
  }
  
  .showcase-badge {
    right: 20px;
    bottom: -10px;
  }
  
  .phone-mockup {
    margin-bottom: 50px;
  }
  
  .iphone-16-mockup {
    margin-bottom: 50px;
    max-width: 280px;
  }
  
  .iphone-frame {
    transform: none;
  }
  
  .about-video {
    margin-top: 50px;
  }
  
  .pricing-card.featured {
    transform: none;
  }
  
  .pricing-card.featured:hover {
    transform: translateY(-10px);
  }
  
  /* About Section New - Tablet */
  .about-gallery {
    max-width: 500px;
    margin: 0 auto 50px;
  }
  
  .about-main-image img {
    height: 400px;
  }
  
  .stat-card-1 {
    right: 10px;
  }
  
  .stat-card-2 {
    left: 10px;
  }
  
  .about-content-new .section-header {
    text-align: center;
  }
  
  .about-lead {
    text-align: left;
  }
}

/* Small Devices (768px and down) */
@media (max-width: 767.98px) {
  html {
    font-size: 14px;
  }
  
  .section-padding {
    padding: 60px 0;
  }
  
  .hero-stats {
    flex-wrap: wrap;
    gap: 20px;
  }
  
  .stat-item {
    flex: 0 0 calc(33.333% - 14px);
  }
  
  .stat-number {
    font-size: 2rem;
  }
  
  .solution-card,
  .product-card,
  .pricing-card,
  .team-card {
    margin-bottom: 20px;
  }
  
  .contact-form-wrapper {
    padding: 30px 20px;
  }
  
  .form-footer {
    flex-direction: column;
    text-align: center;
  }
  
  .form-footer .btn {
    width: 100%;
  }
  
  .footer {
    padding-top: 60px;
    text-align: center;
  }
  
  .footer-widget h4::after {
    left: 50%;
    transform: translateX(-50%);
  }
  
  .footer .social-links {
    justify-content: center;
  }
  
  .business-hours li {
    flex-direction: column;
    gap: 5px;
  }
  
  .footer-bottom {
    text-align: center;
  }
  
  .footer-bottom .col-md-6:last-child {
    margin-top: 15px;
  }
  
  .about-image-wrapper {
    margin-bottom: 60px;
  }
  
  .about-experience-badge {
    right: 20px;
    bottom: -30px;
  }
  
  .video-feature {
    flex-direction: column;
    text-align: center;
  }
  
  .video-feature-icon {
    margin: 0 auto;
  }
  
  /* About Section New - Responsive */
  .about-gallery {
    padding: 20px;
    margin-bottom: 40px;
  }
  
  .about-main-image img {
    height: 350px;
  }
  
  .floating-stat-card {
    padding: 14px 18px;
  }
  
  .floating-stat-card .stat-icon {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }
  
  .floating-stat-card .stat-number {
    font-size: 1.4rem;
  }
  
  .floating-stat-card .stat-label {
    font-size: 0.7rem;
  }
  
  .stat-card-1 {
    right: -10px;
    top: 10px;
  }
  
  .stat-card-2 {
    left: -10px;
    bottom: 80px;
  }
  
  .about-experience-floating {
    right: 20px;
    bottom: -10px;
  }
  
  .experience-ring {
    width: 90px;
    height: 90px;
  }
  
  .experience-content .exp-number {
    font-size: 1.5rem;
  }
  
  .about-feature-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  
  .about-lead {
    font-size: 1.1rem;
    padding-left: 15px;
  }
  
  .about-cta {
    flex-direction: column;
  }
  
  .about-cta .btn {
    width: 100%;
  }
  
  .about-cta .btn.ms-3 {
    margin-left: 0 !important;
  }
}

/* Extra Small Devices (576px and down) */
@media (max-width: 575.98px) {
  .hero-badge {
    font-size: 0.8125rem;
    padding: 8px 16px;
  }
  
  .hero-buttons .btn {
    width: 100%;
  }
  
  .stat-item {
    flex: 0 0 100%;
  }
  
  .feature-item {
    flex-direction: column;
    text-align: center;
  }
  
  .contact-item {
    flex-direction: column;
    text-align: center;
  }
  
  .pricing-card {
    padding: 30px 20px;
  }
  
  .back-to-top {
    bottom: 20px;
    right: 20px;
    width: 44px;
    height: 44px;
  }
  
  .scroll-indicator {
    bottom: 20px;
  }
  
  .iphone-16-mockup {
    max-width: 240px;
  }
  
  .iphone-frame {
    border-radius: 45px;
    padding: 10px;
  }
  
  .screen-content {
    border-radius: 36px;
  }
  
  .dynamic-island {
    width: 90px;
    height: 28px;
    top: 14px;
  }
}

/* Landscape Orientation for Mobile */
@media (max-height: 500px) and (orientation: landscape) {
  .hero-section {
    min-height: auto;
    padding: 120px 0 60px;
  }
  
  .hero-content {
    padding-top: 0;
  }
  
  .scroll-indicator {
    display: none;
  }
}

/* Print Styles */
@media print {
  .header,
  .back-to-top,
  .scroll-indicator,
  #preloader {
    display: none !important;
  }
  
  .hero-section {
    min-height: auto;
    padding: 50px 0;
  }
  
  .section-padding {
    padding: 30px 0;
  }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  
  html {
    scroll-behavior: auto;
  }
}

/* Dark Mode Support */
@media (prefers-color-scheme: dark) {
  :root {
    --light: #1e293b;
    --gray-100: #334155;
    --gray-200: #475569;
  }
}

/* High Contrast Mode */
@media (prefers-contrast: high) {
  :root {
    --primary: #4338ca;
    --gray-500: #1e293b;
  }
}
