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

:root {
  --navy-blue: #0f2540;
  --bright-orange: #ff8800;
  --teal: #0a8b87;
  --gradient-teal: linear-gradient(135deg, #0d9488, #14b8a6);
  --gradient-orange: linear-gradient(135deg, #ff8800, #ff6b00);
  --white: #ffffff;
  --black: #000000;
  --light-gray: #f8f9fa;
  --text-gray: #6b7280;
  --border-gray: #e5e7eb;
  
  /* Light theme colors */
  --bg-primary: #ffffff;
  --bg-secondary: #f8f9fa;
  --text-primary: #0f2540;
  --text-secondary: #6b7280;
  --card-bg: #ffffff;
  --card-border: #e5e7eb;
}

[data-theme="dark"] {
  --bg-primary: #0a1929;
  --bg-secondary: #0f2540;
  --text-primary: #ffffff;
  --text-secondary: #e2e8f0;
  --card-bg: #1e293b;
  --card-border: #334155;
  --light-gray: #1e293b;
  --white: #ffffff;
  --navy-blue: #0f2540;
  --text-gray: #e2e8f0;
  --border-gray: #475569;
}

body {
  font-family: 'Inter', sans-serif;
  line-height: 1.6;
  color: var(--text-primary);
  background-color: var(--bg-primary);
  overflow-x: hidden;
  transition: background-color 0.3s ease, color 0.3s ease;
}

/* Typography System - Visual Hierarchy */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-primary);
  margin: 0;
}

h1 {
  font-size: 3.5rem;
  letter-spacing: -0.02em;
}

h2 {
  font-size: 2.5rem;
  letter-spacing: -0.01em;
}

h3 {
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: -0.01em;
}

h4 {
  font-size: 1.25rem;
  font-weight: 600;
}

h5 {
  font-size: 1.125rem;
  font-weight: 600;
}

h6 {
  font-size: 1rem;
  font-weight: 600;
}

p {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-secondary);
  margin: 0;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.container-wide {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Header */
header {
  position: fixed;
  top: 0;
  width: 100%;
  background-color: rgba(15, 37, 64, 0.98);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 136, 0, 0.2);
  z-index: 1000;
  transition: all 0.3s;
}

header.scrolled {
  background-color: rgba(15, 37, 64, 1);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
}

.logo img {
  height: 55px;
  filter: drop-shadow(0 2px 8px rgba(255, 136, 0, 0.3));
  transition: transform 0.3s;
}

.logo img:hover {
  transform: scale(1.05);
}

nav {
  display: flex;
  gap: 3rem;
  align-items: center;
}

nav a {
  color: var(--white);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  transition: all 0.3s;
  position: relative;
  letter-spacing: 0.5px;
}

nav a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient-orange);
  transition: width 0.3s;
}

nav a:hover::after,
nav a.active::after {
  width: 100%;
}

nav a:hover,
nav a.active {
  color: var(--bright-orange);
}

/* Dropdown Menu */
.nav-item {
  position: relative;
}

.nav-item > a {
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.dropdown-arrow {
  font-size: 0.7rem;
  transition: transform 0.3s;
}

.nav-item:hover .dropdown-arrow {
  transform: rotate(180deg);
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  margin-top: 1.5rem;
  background: rgba(15, 37, 64, 0.98);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 136, 0, 0.2);
  border-radius: 12px;
  min-width: 280px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 1001;
  padding: 0.75rem 0;
}

.nav-item:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  margin-top: 1rem;
}

.dropdown-menu a {
  display: block;
  padding: 0.9rem 1.5rem;
  color: var(--white);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.9rem;
  transition: all 0.3s;
  border-left: 3px solid transparent;
}

.dropdown-menu a::after {
  display: none;
}

.dropdown-menu a:hover {
  background: rgba(255, 136, 0, 0.1);
  border-left-color: var(--bright-orange);
  padding-left: 1.75rem;
  color: var(--bright-orange);
}

.nav-cta {
  background: var(--gradient-orange);
  color: var(--white);
  padding: 0.75rem 2rem;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s;
  box-shadow: 0 4px 15px rgba(255, 136, 0, 0.3);
  letter-spacing: 0.5px;
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(255, 136, 0, 0.5);
}

/* Theme Toggle Switch */
.theme-toggle {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-left: 2rem;
}

