@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800;900&family=Poppins:wght@400;500;600;700;800&display=swap');

:root {
  /* Vibrant Colors from Logo */
  --primary-blue: #1E90FF;
  --deep-blue: #0047AB;
  --sky-blue: #87CEEB;
  --electric-blue: #00BFFF;
  
  --primary-yellow: #FFD700;
  --bright-yellow: #FFEC00;
  --golden-yellow: #FFC107;
  
  --primary-red: #FF3B3B;
  --bright-red: #FF6B6B;
  --coral-red: #FF4757;
  
  --dark-gray: #1a1a2e;
  --medium-gray: #4a4a68;
  --light-gray: #f5f6fa;
  --white: #ffffff;
  --off-white: #fafafa;
  
  /* Power Gradients */
  --gradient-blue: linear-gradient(135deg, #1E90FF 0%, #0047AB 100%);
  --gradient-yellow: linear-gradient(135deg, #FFD700 0%, #FFC107 100%);
  --gradient-red: linear-gradient(135deg, #FF6B6B 0%, #FF3B3B 100%);
  --gradient-hero: linear-gradient(135deg, rgba(30, 144, 255, 0.95) 0%, rgba(0, 71, 171, 0.95) 100%);
  --gradient-vibrant: linear-gradient(135deg, #FFD700 0%, #FF6B6B 50%, #1E90FF 100%);
  
  /* Professional Shadows */
  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.08);
  --shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 8px 20px rgba(0, 0, 0, 0.12);
  --shadow-lg: 0 15px 35px rgba(0, 0, 0, 0.15);
  --shadow-xl: 0 25px 50px rgba(0, 0, 0, 0.2);
  --shadow-glow: 0 0 30px rgba(255, 215, 0, 0.4);
  --shadow-blue-glow: 0 0 40px rgba(30, 144, 255, 0.3);
}

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

body {
  font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  line-height: 1.6;
  color: var(--dark-gray);
  overflow-x: hidden;
  background: var(--white);
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  line-height: 1.2;
}

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

/* Header & Navigation */
header {
  background: var(--white);
  box-shadow: var(--shadow);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header-top {
  background: var(--gradient-blue);
  color: var(--white);
  padding: 10px 0;
  font-size: 0.9rem;
}

.header-top .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
}

.contact-info {
  display: flex;
  gap: 25px;
  flex-wrap: wrap;
}

.contact-info a {
  color: var(--white);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 5px;
}

.contact-info a:hover {
  color: var(--accent-yellow);
}

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

.social-links a {
  color: var(--white);
  font-size: 1.2rem;
  transition: color 0.3s;
}

.social-links a:hover {
  color: var(--accent-yellow);
}

nav {
  padding: 15px 0;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  height: 60px;
  width: auto;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 30px;
  align-items: center;
}

.nav-menu a {
  color: var(--dark-gray);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
  padding: 8px 0;
}

.nav-menu a:hover,
.nav-menu a.active {
  color: var(--primary-blue);
}

.cta-button {
  background: var(--gradient-blue);
  color: var(--white);
  padding: 14px 35px;
  border-radius: 50px;
  text-decoration: none;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  display: inline-block;
  box-shadow: 0 4px 15px rgba(0, 180, 216, 0.3);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 180, 216, 0.4);
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--dark-gray);
  cursor: pointer;
}

/* Breadcrumb */
.breadcrumb {
  background: var(--light-gray);
  padding: 15px 0;
  font-size: 0.9rem;
}

.breadcrumb a {
  color: var(--primary-blue);
  text-decoration: none;
}

.breadcrumb a:hover {
  text-decoration: underline;
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(rgba(0, 119, 182, 0.85), rgba(0, 180, 216, 0.85)), 
              url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600"><rect fill="%230077b6" width="1200" height="600"/></svg>');
  background-size: cover;
  background-position: center;
  color: var(--white);
  text-align: center;
  padding: 60px 20px;
}

.hero-content {
  max-width: 900px;
  z-index: 1;
}

.hero h1 {
  font-family: 'Montserrat', sans-serif;
  font-size: 3.8rem;
  font-weight: 800;
  margin-bottom: 20px;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.4);
  letter-spacing: -0.5px;
}

.hero p {
  font-family: 'Open Sans', sans-serif;
  font-size: 1.6rem;
  font-weight: 500;
  margin-bottom: 30px;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.3);
  line-height: 1.5;
}

.offer-banner {
  background: var(--gradient-yellow);
  color: var(--dark-gray);
  padding: 25px 50px;
  border-radius: 50px;
  font-family: 'Montserrat', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 35px;
  display: inline-block;
  box-shadow: var(--shadow-xl);
  animation: pulse 2s infinite;
  border: 3px solid var(--white);
}

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

.hero-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  font-family: 'Montserrat', sans-serif;
  padding: 16px 45px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  display: inline-block;
  cursor: pointer;
  border: none;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  font-size: 0.95rem;
}

.btn-primary {
  background: var(--gradient-yellow);
  color: var(--dark-gray);
  box-shadow: 0 4px 15px rgba(255, 221, 0, 0.4);
}

.btn-primary:hover {
  background: var(--bright-yellow);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(255, 221, 0, 0.5);
}

.btn-secondary {
  background: var(--white);
  color: var(--primary-blue);
  border: 2px solid var(--primary-blue);
  box-shadow: var(--shadow);
}

