/* ============================================
   DIVE IN HURGHADA — ABOUT PAGE STYLES
   about.css — Used only by about.html
   ============================================ */

/* ── PAGE HERO ── */
.page-hero {
  position: relative; z-index: 1;
  min-height: 55vh;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; padding: 8rem 2rem 4rem; overflow: hidden;
}
.page-hero-bg {
  position: absolute; inset: -40px;
  background-size: cover; background-position: center 35%;
  filter: saturate(1.2) brightness(0.4);
  z-index: 0;
}
.page-hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(to bottom, rgba(2,12,24,0.4) 0%, rgba(2,12,24,0.2) 50%, rgba(2,12,24,0.95) 100%);
}
.page-hero > *:not(.page-hero-bg):not(.page-hero-overlay) { position: relative; z-index: 2; }
.page-tag {
  display: inline-block; font-size: 0.72rem; font-weight: 600; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--glow); border: 1px solid rgba(0,200,255,0.35);
  padding: 0.35rem 1rem; border-radius: 100px; margin-bottom: 1.2rem;
  animation: fadeUp 0.7s 0.1s both;
}
.page-title {
  font-family: var(--font-display); font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 700; line-height: 1.1; animation: fadeUp 0.7s 0.2s both;
}
.page-title em { font-style: italic; color: var(--glow); }
.page-sub {
  margin-top: 1.2rem; font-size: 1rem; color: var(--muted); max-width: 620px; line-height: 1.7;
  animation: fadeUp 0.7s 0.3s both;
}

/* ── SECTION LABEL ── */
.section-label {
  display: inline-block; font-size: 0.72rem; font-weight: 600; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--glow); margin-bottom: 1rem;
}

/* ── OUR STORY ── */
.story-section {
  position: relative; z-index: 1;
  padding: 6rem 4rem;
  max-width: 1200px; margin: 0 auto;
}
.story-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 4rem;
  align-items: center;
}
.story-img {
  position: relative; border-radius: 24px; overflow: hidden;
}
.story-img img {
  width: 100%; height: 100%; object-fit: cover;
  border-radius: 24px; min-height: 450px;
  filter: brightness(0.85) saturate(1.2);
  transition: transform 0.6s;
}
.story-img:hover img { transform: scale(1.03); }
.story-img-accent {
  position: absolute; inset: -8px;
  border: 2px solid rgba(0,200,255,0.2); border-radius: 28px;
  z-index: -1; pointer-events: none;
}
.story-content h2 {
  font-family: var(--font-display); font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  line-height: 1.2; margin-bottom: 1.5rem;
}
.story-content h2 em { font-style: italic; color: var(--glow); }
.story-content p {
  font-size: 0.95rem; color: var(--muted); line-height: 1.8;
  margin-bottom: 1.2rem;
}
.story-signature {
  margin-top: 2rem; padding-top: 1.5rem;
  border-top: 1px solid rgba(0,200,255,0.15);
}
.sig-line {
  font-family: var(--font-display); font-size: 1rem; font-style: italic;
  color: var(--glow);
}

/* ── WHY CHOOSE US ── */
.why-section {
  position: relative; z-index: 1;
  padding: 6rem 4rem;
  background: linear-gradient(180deg, rgba(2,12,24,0) 0%, rgba(6,32,64,0.3) 50%, rgba(2,12,24,0) 100%);
}
.why-header {
  text-align: center; max-width: 600px; margin: 0 auto 4rem;
}
.why-header h2 {
  font-family: var(--font-display); font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  line-height: 1.2;
}
.why-header h2 em { font-style: italic; color: var(--glow); }
.why-grid {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem;
}
.why-card {
  background: linear-gradient(145deg, rgba(6,32,64,0.8), rgba(2,12,24,0.9));
  border: 1px solid rgba(0,200,255,0.1); border-radius: 20px;
  padding: 2rem; text-align: center;
  transition: all 0.4s cubic-bezier(.23,1,.32,1);
}
.why-card:hover {
  transform: translateY(-10px);
  border-color: rgba(0,200,255,0.3);
  box-shadow: 0 30px 60px rgba(0,0,0,0.4), 0 0 25px rgba(0,200,255,0.1);
}
.why-icon {
  font-size: 2.5rem; margin-bottom: 1.2rem; display: block;
}
.why-card h3 {
  font-family: var(--font-display); font-size: 1.1rem; margin-bottom: 0.8rem;
}
.why-card p {
  font-size: 0.85rem; color: var(--muted); line-height: 1.7;
}

