/* HERO */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 100px;
  padding-bottom: 100px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: url('../assets/images/hero.jpg');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  filter: brightness(0.85) contrast(1.02);
}

.hero-overlay {
  display: block;
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(90deg, rgba(10, 22, 40, 0.65) 0%, rgba(10, 22, 40, 0.25) 55%, transparent 100%),
              linear-gradient(180deg, rgba(10, 22, 40, 0.35) 0%, transparent 35%, rgba(10, 22, 40, 0.5) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 660px;
  background: transparent;
  padding: 0;
  border: none;
  box-shadow: none;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  border-radius: 20px;
  background: rgba(10, 22, 40, 0.5);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(56, 189, 248, 0.35);
  color: #38BDF8;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 22px;
}

.badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background-color: #38BDF8;
  box-shadow: 0 0 10px #38BDF8;
  animation: pulseDot 2s infinite;
}

@keyframes pulseDot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%      { opacity: 0.4; transform: scale(0.8); }
}

.hero h1 {
  color: #FAFAF8;
  font-size: clamp(2.3rem, 4.8vw, 3.6rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.01em;
  margin-bottom: 18px;
  text-shadow: 0 4px 24px rgba(0, 0, 0, 0.85);
}

.hero-accent {
  color: #38BDF8;
  background: none;
  -webkit-text-fill-color: #38BDF8;
  text-shadow: 0 0 20px rgba(56, 189, 248, 0.4), 0 4px 24px rgba(0, 0, 0, 0.85);
}

.hero-text {
  color: rgba(250, 250, 248, 0.92);
  font-size: 1.1rem;
  line-height: 1.65;
  margin-bottom: 32px;
  max-width: 540px;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.85);
}

.hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* Scroll Indicator — Downward Arrow */
.scroll-indicator {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.scroll-indicator:hover {
  opacity: 0.8;
  transform: translateX(-50%) translateY(4px);
}

.scroll-indicator span {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.72rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  font-family: var(--font-body);
  font-weight: 600;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
}

.scroll-arrow-icon {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
}

.scroll-arrow-icon svg {
  width: 26px;
  height: 26px;
  stroke: #FFFFFF !important;
  stroke-width: 2.5px;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.8));
  animation: scrollArrowBounce 2s ease-in-out infinite;
}

@keyframes scrollArrowBounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(8px);
  }
  60% {
    transform: translateY(4px);
  }
}

/* BRAND INTRO */
.brand-intro-content {
  text-align: center;
  max-width: 720px;
  margin: 0 auto var(--sp-10);
}

.brand-intro-content h2 {
  color: var(--color-dark);
  margin-bottom: var(--sp-4);
}

.brand-intro-content p {
  color: var(--color-muted);
  font-size: var(--fs-lg);
  line-height: 1.8;
  margin: 0;
}

.brand-values {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-6);
}

.brand-value {
  text-align: center;
  padding: var(--sp-6) var(--sp-4);
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  transition: all var(--dur-normal) var(--ease-out);
}

.brand-value:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(74, 158, 175, 0.4);
}

.brand-value-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto var(--sp-4);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-accent);
  background: var(--color-accent-light);
  border-radius: 50%;
  transition: transform var(--dur-fast);
}

.brand-value:hover .brand-value-icon {
  transform: scale(1.08);
}

.brand-value-icon svg {
  width: 26px;
  height: 26px;
}

.brand-value h4 {
  font-family: var(--font-heading);
  font-size: var(--fs-lg);
  font-weight: 700;
  letter-spacing: -0.015em;
  color: var(--color-dark);
  margin-bottom: var(--sp-2);
}

.brand-value p {
  font-size: var(--fs-sm);
  color: var(--color-muted);
  line-height: 1.65;
  margin: 0;
}

/* SERVICES */
.services-list {
  display: flex;
  flex-direction: column;
  gap: var(--sp-16);
}

.service-item {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: var(--sp-10);
  align-items: center;
}

.service-item:nth-child(even) {
  direction: rtl;
}

.service-item:nth-child(even) > * {
  direction: ltr;
}

.service-img-wrap {
  overflow: hidden;
  border-radius: var(--radius-lg);
  position: relative;
  box-shadow: var(--shadow-md);
  cursor: pointer;
}

.service-img-wrap img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform;
}

.service-img-wrap:hover img {
  transform: scale(1.08);
}

.service-content {
  padding: var(--sp-2) 0;
}

.service-number {
  font-family: var(--font-body);
  font-size: var(--fs-xs);
  font-weight: 700;
  color: var(--color-accent);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: var(--sp-3);
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
}

.service-number::after {
  content: '';
  display: inline-block;
  width: 40px;
  height: 2px;
  background: var(--color-accent);
  border-radius: 2px;
}

.service-content h3 {
  font-size: var(--fs-4xl);
  color: var(--color-dark);
  margin-bottom: var(--sp-3);
}

.service-content p {
  color: var(--color-muted);
  font-size: var(--fs-base);
  line-height: 1.8;
  margin-bottom: var(--sp-5);
}

/* WHY US */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-6);
}

