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

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  line-height: 1.6;
  color: #1F2937;
  background: #ffffff;
}

.container {
  width: 90%;
  max-width: 1100px;
  margin: auto;
}

.center-text {
  text-align: center;
  max-width: 720px;
  margin: auto;
}

/* ================= HEADER ================= */
.header {
  background: #ffffff;
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid #E5E7EB;
  transition: box-shadow 0.3s ease;
}

.header.scrolled {
  box-shadow: 0 10px 28px rgba(0,0,0,0.12);
}

.header-flex {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 0;
}

/* Logo is secondary, text is primary */
.logo {
  width: 40px;
  height: auto;
  opacity: 0.85;
}

/* Brand text is the main identity */
.brand-text h1 {
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: -0.4px;
  line-height: 1.25;
  color: #111827;
}

.brand-text p {
  font-size: 0.9rem;
  font-weight: 500;
  color: #6B7280;
  margin-top: 2px;
}

/* ================= NAV ================= */
.nav {
  background: #ffffff;
  border-top: 1px solid #F1F5F9;
}

.nav .container {
  display: flex;
  gap: 28px;
  padding: 10px 0;
}

.nav a {
  text-decoration: none;
  color: #1F2937;
  font-weight: 600;
  font-size: 0.95rem;
  position: relative;
}

/* subtle hover indicator */
.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #5B5FEF, #EC4899);
  transition: width 0.25s ease;
}

.nav a:hover::after {
  width: 100%;
}

/* ================= HERO ================= */
.hero {
  padding: 80px 0 90px;
  background: linear-gradient(
    180deg,
    #F3E8FF 0%,
    #7C3AED 45%,
    #EC4899 100%
  );
  color: #ffffff;
}

.hero-text h2 {
  font-size: 2.4rem;
  line-height: 1.25;
  margin-bottom: 12px;
}

.hero-text p {
  max-width: 720px;
  margin: auto;
  opacity: 0.95;
}

.hero-points {
  list-style: none;
  margin-top: 18px;
}

.hero-points li {
  margin: 6px 0;
  font-weight: 500;
  font-size: 0.95rem;
  opacity: 0.95;
}