.theme-switch {
  position: relative;
  width: 60px;
  height: 30px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 30px;
  cursor: pointer;
  transition: all 0.3s;
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.theme-switch:hover {
  background: rgba(255, 255, 255, 0.3);
}

.theme-slider {
  position: absolute;
  top: 2px;
  left: 2px;
  width: 22px;
  height: 22px;
  background: var(--white);
  border-radius: 50%;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
}

[data-theme="dark"] .theme-slider {
  transform: translateX(30px);
  background: var(--bright-orange);
}

.theme-label {
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 500;
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--white);
}

/* Hero Section - Bold Storytelling with Background Image */
.hero {
  position: relative;
  background: 
    linear-gradient(rgba(15, 37, 64, 0.6), rgba(26, 58, 95, 0.6)),
    url('https://images.unsplash.com/photo-1600880292203-757bb62b4baf?q=80&w=2070') center/cover no-repeat,
    linear-gradient(135deg, #1a3a5f 0%, #0f2540 100%);
  color: var(--white);
  padding: 0;
  overflow: hidden;
  margin-top: 80px;
  min-height: 600px;
  display: flex;
  align-items: center;
  background-blend-mode: normal;
}

/* Light overlay for readability - allows image to show through */
.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(15, 37, 64, 0.4);
  z-index: 1;
}

/* Subtle animated pattern overlay */
.hero::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 50%, rgba(255, 136, 0, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(10, 139, 135, 0.05) 0%, transparent 50%);
  animation: pulse 8s ease-in-out infinite;
  z-index: 1;
}

@keyframes pulse {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 0.6; }
}

.hero-content {
  max-width: 900px;
  z-index: 2;
  position: relative;
  text-align: center;
  margin: 0 auto;
  padding: 8rem 2rem;
}

.hero-tagline {
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 1.5rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  animation: fadeInUp 0.8s ease-out;
  opacity: 0.9;
}

.hero h1 {
  font-size: 4.5rem;
  font-weight: 700;
  margin-bottom: 3rem;
  line-height: 1.2;
  color: var(--white);
  animation: fadeInUp 1s ease-out 0.2s both;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero p {
  font-size: 1.3rem;
  margin-bottom: 3rem;
  opacity: 0;
  line-height: 1.8;
  animation: fadeInUp 1.2s ease-out 0.4s both;
  display: none;
}

.hero-buttons {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeInUp 1.4s ease-out 0.6s both;
}

/* Carousel Navigation Arrows */
.hero-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(255, 255, 255, 0.3);
  color: var(--white);
  width: 60px;
  height: 60px;
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  cursor: pointer;
  transition: all 0.3s;
  backdrop-filter: blur(5px);
}

.hero-arrow:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.5);
}

.hero-arrow.prev {
  left: 2rem;
}

.hero-arrow.next {
  right: 2rem;
}

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

.btn {
  padding: 1rem 2.5rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s;
  display: inline-block;
  border: none;
  cursor: pointer;
  font-size: 1.1rem;
  letter-spacing: 0.5px;
}

.btn-primary {
  background: var(--gradient-orange);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(255, 136, 0, 0.4);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(255, 136, 0, 0.6);
}

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

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

/* Stats Section - Bright Orange Theme */
.stats-section {
  background: linear-gradient(135deg, #ff3333 0%, #ff6600 100%);
  color: var(--white);
  padding: 4rem 0;
  margin-top: -2rem;
  position: relative;
  z-index: 2;
  box-shadow: 0 10px 40px rgba(255, 51, 51, 0.3);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 3rem;
  text-align: center;
}

.stat-item h3 {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.stat-item p {
  font-size: 1.1rem;
  opacity: 0.95;
  font-weight: 500;
}

/* Story Section - Light Theme */
.story-section {
  padding: 8rem 0;
  background: var(--bg-primary);
}

.story-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 5rem;
}

.section-label {
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--bright-orange);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.story-header h2 {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--text-primary);
  line-height: 1.2;
}

.story-header p {
  font-size: 1.3rem;
  color: var(--text-gray);
  line-height: 1.8;
}

/* Section */
section {
  padding: 6rem 0;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-header h2 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--text-primary);
}

.section-header p {
  font-size: 1.2rem;
  color: var(--text-gray);
  max-width: 700px;
  margin: 0 auto;
}

/* Grid Layouts */
.grid {
  display: grid;
  gap: 2.5rem;
}

.grid-2 {
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
}

.grid-3 {
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
}

