
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&family=Poppins:wght@500;600;700;800&display=swap');

:root {
  --primary: #73B9B5;
  --primary-dark: #5A9996;
  --dark: #071F2A;
  --charcoal: #101820;
  --light: #F6F8FA;
  --teal-light: #EAF8F7;
  --gold: #F4B942;
  --white: #FFFFFF;
  --text: #4A5568;
  --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background-color: var(--light);
  line-height: 1.7;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Poppins', sans-serif;
  color: var(--dark);
  font-weight: 700;
  line-height: 1.2;
}

.text-primary { color: var(--primary) !important; }
.text-dark { color: var(--dark) !important; }
.bg-primary { background-color: var(--primary) !important; }
.bg-dark { background-color: var(--dark) !important; }
.bg-light { background-color: var(--light) !important; }
.bg-teal-light { background-color: var(--teal-light) !important; }

/* Buttons */
.btn-custom {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  padding: 12px 28px;
  border-radius: 8px;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  letter-spacing: 0.3px;
}
.btn-primary.btn-custom {
  background: var(--primary);
  border: 2px solid var(--primary);
  color: var(--white);
}
.btn-primary.btn-custom:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(115, 185, 181, 0.3);
}
.btn-dark.btn-custom {
  background: var(--dark);
  border: 2px solid var(--dark);
  color: var(--white);
}
.btn-dark.btn-custom:hover {
  background: var(--charcoal);
  border-color: var(--charcoal);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(7, 31, 42, 0.3);
}
.btn-outline-dark.btn-custom {
  border: 2px solid var(--dark);
  color: var(--dark);
  background: transparent;
}
.btn-outline-dark.btn-custom:hover {
  background: var(--dark);
  color: var(--white);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(7, 31, 42, 0.2);
}

/* Navbar */
.glass-nav {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  transition: var(--transition);
  padding: 15px 0;
}
.glass-nav.scrolled {
  padding: 8px 0;
  box-shadow: 0 10px 30px rgba(7, 31, 42, 0.08);
  background: rgba(255, 255, 255, 0.98);
}
.navbar-brand { font-family: 'Poppins', sans-serif; font-weight: 800; font-size: 1.5rem; color: var(--dark); display: flex; align-items: center; gap: 8px; }
.navbar-brand i { color: var(--primary); font-size: 1.8rem; }
.nav-link { font-family: 'Poppins', sans-serif; font-weight: 600; color: var(--dark); padding: 10px 15px !important; transition: var(--transition); position: relative; }
.nav-link:hover { color: var(--primary); }
.nav-link::after {
  content: ''; position: absolute; bottom: 5px; left: 15px; width: 0; height: 2px;
  background: var(--primary); transition: var(--transition);
}
.nav-link:hover::after { width: calc(100% - 30px); }
.navbar-toggler { border: none; outline: none; }
.navbar-toggler:focus { box-shadow: none; }

/* Mobile Bottom Bar */
.mobile-bottom-bar {
  display: none; position: fixed; bottom: 0; left: 0; width: 100%;
  background: rgba(7, 31, 42, 0.95); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  z-index: 1000; box-shadow: 0 -5px 20px rgba(0,0,0,0.15);
  border-top: 1px solid rgba(255,255,255,0.1);
}
.mobile-bottom-bar a {
  flex: 1; text-align: center; padding: 15px 0; color: var(--white); font-family: 'Poppins', sans-serif; font-weight: 600; text-decoration: none; font-size: 0.9rem; display: flex; flex-direction: column; align-items: center; justify-content: center; position: relative; transition: var(--transition);
}
.mobile-bottom-bar a:first-child::after {
  content: ''; position: absolute; right: 0; top: 20%; height: 60%; width: 1px; background: rgba(255,255,255,0.2);
}
.mobile-bottom-bar a i { color: var(--primary); font-size: 1.2rem; margin-bottom: 5px; }
.mobile-bottom-bar a:active { background: rgba(255,255,255,0.1); }
@media (max-width: 991px) {
  .mobile-bottom-bar { display: flex; }
  body { padding-bottom: 75px; }
  .navbar-collapse { background: var(--white); padding: 20px; border-radius: 12px; box-shadow: 0 10px 30px rgba(0,0,0,0.1); margin-top: 10px; }
}

/* Hero Section */
.hero {
  padding: 160px 0 100px;
  background: radial-gradient(circle at top right, var(--teal-light) 0%, var(--light) 100%);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; top: -100px; right: -100px; width: 400px; height: 400px;
  background: var(--primary); filter: blur(100px); opacity: 0.15; border-radius: 50%; z-index: 0;
}
.hero-content { position: relative; z-index: 2; }
.hero h1 { font-size: 3.5rem; letter-spacing: -1px; }
.hero .lead { font-size: 1.25rem; color: var(--text); }
.hero-notice { border-left: 4px solid var(--primary); }

.hero-image-wrapper { position: relative; z-index: 2; perspective: 1000px; }
.hero-img { border-radius: 20px; border: 4px solid var(--white); }
.glass-card {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  position: absolute;
}
.top-left { top: -30px; left: -40px; }
.bottom-right { bottom: -30px; right: -40px; }