.btn-secondary:hover {
  background: var(--primary-blue);
  color: var(--white);
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

/* Sections */
section {
  padding: 80px 0;
}

section:nth-child(even) {
  background: var(--silver);
}

.section-title {
  font-family: 'Montserrat', sans-serif;
  text-align: center;
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--dark-blue);
  margin-bottom: 15px;
  letter-spacing: -0.5px;
}

.section-subtitle {
  font-family: 'Open Sans', sans-serif;
  text-align: center;
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--medium-gray);
  margin-bottom: 50px;
  max-width: 750px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

/* Cards Grid */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.card {
  background: var(--white);
  padding: 40px 30px;
  border-radius: 20px;
  box-shadow: var(--shadow-md);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
  border: 1px solid rgba(0, 180, 216, 0.1);
}

.card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-xl);
  border-color: var(--primary-blue);
}

.card-icon {
  font-size: 3.5rem;
  color: var(--primary-blue);
  margin-bottom: 25px;
  text-shadow: 0 2px 4px rgba(0, 180, 216, 0.2);
}

.card h3 {
  font-family: 'Montserrat', sans-serif;
  color: var(--dark-blue);
  margin-bottom: 15px;
  font-size: 1.6rem;
  font-weight: 700;
}

.card p {
  font-family: 'Open Sans', sans-serif;
  color: var(--medium-gray);
  margin-bottom: 20px;
  line-height: 1.7;
  font-size: 1rem;
}

.card ul {
  list-style: none;
  text-align: left;
  margin-bottom: 20px;
}

.card ul li {
  padding: 8px 0;
  padding-left: 25px;
  position: relative;
}

.card ul li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--primary-blue);
  font-weight: bold;
}

/* Pricing Cards */
.pricing-card {
  background: var(--white);
  padding: 45px 35px;
  border-radius: 20px;
  box-shadow: var(--shadow-md);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  border: 2px solid rgba(0, 180, 216, 0.1);
}

.pricing-card:hover {
  transform: translateY(-12px);
  box-shadow: var(--shadow-xl);
  border-color: var(--primary-blue);
}

.pricing-card.featured {
  border: 3px solid var(--accent-yellow);
  transform: scale(1.05);
  box-shadow: var(--shadow-lg);
  background: linear-gradient(180deg, #ffffff 0%, #fffef5 100%);
}

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

.pricing-card.featured .badge {
  background: var(--gradient-yellow);
  color: var(--dark-gray);
  padding: 10px 25px;
  border-radius: 50px;
  position: absolute;
  top: -18px;
  left: 50%;
  transform: translateX(-50%);
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 4px 15px rgba(255, 221, 0, 0.4);
}

.pricing-card h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--dark-blue);
  margin-bottom: 20px;
}

.price {
  font-family: 'Montserrat', sans-serif;
  font-size: 3.5rem;
  color: var(--primary-blue);
  font-weight: 800;
  margin: 25px 0;
  line-height: 1;
}

.price span {
  font-family: 'Open Sans', sans-serif;
  font-size: 1.1rem;
  color: var(--medium-gray);
  font-weight: 400;
}

/* Service Areas Grid */
.areas-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 40px;
}

.area-item {
  background: var(--white);
  padding: 20px;
  border-radius: 10px;
  box-shadow: var(--shadow);
  transition: all 0.3s;
}

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

.area-item.primary {
  background: var(--gradient-blue);
  color: var(--white);
}

.area-item.primary h3 {
  color: var(--accent-yellow);
}

/* Form Styles */
.form-container {
  max-width: 700px;
  margin: 0 auto;
  background: var(--white);
  padding: 40px;
  border-radius: 15px;
  box-shadow: var(--shadow-lg);
}

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

.form-group label {
  display: block;
  margin-bottom: 8px;
  color: var(--dark-blue);
  font-weight: 600;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 15px;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  font-size: 1rem;
  transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-blue);
}

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

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

/* Footer */
footer {
  background: var(--dark-gray);
  color: var(--white);
  padding: 60px 0 20px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer-section h3 {
  font-family: 'Montserrat', sans-serif;
  color: var(--accent-yellow);
  margin-bottom: 20px;
  font-weight: 700;
  font-size: 1.3rem;
}

.footer-section p {
  font-family: 'Open Sans', sans-serif;
  line-height: 1.7;
  margin-bottom: 12px;
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 12px;
  font-family: 'Open Sans', sans-serif;
}

.footer-section a {
  color: var(--white);
  text-decoration: none;
  transition: color 0.3s ease;
  font-weight: 400;
}

.footer-section a:hover {
  color: var(--accent-yellow);
}

.footer-bottom {
  font-family: 'Open Sans', sans-serif;
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.95rem;
}

/* Mobile Sticky Footer */
.mobile-sticky-footer {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--white);
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
  padding: 15px;
  z-index: 999;
}

.mobile-footer-buttons {
  display: flex;
  gap: 10px;
  justify-content: space-around;
}

.mobile-footer-buttons .btn {
  flex: 1;
  padding: 12px 15px;
  font-size: 0.9rem;
  text-align: center;
}

/* Dashboard Styles */
.dashboard {
  display: grid;
  grid-template-columns: 250px 1fr;
  min-height: calc(100vh - 200px);
  gap: 30px;
}

.dashboard-sidebar {
  background: var(--white);
  padding: 30px 20px;
  border-radius: 15px;
  box-shadow: var(--shadow);
  height: fit-content;
}

.dashboard-sidebar ul {
  list-style: none;
}

.dashboard-sidebar li {
  margin-bottom: 15px;
}

.dashboard-sidebar a {
  color: var(--dark-gray);
  text-decoration: none;
  padding: 10px 15px;
  display: block;
  border-radius: 8px;
  transition: all 0.3s;
}

