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

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Poppins', sans-serif;
  color: #324A6D; line-height: 1.5; background: #fff;
  font-weight: 300; font-size: 16px;
}
a { color: #467FF7; text-decoration: none; }
a:hover { text-decoration: underline; }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }
h1, h2, h3, h4, h5 { font-weight: 600; line-height: 1.2; }

/* ── Container ── */
.container { max-width: 1140px; margin: 0 auto; padding: 0 20px; }

/* ── Animations ── */
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes fadeInUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeInLeft { from { opacity: 0; transform: translateX(-30px); } to { opacity: 1; transform: translateX(0); } }
@keyframes fadeInRight { from { opacity: 0; transform: translateX(30px); } to { opacity: 1; transform: translateX(0); } }
@keyframes zoomIn { from { opacity: 0; transform: scale(0.8); } to { opacity: 1; transform: scale(1); } }
@keyframes bounceInDown {
  0% { opacity: 0; transform: translateY(-200px); }
  60% { transform: translateY(15px); }
  80% { transform: translateY(-5px); }
  100% { opacity: 1; transform: translateY(0); }
}

.js-loaded .animate { opacity: 0; }
.js-loaded .animate.visible { animation-fill-mode: both; }
.animate.visible.fade-in { animation: fadeIn 0.8s ease forwards; }
.animate.visible.fade-in-up { animation: fadeInUp 0.8s ease forwards; }
.animate.visible.fade-in-left { animation: fadeInLeft 0.8s ease forwards; }
.animate.visible.fade-in-right { animation: fadeInRight 0.8s ease forwards; }
.animate.visible.zoom-in { animation: zoomIn 0.6s ease forwards; }
.animate.visible.bounce-in-down { animation: bounceInDown 0.8s ease forwards; }
.delay-1 { animation-delay: 0.1s !important; }
.delay-2 { animation-delay: 0.2s !important; }
.delay-3 { animation-delay: 0.3s !important; }
.delay-4 { animation-delay: 0.4s !important; }
.delay-5 { animation-delay: 0.5s !important; }

