﻿:root {
  --bg: #eef5fb;
  --bg-2: #f6fbff;
  --surface: rgba(255, 255, 255, 0.88);
  --surface-strong: #ffffff;
  --text: #17164a;
  --muted: #53627d;
  --line: rgba(23, 22, 74, 0.1);
  --primary: #40a9d6;
  --primary-deep: #17164a;
  --secondary: #86888c;
  --accent: #78d4ee;
  --shadow: 0 28px 70px rgba(23, 22, 74, 0.12);
  --radius-xl: 36px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --container: min(1180px, calc(100vw - 2rem));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  font-family: "Cairo", sans-serif;
  background:
    radial-gradient(circle at 18% 10%, rgba(64, 169, 214, 0.2), transparent 22%),
    radial-gradient(circle at 82% 12%, rgba(23, 22, 74, 0.12), transparent 18%),
    linear-gradient(180deg, var(--bg-2) 0%, var(--bg) 48%, #edf3f8 100%);
  min-height: 100vh;
}

body::before,
body::after {
  content: "";
  position: fixed;
  z-index: -1;
  border-radius: 50%;
  filter: blur(26px);
  pointer-events: none;
}

body::before {
  width: 18rem;
  height: 18rem;
  top: 6rem;
  right: 2rem;
  background: rgba(64, 169, 214, 0.18);
}

body::after {
  width: 14rem;
  height: 14rem;
  bottom: 5rem;
  left: 2rem;
  background: rgba(134, 136, 140, 0.16);
}

img {
  max-width: 100%;
  display: block;
}

iframe {
  display: block;
  width: 100%;
  border: 0;
}

button,
input,
select,
textarea {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.page-shell {
  width: var(--container);
  margin: 0 auto;
  padding-bottom: 6rem;
}

.site-header {
  position: sticky;
  top: 1rem;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 1rem;
  padding: 0.95rem 1.2rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.88);
  box-shadow: 0 18px 44px rgba(23, 22, 74, 0.09);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  color: var(--text);
  text-decoration: none;
}

.brand img {
  width: 3.75rem;
  height: 3.75rem;
  border-radius: 1rem;
  box-shadow: 0 18px 35px rgba(64, 169, 214, 0.16);
}

.brand strong {
  display: block;
  font-family: "Changa", sans-serif;
  font-size: 1.2rem;
}

.brand small {
  display: block;
  color: var(--muted);
  font-size: 0.9rem;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}

.site-nav a {
  color: var(--muted);
  text-decoration: none;
  font-weight: 800;
  transition: color 180ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--primary-deep);
}

.menu-toggle {
  display: none;
  border: 0;
  background: transparent;
  padding: 0.25rem;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 1.5rem;
  height: 2px;
  margin: 0.3rem 0;
  background: var(--primary-deep);
  border-radius: 999px;
}

.section {
  padding-top: 6rem;
}

.hero {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2.5rem;
  align-items: center;
  min-height: calc(100vh - 7.5rem);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  color: var(--primary-deep);
  background: rgba(64, 169, 214, 0.12);
  font-weight: 800;
}

.hero h1,
.section-heading h2,
.card h3,
.service-card h3,
.update-card h3,
summary {
  margin: 0;
  font-family: "Changa", sans-serif;
}

.section-heading {
  max-width: 44rem;
  margin-bottom: 2rem;
}

.section-heading h2 {
  margin-bottom: 0.75rem;
  line-height: 1.4;
}

.section-heading p {
  margin-top: 0;
}

.hero h1 {
  margin-top: 1rem;
  font-size: clamp(2.45rem, 5vw, 4.7rem);
  line-height: 1.15;
}

.hero-text,
.section-heading p,
.card p,
.service-card p,
.update-card p,
.contact-details p,
.faq-list p,
.media-points li,
.timing-card li {
  color: var(--muted);
  line-height: 1.9;
}

.hero-actions,
.form-actions,
.contact-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 1.5rem;
}

