:root {
  --primary: #0a2540;
  --primary-light: #1a3d6b;
  --primary-dark: #06182b;
  --accent: #d4a017;
  --accent-light: #f0c040;
  --blue: #0066cc;
  --blue-light: #e8f0fe;
  --success: #0f7b3a;
  --bg: #f4f6f9;
  --bg-alt: #ffffff;
  --text: #1a1a2e;
  --text-light: #5a6a7a;
  --border: #e2e8f0;
  --shadow: 0 2px 20px rgba(10,37,64,0.08);
  --shadow-lg: 0 10px 40px rgba(10,37,64,0.12);
  --radius: 12px;
  --radius-lg: 20px;
  --transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
}

* { margin:0; padding:0; box-sizing:border-box; }
html { overflow-x: hidden; scrollbar-width: none; -ms-overflow-style: none; }
::-webkit-scrollbar { display: none; }

body {
  font-family: 'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif;
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.6;
  font-size: var(--font-body, 1rem);
  background:
    radial-gradient(ellipse 80% 60% at 10% 20%, color-mix(in srgb, var(--primary) 8%, transparent) 0%, transparent 50%),
    radial-gradient(ellipse 60% 50% at 90% 80%, color-mix(in srgb, var(--accent) 6%, transparent) 0%, transparent 50%),
    radial-gradient(ellipse 50% 40% at 50% 50%, color-mix(in srgb, var(--primary) 5%, transparent) 0%, transparent 50%),
    var(--bg);
  background-attachment: fixed;
  animation: bgShift 20s ease-in-out infinite alternate;
}
@keyframes bgShift {
  0% { background-position: 0% 0%, 100% 100%, 50% 50%; }
  100% { background-position: 5% 5%, 95% 95%, 55% 45%; }
}

/* ===== TOP BAR ===== */
.top-bar {
  background: var(--primary-dark);
  color: rgba(255,255,255,0.85);
  padding: 6px 0;
  font-size: 0.8rem;
  letter-spacing: 0.3px;
}
.top-bar a { color: rgba(255,255,255,0.8); text-decoration: none; transition: var(--transition); }
.top-bar a:hover { color: var(--accent); }
.top-bar i { font-size: 0.75rem; margin-right: 4px; }