/* Emergency Strip */
.emergency-strip {
  background: linear-gradient(135deg, var(--dark) 0%, var(--charcoal) 100%);
  color: var(--white);
  padding: 20px 0;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 1.1rem;
  box-shadow: inset 0 3px 10px rgba(0,0,0,0.2);
}
.emergency-strip span { color: var(--primary); }

/* Service Cards */
.service-card {
  background: var(--white);
  border-radius: 20px;
  padding: 40px 30px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.03);
  border: 1px solid rgba(0,0,0,0.03);
  transition: var(--transition);
  height: 100%;
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.service-card::after {
  content: ''; position: absolute; bottom: 0; left: 0; width: 100%; height: 4px;
  background: var(--primary); transform: scaleX(0); transition: var(--transition); transform-origin: left;
}
.service-card:hover { transform: translateY(-10px); box-shadow: 0 20px 40px rgba(115, 185, 181, 0.12); }
.service-card:hover::after { transform: scaleX(1); }
.service-icon-wrapper {
  width: 80px; height: 80px; background: var(--teal-light); border-radius: 20px;
  display: flex; align-items: center; justify-content: center; margin: 0 auto 25px;
  transition: var(--transition); color: var(--primary); font-size: 32px;
}
.service-card:hover .service-icon-wrapper { background: var(--primary); color: var(--white); transform: scale(1.1) rotate(5deg); }
.service-card h3 { font-size: 1.3rem; margin-bottom: 15px; }
.service-card p { font-size: 0.95rem; margin-bottom: 25px; }
.service-link { color: var(--dark); font-family: 'Poppins', sans-serif; font-weight: 700; text-decoration: none; display: inline-flex; align-items: center; transition: var(--transition); }
.service-link i { margin-left: 8px; transition: transform 0.3s; color: var(--primary); }
.service-card:hover .service-link { color: var(--primary); }
.service-card:hover .service-link i { transform: translateX(5px); }

/* Trust Section */
.trust-card {
  background: var(--white); border-radius: 16px; padding: 30px; display: flex; align-items: flex-start;
  box-shadow: 0 10px 30px rgba(0,0,0,0.03); transition: var(--transition); border: 1px solid rgba(0,0,0,0.02);
  height: 100%;
}
.trust-card:hover { transform: translateY(-5px); box-shadow: 0 15px 35px rgba(0,0,0,0.08); }
.trust-card-icon {
  flex-shrink: 0; width: 60px; height: 60px; background: var(--teal-light); color: var(--primary);
  border-radius: 16px; display: flex; align-items: center; justify-content: center; font-size: 28px; margin-right: 20px; transition: var(--transition);
}
.trust-card:hover .trust-card-icon { background: var(--primary); color: var(--white); }
.trust-card h4 { font-size: 1.2rem; margin-bottom: 10px; }
.trust-card p { font-size: 0.95rem; margin-bottom: 0; }

/* Reviews */
.review-card {
  background: var(--white); padding: 40px; border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.03); height: 100%; position: relative; border: 1px solid rgba(0,0,0,0.02);
}
.review-quote-icon { position: absolute; top: 30px; right: 30px; font-size: 40px; color: var(--teal-light); opacity: 0.5; }
.stars { color: var(--gold); font-size: 1.2rem; margin-bottom: 20px; }
.review-text { font-size: 1rem; font-style: italic; margin-bottom: 25px; position: relative; z-index: 1; }
.reviewer-name { font-family: 'Poppins', sans-serif; font-weight: 700; color: var(--dark); margin-bottom: 0; }

/* Location Section */
.location-section { position: relative; background: var(--dark); color: var(--white); overflow: hidden; padding: 100px 0; }
.location-section::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI0MCIgaGVpZ2h0PSI0MCI+PGNpcmNsZSBjeD0iMjAiIGN5PSIyMCIgcj0iMSIgZmlsbD0icmdiYSsyNTUsMjU1LDI1NSwwLjEpIi8+PC9zdmc+') repeat; opacity: 0.5; }
.location-card { background: rgba(255,255,255,0.05); backdrop-filter: blur(10px); border: 1px solid rgba(255,255,255,0.1); border-radius: 16px; padding: 40px; transition: var(--transition); }
.location-card:hover { background: rgba(255,255,255,0.1); border-color: var(--primary); }

/* FAQ */
.accordion-item { background: var(--white); border: 1px solid rgba(0,0,0,0.05); border-radius: 12px !important; margin-bottom: 15px; overflow: hidden; box-shadow: 0 5px 15px rgba(0,0,0,0.02); }
.accordion-button { font-family: 'Poppins', sans-serif; font-weight: 600; font-size: 1.1rem; color: var(--dark); padding: 20px 25px; box-shadow: none !important; }
.accordion-button:not(.collapsed) { background-color: var(--teal-light); color: var(--primary-dark); }
.accordion-button::after { background-image: none; content: '\f067'; font-family: 'Font Awesome 5 Free'; font-weight: 900; transform: none; transition: var(--transition); color: var(--primary); }
.accordion-button:not(.collapsed)::after { content: '\f068'; transform: rotate(180deg); }
.accordion-body { padding: 20px 25px; font-size: 1rem; color: var(--text); border-top: 1px solid rgba(0,0,0,0.05); }