.dashboard-sidebar a:hover,
.dashboard-sidebar a.active {
  background: var(--primary-blue);
  color: var(--white);
}

.dashboard-content {
  background: var(--white);
  padding: 40px;
  border-radius: 15px;
  box-shadow: var(--shadow);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-bottom: 40px;
}

.stat-card {
  background: var(--gradient-blue);
  color: var(--white);
  padding: 30px;
  border-radius: 15px;
  text-align: center;
}

.stat-card h3 {
  font-size: 2.5rem;
  margin-bottom: 10px;
}

.stat-card p {
  font-size: 1rem;
  opacity: 0.9;
}

.dashboard-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 20px;
}

.dashboard-table th,
.dashboard-table td {
  padding: 15px;
  text-align: left;
  border-bottom: 1px solid #e0e0e0;
}

.dashboard-table th {
  background: var(--light-gray);
  color: var(--dark-blue);
  font-weight: 600;
}

.dashboard-table tr:hover {
  background: var(--light-gray);
}

.status-badge {
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
}

.status-pending {
  background: #fff3cd;
  color: #856404;
}

.status-confirmed {
  background: #d4edda;
  color: #155724;
}

.status-completed {
  background: #d1ecf1;
  color: #0c5460;
}

/* Responsive Design */
@media (max-width: 768px) {
  .header-top .container {
    flex-direction: column;
    text-align: center;
  }
  
  .contact-info {
    flex-direction: column;
    gap: 10px;
  }
  
  .menu-toggle {
    display: block;
  }
  
  .nav-menu {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    box-shadow: var(--shadow);
    padding: 20px;
    gap: 10px;
  }
  
  .nav-menu.active {
    display: flex;
  }
  
  .hero h1 {
    font-size: 2rem;
  }
  
  .hero p {
    font-size: 1.1rem;
  }
  
  .offer-banner {
    font-size: 1.3rem;
    padding: 15px 25px;
  }
  
  .hero-buttons {
    flex-direction: column;
  }
  
  .cards-grid {
    grid-template-columns: 1fr;
  }
  
  .form-row {
    grid-template-columns: 1fr;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
  }
  
  .mobile-sticky-footer {
    display: block;
  }
  
  section {
    padding: 40px 0;
  }
  
  .dashboard {
    grid-template-columns: 1fr;
  }
  
  .dashboard-sidebar {
    position: sticky;
    top: 140px;
  }
  
  body {
    padding-bottom: 80px;
  }
}

/* Utilities */
.text-center {
  text-align: center;
}

.mt-4 {
  margin-top: 2rem;
}

.mb-4 {
  margin-bottom: 2rem;
}

.hidden {
  display: none;
}

/* Video Hero Section */
.video-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--dark-gray);
}

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

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 1;
  transition: opacity 0.5s ease;
}

.hero-video.fade-out {
  opacity: 0;
}

.hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.5s ease;
  z-index: 0;
}

.hero-image.fade-in {
  opacity: 1;
  z-index: 1;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(30, 144, 255, 0.85) 0%, rgba(255, 59, 59, 0.75) 50%, rgba(255, 215, 0, 0.85) 100%);
  z-index: 2;
}

.video-hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  padding: 60px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.video-hero h1 {
  font-family: 'Montserrat', sans-serif;
  font-size: 5rem;
  font-weight: 900;
  color: var(--white);
  margin-bottom: 25px;
  text-shadow: 3px 3px 10px rgba(0, 0, 0, 0.5);
  letter-spacing: -1px;
  animation: slideInDown 0.8s ease-out;
}

.video-hero .tagline {
  font-family: 'Poppins', sans-serif;
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 30px;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.4);
  animation: slideInUp 0.8s ease-out;
}

.mega-offer-banner {
  background: var(--gradient-yellow);
  color: var(--dark-gray);
  padding: 30px 60px;
  border-radius: 100px;
  font-family: 'Montserrat', sans-serif;
  font-size: 2.5rem;
  font-weight: 900;
  margin-bottom: 40px;
  display: inline-block;
  box-shadow: var(--shadow-glow), var(--shadow-xl);
  animation: pulseGlow 2s infinite, slideInUp 0.8s ease-out;
  border: 5px solid var(--white);
  text-transform: uppercase;
  letter-spacing: 2px;
  position: relative;
  overflow: hidden;
}

.mega-offer-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transform: rotate(45deg);
  animation: shine 3s infinite;
}

