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

:root {
  --primary-orange: #FF9933;
  --primary-green: #28A745;
  --accent-blue: #007BFF;
  --accent-yellow: #FFC107;
  --light-bg: #F8F9FA;
  --dark-text: #2C3E50;
  --white: #FFFFFF;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: var(--dark-text);
  line-height: 1.6;
  overflow-x: hidden;
}

/* ── Navbar ── */
.navbar {
  background: white;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  padding: 10px 0;
  transition: all 0.3s ease;
}
.navbar.scrolled { box-shadow: 0 4px 30px rgba(0,0,0,0.15); }

.navbar-brand img {
  height: 50px; width: auto;
  transition: transform 0.3s ease;
}
.navbar-brand img:hover { transform: scale(1.05); }

.nav-link {
  color: var(--dark-text) !important;
  font-weight: 600;
  margin: 0 6px;
  padding: 8px 14px !important;
  border-radius: 8px;
  transition: all 0.3s ease;
  position: relative;
  font-size: 0.92rem;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0; left: 50%;
  transform: translateX(-50%);
  width: 0; height: 3px;
  background: linear-gradient(90deg, var(--primary-orange), var(--primary-green));
  transition: width 0.3s ease;
}
.nav-link:hover::after, .nav-link.active::after { width: 80%; }
.nav-link:hover, .nav-link.active {
  color: var(--primary-green) !important;
  background: rgba(40,167,69,0.05);
}

/* ── Hero ── */
.hero-section {
  background: linear-gradient(135deg, var(--primary-green) 0%, var(--accent-blue) 100%);
  color: white;
  padding: 120px 0 80px;
  position: relative;
  overflow: hidden;
}
.hero-section::before {
  content: '';
  position: absolute;
  top: -50%; right: -10%;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
  border-radius: 50%;
  animation: float 20s ease-in-out infinite;
}
.hero-section::after {
  content: '';
  position: absolute;
  bottom: -30%; left: -5%;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(255,153,51,0.2) 0%, transparent 70%);
  border-radius: 50%;
  animation: float 15s ease-in-out infinite reverse;
}
@keyframes float {
  0%,100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-30px) rotate(5deg); }
}

.hero-content { position: relative; z-index: 2; animation: fadeInUp 1s ease; }
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-title { font-size: 3.5rem; font-weight: 800; margin-bottom: 20px; text-shadow: 2px 2px 4px rgba(0,0,0,0.1); line-height: 1.2; }
.hero-subtitle { font-size: 1.3rem; margin-bottom: 35px; opacity: 0.95; font-weight: 400; }

.btn-primary-custom {
  background: linear-gradient(135deg, var(--primary-orange), var(--accent-yellow));
  border: none; color: white;
  padding: 16px 45px; font-size: 1.1rem; font-weight: 700;
  border-radius: 50px;
  transition: all 0.4s ease;
  box-shadow: 0 8px 25px rgba(255,153,51,0.4);
  position: relative; overflow: hidden;
}
.btn-primary-custom::before {
  content: '';
  position: absolute; top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  transition: left 0.5s ease;
}
.btn-primary-custom:hover::before { left: 100%; }
.btn-primary-custom:hover { transform: translateY(-3px); box-shadow: 0 12px 35px rgba(255,153,51,0.5); }

.hero-image { position: relative; z-index: 2; animation: fadeInRight 1s ease; }
@keyframes fadeInRight {
  from { opacity: 0; transform: translateX(50px); }
  to   { opacity: 1; transform: translateX(0); }
}
.hero-phone-icon { font-size: 20rem; opacity: 0.15; color: white; filter: drop-shadow(0 10px 20px rgba(0,0,0,0.2)); }

/* ── Section common ── */
.section-title {
  font-size: 2.8rem; font-weight: 800;
  text-align: center; margin-bottom: 60px;
  background: linear-gradient(135deg, var(--primary-green), var(--accent-blue));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  position: relative;
}
.section-title::after {
  content: '';
  position: absolute; bottom: -15px; left: 50%; transform: translateX(-50%);
  width: 100px; height: 4px;
  background: linear-gradient(90deg, var(--primary-orange), var(--primary-green));
  border-radius: 2px;
}

/* ── Services ── */
.services-section { padding: 100px 0; background: var(--light-bg); }