.grid-4 {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

/* Cards - Bold Design with Images */
.card {
  background-color: var(--card-bg);
  border: 2px solid transparent;
  border-radius: 16px;
  padding: 2.5rem;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 1.5rem;
}

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

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

.card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  border-color: rgba(255, 136, 0, 0.3);
}

.card-icon {
  width: 70px;
  height: 70px;
  background: var(--gradient-orange);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  font-size: 2rem;
  color: var(--white);
  box-shadow: 0 8px 20px rgba(255, 136, 0, 0.3);
}

.card h3 {
  font-family: 'Inter', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: var(--text-primary);
  letter-spacing: -0.01em;
  line-height: 1.3;
}

.card p {
  font-family: 'Inter', sans-serif;
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
  line-height: 1.65;
  font-size: 0.95rem;
  font-weight: 400;
}

.card .card-subtitle {
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--bright-orange);
  margin-bottom: 1.25rem;
  line-height: 1.4;
  letter-spacing: 0.02em;
}

.card ul {
  list-style: none;
  margin-bottom: 2rem;
}

.card ul li {
  padding: 0.75rem 0;
  color: var(--text-primary);
  display: flex;
  align-items: center;
  font-weight: 500;
}

.card ul li::before {
  content: "→";
  color: var(--bright-orange);
  font-weight: bold;
  margin-right: 1rem;
  font-size: 1.2rem;
}

/* Academy Section - Dark Navy Theme */
.academy-section {
  background: linear-gradient(135deg, #0a1929 0%, var(--navy-blue) 50%, #1a3a5f 100%);
  color: var(--white);
  padding: 8rem 0;
  position: relative;
  overflow: hidden;
  box-shadow: inset 0 10px 30px rgba(0, 0, 0, 0.3);
}

.academy-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255, 136, 0, 0.1) 0%, transparent 70%);
  border-radius: 50%;
}

.academy-content {
  text-align: center;
  position: relative;
  z-index: 1;
}

.academy-icon {
  width: 100px;
  height: 100px;
  background: var(--gradient-teal);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
  font-size: 3rem;
  box-shadow: 0 10px 30px rgba(10, 139, 135, 0.4);
}

.academy-content h2 {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.academy-content p {
  font-size: 1.3rem;
  max-width: 800px;
  margin: 0 auto 2.5rem;
  opacity: 0.95;
  line-height: 1.8;
}

/* Why Choose Section - Light Gray Theme */
.why-section {
  background: var(--bg-secondary);
  padding: 8rem 0;
}

[data-theme="dark"] .why-section {
  background: var(--bg-primary);
}

.why-choose-item {
  display: flex;
  gap: 2rem;
  margin-bottom: 3rem;
  padding: 2rem;
  border-radius: 16px;
  transition: all 0.3s;
  background: var(--card-bg);
  border: 2px solid var(--border-gray);
}

.why-choose-item:hover {
  background: var(--card-bg);
  transform: translateX(10px);
  border-color: var(--bright-orange);
  box-shadow: 0 8px 20px rgba(255, 136, 0, 0.2);
}

.why-number {
  width: 80px;
  height: 80px;
  background: var(--gradient-orange);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-weight: 700;
  color: var(--white);
  flex-shrink: 0;
  box-shadow: 0 8px 20px rgba(255, 136, 0, 0.3);
}

.why-content h3 {
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--text-primary);
}

.why-content p {
  font-size: 1.1rem;
  color: var(--text-gray);
  line-height: 1.7;
}

/* CTA Section - Bright Red/Orange Theme */
.cta-section {
  background: linear-gradient(135deg, #ff3333 0%, #ff6600 100%);
  color: var(--white);
  padding: 6rem 0;
  text-align: center;
  position: relative;
  box-shadow: 0 -5px 30px rgba(255, 51, 51, 0.2);
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 30% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 70% 70%, rgba(255, 136, 0, 0.2) 0%, transparent 50%);
  pointer-events: none;
}

.cta-section h2 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.cta-section p {
  font-size: 1.3rem;
  margin-bottom: 2.5rem;
  opacity: 0.95;
}

/* Contact Form - Light Theme */
.contact-section {
  padding: 8rem 0;
  background: var(--white);
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
  gap: 4rem;
}