/* ── Header / Nav ── */
header {
  background: #1C244B;
  position: sticky; top: 0; z-index: 100;
  box-shadow: 0 2px 10px rgba(0,0,0,0.15);
}
header .container {
  display: flex; align-items: center; justify-content: space-between;
  padding: 10px 20px;
}
.logo img { height: 45px; filter: brightness(0) invert(1); }
nav ul { display: flex; gap: 0; align-items: center; }
nav li { position: relative; }
nav a {
  color: #fff; font-weight: 400; font-size: 15px;
  padding: 10px 18px; display: block;
  text-decoration: none; transition: color 0.3s;
  position: relative;
}
nav a::after {
  content: ''; position: absolute; bottom: 0; left: 18px; right: 18px;
  height: 2px; background: #467FF7; transform: scaleX(0);
  transition: transform 0.3s;
}
nav a:hover { color: #467FF7; text-decoration: none; }
nav a:hover::after { transform: scaleX(1); }
nav .dropdown-menu {
  display: none; position: absolute; top: 100%; left: 0;
  background: #1C244B; border-radius: 0 0 6px 6px;
  min-width: 140px; padding: 4px 0;
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}
nav .dropdown:hover .dropdown-menu { display: block; }
nav .dropdown-menu a { font-size: 14px; padding: 8px 18px; }

.hamburger { display: none; cursor: pointer; font-size: 1.5rem; background: none; border: none; color: #fff; }

/* ── Hero Sections ── */
.hero {
  min-height: 93vh; display: flex; flex-direction: column;
  justify-content: center; align-items: center;
  background-size: cover; background-position: center;
  position: relative; text-align: center;
  padding: 80px 20px;
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background: rgba(28, 36, 75, 0.6);
}
.hero > * { position: relative; z-index: 1; }
.hero-home { background-image: url('../images/welcome.png'); }
.hero-services { background-image: url('../images/ourservices.png'); }
.hero-story { background-image: url('../images/aboutus.png'); }
.hero-contact { background-image: url('../images/contactus.jpg'); }

.hero-box {
  background: rgba(255,255,255,0.78);
  border-radius: 10px; padding: 40px;
  max-width: 700px; backdrop-filter: blur(4px);
}
.hero-box h1 {
  font-size: 48px; color: #1C244B; margin-bottom: 16px;
  font-weight: 600;
}
.hero-box h5, .hero-box p {
  font-size: 16px; color: #324A6D; font-weight: 300;
  line-height: 1.6; margin-bottom: 10px;
}
.hero-box .notice {
  display: inline-block; background: #FF969622;
  color: #1C244B; padding: 16px 28px; border-radius: 10px;
  font-weight: 400; margin-top: 12px;
}
.hero-box .btn { margin-top: 20px; }

/* ── Buttons ── */
.btn {
  display: inline-block; background: #467FF7; color: #fff;
  padding: 14px 32px; border: none; border-radius: 50px;
  font-size: 15px; font-weight: 500; cursor: pointer;
  font-family: 'Poppins', sans-serif;
  transition: all 0.3s; text-decoration: none;
  letter-spacing: 0.3px;
}
.btn:hover { background: #3566d4; transform: translateY(-2px); box-shadow: 0 4px 15px rgba(70,127,247,0.3); text-decoration: none; }
.btn-outline {
  background: transparent; border: 2px solid #467FF7; color: #467FF7;
}
.btn-outline:hover { background: #467FF7; color: #fff; }

/* ── Section Shared ── */
section { padding: 80px 0; }
.bg-light { background: #F3F5F8; }
.bg-white { background: #fff; }
.section-title {
  text-align: center; font-size: 36px; color: #1C244B;
  margin-bottom: 12px; text-transform: capitalize;
}
.section-subtitle {
  text-align: center; color: #324A6D; max-width: 650px;
  margin: 0 auto 48px; font-size: 16px; font-weight: 300;
}

/* ── Services Grid ── */
.services-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.service-card {
  background: #fff; border-radius: 10px; overflow: hidden;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  transition: transform 0.3s, box-shadow 0.3s;
}
a.service-card { text-decoration: none; color: inherit; }
.service-card:hover { transform: translateY(-6px); box-shadow: 0 10px 30px rgba(0,0,0,0.12); }
.service-card img { width: 100%; height: auto; object-fit: contain; }
.service-card h3 { color: #1C244B; margin-bottom: 12px; font-size: 20px; padding: 20px 20px 0; }
.service-card p { color: #324A6D; font-size: 15px; margin-bottom: 16px; font-weight: 300; padding: 0 20px; }
.service-card .price { padding: 0 20px 20px; display: block; }
.service-card .price { font-weight: 600; color: #467FF7; font-size: 16px; }

/* ── Services Compact (homepage) ── */
.services-compact {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.service-item {
  text-align: center; text-decoration: none; color: #1C244B;
  background: #fff; border-radius: 10px; padding: 24px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  transition: transform 0.3s, box-shadow 0.3s;
  min-height: 200px; min-width: 200px;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
}
.service-item:hover { transform: translateY(-4px); box-shadow: 0 10px 30px rgba(0,0,0,0.12); }
.service-item img { width: 100%; height: auto; object-fit: contain; margin-bottom: 12px; }
.service-item span { font-size: 15px; font-weight: 500; display: block; }

/* ── Why Choose Us / Features ── */
.features-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 30px;
}
.feature {
  text-align: center; padding: 30px 20px;
  background: #fff; border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  transition: transform 0.3s;
}
.feature:hover { transform: translateY(-4px); }
.feature .icon {
  width: 70px; height: 70px; margin: 0 auto 20px;
  background: #467FF71a; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.8rem;
}
.feature h3 { color: #1C244B; margin-bottom: 10px; font-size: 18px; }
.feature p { color: #324A6D; font-size: 15px; font-weight: 300; }

/* ── About / Content ── */
.about-content { max-width: 800px; margin: 0 auto; text-align: center; }
.about-content p { margin-bottom: 18px; color: #324A6D; font-weight: 300; line-height: 1.7; }

.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }
.two-col img { border-radius: 10px; box-shadow: 0 4px 20px rgba(0,0,0,0.1); }
.two-col .text h2 { font-size: 32px; color: #1C244B; margin-bottom: 16px; }
.two-col .text p { color: #324A6D; font-weight: 300; line-height: 1.7; margin-bottom: 14px; }

/* ── Pricing Cards ── */
.pricing-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px;
}
.pricing-card {
  background: #fff; border-radius: 10px; padding: 30px 24px; text-align: center;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06); transition: transform 0.3s;
}
.pricing-card:hover { transform: translateY(-6px); box-shadow: 0 10px 30px rgba(0,0,0,0.12); }
.pricing-card img { width: 100%; border-radius: 8px; margin-bottom: 18px; }
.pricing-card .pkg-name { font-weight: 600; color: #1C244B; font-size: 20px; margin-bottom: 6px; }
.pricing-card .pkg-detail { font-size: 14px; color: #324A6D80; font-weight: 300; margin-bottom: 16px; }
.pkg-prices {
  display: flex; flex-direction: column; gap: 8px;
  border-top: 1px solid #F3F5F8; padding-top: 16px;
}
.pkg-prices span {
  display: flex; justify-content: space-between; font-size: 15px; color: #324A6D; font-weight: 300;
}
.pkg-prices strong { color: #1C244B; font-weight: 600; }


/* ── Availability / Map ── */
.availability-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: start;
}
.hours-list { text-align: center; }
.hours-list h3 { color: #1C244B; margin-bottom: 10px; font-size: 20px; }
.hours-list p { margin-bottom: 18px; color: #324A6D; font-size: 15px; font-weight: 300; }
.map-wrap { display: flex; justify-content: center; align-items: center; }
.map-wrap img { border-radius: 10px; box-shadow: 0 4px 20px rgba(0,0,0,0.1); max-width: 100%; }

/* ── Testimonials ── */
.testimonials-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}
.testimonial {
  background: #fff; border-radius: 10px; padding: 30px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06); position: relative;
}
.testimonial::before {
  content: '\201C'; font-size: 4rem; color: #467FF720;
  position: absolute; top: 8px; left: 20px; line-height: 1;
  font-family: Georgia, serif;
}
.testimonial p {
  color: #324A6D; font-style: italic; font-weight: 300;
  margin-bottom: 16px; padding-top: 24px; line-height: 1.7;
}
.testimonial .author { font-weight: 600; color: #1C244B; font-size: 14px; }
.testimonial .client-img {
  width: 50px; height: 50px; border-radius: 50%;
  object-fit: cover; margin-bottom: 12px;
}

/* ── FAQ ── */
.faq-list { max-width: 750px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid #F3F5F8; }
.faq-item summary {
  padding: 18px 0; cursor: pointer; font-weight: 500; color: #1C244B;
  list-style: none; display: flex; justify-content: space-between; align-items: center;
  font-size: 15px;
}
.faq-item summary::after { content: '+'; font-size: 1.4rem; color: #467FF7; font-weight: 300; }
.faq-item[open] summary::after { content: '\2212'; }
.faq-item p { padding: 0 0 18px; color: #324A6D; font-size: 15px; font-weight: 300; line-height: 1.7; }

/* ── Contact Form ── */
.contact-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 50px;
}
.contact-form { display: flex; flex-direction: column; gap: 18px; }
.contact-form label { font-weight: 500; font-size: 14px; color: #1C244B; }
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%; padding: 12px 16px; border: 1px solid #C8D5DC;
  border-radius: 6px; font-size: 15px; font-family: 'Poppins', sans-serif;
  font-weight: 300; color: #324A6D; background: #fff;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.contact-form textarea { resize: vertical; min-height: 130px; }
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none; border-color: #467FF7;
  box-shadow: 0 0 0 3px rgba(70,127,247,0.12);
}
.contact-form .checkbox-row { display: flex; align-items: center; gap: 10px; }
.contact-form .checkbox-row input { width: auto; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.contact-info h3 { color: #1C244B; margin-bottom: 10px; font-size: 20px; }
.contact-info p { color: #324A6D; margin-bottom: 18px; font-weight: 300; }

/* honeypot */
.hp-field { position: absolute; left: -9999px; }

/* ── CTA Banner ── */
.cta-banner {
  background: linear-gradient(135deg, #1C244B, #2a3575);
  text-align: center; padding: 80px 20px; color: #fff;
  position: relative; overflow: hidden;
}
.cta-banner::before {
  content: ''; position: absolute; inset: 0;
  background: url('../images/bright-home.png') center/cover;
  opacity: 0.15;
}
.cta-banner > * { position: relative; z-index: 1; }
.cta-banner h2 { font-size: 36px; margin-bottom: 14px; }
.cta-banner p { margin-bottom: 28px; font-size: 16px; opacity: 0.85; font-weight: 300; max-width: 600px; margin-left: auto; margin-right: auto; }
.cta-banner .btn { background: #fff; color: #1C244B; }
.cta-banner .btn:hover { background: #F3F5F8; }

/* ── Footer ── */
footer {
  background: #1C244B; color: #C8D5DC; padding: 50px 0 24px;
  font-size: 14px;
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 40px;
  margin-bottom: 30px;
}
footer h4 { color: #fff; margin-bottom: 14px; font-size: 16px; }
footer p { font-weight: 300; line-height: 1.7; }
footer a { color: #467FF7; }
footer a:hover { color: #6e9dff; }
footer ul li { margin-bottom: 8px; }
.footer-bottom {
  border-top: 1px solid #324A6D40; padding-top: 20px;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 13px;
}
.social-links a { margin-left: 14px; font-size: 14px; }

/* form status messages */
.form-status { padding: 14px; border-radius: 6px; display: none; font-size: 14px; }
.form-status.success { display: block; background: #e8f5e920; color: #145823; border: 1px solid #14582340; }
.form-status.error { display: block; background: #ffebee; color: #c62828; border: 1px solid #c6282840; }

/* ── Responsive ── */
@media (max-width: 991px) {
  .hero-box h1 { font-size: 36px; }
  .section-title { font-size: 28px; }
  .two-col { grid-template-columns: 1fr; }
  .two-col img { max-height: 350px; object-fit: cover; }
}

@media (max-width: 768px) {
  .hamburger { display: block; }
  nav ul {
    display: none; flex-direction: column;
    position: absolute; top: 100%; left: 0; right: 0;
    background: #1C244B; padding: 10px 0;
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
  }
  nav ul.open { display: flex; }
  nav a { padding: 12px 20px; }
  nav a::after { display: none; }
  .hero { min-height: 70vh; padding: 60px 16px; }
  .hero-box { padding: 28px; }
  .hero-box h1 { font-size: 28px; }
  section { padding: 50px 0; }
  .services-grid { grid-template-columns: 1fr; }
  .services-compact { grid-template-columns: repeat(3, 1fr); }
  .availability-grid, .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
  .cta-banner h2 { font-size: 26px; }
}