/* CTA Section */
.cta-section { background: linear-gradient(135deg, var(--dark) 0%, var(--primary-dark) 100%); padding: 100px 0; color: var(--white); text-align: center; position: relative; overflow: hidden; }
.cta-section::after { content: ''; position: absolute; bottom: -50px; left: 50%; transform: translateX(-50%); width: 800px; height: 300px; background: var(--primary); filter: blur(150px); opacity: 0.4; border-radius: 50%; z-index: 0; }
.cta-content { position: relative; z-index: 2; }
.cta-section h2 { color: var(--white); font-size: 3rem; margin-bottom: 20px; }

/* Footer */
.footer { background: var(--charcoal); color: #A0AEC0; padding: 80px 0 30px; font-size: 0.95rem; }
.footer h3, .footer h4 { color: var(--white); font-family: 'Poppins', sans-serif; margin-bottom: 25px; font-weight: 700; }
.footer-brand i { color: var(--primary); }
.footer a { color: #A0AEC0; text-decoration: none; transition: var(--transition); }
.footer a:hover { color: var(--primary); padding-left: 5px; }
.footer-links li { margin-bottom: 15px; }
.footer-social { display: flex; gap: 15px; }
.footer-social a { width: 45px; height: 45px; background: rgba(255,255,255,0.05); display: flex; align-items: center; justify-content: center; border-radius: 12px; color: var(--white); transition: var(--transition); font-size: 1.2rem; border: 1px solid rgba(255,255,255,0.05); }
.footer-social a:hover { background: var(--primary); transform: translateY(-3px); box-shadow: 0 10px 20px rgba(115, 185, 181, 0.2); border-color: var(--primary); padding-left: 0; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.05); padding-top: 25px; margin-top: 60px; text-align: center; }

/* Subpage Hero */
.subpage-hero { background: linear-gradient(135deg, var(--dark) 0%, var(--charcoal) 100%); color: var(--white); padding: 140px 0 80px; text-align: center; position: relative; overflow: hidden; }
.subpage-hero::before { content: ''; position: absolute; top: -50px; right: -50px; width: 300px; height: 300px; background: var(--primary); filter: blur(80px); opacity: 0.2; border-radius: 50%; z-index: 0; }
.subpage-hero .container { position: relative; z-index: 2; }
.subpage-hero h1 { color: var(--white); font-size: 3rem; margin-bottom: 20px; }

/* Back to Top */
#backToTop { position: fixed; bottom: 100px; right: 30px; width: 50px; height: 50px; background: var(--primary); color: var(--white); border-radius: 12px; display: flex; align-items: center; justify-content: center; text-decoration: none; opacity: 0; visibility: hidden; transition: var(--transition); z-index: 999; box-shadow: 0 10px 20px rgba(115, 185, 181, 0.3); font-size: 1.2rem; }
#backToTop.show { opacity: 1; visibility: visible; }
#backToTop:hover { background: var(--primary-dark); transform: translateY(-5px); }
@media (min-width: 992px) { #backToTop { bottom: 40px; } }

/* Animations & Utilities */
.reveal-up { opacity: 0; transform: translateY(40px); transition: opacity 0.8s ease, transform 0.8s ease; }
.reveal-fade { opacity: 0; transition: opacity 0.8s ease; }
.reveal-left { opacity: 0; transform: translateX(-40px); transition: opacity 0.8s ease, transform 0.8s ease; }
.reveal-right { opacity: 0; transform: translateX(40px); transition: opacity 0.8s ease, transform 0.8s ease; }
.reveal-scale { opacity: 0; transform: scale(0.95); transition: opacity 0.8s ease, transform 0.8s ease; }
.is-visible { opacity: 1; transform: translateY(0) translateX(0) scale(1); }

.delay-100 { transition-delay: 0.1s; }
.delay-200 { transition-delay: 0.2s; }
.delay-300 { transition-delay: 0.3s; }
.delay-400 { transition-delay: 0.4s; }
.delay-500 { transition-delay: 0.5s; }

@keyframes float { 0% { transform: translateY(0px); } 50% { transform: translateY(-15px); } 100% { transform: translateY(0px); } }
@keyframes bounce-slow { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
.float-anim { animation: float 6s ease-in-out infinite; }
.bounce-anim { animation: bounce-slow 4s ease-in-out infinite; }

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; }
  .reveal-up, .reveal-fade, .reveal-left, .reveal-right, .reveal-scale { opacity: 1 !important; transform: none !important; }
}

.section-padding { padding: 100px 0; }
@media (max-width: 991px) {
  .section-padding { padding: 70px 0; }
  .hero { padding: 140px 0 70px; text-align: center; }
  .hero h1 { font-size: 2.5rem; }
  .hero-image-wrapper { display: none; /* Simplify on mobile for better focus */ }
}