/* ===== NAVBAR ===== */
.navbar {
  background: var(--bg-alt) !important;
  padding: 5px 0 !important;
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
}
.navbar .container { height: 70px; }
.navbar-brand {
  font-weight: 800;
  font-size: 1.3rem;
  color: var(--primary) !important;
  letter-spacing: -0.5px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.navbar-brand img { height: 38px; }
.navbar .nav-link {
  font-weight: 500;
  font-size: 0.88rem;
  color: var(--text-light) !important;
  padding: 24px 14px !important;
  transition: var(--transition);
  position: relative;
}
.navbar .nav-link::after {
  content: '';
  position: absolute;
  bottom: 0; left: 50%;
  width: 0; height: 3px;
  background: var(--accent);
  transition: var(--transition);
  transform: translateX(-50%);
  border-radius: 3px 3px 0 0;
}
.navbar .nav-link:hover { color: var(--primary) !important; }
.navbar .nav-link:hover::after { width: 70%; }
.navbar .btn-accent {
  background: var(--accent);
  color: #fff !important;
  padding: 8px 24px !important;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.85rem;
  border: none;
  transition: var(--transition);
}
.navbar .btn-accent:hover { background: #b8920a; transform: translateY(-1px); box-shadow: 0 4px 15px rgba(212,160,23,0.3); }
.navbar .btn-accent::after { display: none; }

/* ===== OFFER TICKER ===== */
.offer-ticker { background: var(--accent); color: var(--primary-dark); overflow: hidden; white-space: nowrap; padding: 8px 0; font-weight: 700; font-size: 0.85rem; }
.offer-ticker .ticker-track { display: flex; animation: ticker-scroll 30s linear infinite; }
.offer-ticker .ticker-track span { white-space: nowrap; padding: 0 50px; flex-shrink: 0; display: inline-flex; align-items: center; gap: 10px; }
.offer-ticker .ticker-img { height: 30px; width: auto; }
@keyframes ticker-scroll { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
.offer-ticker + .hero-section { padding-top: 0; }

/* ===== HERO ===== */
.hero-section {
  position: relative;
  padding: 0;
  margin: 0;
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 40%, var(--primary-light) 100%);
  overflow: hidden;
    line-height: 0;
}
.hero-section .container { line-height: normal; }
.hero-section .hero-stats { line-height: normal; }
.hero-section .carousel-inner { line-height: 0; }
.hero-section::before {
  content: '';
  position: absolute;
  top: -30%; right: -10%;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(212,160,23,0.08) 0%, transparent 70%);
  border-radius: 50%;
}
.hero-section .display-4 {
  font-weight: 800;
  letter-spacing: -1px;
  line-height: 1.15;
  font-size: var(--font-hero-title, 2.5rem);
}
.hero-section .lead {
  font-size: 1.1rem;
  opacity: 0.85;
  line-height: 1.7;
  max-width: 540px;
}
.hero-section .btn-light {
  background: #fff;
  color: var(--primary);
  border-radius: 50px;
  padding: 12px 32px;
  font-weight: 700;
  font-size: 0.9rem;
  border: none;
  transition: var(--transition);
}
.hero-section .btn-light:hover { background: var(--accent); color: #fff; transform: translateY(-2px); box-shadow: 0 8px 25px rgba(0,0,0,0.2); }
.hero-section .btn-outline-light { border-radius: 50px; padding: 12px 32px; font-weight: 600; font-size: 0.9rem; border: 2px solid rgba(255,255,255,0.3); transition: var(--transition); }
.hero-section .btn-outline-light:hover { background: rgba(255,255,255,0.1); border-color: #fff; }
.hero-image {
  max-height: 420px;
  object-fit: contain;
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
  transform: perspective(1000px) rotateY(-3deg);
  transition: var(--transition);
}
.hero-image:hover { transform: perspective(1000px) rotateY(0deg); }
.hero-stats h3 { font-size: 2rem; font-weight: 800; }
.hero-stats small { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 1px; opacity: 0.7; }

.min-vh-75 { min-height: 75vh; }

/* ===== HERO SLIDER ===== */
#heroCarousel { position: relative; margin-bottom: 0; }
#heroCarousel .carousel-inner { height: 400px; }
#heroCarousel .carousel-item { line-height: 0; }
.hero-slide { height: 400px; }
#heroCarousel .carousel-indicators { bottom: 10px; margin-bottom: 0; }
#heroCarousel .carousel-indicators button { margin-bottom: 0; }
#heroCarousel .carousel-indicators button { width: 12px; height: 12px; border-radius: 50%; border: 2px solid rgba(255,255,255,0.5); background: transparent; margin: 0 5px; }
#heroCarousel .carousel-indicators button.active { background: var(--accent); border-color: var(--accent); }
#heroCarousel .carousel-control-prev, #heroCarousel .carousel-control-next { width: 50px; height: 50px; top: 50%; transform: translateY(-50%); background: rgba(255,255,255,0.1); border-radius: 50%; backdrop-filter: blur(4px); }
#heroCarousel .carousel-control-prev { left: 20px; }
#heroCarousel .carousel-control-next { right: 20px; }
#heroCarousel .carousel-control-prev:hover, #heroCarousel .carousel-control-next:hover { background: rgba(255,255,255,0.2); }

/* ===== SECTION STYLES ===== */
.section-padding { padding: 20px 0; }
.section-label {
  display: inline-block;
  background: var(--blue-light);
  color: var(--blue);
  padding: 4px 16px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 12px;
}
.section-title {
  font-size: var(--font-section-title, 2.2rem);
  font-weight: 800;
  letter-spacing: -0.5px;
  margin-bottom: 12px;
}
.section-subtitle {
  color: var(--text-light);
  font-size: 1.05rem;
  max-width: 550px;
  margin: 0 auto;
}

/* ===== SERVICE CARDS ===== */
.service-card {
  background: var(--bg-alt);
  border-radius: var(--radius);
  padding: 35px 30px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: var(--transition);
  height: 100%;
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--accent), var(--blue));
  transform: scaleX(0);
  transition: var(--transition);
}
.service-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); border-color: transparent; }
.service-card:hover::before { transform: scaleX(1); }
.service-icon {
  width: 72px; height: 72px;
  background: linear-gradient(135deg, var(--blue-light), #d4e4ff);
  border-radius: 18px;
  display: flex;
  align-items: center; justify-content: center;
  margin: 0 auto 22px;
  transition: var(--transition);
}
.service-icon i { font-size: 1.8rem; color: var(--blue); transition: var(--transition); }
.service-card:hover .service-icon { background: linear-gradient(135deg, var(--primary), var(--primary-light)); }
.service-card:hover .service-icon i { color: #fff; transform: scale(1.1); }
.service-card h5 { font-weight: 700; font-size: var(--font-card-title, 1.1rem); margin-bottom: 10px; }
.service-card p { font-size: 0.88rem; color: var(--text-light); line-height: 1.7; }

/* ===== OTHER SERVICE ITEMS ===== */
.other-service-item {
  background: var(--bg-alt);
  border-radius: var(--radius);
  padding: 30px 20px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: var(--transition);
  height: 100%;
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
}
.other-service-item::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--accent);
  transform: scaleX(0);
  transition: var(--transition);
}
.other-service-item:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: transparent; }
.other-service-item:hover::before { transform: scaleX(1); }
.other-service-item i { font-size: 2rem; color: var(--primary); transition: var(--transition); }
.other-service-item:hover i { color: var(--accent); transform: scale(1.15); }
.other-service-item span { font-weight: 600; font-size: 0.95rem; color: var(--text); }