@keyframes shine {
  0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
  100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

@keyframes pulseGlow {
  0%, 100% { 
    transform: scale(1); 
    box-shadow: 0 0 30px rgba(255, 215, 0, 0.4), var(--shadow-xl);
  }
  50% { 
    transform: scale(1.05); 
    box-shadow: 0 0 50px rgba(255, 215, 0, 0.6), var(--shadow-xl);
  }
}

@keyframes slideInDown {
  from {
    opacity: 0;
    transform: translateY(-50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Mega CTA Button */
.mega-cta {
  display: inline-block;
  font-family: 'Montserrat', sans-serif;
  font-size: 1.4rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
  padding: 25px 60px;
  border-radius: 60px;
  background: var(--gradient-red);
  color: var(--white);
  text-decoration: none;
  box-shadow: 0 10px 30px rgba(255, 59, 59, 0.4), 0 0 0 0 rgba(255, 59, 59, 0.5);
  border: 4px solid var(--white);
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  animation: slideInUp 0.8s ease-out 0.3s both;
}

.mega-cta::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.mega-cta:hover::before {
  width: 300px;
  height: 300px;
}

.mega-cta:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 15px 40px rgba(255, 59, 59, 0.6), 0 0 0 8px rgba(255, 215, 0, 0.3);
  border-color: var(--primary-yellow);
}

.mega-cta .button-icon {
  display: inline-block;
  margin-left: 15px;
  font-size: 1.6rem;
  transition: transform 0.3s;
}

.mega-cta:hover .button-icon {
  transform: translateX(10px);
}

/* Trust Badges */
.trust-badges {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  margin-top: 50px;
  animation: slideInUp 0.8s ease-out 0.6s both;
}

.trust-badge {
  background: rgba(255, 255, 255, 0.95);
  padding: 20px 30px;
  border-radius: 15px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  color: var(--deep-blue);
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.1rem;
}

.trust-badge i {
  font-size: 2rem;
  color: var(--primary-yellow);
}

/* Enhanced Stats Section */
.stats-showcase {
  background: var(--gradient-blue);
  padding: 80px 0;
  color: var(--white);
}

.stats-grid-enhanced {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.stat-box {
  text-align: center;
  padding: 40px 30px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}

.stat-box:hover {
  transform: translateY(-10px);
  background: rgba(255, 255, 255, 0.15);
  box-shadow: var(--shadow-xl);
}

.stat-number {
  font-family: 'Montserrat', sans-serif;
  font-size: 4rem;
  font-weight: 900;
  color: var(--primary-yellow);
  line-height: 1;
  margin-bottom: 15px;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
}

.stat-label {
  font-family: 'Poppins', sans-serif;
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--white);
}

/* Image Grid Sections */
.image-content-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
  padding: 100px 20px;
}

.image-content-section.reverse {
  direction: rtl;
}

.image-content-section.reverse > * {
  direction: ltr;
}

.section-image {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: 30px;
  box-shadow: var(--shadow-lg);
  transition: transform 0.3s ease;
}

.section-image:hover {
  transform: scale(1.02);
}

.section-content h2 {
  font-size: 3rem;
  color: var(--deep-blue);
  margin-bottom: 25px;
  line-height: 1.2;
}

.section-content p {
  font-size: 1.2rem;
  line-height: 1.8;
  color: var(--medium-gray);
  margin-bottom: 30px;
}

.feature-list {
  list-style: none;
  margin: 30px 0;
}

.feature-list li {
  padding: 15px 0 15px 50px;
  position: relative;
  font-size: 1.1rem;
  color: var(--dark-gray);
}

.feature-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 15px;
  width: 35px;
  height: 35px;
  background: var(--gradient-yellow);
  color: var(--dark-gray);
  font-weight: 900;
  font-size: 1.2rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow);
}

/* Responsive Video Hero */
@media (max-width: 768px) {
  .video-hero {
    min-height: 100vh;
  }
  
  .video-hero h1 {
    font-size: 2.5rem;
  }
  
  .video-hero .tagline {
    font-size: 1.2rem;
  }
  
  .mega-offer-banner {
    font-size: 1.5rem;
    padding: 20px 35px;
  }
  
  .mega-cta {
    font-size: 1.1rem;
    padding: 20px 40px;
  }
  
  .trust-badges {
    flex-direction: column;
    gap: 15px;
  }
  
  .image-content-section {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .section-image {
    height: 350px;
  }
}

/* Enhanced Header */
.header-top {
  background: var(--dark-gray);
  padding: 12px 0;
  font-size: 0.9rem;
}

.header-top-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
}

.contact-info {
  display: flex;
  gap: 25px;
  flex-wrap: wrap;
}

.contact-info a,
.contact-info span {
  color: var(--white);
  text-decoration: none;
  transition: color 0.3s;
}

.contact-info a:hover {
  color: var(--primary-yellow);
}

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

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

.social-links a {
  color: var(--white);
  font-size: 1.1rem;
  transition: all 0.3s;
}

.social-links a:hover {
  color: var(--primary-yellow);
  transform: translateY(-3px);
}

/* Premium Cards */
.premium-card {
  background: var(--white);
  padding: 45px 35px;
  border-radius: 25px;
  box-shadow: var(--shadow-md);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  text-align: center;
  border: 3px solid transparent;
  position: relative;
  overflow: hidden;
}

.premium-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: var(--gradient-vibrant);
}

.premium-card:hover {
  transform: translateY(-15px);
  box-shadow: var(--shadow-xl);
  border-color: var(--primary-blue);
}

.premium-card .card-icon {
  font-size: 4rem;
  background: var(--gradient-blue);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 25px;
}

.premium-card h3 {
  font-size: 1.8rem;
  color: var(--deep-blue);
  margin-bottom: 20px;
  font-weight: 800;
}

.premium-card p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--medium-gray);
  margin-bottom: 25px;
}

.card-benefits {
  list-style: none;
  text-align: left;
  margin: 25px 0;
  padding: 0;
}

.card-benefits li {
  padding: 12px 0;
  padding-left: 35px;
  position: relative;
  font-size: 1rem;
  color: var(--dark-gray);
  font-weight: 500;
}

.card-benefits li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 12px;
  width: 25px;
  height: 25px;
  background: var(--gradient-yellow);
  color: var(--dark-gray);
  font-weight: 900;
  font-size: 0.9rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Enhanced Service Cards */
.services-grid-enhanced {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
  gap: 40px;
  margin-top: 50px;
}

.service-card-large {
  background: var(--white);
  border-radius: 25px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: all 0.3s ease;
}

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