.service-card {
  background: white; border-radius: 25px; padding: 45px 35px; text-align: center;
  transition: all 0.4s cubic-bezier(0.175,0.885,0.32,1.275);
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  height: 100%; border: 2px solid transparent;
  position: relative; overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute; top: 0; left: -100%; width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(40,167,69,0.05), transparent);
  transition: left 0.5s ease;
}
.service-card:hover::before { left: 100%; }
.service-card:hover { transform: translateY(-15px) scale(1.02); box-shadow: 0 20px 50px rgba(40,167,69,0.2); border-color: var(--primary-green); }

.service-icon { font-size: 5rem; margin-bottom: 25px; display: inline-block; transition: all 0.4s ease; }
.service-card:nth-child(1) .service-icon { background: linear-gradient(135deg, var(--primary-orange), #FF6B35); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.service-card:nth-child(2) .service-icon { background: linear-gradient(135deg, var(--primary-green), #1E7E34); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.service-card:nth-child(3) .service-icon { background: linear-gradient(135deg, var(--accent-blue), #0056b3); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.service-card:hover .service-icon { transform: scale(1.15) rotate(5deg); }

.service-title { font-size: 1.6rem; font-weight: 700; margin-bottom: 18px; color: var(--dark-text); }
.service-description { color: #666; line-height: 1.8; font-size: 1rem; }

/* ── Features ── */
.features-section { padding: 100px 0; background: white; }

.feature-box { text-align: center; padding: 30px 20px; transition: all 0.3s ease; border-radius: 15px; }
.feature-box:hover { background: var(--light-bg); transform: translateY(-5px); }
.feature-icon { font-size: 3.5rem; margin-bottom: 20px; display: inline-block; transition: all 0.3s ease; }
.feature-box:nth-child(4n+1) .feature-icon { color: var(--primary-orange); }
.feature-box:nth-child(4n+2) .feature-icon { color: var(--primary-green); }
.feature-box:nth-child(4n+3) .feature-icon { color: var(--accent-blue); }
.feature-box:nth-child(4n+4) .feature-icon { color: var(--accent-yellow); }
.feature-box:hover .feature-icon { transform: scale(1.2) rotate(360deg); }
.feature-title { font-size: 1.3rem; font-weight: 700; margin-bottom: 10px; color: var(--dark-text); }

/* ── Policy Pages ── */
.policy-section {
  padding: 100px 0; min-height: 80vh;
  background: var(--light-bg);
}

/* Page Banner for policy pages */
.page-banner {
  background: linear-gradient(135deg, var(--primary-green) 0%, var(--accent-blue) 100%);
  color: white; padding: 80px 0 60px;
  position: relative; overflow: hidden;
  text-align: center;
}
.page-banner::before {
  content: '';
  position: absolute; top: -50%; right: -10%;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(255,255,255,0.08) 0%, transparent 70%);
  border-radius: 50%; animation: float 20s ease-in-out infinite;
}
.page-banner::after {
  content: '';
  position: absolute; bottom: -20%; left: -5%;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(255,153,51,0.15) 0%, transparent 70%);
  border-radius: 50%; animation: float 15s ease-in-out infinite reverse;
}
.page-banner-content { position: relative; z-index: 2; animation: fadeInUp 0.8s ease; }
.page-banner-icon { font-size: 4rem; margin-bottom: 15px; opacity: 0.9; display: block; }
.page-banner-title { font-size: 3rem; font-weight: 800; margin-bottom: 12px; text-shadow: 2px 2px 4px rgba(0,0,0,0.15); }
.page-banner-subtitle { font-size: 1.1rem; opacity: 0.9; font-weight: 400; }

/* Breadcrumb */
.breadcrumb-bar {
  background: white;
  padding: 14px 0;
  border-bottom: 1px solid rgba(0,0,0,0.07);
  box-shadow: 0 2px 10px rgba(0,0,0,0.04);
}
.breadcrumb { margin: 0; font-size: 0.9rem; }
.breadcrumb-item a { color: var(--primary-green); text-decoration: none; font-weight: 600; }
.breadcrumb-item a:hover { text-decoration: underline; }
.breadcrumb-item.active { color: #888; }
.breadcrumb-item+.breadcrumb-item::before { color: #aaa; }

.policy-content {
  background: white; padding: 60px;
  border-radius: 25px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.1);
  position: relative; overflow: hidden;
}
.policy-content::before {
  content: '';
  position: absolute; top: 0; left: 0;
  width: 6px; height: 100%;
  background: linear-gradient(180deg, var(--primary-orange), var(--primary-green), var(--accent-blue));
  border-radius: 6px 0 0 6px;
}

.policy-meta {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(40,167,69,0.08);
  color: var(--primary-green);
  padding: 8px 18px; border-radius: 50px;
  font-size: 0.9rem; font-weight: 600;
  margin-bottom: 30px;
  border: 1px solid rgba(40,167,69,0.2);
}

.policy-subtitle {
  font-size: 1.4rem; font-weight: 700;
  color: var(--primary-green);
  margin-top: 40px; margin-bottom: 15px;
  padding-left: 18px;
  border-left: 4px solid var(--primary-orange);
  position: relative;
}

.policy-text { color: #555; line-height: 1.9; margin-bottom: 18px; font-size: 1.05rem; }
.policy-text ul { margin-top: 15px; padding-left: 20px; }
.policy-text li { margin-bottom: 10px; }

/* Policy navigation cards at bottom */
.policy-nav-cards { margin-top: 60px; }
.policy-nav-card {
  display: flex; align-items: center; gap: 15px;
  background: white; border-radius: 16px; padding: 20px 25px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
  text-decoration: none; color: var(--dark-text);
  transition: all 0.3s ease;
  border: 2px solid transparent;
}
.policy-nav-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(40,167,69,0.2);
  border-color: var(--primary-green);
  color: var(--dark-text);
  text-decoration: none;
}
.policy-nav-card .nav-icon {
  width: 50px; height: 50px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 12px; font-size: 1.5rem;
  flex-shrink: 0;
}
.policy-nav-card .nav-label { font-size: 0.8rem; color: #888; font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px; }
.policy-nav-card .nav-title { font-size: 1rem; font-weight: 700; margin-top: 2px; }
.policy-nav-card .nav-arrow { margin-left: auto; font-size: 1.2rem; color: var(--primary-green); opacity: 0.6; transition: all 0.3s ease; }
.policy-nav-card:hover .nav-arrow { opacity: 1; transform: translateX(5px); }

/* Alert / highlight box */
.policy-alert {
  background: linear-gradient(135deg, rgba(255,153,51,0.1), rgba(255,193,7,0.1));
  border: 1px solid rgba(255,153,51,0.3);
  border-radius: 15px; padding: 20px 25px;
  margin: 25px 0;
  display: flex; gap: 15px; align-items: flex-start;
}
.policy-alert .alert-icon { font-size: 1.5rem; color: var(--primary-orange); flex-shrink: 0; }
.policy-alert p { margin: 0; color: #555; font-size: 0.98rem; line-height: 1.7; }

/* ── Footer ── */
.footer {
  background: linear-gradient(135deg, var(--primary-green), var(--accent-blue));
  color: white; padding: 60px 0 20px;
  position: relative;
}
.footer::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 5px;
  background: linear-gradient(90deg, var(--primary-orange), var(--accent-yellow), var(--primary-orange));
}
.footer-title { font-size: 1.4rem; font-weight: 700; margin-bottom: 25px; }
.footer-link {
  color: rgba(255,255,255,0.85); text-decoration: none;
  display: block; margin-bottom: 12px;
  transition: all 0.3s ease; padding-left: 0;
}
.footer-link:hover { color: white; padding-left: 10px; text-decoration: none; }
.social-icons a {
  display: inline-flex; align-items: center; justify-content: center;
  width: 45px; height: 45px;
  background: rgba(255,255,255,0.1); border-radius: 50%;
  color: white; font-size: 1.3rem; margin-right: 12px;
  transition: all 0.3s ease;
}
.social-icons a:hover { background: var(--primary-orange); transform: translateY(-3px); }
.copyright {
  text-align: center; padding-top: 35px; margin-top: 35px;
  border-top: 1px solid rgba(255,255,255,0.2); color: rgba(255,255,255,0.8);
}

/* ── Responsive ── */
@media (max-width: 768px) {
  .hero-title { font-size: 2.2rem; }
  .hero-subtitle { font-size: 1.1rem; }
  .section-title { font-size: 2rem; }
  .policy-content { padding: 35px 25px; }
  .page-banner-title { font-size: 2rem; }
  .hero-phone-icon { font-size: 10rem; }
  .service-icon { font-size: 4rem; }
  .policy-nav-card { flex-wrap: wrap; }
}