.compact-actions {
  margin-top: 1rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.3rem;
  padding: 0 1.45rem;
  border-radius: 999px;
  text-decoration: none;
  border: 0;
  cursor: pointer;
  font-weight: 800;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button-primary {
  color: white;
  background: linear-gradient(135deg, var(--primary-deep), var(--primary));
  box-shadow: 0 20px 40px rgba(23, 22, 74, 0.22);
}

.button-secondary {
  color: var(--primary-deep);
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(23, 22, 74, 0.12);
}

.hero-facts,
.trust-strip,
.highlights,
.services-grid,
.updates-grid,
.faq-list {
  display: grid;
  gap: 1.5rem;
}

.hero-facts {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 2rem;
}

.hero-facts div,
.trust-strip article,
.card,
.service-card,
.update-card {
  background: var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.hero-facts div {
  padding: 1rem;
  border-radius: var(--radius-md);
}

.hero-facts dt {
  color: var(--muted);
  font-size: 0.86rem;
}

.hero-facts dd {
  margin: 0.45rem 0 0;
  font-weight: 800;
}

.hero-visual {
  position: relative;
  padding: 1.5rem;
  overflow: hidden;
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.98), rgba(227, 242, 249, 0.88)),
    linear-gradient(180deg, rgba(64, 169, 214, 0.12), rgba(23, 22, 74, 0.05));
}

.hero-visual::before {
  content: "";
  position: absolute;
  inset: 1rem auto auto 1rem;
  width: 9rem;
  height: 9rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(64, 169, 214, 0.22), transparent 68%);
}

.hero-badge {
  display: inline-flex;
  padding: 0.55rem 0.9rem;
  border-radius: 999px;
  background: rgba(23, 22, 74, 0.08);
  font-weight: 800;
}

.logo-panel {
  display: grid;
  place-items: center;
  min-height: 22rem;
  margin: 1.4rem 0;
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(235, 245, 250, 0.94));
  border: 1px solid rgba(23, 22, 74, 0.08);
}

.logo-panel img {
  width: min(100%, 24rem);
}

.hero-notes {
  display: grid;
  gap: 0.75rem;
}

.hero-notes article {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  padding: 1rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(23, 22, 74, 0.08);
}

.hero-notes span {
  color: var(--secondary);
  font-size: 0.88rem;
  font-weight: 700;
}

.hero-notes strong {
  font-size: 1rem;
}

.trust-strip {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.trust-strip article,
.card,
.service-card,
.update-card {
  padding: 1.75rem;
}

.trust-strip strong {
  display: block;
  margin-bottom: 0.45rem;
  color: var(--primary-deep);
  font-family: "Changa", sans-serif;
  font-size: 1.55rem;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.about-grid .section-heading {
  grid-column: 1 / -1;
  max-width: 42rem;
}

.highlights,
.services-grid,
.updates-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.service-card,
.update-card {
  position: relative;
  overflow: hidden;
}

.service-card::after,
.update-card::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--primary-deep));
}

.media-layout,
.booking-layout,
.contact-layout {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 1.5rem;
}

.media-copy,
.facebook-frame {
  min-height: 100%;
}

.media-points {
  padding: 0;
  margin: 1.25rem 0 0;
  list-style: none;
  display: grid;
  gap: 0.7rem;
}

.media-points li {
  padding: 0.9rem 1rem;
  border-radius: 16px;
  background: rgba(64, 169, 214, 0.1);
}

.facebook-frame {
  padding: 0.8rem;
}

.facebook-frame iframe {
  min-height: 720px;
  border-radius: 20px;
  background: white;
}

.updates-grid {
  align-items: stretch;
}

.update-card.featured {
  grid-column: span 2;
  color: white;
  background: linear-gradient(145deg, var(--primary-deep), var(--primary));
}

.update-card.featured p,
.update-card.featured .update-date {
  color: rgba(255, 255, 255, 0.85);
}