.form-group {
  margin-bottom: 2rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.75rem;
  font-weight: 600;
  color: var(--navy-blue);
  font-size: 1.05rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 1rem 1.25rem;
  border: 2px solid var(--border-gray);
  border-radius: 12px;
  font-size: 1rem;
  font-family: inherit;
  transition: all 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--bright-orange);
  box-shadow: 0 0 0 3px rgba(255, 136, 0, 0.1);
}

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

.contact-info-card {
  background-color: var(--white);
  border: 2px solid var(--border-gray);
  border-radius: 16px;
  padding: 2rem;
  margin-bottom: 2rem;
  display: flex;
  gap: 1.5rem;
  transition: all 0.3s;
}

.contact-info-card:hover {
  border-color: var(--bright-orange);
  transform: translateX(5px);
}

.contact-icon {
  width: 60px;
  height: 60px;
  background: var(--gradient-orange);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.8rem;
  color: var(--white);
  box-shadow: 0 8px 20px rgba(255, 136, 0, 0.3);
}

/* Footer */
footer {
  background: linear-gradient(135deg, #0a0a0a 0%, var(--navy-blue) 100%);
  color: var(--white);
  padding: 4rem 0 2rem;
  border-top: 3px solid var(--bright-orange);
}

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

.footer-section h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--bright-orange);
}

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

.footer-section ul li {
  margin-bottom: 0.75rem;
}

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

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

.social-links {
  display: flex;
  gap: 1rem;
}

.social-links 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.3rem;
  color: var(--white);
  transition: all 0.3s;
}

.social-links a:hover {
  background: var(--gradient-orange);
  transform: translateY(-3px);
  padding-left: 0;
}

.footer-bottom {
  text-align: center;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.95rem;
}

/* Badges */
.badge {
  font-family: 'Inter', sans-serif;
  display: inline-block;
  padding: 0.5rem 1rem;
  background: linear-gradient(135deg, rgba(255, 136, 0, 0.1), rgba(10, 139, 135, 0.1));
  border: 1px solid rgba(255, 136, 0, 0.3);
  border-radius: 30px;
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  margin: 0.25rem;
  color: var(--text-primary);
  transition: all 0.3s;
}

.badge:hover {
  background: var(--gradient-orange);
  color: var(--white);
  transform: translateY(-2px);
}

/* Page Header */
.page-header {
  background: linear-gradient(135deg, var(--navy-blue) 0%, #1a3a5f 100%);
  padding: 10rem 0 6rem;
  text-align: center;
  color: var(--white);
  margin-top: 80px;
  position: relative;
  overflow: hidden;
}

.page-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 30% 50%, rgba(255, 136, 0, 0.1) 0%, transparent 70%);
}

.page-header h1 {
  font-size: 4rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
}

.page-header p {
  font-size: 1.4rem;
  position: relative;
  z-index: 1;
  opacity: 0.95;
  max-width: 800px;
  margin: 0 auto;
}

/* Map */
.map-container {
  width: 100%;
  height: 350px;
  border-radius: 16px;
  overflow: hidden;
  border: 2px solid var(--border-gray);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* Responsive */
@media (max-width: 768px) {
  nav {
    display: none;
  }

  .mobile-menu-btn {
    display: block;
  }
  
  .theme-toggle {
    margin-left: 1rem;
  }

  .hero {
    min-height: 500px;
  }

  .hero h1 {
    font-size: 2.5rem;
  }

  .hero p {
    font-size: 1.1rem;
  }

  .hero-arrow {
    width: 45px;
    height: 45px;
    font-size: 1.5rem;
  }

  .hero-arrow.prev {
    left: 0.5rem;
  }

  .hero-arrow.next {
    right: 0.5rem;
  }

  .hero-content {
    padding: 6rem 1rem;
  }

  .section-header h2,
  .story-header h2 {
    font-size: 2rem;
  }

  .page-header h1 {
    font-size: 2.5rem;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .grid {
    grid-template-columns: 1fr;
  }

  .grid-2,
  .grid-3,
  .grid-4 {
    grid-template-columns: 1fr;
  }

  .stat-item h3 {
    font-size: 2.5rem;
  }

  .academy-content h2 {
    font-size: 2.5rem;
  }

  /* Process section mobile responsiveness */
  section[style*="position: relative"][style*="background: linear-gradient"] {
    padding: 4rem 0 !important;
  }

  section[style*="position: relative"] .container > div[style*="text-align: center"] {
    padding: 1.5rem 1rem !important;
  }
}

/* Animations */
.fade-in {
  animation: fadeIn 0.8s ease-out;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.slide-up {
  animation: slideUp 0.8s ease-out;
}

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

/* Services Background Section */
.services-bg-section {
  position: relative;
  padding: 8rem 0;
  background-image: url('https://images.unsplash.com/photo-1451187580459-43490279c0fa?w=1920&q=80');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  overflow: hidden;
}

.services-bg-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, 
    rgba(15, 37, 64, 0.92) 0%, 
    rgba(10, 139, 135, 0.85) 50%, 
    rgba(15, 37, 64, 0.92) 100%
  );
  backdrop-filter: blur(2px);
  z-index: 1;
}

/* Accenture-style Service Items */
.accenture-item {
  display: flex;
  gap: 2rem;
  align-items: flex-start;
  padding: 2.5rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  opacity: 0;
  transform: translateY(30px);
}

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

.accenture-item.visible {
  animation: slideInLeft 0.8s ease-out forwards;
}

.accenture-icon {
  flex-shrink: 0;
}

.accenture-icon img {
  filter: grayscale(20%);
  transition: all 0.3s;
}

.accenture-item:hover .accenture-icon img {
  filter: grayscale(0%);
  transform: scale(1.05);
}

.accenture-content h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  line-height: 1.4;
}

