/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@400;500;600;700;800&display=swap');

:root {
  --primary-color: #1e3a8a; /* Deep Blue */
  --secondary-color: #3b82f6; /* Bright Blue */
  --accent-color: #f59e0b; /* Amber / Warning */
  --text-dark: #0f172a;
  --text-light: #64748b;
  --bg-light: #f8fafc;
  --white: #ffffff;
  --whatsapp-color: #25d366;
  --transition: all 0.3s ease-in-out;
}

body {
  font-family: 'Inter', sans-serif;
  color: var(--text-dark);
  background-color: var(--bg-light);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6, .navbar-brand {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
}

/* Typography & Utilities */
.text-primary-custom { color: var(--primary-color) !important; }
.text-secondary-custom { color: var(--secondary-color) !important; }
.text-accent { color: var(--accent-color) !important; }
.bg-primary-custom { background-color: var(--primary-color) !important; }
.bg-secondary-custom { background-color: var(--secondary-color) !important; }
.bg-accent { background-color: var(--accent-color) !important; }

/* Topbar */
.topbar {
  background-color: var(--primary-color);
  color: var(--white);
  padding: 8px 0;
  font-size: 0.9rem;
}
.topbar a {
  color: var(--white);
  text-decoration: none;
  transition: var(--transition);
}
.topbar a:hover {
  color: var(--accent-color);
}

/* Navbar */
.navbar {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
  padding: 15px 0;
  transition: var(--transition);
}
.navbar.sticky-top {
  padding: 10px 0;
}
.navbar-brand {
  font-size: 1.5rem;
  color: var(--primary-color) !important;
}
.navbar-brand span {
  color: var(--accent-color);
}
.nav-link {
  font-weight: 500;
  color: var(--text-dark) !important;
  margin: 0 5px;
  transition: var(--transition);
  position: relative;
}
.nav-link:hover, .nav-link.active {
  color: var(--secondary-color) !important;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background-color: var(--secondary-color);
  transition: var(--transition);
  transform: translateX(-50%);
}
.nav-link:hover::after, .nav-link.active::after {
  width: 100%;
}

/* Buttons */
.btn-custom {
  padding: 10px 24px;
  border-radius: 50px;
  font-weight: 600;
  transition: var(--transition);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn-primary-custom {
  background-color: var(--primary-color);
  color: var(--white);
  border: 2px solid var(--primary-color);
}
.btn-primary-custom:hover {
  background-color: transparent;
  color: var(--primary-color);
}
.btn-accent {
  background-color: var(--accent-color);
  color: var(--white);
  border: 2px solid var(--accent-color);
}
.btn-accent:hover {
  background-color: transparent;
  color: var(--text-dark);
}
.btn-whatsapp {
  background-color: var(--whatsapp-color);
  color: var(--white);
  border: 2px solid var(--whatsapp-color);
}
.btn-whatsapp:hover {
  background-color: transparent;
  color: var(--whatsapp-color);
}

/* Hero Section */
.hero-section {
  position: relative;
  background: linear-gradient(135deg, rgba(30, 58, 138, 0.9) 0%, rgba(59, 130, 246, 0.8) 100%), url('https://images.unsplash.com/photo-1584622650111-993a426fbf0a?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80') center/cover no-repeat;
  padding: 160px 0 100px;
  color: var(--white);
  text-align: center;
}
.hero-section h1 {
  font-size: 3.5rem;
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}
.hero-section p.lead {
  font-size: 1.25rem;
  margin-bottom: 40px;
  font-weight: 300;
}
.hero-features {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-top: 50px;
  flex-wrap: wrap;
}
.hero-feature-item {
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(5px);
  padding: 15px 25px;
  border-radius: 50px;
  border: 1px solid rgba(255,255,255,0.2);
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 500;
}

/* About Section */
.about-section {
  padding: 80px 0;
  background-color: var(--white);
}
.about-img {
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
  position: relative;
  overflow: hidden;
}
.about-img img {
  width: 100%;
  transition: var(--transition);
}
.about-img:hover img {
  transform: scale(1.05);
}
.experience-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--accent-color);
  color: var(--white);
  width: 140px;
  height: 140px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-family: 'Outfit', sans-serif;
  box-shadow: 0 10px 20px rgba(245, 158, 11, 0.3);
  border: 8px solid var(--white);
  z-index: 10;
}
.experience-badge h3 {
  font-size: 2.5rem;
  margin: 0;
  line-height: 1;
}