/* ===== CATEGORY CARDS ===== */
.category-card {
  background: var(--bg-alt);
  border-radius: var(--radius);
  padding: 35px 25px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: var(--transition);
  height: 100%;
  border: 1px solid var(--border);
}
.category-card:hover { transform: scale(1.03); box-shadow: var(--shadow-lg); }
.category-card i { color: var(--primary); transition: var(--transition); }
.category-card:hover i { color: var(--accent); }
.category-card h5 { font-weight: 700; font-size: var(--font-card-title, 1.05rem); }
...
.why-card h5 { font-weight: 700; font-size: var(--font-card-title, 1.05rem); }
.why-card p { font-size: 0.88rem; color: var(--text-light); line-height: 1.7; }

/* ===== TESTIMONIALS ===== */
.testimonial-card {
  background: var(--bg-alt);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
  transition: var(--transition);
  height: 100%;
  border: 1px solid var(--border);
}
.testimonial-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.testimonial-card .stars { font-size: 0.85rem; letter-spacing: 2px; }
.testimonial-card p { font-size: 0.88rem; color: var(--text-light); line-height: 1.7; font-style: italic; }
.testimonial-card .avatar {
  width: 44px; height: 44px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: #fff;
  display: flex;
  align-items: center; justify-content: center;
  border-radius: 50%;
  font-weight: 700;
  font-size: 1.1rem;
  flex-shrink: 0;
}