.service-image {
  height: 300px;
  background-size: cover;
  background-position: center;
  position: relative;
  background-color: var(--primary-blue);
}

.service-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
  padding: 30px;
  color: var(--white);
}

.service-overlay h3 {
  font-size: 2rem;
  margin-bottom: 10px;
  color: var(--white);
}

.service-overlay p {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.9);
}

.service-content {
  padding: 35px;
}

.service-description {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--medium-gray);
  margin-bottom: 25px;
}

.service-highlights {
  list-style: none;
  margin: 25px 0;
}

.service-highlights li {
  padding: 10px 0;
  font-size: 1.05rem;
  color: var(--dark-gray);
}

.service-highlights i {
  color: var(--primary-blue);
  margin-right: 12px;
  font-size: 1.1rem;
}

.service-cta {
  display: inline-block;
  margin-top: 20px;
  padding: 15px 35px;
  background: var(--gradient-blue);
  color: var(--white);
  text-decoration: none;
  border-radius: 50px;
  font-weight: 700;
  transition: all 0.3s;
  text-transform: uppercase;
  font-size: 0.95rem;
  letter-spacing: 1px;
}

.service-cta:hover {
  transform: translateX(10px);
  box-shadow: var(--shadow-md);
}

/* Pricing Cards Home */
.pricing-grid-home {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 35px;
  margin-top: 50px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.pricing-card-home {
  background: var(--white);
  padding: 45px 35px;
  border-radius: 25px;
  box-shadow: var(--shadow-lg);
  position: relative;
  transition: all 0.3s ease;
  border: 3px solid transparent;
}

.pricing-card-home:hover {
  transform: translateY(-10px);
  border-color: var(--primary-yellow);
}

.featured-pricing {
  border-color: var(--primary-yellow);
  background: linear-gradient(135deg, #fff 0%, #fffef5 100%);
  transform: scale(1.05);
}

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

.popular-badge {
  position: absolute;
  top: -18px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gradient-yellow);
  color: var(--dark-gray);
  padding: 10px 30px;
  border-radius: 50px;
  font-weight: 900;
  font-size: 0.85rem;
  letter-spacing: 1.5px;
  box-shadow: var(--shadow-glow);
}

.pricing-card-home h3 {
  font-size: 2rem;
  color: var(--deep-blue);
  margin-bottom: 20px;
  text-align: center;
}

.price-display {
  font-size: 4rem;
  font-weight: 900;
  color: var(--primary-blue);
  text-align: center;
  margin: 25px 0;
  font-family: 'Montserrat', sans-serif;
}

.price-display span {
  font-size: 1.3rem;
  color: var(--medium-gray);
  font-weight: 500;
}

.pricing-features {
  list-style: none;
  margin: 30px 0;
  text-align: left;
}

.pricing-features li {
  padding: 12px 0;
  font-size: 1.05rem;
  color: var(--dark-gray);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.pricing-features i {
  color: var(--primary-blue);
  margin-right: 12px;
  font-size: 1.1rem;
}

.pricing-btn {
  display: block;
  text-align: center;
  padding: 18px;
  background: var(--gradient-red);
  color: var(--white);
  text-decoration: none;
  border-radius: 50px;
  font-weight: 800;
  font-size: 1.1rem;
  margin-top: 30px;
  transition: all 0.3s;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.pricing-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 30px rgba(255, 59, 59, 0.4);
}

.discount-banner-home {
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 20px;
  padding: 35px;
  text-align: center;
  margin-top: 60px;
  backdrop-filter: blur(10px);
}

.discount-banner-home h4 {
  font-size: 1.8rem;
  color: var(--white);
  margin-bottom: 25px;
}

.discount-banner-home h4 i {
  color: var(--primary-yellow);
  margin-right: 10px;
}

.discount-options {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  font-size: 1.2rem;
  color: var(--white);
}

.discount-options span {
  padding: 12px 25px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 15px;
  font-weight: 600;
}

/* Service Areas Preview */
.service-areas-preview {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 40px;
  margin-top: 50px;
}

.area-card {
  background: var(--white);
  padding: 45px 35px;
  border-radius: 25px;
  box-shadow: var(--shadow-md);
  text-align: center;
  transition: all 0.3s ease;
  border-top: 5px solid var(--primary-blue);
}

.area-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-xl);
  border-top-color: var(--primary-yellow);
}

.area-icon {
  font-size: 4rem;
  color: var(--primary-blue);
  margin-bottom: 20px;
}

.area-card h3 {
  font-size: 2rem;
  color: var(--deep-blue);
  margin-bottom: 10px;
}

.area-highlight {
  color: var(--primary-red);
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 25px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.area-cities {
  list-style: none;
  margin: 25px 0;
  text-align: left;
}

.area-cities li {
  padding: 10px 0;
  padding-left: 30px;
  position: relative;
  font-size: 1.05rem;
  color: var(--dark-gray);
}

.area-cities li::before {
  content: "📍";
  position: absolute;
  left: 0;
  font-size: 1.1rem;
}

.area-link {
  display: inline-block;
  margin-top: 20px;
  color: var(--primary-blue);
  text-decoration: none;
  font-weight: 700;
  font-size: 1.05rem;
  transition: all 0.3s;
}

.area-link:hover {
  color: var(--primary-red);
  transform: translateX(10px);
}

/* Mega CTA Section */
.cta-section-mega {
  background: var(--gradient-vibrant);
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section-mega::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
  animation: rotate 20s linear infinite;
}

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

.cta-content-mega {
  position: relative;
  z-index: 1;
}

.cta-content-mega h2 {
  font-size: 3.5rem;
  color: var(--white);
  margin-bottom: 25px;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
}

.cta-content-mega > p {
  font-size: 1.4rem;
  color: var(--white);
  margin-bottom: 45px;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.2);
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.cta-buttons-mega {
  display: flex;
  justify-content: center;
  gap: 25px;
  flex-wrap: wrap;
  margin-bottom: 30px;
}

.mega-cta-secondary {
  display: inline-block;
  font-family: 'Montserrat', sans-serif;
  font-size: 1.3rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
  padding: 25px 55px;
  border-radius: 60px;
  background: var(--white);
  color: var(--primary-blue);
  text-decoration: none;
  box-shadow: var(--shadow-xl);
  border: 4px solid var(--white);
  transition: all 0.3s ease;
}

.mega-cta-secondary:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(255, 255, 255, 0.4);
  background: var(--primary-yellow);
  color: var(--dark-gray);
}