/* Services */
.services-section {
  padding: 80px 0;
  background-color: var(--bg-light);
}
.service-card {
  background: var(--white);
  border-radius: 15px;
  padding: 40px 30px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.03);
  transition: var(--transition);
  height: 100%;
  border: 1px solid rgba(0,0,0,0.05);
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 0;
  background: var(--primary-color);
  transition: var(--transition);
  z-index: -1;
}
.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}
.service-card:hover::before {
  height: 100%;
}
.service-card:hover h3, .service-card:hover p, .service-card:hover i {
  color: var(--white) !important;
}
.service-icon {
  width: 80px;
  height: 80px;
  background: rgba(59, 130, 246, 0.1);
  color: var(--secondary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin: 0 auto 20px;
  transition: var(--transition);
}
.service-card:hover .service-icon {
  background: rgba(255,255,255,0.2);
}

/* Why Us Section */
.why-us-section {
  padding: 80px 0;
  background: var(--primary-color);
  color: var(--white);
}
.feature-box {
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
}
.feature-icon {
  font-size: 2.5rem;
  color: var(--accent-color);
}
.feature-text h4 {
  margin-bottom: 10px;
}
.feature-text p {
  color: rgba(255,255,255,0.8);
}

/* Call to Action */
.cta-section {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--accent-color) 0%, #d97706 100%);
  color: var(--white);
  text-align: center;
}

/* Districts Grid */
.districts-section {
  padding: 80px 0;
}
.district-item {
  display: block;
  padding: 10px 20px;
  background: var(--white);
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  margin-bottom: 15px;
  color: var(--text-dark);
  text-decoration: none;
  font-weight: 500;
  transition: var(--transition);
  text-align: center;
}
.district-item:hover {
  background: var(--secondary-color);
  color: var(--white);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(59, 130, 246, 0.2);
}

/* Footer */
.footer {
  background: #0f172a;
  color: var(--white);
  padding: 60px 0 20px;
}
.footer-title {
  color: var(--white);
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}
.footer-title::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 50px;
  height: 2px;
  background: var(--accent-color);
}
.footer-links {
  list-style: none;
  padding: 0;
}
.footer-links li {
  margin-bottom: 10px;
}
.footer-links a {
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  transition: var(--transition);
}
.footer-links a:hover {
  color: var(--accent-color);
  padding-left: 5px;
}
.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.1);
  color: var(--white);
  border-radius: 50%;
  margin-right: 10px;
  transition: var(--transition);
  text-decoration: none;
}
.social-links a:hover {
  background: var(--accent-color);
  transform: translateY(-3px);
}
.footer-bottom {
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.5);
  font-size: 0.9rem;
}

/* Floating WhatsApp */
.floating-whatsapp {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background-color: var(--whatsapp-color);
  color: white;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
  z-index: 999;
  transition: var(--transition);
  text-decoration: none;
}
.floating-whatsapp:hover {
  transform: scale(1.1);
  color: white;
  box-shadow: 0 6px 15px rgba(37, 211, 102, 0.4);
}

/* Animations */
.section-title {
  margin-bottom: 50px;
}
.section-title h2 {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 15px;
}
.section-title p {
  color: var(--text-light);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
}

/* Responsive */
@media (max-width: 768px) {
  .hero-section h1 {
    font-size: 2.5rem;
  }
  .hero-section {
    padding: 120px 0 80px;
  }
  .topbar {
    display: none;
  }
}