.why-item {
  background: var(--color-white);
  padding: var(--sp-6) var(--sp-5);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  transition: all var(--dur-normal) var(--ease-out);
}

.why-item:hover {
  border-color: var(--color-accent);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.why-item h4 {
  font-family: var(--font-heading);
  font-size: var(--fs-xl);
  color: var(--color-dark);
  margin-bottom: var(--sp-2);
}

.why-item p {
  font-size: var(--fs-sm);
  color: var(--color-muted);
  line-height: 1.7;
  margin: 0;
}

/* GALLERY — Uniform Professional Grid */
.gallery-filters {
  display: flex;
  justify-content: center;
  gap: var(--sp-2);
  margin-bottom: var(--sp-8);
  flex-wrap: wrap;
}

.filter-btn {
  padding: 10px 22px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-full);
  background: var(--color-white);
  font-family: var(--font-body);
  font-size: var(--fs-sm);
  font-weight: 500;
  color: var(--color-text);
  cursor: pointer;
  transition: all var(--dur-fast);
}

.filter-btn:hover, .filter-btn.active {
  background: var(--color-dark);
  color: var(--color-white);
  border-color: var(--color-dark);
  box-shadow: var(--shadow-sm);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-4);
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  aspect-ratio: 4/3;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(13,27,42,0.85) 0%, rgba(13,27,42,0.2) 60%, transparent 100%);
  opacity: 0;
  transition: opacity var(--dur-normal);
  display: flex;
  align-items: flex-end;
  padding: var(--sp-5);
}

.gallery-item:hover .gallery-item-overlay {
  opacity: 1;
}

.gallery-item-overlay span {
  color: white;
  font-size: var(--fs-sm);
  font-weight: 500;
  line-height: 1.4;
}

.gallery-item.hiding {
  opacity: 0;
  transform: scale(0.95);
  transition: all var(--dur-normal);
}

.gallery-item.showing {
  opacity: 1;
  transform: scale(1);
}

/* PROCESS TIMELINE */
.process-timeline {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: var(--sp-4);
  position: relative;
}

.process-timeline::before {
  content: '';
  position: absolute;
  top: 28px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: var(--color-border);
}

.process-step {
  text-align: center;
  position: relative;
}

.process-number {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--color-white);
  border: 2px solid var(--color-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--sp-4);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: var(--fs-lg);
  color: var(--color-accent);
  position: relative;
  z-index: 2;
  transition: all var(--dur-normal);
  box-shadow: 0 4px 12px rgba(74, 158, 175, 0.15);
}

.process-step:hover .process-number {
  background: var(--color-accent);
  color: white;
  transform: scale(1.08);
}

.process-step h3 {
  font-size: var(--fs-base);
  font-weight: 600;
  color: var(--color-dark);
  margin-bottom: var(--sp-1);
}

.process-step p {
  font-size: var(--fs-sm);
  color: var(--color-muted);
  line-height: 1.6;
  max-width: 200px;
  margin: 0 auto;
}

/* ABOUT */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-12);
  align-items: center;
}

.about-img-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  cursor: pointer;
}

.about-img-wrap img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform;
}

.about-img-wrap:hover img {
  transform: scale(1.08);
}

.about-content .section-label {
  text-align: left;
}

.about-content h2 {
  text-align: left;
  margin-bottom: var(--sp-5);
}

.about-content p {
  color: var(--color-muted);
  line-height: 1.85;
  margin-bottom: var(--sp-4);
}

.about-content p:last-child {
  margin-bottom: 0;
}

/* SERVICE AREA */
.service-area-content {
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
}

/* SERVICE AREA MAP */
.service-area-map-wrap {
  margin: var(--sp-8) auto var(--sp-6);
  max-width: 100%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--color-border);
}

.service-area-map {
  width: 100%;
  height: 420px;
  background: #F4F3F0;
}

/* Hide Leaflet Attribution Footer Badge */
.leaflet-control-attribution {
  display: none !important;
}

/* Permanent District Badge Marker (Always Visible) */
.permanent-district-marker {
  background: none !important;
  border: none !important;
  overflow: visible !important;
  z-index: 1000 !important;
}

.district-badge-pin {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: transparent !important;
  padding: 0 !important;
  border: none !important;
  box-shadow: none !important;
  white-space: nowrap;
  transition: transform 0.2s ease;
  cursor: pointer;
}

.district-badge-pin:hover {
  transform: scale(1.18);
}

.district-badge-pin svg {
  width: 26px !important;
  height: 26px !important;
  min-width: 26px !important;
  min-height: 26px !important;
  fill: #E74C3C !important;
  filter: drop-shadow(0 3px 6px rgba(0, 0, 0, 0.4));
  flex-shrink: 0 !important;
  display: block !important;
}

.district-name-tag {
  font-family: var(--font-body, 'Inter', sans-serif);
  font-size: 0.85rem;
  font-weight: 700;
  color: #0D1B2A;
  letter-spacing: 0.02em;
  text-shadow: 0 1px 3px rgba(255, 255, 255, 0.95), 0 0 6px rgba(255, 255, 255, 0.95), 0 0 10px rgba(255, 255, 255, 0.8);
}