.cta-guarantee {
  font-size: 1.1rem;
  color: var(--white);
  font-weight: 600;
  margin-top: 25px;
}

.cta-guarantee i {
  color: var(--primary-yellow);
  margin-right: 10px;
  font-size: 1.3rem;
}

/* Button Styles */
.btn-large {
  padding: 20px 50px;
  font-size: 1.2rem;
  border-radius: 60px;
}

/* Responsive */
@media (max-width: 768px) {
  .services-grid-enhanced {
    grid-template-columns: 1fr;
  }
  
  .pricing-grid-home {
    grid-template-columns: 1fr;
  }
  
  .service-areas-preview {
    grid-template-columns: 1fr;
  }
  
  .cta-content-mega h2 {
    font-size: 2.2rem;
  }
  
  .discount-options {
    flex-direction: column;
    gap: 15px;
  }
}

/* Section Headers */
.section-header {
  text-align: center;
  max-width: 900px;
  margin: 0 auto 60px;
}

.section-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 3.2rem;
  font-weight: 900;
  color: var(--deep-blue);
  margin-bottom: 20px;
  line-height: 1.2;
  letter-spacing: -1px;
}

.section-subtitle {
  font-family: 'Poppins', sans-serif;
  font-size: 1.25rem;
  line-height: 1.8;
  color: var(--medium-gray);
  font-weight: 400;
}

/* Container */
.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Navigation Updates */
nav {
  background: var(--white);
  box-shadow: var(--shadow);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
}

.logo {
  height: 60px;
  width: auto;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 35px;
  align-items: center;
}

.nav-menu a {
  font-family: 'Montserrat', sans-serif;
  color: var(--dark-gray);
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.nav-menu a:hover,
.nav-menu a.active {
  color: var(--primary-blue);
}

.nav-cta {
  background: var(--gradient-red);
  color: var(--white) !important;
  padding: 12px 28px;
  border-radius: 50px;
  font-weight: 700;
  box-shadow: 0 4px 15px rgba(255, 59, 59, 0.3);
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 59, 59, 0.4);
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
}

.menu-toggle span {
  width: 30px;
  height: 3px;
  background: var(--primary-blue);
  border-radius: 3px;
  transition: all 0.3s;
}

/* Footer Styling */
footer {
  background: var(--dark-gray);
  color: var(--white);
  padding: 80px 0 30px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 50px;
  margin-bottom: 50px;
}

.footer-section h3 {
  font-family: 'Montserrat', sans-serif;
  color: var(--primary-yellow);
  font-size: 1.4rem;
  margin-bottom: 25px;
  font-weight: 800;
}

.footer-section p {
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 20px;
}

.footer-section ul {
  list-style: none;
}

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

.footer-section a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: all 0.3s;
  font-size: 1.05rem;
}

.footer-section a:hover {
  color: var(--primary-yellow);
  padding-left: 5px;
}

.footer-social {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.footer-social a {
  width: 45px;
  height: 45px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  transition: all 0.3s;
}

.footer-social a:hover {
  background: var(--primary-yellow);
  color: var(--dark-gray);
  transform: translateY(-5px);
}

.footer-contact li {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-contact i {
  color: var(--primary-yellow);
  font-size: 1.1rem;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 30px;
  text-align: center;
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 10px;
}

.footer-tagline {
  color: var(--primary-yellow);
  font-weight: 600;
  font-style: italic;
}

/* Mobile Sticky Footer */
.mobile-sticky-footer {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--white);
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
  z-index: 999;
  padding: 10px;
  justify-content: space-around;
}

.mobile-footer-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  text-decoration: none;
  padding: 10px 20px;
  border-radius: 10px;
  transition: all 0.3s;
  font-weight: 600;
  font-size: 0.85rem;
}

.call-btn {
  background: var(--primary-blue);
  color: var(--white);
}

.text-btn {
  background: var(--primary-yellow);
  color: var(--dark-gray);
}

.quote-btn {
  background: var(--primary-red);
  color: var(--white);
}

.mobile-footer-btn i {
  font-size: 1.4rem;
}

/* Responsive Design */
@media (max-width: 968px) {
  .nav-menu {
    position: fixed;
    top: 90px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 90px);
    background: var(--white);
    flex-direction: column;
    padding: 40px 20px;
    transition: left 0.3s;
    box-shadow: var(--shadow-lg);
    gap: 0;
  }
  
  .nav-menu.active {
    left: 0;
  }
  
  .nav-menu li {
    width: 100%;
    text-align: center;
    padding: 15px 0;
    border-bottom: 1px solid var(--light-gray);
  }
  
  .menu-toggle {
    display: flex;
  }
  
  .menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
  }
  
  .menu-toggle.active span:nth-child(2) {
    opacity: 0;
  }
  
  .menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
  }
  
  .mobile-sticky-footer {
    display: flex;
  }
  
  .section-title {
    font-size: 2.2rem;
  }
  
  .section-subtitle {
    font-size: 1.1rem;
  }
}