/* ── STATS COUNTER ── */
.stats-section {
  position: relative; z-index: 1;
  padding: 5rem 4rem;
}
.stats-grid {
  max-width: 1000px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem;
  text-align: center;
}
.stat-item {
  padding: 2rem;
  background: linear-gradient(145deg, rgba(6,32,64,0.6), rgba(2,12,24,0.8));
  border: 1px solid rgba(0,200,255,0.1); border-radius: 20px;
  transition: all 0.3s;
}
.stat-item:hover {
  border-color: rgba(0,200,255,0.3);
  box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}
.stat-number {
  font-family: var(--font-display); font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 700; color: var(--glow); display: block; line-height: 1;
  margin-bottom: 0.5rem;
}
.stat-label {
  font-size: 0.85rem; color: var(--muted); letter-spacing: 0.05em;
}

/* ── WHAT WE OFFER ── */
.offer-section {
  position: relative; z-index: 1;
  padding: 6rem 4rem;
  max-width: 1200px; margin: 0 auto;
}
.offer-header {
  text-align: center; margin-bottom: 4rem;
}
.offer-header h2 {
  font-family: var(--font-display); font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  line-height: 1.2;
}
.offer-header h2 em { font-style: italic; color: var(--glow); }
.offer-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem;
}
.offer-card {
  background: linear-gradient(145deg, rgba(6,32,64,0.8), rgba(2,12,24,0.9));
  border: 1px solid rgba(0,200,255,0.1); border-radius: 20px;
  overflow: hidden; transition: all 0.4s cubic-bezier(.23,1,.32,1);
}
.offer-card:hover {
  transform: translateY(-8px);
  border-color: rgba(0,200,255,0.3);
  box-shadow: 0 30px 60px rgba(0,0,0,0.4), 0 0 25px rgba(0,200,255,0.1);
}
.offer-img {
  height: 180px; overflow: hidden;
}
.offer-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.6s; filter: brightness(0.85) saturate(1.2);
}
.offer-card:hover .offer-img img { transform: scale(1.08); }
.offer-body { padding: 1.5rem; }
.offer-tag {
  font-size: 0.65rem; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--gold);
  background: rgba(240,165,0,0.15); border: 1px solid rgba(240,165,0,0.3);
  padding: 0.25rem 0.7rem; border-radius: 100px; display: inline-block;
  margin-bottom: 0.8rem;
}
.offer-body h3 {
  font-family: var(--font-display); font-size: 1.15rem; margin-bottom: 0.6rem;
}
.offer-body p {
  font-size: 0.85rem; color: var(--muted); line-height: 1.7;
}

/* ── CTA BANNER ── */
.cta-banner {
  position: relative; z-index: 1;
  margin: 0 4rem 6rem;
  max-width: 1200px; margin-left: auto; margin-right: auto;
  background: linear-gradient(135deg, rgba(0,60,120,0.5), rgba(0,180,255,0.1));
  border: 1px solid rgba(0,200,255,0.2); border-radius: 20px;
  padding: 3rem; text-align: center;
}
.cta-banner h2 { font-family: var(--font-display); font-size: 2rem; margin-bottom: 0.8rem; }
.cta-banner p { color: var(--muted); margin-bottom: 1.8rem; font-size: 0.95rem; }

/* ── ABOUT RESPONSIVE ── */
@media (max-width: 1024px) {
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .offer-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 900px) {
  .story-section { padding: 4rem 1.5rem; }
  .story-grid { grid-template-columns: 1fr; gap: 2rem; }
  .story-img { order: -1; }
  .story-img img { min-height: 300px; }
  .why-section { padding: 4rem 1.5rem; }
  .why-grid { grid-template-columns: 1fr; }
  .stats-section { padding: 4rem 1.5rem; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .offer-section { padding: 4rem 1.5rem; }
  .offer-grid { grid-template-columns: 1fr; }
  .cta-banner { margin: 0 1.5rem 4rem; padding: 2rem; }
}
@media (max-width: 480px) {
  .stats-grid { grid-template-columns: 1fr; }
}