.aurora-marker-pin:hover {
  transform: rotate(-45deg) scale(1.15);
}

.aurora-marker-pin svg {
  width: 18px;
  height: 18px;
  transform: rotate(45deg);
  flex-shrink: 0;
}

/* Custom Popup */
.aurora-popup-wrapper .leaflet-popup-content-wrapper {
  background: var(--color-dark, #0D1B2A);
  color: #fff;
  border-radius: 10px;
  box-shadow: 0 8px 28px rgba(13, 27, 42, 0.35);
  padding: 0;
  font-family: var(--font-body, 'Inter', sans-serif);
}

.aurora-popup-wrapper .leaflet-popup-tip {
  background: var(--color-dark, #0D1B2A);
}

.aurora-popup {
  padding: 12px 18px;
  text-align: center;
}

.aurora-popup strong {
  display: block;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  margin-bottom: 2px;
}

.aurora-popup span {
  display: block;
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.6);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 500;
}

/* Service Area Tags */
.service-area-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--sp-3);
  margin-top: 0;
}

.area-tag {
  padding: 10px 22px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-full);
  font-size: var(--fs-sm);
  font-weight: 500;
  color: var(--color-text);
  background: var(--color-white);
  transition: all var(--dur-fast);
  box-shadow: var(--shadow-sm);
  cursor: pointer;
}

.area-tag:hover {
  background: var(--color-dark);
  color: white;
  border-color: var(--color-dark);
  transform: translateY(-2px);
}

/* CTA SECTION — Removed per user request */
.cta-section {
  display: none !important;
}

/* CONTACT */
.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: var(--sp-12);
  align-items: start;
}

.contact-form-wrap {
  background: var(--color-white);
  padding: var(--sp-8) var(--sp-6);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
}

.contact-info {
  padding: var(--sp-8) var(--sp-6);
  background: var(--color-bg-alt);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
}

.contact-info h3 {
  font-size: var(--fs-2xl);
  color: var(--color-dark);
  margin-bottom: var(--sp-6);
}

.contact-info-item {
  display: flex;
  gap: var(--sp-3);
  margin-bottom: var(--sp-5);
  align-items: flex-start;
}

.contact-info-icon {
  width: 44px;
  height: 44px;
  background: var(--color-accent-light);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-accent);
  flex-shrink: 0;
}

.contact-info-icon svg {
  width: 20px;
  height: 20px;
}

.contact-info-text {
  font-size: var(--fs-base);
}

.contact-info-text strong {
  display: block;
  font-size: var(--fs-sm);
  color: var(--color-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 2px;
  font-weight: 600;
}

.contact-info-text a {
  color: var(--color-text);
  transition: color var(--dur-fast);
}

.contact-info-text a:hover {
  color: var(--color-accent);
}

.whatsapp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  gap: var(--sp-2);
  padding: 14px var(--sp-4);
  background: #25D366;
  color: white;
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: var(--fs-sm);
  transition: all var(--dur-fast);
  margin-top: var(--sp-4);
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.25);
}

.whatsapp-btn:hover {
  background: #1da851;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(37, 211, 102, 0.35);
}

.whatsapp-btn svg {
  width: 20px;
  height: 20px;
}

/* FOOTER */
.site-footer {
  background: var(--color-dark);
  color: rgba(255,255,255,0.65);
  padding: var(--sp-12) 0 var(--sp-6);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: var(--sp-8);
}

.footer-brand .logo {
  display: inline-block;
  color: white;
  margin-bottom: var(--sp-3);
}

.footer-brand p {
  font-size: var(--fs-sm);
  line-height: 1.7;
  max-width: 280px;
  color: rgba(255,255,255,0.6);
  margin: 0;
}

.footer-heading {
  font-size: var(--fs-xs);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--color-white);
  margin-bottom: var(--sp-4);
  font-weight: 600;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
}

.footer-links a {
  color: rgba(255,255,255,0.6);
  font-size: var(--fs-sm);
  text-decoration: none;
  transition: color var(--dur-fast);
}

.footer-links a:hover {
  color: white;
}

.footer-contact p {
  font-size: var(--fs-sm);
  color: rgba(255,255,255,0.6);
  margin-bottom: var(--sp-2);
}

.footer-bottom {
  margin-top: var(--sp-10);
  padding-top: var(--sp-4);
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--sp-3);
}

.footer-copyright {
  font-size: var(--fs-xs);
  color: rgba(255,255,255,0.4);
  margin: 0;
}

.footer-legal {
  display: flex;
  gap: var(--sp-4);
}

.footer-legal a {
  font-size: var(--fs-xs);
  color: rgba(255,255,255,0.4);
  transition: color var(--dur-fast);
}

.footer-legal a:hover {
  color: rgba(255,255,255,0.7);
}

.social-links {
  display: flex;
  gap: var(--sp-3);
}

.social-links a {
  color: rgba(255,255,255,0.5);
  transition: color var(--dur-fast), transform var(--dur-fast);
  display: flex;
  align-items: center;
  justify-content: center;
}

.social-links a:hover {
  color: white;
  transform: translateY(-2px);
}

.social-links svg {
  width: 20px;
  height: 20px;
}