/* About Page Styles */
.about-hero {
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(rgba(30, 144, 255, 0.9), rgba(255, 59, 59, 0.9)), url('../assets/hero-main.jpg');
  background-size: cover;
  background-position: center;
  text-align: center;
  color: var(--white);
  position: relative;
}

.about-hero-content {
  position: relative;
  z-index: 2;
  padding: 60px 20px;
}

.breadcrumb {
  font-size: 1rem;
  margin-bottom: 30px;
  opacity: 0.9;
}

.breadcrumb a {
  color: var(--white);
  text-decoration: none;
  transition: color 0.3s;
}

.breadcrumb a:hover {
  color: var(--primary-yellow);
}

.breadcrumb i {
  margin: 0 15px;
  font-size: 0.8rem;
}

.about-hero h1 {
  font-size: 4rem;
  margin-bottom: 25px;
  text-shadow: 3px 3px 10px rgba(0, 0, 0, 0.4);
}

.about-hero p {
  font-size: 1.5rem;
  text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.3);
}

/* Image Badge */
.section-image-container {
  position: relative;
}

.image-badge {
  position: absolute;
  bottom: 30px;
  right: 30px;
  background: var(--gradient-yellow);
  padding: 25px;
  border-radius: 20px;
  text-align: center;
  box-shadow: var(--shadow-xl);
  border: 4px solid var(--white);
}

.badge-number {
  font-family: 'Montserrat', sans-serif;
  font-size: 3rem;
  font-weight: 900;
  color: var(--dark-gray);
  line-height: 1;
}

.badge-text {
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark-gray);
  margin-top: 8px;
}

/* Story Highlights */
.story-highlights {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 25px;
  margin-top: 40px;
}

.highlight-box {
  background: var(--light-gray);
  padding: 30px 20px;
  border-radius: 15px;
  text-align: center;
  border-top: 4px solid var(--primary-blue);
}

.highlight-box i {
  font-size: 2.5rem;
  color: var(--primary-blue);
  margin-bottom: 15px;
}

.highlight-box h4 {
  font-size: 1.2rem;
  color: var(--deep-blue);
  margin-bottom: 10px;
}

.highlight-box p {
  font-size: 0.95rem;
  color: var(--medium-gray);
}

/* Mission & Vision */
.mission-vision-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
  gap: 50px;
  max-width: 1200px;
  margin: 0 auto;
}

.mission-box {
  background: rgba(255, 255, 255, 0.1);
  padding: 50px 40px;
  border-radius: 25px;
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.2);
  text-align: center;
}

.mv-icon {
  font-size: 4rem;
  margin-bottom: 25px;
}

.mission-box h3 {
  font-size: 2.2rem;
  margin-bottom: 25px;
  color: var(--primary-yellow);
}

.mission-box p {
  font-size: 1.15rem;
  line-height: 1.8;
}

/* Values Grid */
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 40px;
  margin-top: 50px;
}

.value-card {
  background: var(--white);
  padding: 45px 35px;
  border-radius: 25px;
  box-shadow: var(--shadow-md);
  transition: all 0.3s ease;
  border-left: 5px solid var(--primary-blue);
}

.value-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-xl);
  border-left-color: var(--primary-yellow);
}

.value-icon {
  font-size: 3.5rem;
  background: var(--gradient-blue);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 25px;
}

.value-card h3 {
  font-size: 1.8rem;
  color: var(--deep-blue);
  margin-bottom: 20px;
}

.value-card p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--medium-gray);
}

/* Timeline */
.timeline {
  max-width: 1000px;
  margin: 50px auto;
  position: relative;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 4px;
  background: var(--gradient-blue);
  transform: translateX(-50%);
}

.timeline-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
  position: relative;
}

.timeline-item:nth-child(even) .timeline-year {
  order: 2;
}

.timeline-item:nth-child(even) .timeline-content {
  order: 1;
  text-align: right;
}

.timeline-year {
  font-family: 'Montserrat', sans-serif;
  font-size: 3rem;
  font-weight: 900;
  color: var(--primary-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.timeline-year::after {
  content: '';
  position: absolute;
  width: 30px;
  height: 30px;
  background: var(--primary-yellow);
  border: 5px solid var(--white);
  border-radius: 50%;
  box-shadow: var(--shadow-md);
}

.timeline-item:nth-child(odd) .timeline-year::after {
  right: -45px;
}

.timeline-item:nth-child(even) .timeline-year::after {
  left: -45px;
}

.timeline-content {
  background: var(--white);
  padding: 35px;
  border-radius: 20px;
  box-shadow: var(--shadow-md);
}

.timeline-content h3 {
  font-size: 1.8rem;
  color: var(--deep-blue);
  margin-bottom: 15px;
}

.timeline-content p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--medium-gray);
}

/* Team Section */
.team-intro {
  max-width: 900px;
  margin: 0 auto 60px;
  text-align: center;
}

.team-description {
  font-size: 1.2rem;
  line-height: 1.8;
  color: var(--dark-gray);
  margin-bottom: 40px;
}

.team-qualifications {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
  text-align: left;
}