.update-date {
  display: inline-flex;
  margin-bottom: 0.85rem;
  color: var(--primary-deep);
  font-weight: 800;
}

.booking-layout,
.contact-layout {
  grid-template-columns: 1.15fr 0.85fr;
}

.booking-form,
#contact-form {
  display: grid;
  gap: 1rem;
  margin-top: 1.25rem;
}

label {
  display: grid;
  gap: 0.45rem;
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  padding: 0.95rem 1rem;
  border-radius: 18px;
  border: 1px solid rgba(23, 22, 74, 0.12);
  background: rgba(255, 255, 255, 0.96);
  color: var(--text);
  outline: none;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

input:focus,
select:focus,
textarea:focus {
  border-color: rgba(64, 169, 214, 0.55);
  box-shadow: 0 0 0 4px rgba(64, 169, 214, 0.14);
}

.booking-sidebar {
  display: grid;
  gap: 1.5rem;
}

.contact-card a,
.text-link {
  display: block;
  margin-top: 0.8rem;
  color: var(--primary-deep);
  text-decoration: none;
  font-weight: 800;
}

.timing-card ul {
  display: grid;
  gap: 0.65rem;
  margin: 1rem 0 0;
  padding: 0;
  list-style: none;
}

summary {
  cursor: pointer;
  font-size: 1.02rem;
}

summary::-webkit-details-marker {
  display: none;
}

details[open] summary {
  margin-bottom: 0.85rem;
  color: var(--primary-deep);
}

.site-footer {
  display: grid;
  place-items: center;
  gap: 0.5rem;
  padding-top: 5rem;
  text-align: center;
  color: var(--muted);
}

.site-footer img {
  width: 5.5rem;
  height: 5.5rem;
}

.floating-actions {
  position: fixed;
  left: 1rem;
  bottom: 1rem;
  z-index: 16;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.floating-actions a {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-width: 5.5rem;
  padding: 0.85rem 1rem;
  border-radius: 999px;
  text-decoration: none;
  color: white;
  font-weight: 800;
  box-shadow: 0 18px 34px rgba(23, 22, 74, 0.14);
}

.floating-actions a:first-child {
  background: linear-gradient(135deg, var(--primary-deep), #2b2b73);
}

.floating-actions a:last-child {
  background: linear-gradient(135deg, #1f9d6c, #1cc27d);
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 500ms ease, transform 500ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.notice {
  margin-top: 1rem;
  padding: 0.9rem 1rem;
  border-radius: 16px;
  background: rgba(64, 169, 214, 0.12);
  color: var(--primary-deep);
  font-weight: 700;
}

@media (max-width: 1024px) {

  .hero,
  .about-grid,
  .highlights,
  .services-grid,
  .updates-grid,
  .media-layout,
  .booking-layout,
  .contact-layout,
  .trust-strip {
    grid-template-columns: 1fr;
  }

  .update-card.featured {
    grid-column: auto;
  }

  .hero {
    min-height: auto;
    padding-top: 2rem;
  }

  .hero-facts {
    grid-template-columns: 1fr;
  }

  .facebook-frame iframe {
    min-height: 620px;
  }

  .site-header {
    align-items: flex-start;
    border-radius: 28px;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 0.8rem);
    right: 0;
    left: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 1rem;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(23, 22, 74, 0.08);
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: flex;
  }

  .menu-toggle {
    display: block;
  }
}

@media (max-width: 640px) {
  .page-shell {
    width: min(100vw - 1rem, 100%);
  }

  .hero h1 {
    font-size: 2.15rem;
  }

  .section {
    padding-top: 4rem;
  }

  .logo-panel {
    min-height: 16rem;
  }

  .facebook-frame iframe {
    min-height: 560px;
  }

  .floating-actions {
    left: 0.75rem;
    right: 0.75rem;
    bottom: 0.75rem;
    flex-direction: row;
  }

  .floating-actions a {
    flex: 1;
  }
}