/* ================= DIVIDER ================= */
.divider {
  height: 4px;
  background: linear-gradient(90deg, #5B5FEF, #EC4899);
}

/* ================= SECTIONS ================= */
.light-section,
.services,
.about,
.capacity,
.why-us,
.testimonials,
.cta {
  padding: 60px 0;
}

.light-section {
  background: #F8FAFC;
}

h3 {
  text-align: center;
  margin-bottom: 32px;
  font-size: 1.6rem;
  color: #111827;
}

/* ================= GRIDS ================= */
.three-grid,
.service-grid,
.capacity-grid,
.testimonial-grid {
  display: grid;
  gap: 26px;
}

.three-grid {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.service-grid {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.capacity-grid {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.testimonial-grid {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

/* ================= CARDS ================= */
.info-card,
.service-card,
.capacity-card,
.testimonial-card {
  background: #ffffff;
  padding: 26px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

.service-card img {
  width: 100%;
  border-radius: 10px;
  margin-bottom: 12px;
}

/* ================= WHY US ================= */
.why-list {
  list-style: none;
  max-width: 620px;
  margin: auto;
}

.why-list li {
  margin: 8px 0;
  font-size: 0.95rem;
}

/* ================= CTA ================= */
.cta {
  background: #F8FAFC;
  text-align: center;
}

.cta h3 {
  margin-bottom: 10px;
}

.cta p {
  margin-bottom: 22px;
  color: #4B5563;
}

.btn {
  padding: 12px 26px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.95rem;
}

.btn.primary {
  background: #7C3AED;
  color: #ffffff;
}

.btn.secondary {
  background: #ffffff;
  color: #7C3AED;
  border: 2px solid #7C3AED;
}

/* ================= CALL POPUP ================= */
.call-popup {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.45);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 2000;
}

.call-box {
  background: #ffffff;
  padding: 32px;
  border-radius: 14px;
  text-align: center;
  max-width: 320px;
  width: 90%;
  box-shadow: 0 24px 48px rgba(0,0,0,0.25);
}

.call-box a {
  font-size: 1.1rem;
  color: #7C3AED;
  font-weight: 600;
  display: block;
  margin-bottom: 18px;
  text-decoration: none;
}

/* ================= CONTACT PAGE ================= */
.contact-hero {
  padding: 70px 0 60px;
  background: linear-gradient(
    180deg,
    #F3E8FF 0%,
    #7C3AED 45%,
    #EC4899 100%
  );
  color: #ffffff;
}

.contact-section {
  padding: 60px 0;
  background: #F8FAFC;
}

.contact-card-large {
  max-width: 900px;
  margin: auto;
  background: #ffffff;
  padding: 35px;
  border-radius: 10px;
  box-shadow: 0 10px 25px rgba(0,0,0,.08);
}

.form-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  margin-bottom: 12px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 14px;
  border: 1px solid #D1D5DB;
  border-radius: 6px;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: #7C3AED;
}

.map-box {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 6px 15px rgba(0,0,0,.08);
}

/* ================= FOOTER ================= */

.footer {
  background: linear-gradient(135deg, #F5F3FF, #EEF2FF);
  padding: 36px 0 24px; /* reduced height */
  border-top: 1px solid #E5E7EB;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 32px;
  align-items: flex-start;
}

.footer-grid > div {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer p {
  color: #4B5563;
}

/* icon alignment */
.footer-item {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.9rem;
}

.footer-item .icon {
  min-width: 18px;
  line-height: 1.4;
}

.footer-bottom {
  margin-top: 24px;
  text-align: center;
  font-size: 0.85rem;
  color: #6B7280;
  border-top: 1px solid #E5E7EB;
  padding-top: 14px;
}


.footer h4 {
  margin-bottom: 12px;
}

.footer-grid {
  align-items: flex-start;
}

/* 3-column footer layout */
.footer-3col {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-col a {
  color: #4B5563;
  text-decoration: none;
  font-size: 0.9rem;
}

.footer-col a:hover {
  color: #5B5FEF;
  text-decoration: underline;
}

/* Contact items */
.footer-item {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.9rem;
  color: #4B5563;
}

.footer-item .icon {
  min-width: 18px;
  line-height: 1.4;
}

.footer h4 {
  margin-bottom: 12px;
}

.footer-icon {
  width: 16px;
  height: 16px;
  fill: #6B7280;
  flex-shrink: 0;
  margin-top: 2px;
}

.footer-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9rem;
  color: #4B5563;
}


/* ================= CONTACT FORM ALIGNMENT FIX ================= */

/* Center the form container */
.contact-form-wrapper {
  max-width: 900px;
  margin: auto;
  padding: 0 20px;
}

/* Card-like form appearance */
.contact-form {
  background: #ffffff;
  padding: 40px;
  border-radius: 14px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
}

/* Consistent spacing for each field */
.form-group {
  display: flex;
  flex-direction: column;
  margin-bottom: 18px;
}

/* Label clarity */
.form-group label {
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 6px;
  color: #111827;
}

/* Inputs & textarea uniformity */
.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid #D1D5DB;
  border-radius: 8px;
  font-size: 0.95rem;
  background: #ffffff;
}

/* Focus state */
.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  outline: none;
  border-color: #7C3AED;
  box-shadow: 0 0 0 3px rgba(124,58,237,0.12);
}

/* Select dropdown fix */
.contact-form select {
  appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, #6B7280 50%),
    linear-gradient(135deg, #6B7280 50%, transparent 50%);
  background-position:
    calc(100% - 20px) calc(1em + 2px),
    calc(100% - 15px) calc(1em + 2px);
  background-size: 5px 5px;
  background-repeat: no-repeat;
}

/* Submit button alignment */
.contact-form .btn {
  margin-top: 12px;
  align-self: flex-start;
}

/* ================= MAP SECTION SPACING ================= */

.map-box {
  margin-top: 20px;
}

/* ================= GRADIENT DIVIDER SPACING FIX ================= */

.contact-hero + .contact-section {
  margin-top: -10px;
}

/* ================= MOBILE IMPROVEMENTS ================= */

@media (max-width: 768px) {
  .contact-form {
    padding: 26px;
  }

  .contact-form .btn {
    width: 100%;
    text-align: center;
  }
}

