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

:root {
  --primary-color: #000F6B; /* Deep Navy */
  --secondary-color: #000a4d;
  --accent-color: #FFC000; /* Yellow/Gold */
  --text-dark: #333333;
  --text-light: #666666;
  --bg-light: #f8fafc;
  --silver-light: #e2e8f0;
  --white: #ffffff;
  --glass-bg: rgba(255, 255, 255, 0.1);
  --glass-border: rgba(255, 255, 255, 0.2);
}

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

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

a {
  text-decoration: none;
  transition: all 0.3s ease;
}

/* Utilities */
.text-primary-theme { color: var(--primary-color) !important; }
.text-accent { color: var(--accent-color) !important; }
.bg-primary-theme { background-color: var(--primary-color) !important; }
.bg-accent { background-color: var(--accent-color) !important; }
.section-padding { padding: 80px 0; }

/* Buttons */
.btn-custom {
  font-weight: 600;
  padding: 12px 28px;
  border-radius: 4px;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 14px;
}

.btn-primary-custom {
  background-color: var(--accent-color);
  color: #000;
  border: 2px solid var(--accent-color);
}

.btn-primary-custom:hover {
  background-color: transparent;
  color: var(--accent-color);
  border-color: var(--accent-color);
}

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

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

/* Header & Navigation */
.main-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: all 0.4s ease;
  background-color: transparent;
  padding: 15px 0;
}

.main-header.scrolled {
  background-color: var(--primary-color);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  padding: 10px 0;
}

.navbar-brand {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 24px;
  color: var(--white) !important;
  letter-spacing: 1px;
}

.nav-link {
  color: var(--white) !important;
  font-weight: 500;
  margin: 0 10px;
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 0;
  left: 50%;
  background-color: var(--accent-color);
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

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

/* Hero Section */
.hero-section {
  height: 100vh;
  min-height: 600px;
  position: relative;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
  color: var(--white);
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(11, 28, 60, 0.9) 0%, rgba(11, 28, 60, 0.4) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-subtitle {
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--accent-color);
  font-weight: 600;
  margin-bottom: 20px;
  display: block;
}

.hero-title {
  font-size: 56px;
  line-height: 1.2;
  margin-bottom: 25px;
}

/* Glassmorphism Stats */
.glass-stats-container {
  position: absolute;
  bottom: -40px;
  left: 0;
  width: 100%;
  z-index: 10;
}

.glass-card {
  background: var(--glass-bg);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid var(--glass-border);
  border-radius: 8px;
  padding: 30px 20px;
  text-align: center;
  box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.1);
  color: var(--white);
  transition: transform 0.3s ease;
}

.glass-card:hover {
  transform: translateY(-5px);
}

.stat-number {
  font-size: 36px;
  font-weight: 700;
  color: var(--accent-color);
  font-family: 'Outfit', sans-serif;
}

.stat-text {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* About Section */
.about-section {
  padding-top: 120px;
}

.section-title {
  font-size: 36px;
  color: var(--primary-color);
  margin-bottom: 20px;
}

.section-subtitle {
  color: var(--accent-color);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 14px;
  margin-bottom: 10px;
  display: block;
}

/* Services */
.service-card {
  background: var(--white);
  border-radius: 8px;
  padding: 40px 30px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
  transition: all 0.4s ease;
  border-bottom: 3px solid transparent;
  height: 100%;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  border-bottom: 3px solid var(--accent-color);
}

.service-icon {
  font-size: 72px;
  color: var(--primary-color);
  margin-bottom: 20px;
  transition: color 0.3s ease;
}

.service-card:hover .service-icon {
  color: var(--accent-color);
}

/* Why Choose Us */
.why-choose-us {
  background-color: var(--primary-color);
  color: var(--white);
}

.why-choose-us .section-title {
  color: var(--white);
}

.feature-item {
  display: flex;
  margin-bottom: 30px;
}

.feature-icon {
  font-size: 30px;
  color: var(--accent-color);
  margin-right: 20px;
  flex-shrink: 0;
}

/* Map Section */
.map-section {
  background-color: var(--white);
  position: relative;
}

.map-container {
  height: 400px;
  background-image: url('https://images.unsplash.com/photo-1524661135-423995f22d0b?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80');
  background-size: cover;
  background-position: center;
  position: relative;
  border-radius: 8px;
  overflow: hidden;
}

.map-overlay {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background-color: rgba(11, 28, 60, 0.8);
}

.map-pin {
  position: absolute;
  width: 15px;
  height: 15px;
  background-color: var(--accent-color);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

.pin-1 { top: 30%; left: 70%; }
.pin-2 { top: 40%; left: 72%; }
.pin-3 { top: 50%; left: 68%; }
.pin-4 { top: 20%; left: 20%; }

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(211, 47, 47, 0.7); }
  70% { box-shadow: 0 0 0 15px rgba(211, 47, 47, 0); }
  100% { box-shadow: 0 0 0 0 rgba(211, 47, 47, 0); }
}

/* Testimonials */
.testimonial-card {
  background: var(--white);
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  margin: 15px;
}

.client-info {
  display: flex;
  align-items: center;
  margin-top: 20px;
}

.client-img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin-right: 15px;
}

/* CTA Banner */
.cta-banner {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  color: var(--white);
  padding: 80px 0;
  text-align: center;
}

/* Footer */
.main-footer {
  background-color: #050d1d;
  color: #a0aec0;
  padding: 60px 0 20px;
}

.footer-title {
  color: var(--white);
  margin-bottom: 25px;
  font-size: 18px;
}

.footer-links {
  list-style: none;
  padding: 0;
}

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

.footer-links a {
  color: #a0aec0;
}

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

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  margin-top: 40px;
  padding-top: 20px;
}

/* Responsive */
@media (max-width: 991px) {
  .hero-title { font-size: 40px; }
  .glass-stats-container { position: relative; bottom: 0; margin-top: -30px; }
  .navbar-collapse { background: var(--primary-color); padding: 20px; border-radius: 8px; margin-top: 15px; }
}

@media (max-width: 767px) {
  .hero-title { font-size: 32px; }
  .section-title { font-size: 28px; }
}