/* ===== CONTACT ===== */
.contact-info-card {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary), var(--primary-light));
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 40px;
  color: #fff;
  min-height: 400px;
  position: relative;
  overflow: hidden;
}
.contact-info-card::before {
  content: '';
  position: absolute;
  top: -50%; right: -30%;
  width: 300px; height: 300px;
  background: rgba(212,160,23,0.08);
  border-radius: 50%;
}
.contact-info-card h4 { font-weight: 700; }
.contact-info-card .contact-item { display: flex; gap: 15px; margin-bottom: 22px; }
.contact-info-card .contact-item i { font-size: 1.3rem; color: var(--accent); margin-top: 4px; }
.contact-info-card .contact-item h6 { font-weight: 600; font-size: 0.85rem; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 2px; opacity: 0.7; }
.contact-info-card .contact-item p { opacity: 0.9; font-size: 0.95rem; }
.contact-info-card .contact-item a { color: var(--accent); text-decoration: none; }
#contactForm .form-control {
  border-radius: 10px;
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  font-size: 0.9rem;
  transition: var(--transition);
}
#contactForm .form-control:focus { border-color: var(--blue); box-shadow: 0 0 0 4px rgba(0,102,204,0.1); }
#contactForm .btn-primary {
  background: var(--primary);
  border: none;
  border-radius: 10px;
  padding: 12px 36px;
  font-weight: 600;
  transition: var(--transition);
}
#contactForm .btn-primary:hover { background: var(--primary-light); transform: translateY(-2px); box-shadow: 0 8px 25px rgba(10,37,64,0.2); }
#contactForm .card { background: var(--bg-alt); }

/* ===== FOOTER ===== */
.footer {
  background: var(--primary-dark);
  color: rgba(255,255,255,0.75);
  padding: 60px 0 0;
}
.footer h5, .footer h6 { color: #fff; font-weight: 700; }
.footer a {
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  transition: var(--transition);
  line-height: 2.2;
  font-size: 0.9rem;
}
.footer a:hover { color: var(--accent); padding-left: 3px; }
.footer ul li i { width: 20px; color: var(--accent); margin-right: 6px; }
.social-links a {
  display: inline-flex; width: 40px; height: 40px;
  background: rgba(255,255,255,0.08);
  border-radius: 50%;
  align-items: center; justify-content: center;
  margin-right: 8px;
  font-size: 1rem;
  transition: var(--transition);
}
.social-links a:hover { background: var(--accent); color: #fff !important; padding-left: 0; transform: translateY(-2px); }
.footer-bottom {
  margin-top: 50px;
  padding: 20px 0;
  border-top: 1px solid rgba(255,255,255,0.06);
  font-size: 0.85rem;
  opacity: 0.6;
}
.footer-bottom .visitor-count {
  font-size: 0.8rem;
  opacity: 0.7;
}
.footer-bottom .visitor-count i { margin-right: 4px; }

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
  .hero-section { text-align: center; }
  .hero-section .lead { margin: 0 auto; }
  .hero-stats { justify-content: center !important; }
  .hero-image { transform: none; margin-top: 30px; }
  .section-padding { padding: 60px 0; }
  .section-title { font-size: 1.7rem; }
}
@media (max-width: 768px) {
  .top-bar .text-end { text-align: left !important; margin-top: 4px; }
  .navbar .container { height: auto; padding: 10px 0; }
  .navbar .nav-link { padding: 10px 0 !important; }
  .hero-section .display-4 { font-size: 1.8rem; }
  .hero-stats { flex-wrap: wrap; gap: 15px; }
  .hero-stats h3 { font-size: 1.5rem; }
  .contact-info-card { padding: 28px; }
  #heroCarousel .carousel-inner { height: 220px; }
  .hero-slide { height: 220px; }
  .min-vh-75 { min-height: 50vh; }
@media (max-width: 480px) {
  #heroCarousel .carousel-inner { height: 180px; }
  .hero-slide { height: 180px; }
  .min-vh-75 { min-height: 40vh; }
}

/* ===== UTILITIES ===== */
.bg-soft { background: var(--bg); }
.text-accent { color: var(--accent); }
.shadow-hover { transition: var(--transition); }
.shadow-hover:hover { box-shadow: var(--shadow-lg); }
