/*
  Global styles
  Consolidated and cleaned for consistency and responsiveness
*/
/* Design tokens */
:root { --brand:#004aad; --brand-dark:#004080; --accent:#ffd43b; --bg:#f9f9fb; --text:#333; --success:#25d366; }
html { scroll-behavior: smooth; }
* { box-sizing: border-box; }
body { margin:0; font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif; background:var(--bg); color:var(--text); line-height:1.6; }

/* Navigation */
nav { position: sticky; top:0; z-index:1000; display:flex; justify-content:space-between; align-items:center; background:var(--brand); padding:15px 30px; box-shadow: 0 2px 5px rgba(0,0,0,0.15); }
nav .logo { height:50px; }
nav ul { list-style:none; display:flex; gap:20px; margin:0; padding:0; }
nav ul li a { color:#fff; text-decoration:none; font-weight:500; transition: color 0.3s; }
nav ul li a:hover, nav ul li a.active { color:var(--accent); }
/* Hamburger */
.menu-toggle { display:none; background:transparent; border:0; color:#fff; font-size:28px; cursor:pointer; }

/* Hero */
.hero { background: url('../images/hero.jpg') no-repeat center center/cover; min-height: 70vh; display:flex; align-items:center; justify-content:center; text-align:center; color:#fff; text-shadow: 2px 2px 4px rgba(0,0,0,0.7); }
.hero-content { background: rgba(0,0,0,0.4); padding:30px; border-radius:12px; }

/* Buttons */
.btn { display:inline-block; margin-top:20px; background:#25d366; color:#fff; padding:12px 24px; text-decoration:none; font-weight:bold; border-radius:6px; transition: background 0.3s; }
.btn:hover { background:#1ebe57; }

/* Main containers */
main { max-width: 1100px; margin: 50px auto; padding: 20px; background:#fff; border-radius:12px; box-shadow: 0 4px 20px rgba(0,0,0,0.08); }
main h1 { font-size: 2.2rem; color:#004aad; margin-bottom:20px; border-bottom:2px solid #004aad; padding-bottom:10px; }
main h2 { margin-top:25px; font-size:1.3rem; color:#222; border-left:4px solid #004aad; padding-left:10px; }
main p { margin: 15px 0; color:#555; }

/* Section specific */
.home-section, .about-section, .services-section, .events-section, .faq-section, .gallery-section { background: transparent; box-shadow:none; border-radius:0; }
.home-container, .about-container, .services-container, .events-container, .faq-container { display:flex; flex-wrap:wrap; justify-content:center; gap:20px; }
.home-card, .about-card, .service-card, .event-card, .faq-card { flex: 1 1 250px; background:#fff; padding:20px; border-radius:10px; box-shadow: 0 4px 8px rgba(0,0,0,0.1); }
.home-card h3, .about-card h2, .service-card h2, .event-card h2, .faq-card h2 { color:#004080; margin:0 0 10px; }

/* Contact */
.contact-section { text-align:center; }
.contact-container { display:flex; flex-wrap:wrap; justify-content:space-between; gap:20px; }
.contact-card { flex: 1 1 320px; background:#fff; padding:20px; border-radius:10px; box-shadow: 0 4px 8px rgba(0,0,0,0.1); text-align:left; }
.map-container { flex: 1 1 420px; border-radius:10px; overflow:hidden; box-shadow: 0 4px 8px rgba(0,0,0,0.1); }

/* Pricing */
.pricing-container { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 25px; max-width: 1100px; margin: 0 auto; }
.pricing-card { background:#fafafa; border-radius:12px; padding:25px; box-shadow: 0 5px 15px rgba(0,0,0,0.1); transition: transform 0.3s ease, box-shadow 0.3s ease; }
.pricing-card:hover { transform: translateY(-8px); box-shadow: 0 8px 20px rgba(0,0,0,0.15); }
.pricing-card h2 { font-size:1.4rem; margin-bottom:15px; }
.pricing-card p { margin-bottom:10px; color:#555; }
.pricing-card .price { font-size:1.3rem; font-weight:bold; color:#ff6600; }

/* Gallery */
.gallery-section { text-align:center; }
.gallery-grid { display:grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap:15px; max-width:1200px; margin:auto; }
.gallery-grid img { width:100%; border-radius:12px; box-shadow: 0 4px 12px rgba(0,0,0,0.15); transition: transform 0.3s ease, box-shadow 0.3s ease; cursor:pointer; }
.gallery-grid img:hover { transform: scale(1.05); box-shadow: 0 6px 18px rgba(0,0,0,0.25); }

/* Footer */
footer { background:#004080; color:white; text-align:center; padding:15px; margin-top:40px; }
footer .footer-columns { display:grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap:16px; max-width:1100px; margin:0 auto 10px; text-align:left; }
footer h3 { margin:0 0 8px; font-size:1.05rem; }
footer p, footer a { color:#e9eefb; margin:4px 0; text-decoration:none; }
footer a:hover { text-decoration:underline; }

/* WhatsApp Floating Button */
.whatsapp-float { position:fixed; bottom:20px; right:20px; background:var(--success); color:#fff; padding:12px 18px; border-radius:50px; font-weight:bold; font-size:14px; text-decoration:none; box-shadow: 0 4px 10px rgba(0,0,0,0.2); transition: transform 0.2s, background 0.3s; }
.whatsapp-float:hover { background:#1ebe5d; transform: scale(1.05); }

/* Preloader (Loading screen) */
.preloader {
  position: fixed;
  inset: 0;
  background: linear-gradient(160deg, #004aad 0%, #0b63c7 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.preloader .preload-logo {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: #ffffff;
  display: grid;
  place-items: center;
  box-shadow: 0 10px 25px rgba(0,0,0,0.25);
  margin-bottom: 16px;
  position: relative;
}

.preloader .preload-logo img {
  width: 56px;
  height: auto;
  animation: float 1.8s ease-in-out infinite;
}

.preloader .ring {
  position: absolute;
  width: 110px;
  height: 110px;
  border-radius: 50%;
  border: 3px solid rgba(255,255,255,0.35);
  border-top-color: #ffd43b;
  animation: spin 1.2s linear infinite;
}

.preloader .loading-text {
  color: #fff;
  font-weight: 600;
  letter-spacing: 0.04em;
  opacity: 0.9;
}

/* Hide preloader once loaded */
body.loaded .preloader { opacity: 0; visibility: hidden; pointer-events: none; }
body.no-scroll { overflow: hidden; }

/* Keyframes */
@keyframes spin { from { transform: rotate(0deg);} to { transform: rotate(360deg);} }
@keyframes float { 0%,100% { transform: translateY(0);} 50% { transform: translateY(-6px);} }

/* Responsive */
@media (max-width: 768px) {
  nav { flex-wrap: wrap; }
  .menu-toggle { display:block; }
  nav ul { display:none; width:100%; flex-direction:column; gap:10px; margin-top:12px; }
  body.nav-open nav ul { display:flex; }
  main { margin: 20px; padding: 20px; }
}

/* Accessibility */
:focus-visible { outline: 2px dashed var(--accent); outline-offset: 2px; }
/* About Section */
.about-section {
  max-width: 1100px;
  margin: 50px auto;
  padding: 20px;
  text-align: center;
}

.about-section h1 {
  color: #004080;
  margin-bottom: 30px;
}

.about-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.about-card {
  flex: 1 1 30%;
  background: #fff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  text-align: left;
}

.about-card h2 {
  color: #004080;
  margin-top: 0;
}
/* Events Section */
.events-section {
  max-width: 1100px;
  margin: 50px auto;
  padding: 20px;
  text-align: center;
}

.events-section h1 {
  color: #004080;
  margin-bottom: 30px;
}

.events-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.event-card {
  flex: 1 1 30%;
  background: #fff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  text-align: left;
}

.event-card h2 {
  color: #004080;
  margin-top: 0;
}
/* Home Section */
.home-section {
  max-width: 1100px;
  margin: 50px auto;
  padding: 20px;
  text-align: center;
}

.home-section h2 {
  color: #004080;
  margin-bottom: 30px;
}

.home-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.home-card {
  flex: 1 1 22%;
  background: #fff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  text-align: center;
}

.home-card h3 {
  color: #004080;
  margin-top: 0;
  margin-bottom: 10px;
}
/* FAQ Section */
.faq-section {
  max-width: 1100px;
  margin: 50px auto;
  padding: 20px;
  text-align: center;
}

.faq-section h1 {
  color: #004080;
  margin-bottom: 30px;
}

.faq-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.faq-card {
  flex: 1 1 30%;
  background: #fff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  text-align: left;
}

.faq-card h2 {
  color: #004080;
  margin-top: 0;
}
/* Services Section */
.services-section {
  max-width: 1100px;
  margin: 50px auto;
  padding: 20px;
  text-align: center;
}

.services-section h1 {
  color: #004080;
  margin-bottom: 30px;
}

.services-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.service-card {
  flex: 1 1 22%;
  background: #fff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  text-align: left;
}

.service-card h2 {
  color: #004080;
  margin: 0 0 10px 0;
}
/* Pricing Container */
.pricing-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
  max-width: 1100px;
  margin: 0 auto;
}

/* Pricing Card */
.pricing-card {
  background: #fafafa;
  border-radius: 12px;
  padding: 25px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pricing-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.pricing-card h2 {
  font-size: 1.5rem;
  margin-bottom: 15px;
}

.pricing-card p {
  margin-bottom: 10px;
  font-size: 1rem;
  color: #555;
}

.pricing-card .price {
  font-size: 1.4rem;
  font-weight: bold;
  color: #ff6600;
}

/* Floating WhatsApp Button */
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #25D366;
  color: #fff;
  font-size: 1.6rem;
  padding: 12px 16px;
  border-radius: 50%;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
  text-decoration: none;
  transition: transform 0.3s ease;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  background: #1ebe5d;
}
/* Gallery Section */
.gallery-section {
  padding: 60px 20px;
  text-align: center;
}

.gallery-section h1 {
  font-size: 2.5rem;
  margin-bottom: 10px;
  color: #222;
}

.gallery-section .subtitle {
  color: #666;
  margin-bottom: 40px;
  font-size: 1.1rem;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 15px;
  max-width: 1200px;
  margin: auto;
}

.gallery-grid img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

.gallery-grid img:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 18px rgba(0,0,0,0.25);
}
/* General Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: #333;
  background: #f9f9fb;
}

/* Navigation Bar */
nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #004aad;
  padding: 15px 30px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.15);
}

nav .logo {
  height: 50px;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 20px;
}

nav ul li a {
  text-decoration: none;
  color: #fff;
  font-weight: 500;
  transition: color 0.3s;
}

nav ul li a:hover,
nav ul li a.active {
  color: #ffd43b;
}

/* Main Content */
main {
  max-width: 900px;
  margin: 50px auto;
  padding: 30px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

main h1 {
  font-size: 2.2rem;
  color: #004aad;
  margin-bottom: 20px;
  border-bottom: 2px solid #004aad;
  padding-bottom: 10px;
}

main h2 {
  margin-top: 25px;
  font-size: 1.4rem;
  color: #222;
  border-left: 4px solid #004aad;
  padding-left: 10px;
}

main p {
  margin: 15px 0;
  font-size: 1rem;
  color: #555;
}

/* Links */
a {
  color: #004aad;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

/* WhatsApp Floating Button */
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #25d366;
  color: #fff;
  padding: 12px 18px;
  border-radius: 50px;
  font-weight: bold;
  font-size: 14px;
  text-decoration: none;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
  transition: background 0.3s ease-in-out;
}

.whatsapp-float:hover {
  background: #1ebe5b;
}

/* Responsive */
@media (max-width: 768px) {
  nav {
    flex-direction: column;
    text-align: center;
  }

  nav ul {
    flex-direction: column;
    gap: 10px;
    margin-top: 15px;
  }

  main {
    margin: 20px}