.qualification {
  background: var(--white);
  padding: 25px;
  border-radius: 15px;
  box-shadow: var(--shadow);
  display: flex;
  gap: 15px;
  align-items: flex-start;
}

.qualification i {
  font-size: 1.8rem;
  color: var(--primary-blue);
  flex-shrink: 0;
}

.qualification span {
  font-size: 1rem;
  line-height: 1.6;
}

.team-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 35px;
  margin-top: 60px;
}

.team-stat {
  background: var(--white);
  padding: 40px 30px;
  border-radius: 20px;
  text-align: center;
  box-shadow: var(--shadow-md);
  transition: all 0.3s;
}

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

.stat-icon {
  font-size: 3rem;
  color: var(--primary-blue);
  margin-bottom: 20px;
}

.team-stat .stat-number {
  font-family: 'Montserrat', sans-serif;
  font-size: 3.5rem;
  font-weight: 900;
  color: var(--primary-red);
  line-height: 1;
  margin-bottom: 15px;
}

.team-stat .stat-label {
  font-size: 1.1rem;
  color: var(--dark-gray);
  font-weight: 600;
}

/* Certifications */
.certifications-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 35px;
  margin-top: 50px;
}

.cert-badge {
  background: var(--white);
  padding: 40px 30px;
  border-radius: 20px;
  text-align: center;
  box-shadow: var(--shadow-md);
  transition: all 0.3s;
  border-top: 4px solid var(--primary-blue);
}

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

.cert-icon {
  font-size: 3.5rem;
  background: var(--gradient-yellow);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 20px;
}

.cert-badge h4 {
  font-size: 1.4rem;
  color: var(--deep-blue);
  margin-bottom: 15px;
}

.cert-badge p {
  font-size: 1rem;
  color: var(--medium-gray);
  line-height: 1.6;
}

/* Why Choose Cards */
.why-choose-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
  gap: 40px;
  margin-top: 50px;
}

.why-card {
  background: var(--white);
  padding: 45px 40px;
  border-radius: 25px;
  box-shadow: var(--shadow-md);
  position: relative;
  padding-left: 100px;
  transition: all 0.3s;
}

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

.why-number {
  position: absolute;
  left: 30px;
  top: 40px;
  font-family: 'Montserrat', sans-serif;
  font-size: 3.5rem;
  font-weight: 900;
  background: var(--gradient-blue);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.why-card h3 {
  font-size: 1.6rem;
  color: var(--deep-blue);
  margin-bottom: 20px;
}

.why-card p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--medium-gray);
}

/* Community Section */
.community-content {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 60px;
  align-items: start;
}

.community-text h3 {
  font-size: 2.5rem;
  color: var(--deep-blue);
  margin-bottom: 25px;
}

.community-text > p {
  font-size: 1.15rem;
  line-height: 1.8;
  color: var(--medium-gray);
  margin-bottom: 35px;
}

.community-initiatives {
  list-style: none;
}

.community-initiatives li {
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
  padding: 25px;
  background: var(--light-gray);
  border-radius: 15px;
}

.community-initiatives i {
  font-size: 2.5rem;
  color: var(--primary-blue);
  flex-shrink: 0;
}

.community-initiatives h4 {
  font-size: 1.3rem;
  color: var(--deep-blue);
  margin-bottom: 10px;
}

.community-initiatives p {
  font-size: 1rem;
  color: var(--medium-gray);
  line-height: 1.6;
}

.community-stats-box {
  background: var(--gradient-blue);
  padding: 45px 35px;
  border-radius: 25px;
  color: var(--white);
  box-shadow: var(--shadow-xl);
  position: sticky;
  top: 100px;
}

.community-stats-box h3 {
  font-size: 2rem;
  margin-bottom: 35px;
  text-align: center;
}

.impact-stats {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.impact-stat {
  text-align: center;
  padding: 25px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  backdrop-filter: blur(10px);
}

.impact-number {
  font-family: 'Montserrat', sans-serif;
  font-size: 3.5rem;
  font-weight: 900;
  color: var(--primary-yellow);
  line-height: 1;
  margin-bottom: 10px;
}

.impact-label {
  font-size: 1.2rem;
  font-weight: 600;
}

/* Testimonials */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 40px;
  margin-top: 50px;
}

.testimonial-card {
  background: rgba(255, 255, 255, 0.1);
  padding: 40px 35px;
  border-radius: 20px;
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.2);
}

.stars {
  color: var(--primary-yellow);
  font-size: 1.3rem;
  margin-bottom: 20px;
}

.testimonial-text {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 25px;
  font-style: italic;
}

.testimonial-author strong {
  display: block;
  font-size: 1.2rem;
  margin-bottom: 5px;
}

.testimonial-author span {
  font-size: 0.95rem;
  opacity: 0.8;
}

/* Responsive About Page */
@media (max-width: 968px) {
  .about-hero h1 {
    font-size: 2.5rem;
  }
  
  .timeline::before {
    left: 30px;
  }
  
  .timeline-item {
    grid-template-columns: 1fr;
    padding-left: 80px;
  }
  
  .timeline-item:nth-child(even) .timeline-year {
    order: 1;
  }
  
  .timeline-item:nth-child(even) .timeline-content {
    order: 2;
    text-align: left;
  }
  
  .timeline-year::after {
    left: -45px !important;
  }
  
  .community-content {
    grid-template-columns: 1fr;
  }
  
  .community-stats-box {
    position: static;
  }
  
  .why-choose-grid {
    grid-template-columns: 1fr;
  }
  
  .mission-vision-grid {
    grid-template-columns: 1fr;
  }
}