.accenture-content p {
  font-size: 1.1rem;
  line-height: 1.7;
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@media (max-width: 768px) {
  .accenture-item {
    flex-direction: column;
    gap: 1.5rem;
    padding: 2rem 0;
  }
  
  .accenture-icon img {
    width: 60px;
    height: 60px;
  }
  
  .accenture-content h3 {
    font-size: 1.2rem;
  }
  
  .accenture-content p {
    font-size: 1rem;
  }
}

/* Service Categories Tabs Section */
.service-tabs {
  display: flex;
  justify-content: center;
  gap: 0;
  margin-bottom: 3rem;
  border-bottom: 2px solid var(--border-gray);
  flex-wrap: wrap;
}

.service-tab {
  background: none;
  border: none;
  padding: 1rem 1.5rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-gray);
  cursor: pointer;
  position: relative;
  transition: all 0.3s;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.service-tab:hover {
  color: var(--text-primary);
}

.service-tab.active {
  color: var(--bright-orange);
}

.service-tab.active::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--bright-orange);
  animation: slideIn 0.3s ease-out;
}

@keyframes slideIn {
  from {
    transform: scaleX(0);
  }
  to {
    transform: scaleX(1);
  }
}

.tab-content-wrapper {
  position: relative;
  min-height: 500px;
}

.tab-content {
  display: none;
  animation: fadeInUp 0.5s ease-out;
}

.tab-content.active {
  display: block;
}

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

/* Service Insight Cards */
.service-insight-card {
  background: var(--card-bg);
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s;
  border: 1px solid var(--border-gray);
  cursor: pointer;
}

.service-insight-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.3);
  border-color: var(--bright-orange);
}

.insight-image {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform 0.3s;
}

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

.insight-body {
  padding: 1.5rem;
}

.insight-body h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--text-primary);
  line-height: 1.4;
  min-height: 3.4rem;
}

.read-more-link {
  color: var(--bright-orange);
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s;
  letter-spacing: 0.5px;
}

.read-more-link:hover {
  gap: 0.75rem;
  color: #ff6b00;
}

@media (max-width: 1024px) {
  .service-tabs {
    gap: 0;
  }
  
  .service-tab {
    font-size: 0.8rem;
    padding: 0.75rem 1rem;
  }
}

@media (max-width: 768px) {
  .service-tabs {
    overflow-x: auto;
    justify-content: flex-start;
    -webkit-overflow-scrolling: touch;
  }
  
  .service-tab {
    flex-shrink: 0;
    font-size: 0.75rem;
    padding: 0.75rem 1rem;
  }
  
  .insight-body h3 {
    font-size: 1.1rem;
    min-height: auto;
  }
}

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

.whatsapp-float:hover {
  background: #128C7E;
  transform: scale(1.1);
  box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6);
}

.whatsapp-float svg {
  width: 35px;
  height: 35px;
  fill: white;
}

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

/* Mobile responsive */
@media (max-width: 768px) {
  .whatsapp-float {
    bottom: 20px;
    right: 20px;
    width: 55px;
    height: 55px;
    font-size: 28px;
  }
  
  .whatsapp-float svg {
    width: 32px;
    height: 32px;
  }
}
