/* ==========================================================================
   Mostafa El-shreif Studios - Exact DOT Weddings Minimalist Aesthetic
   Inspired by: https://www.dotweddingseg.com/
   Palette: Pitch Black, Deep Charcoal, Crisp White, Refined Monochrome
   Typography: Cormorant Garamond (Editorial Serif) & Quattrocento Sans
   ========================================================================== */

:root {
  --bg-dark: #000000;
  --bg-subtle: #0d0d0d;
  --bg-card: #141414;
  --border-subtle: rgba(255, 255, 255, 0.12);
  --border-focus: rgba(255, 255, 255, 0.4);

  --text-white: #ffffff;
  --text-light: #e5e5e5;
  --text-gray: #9ca3af;
  --text-muted: #6b7280;

  --gold-accent: #d4af37;
  --whatsapp-green: #25d366;

  --font-serif: 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
  --font-sans: 'Quattrocento Sans', 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif;

  --transition-smooth: 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Reset & Global */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  background-color: var(--bg-dark);
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

body {
  font-family: var(--font-sans);
  background-color: var(--bg-dark);
  color: var(--text-light);
  line-height: 1.8;
  direction: ltr;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  position: relative;
  -webkit-font-smoothing: antialiased;
}

body.mobile-menu-active {
  overflow: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-serif);
  color: var(--text-white);
  font-weight: 400;
  letter-spacing: 0.5px;
}

p {
  color: var(--text-gray);
  font-size: 0.95rem;
}

a {
  color: inherit;
  text-decoration: none;
  transition: all var(--transition-smooth);
}

img, video {
  max-width: 100%;
  height: auto;
  display: block;
}

.container-narrow {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.container-fluid-custom {
  width: 100%;
  padding: 0 2rem;
}

/* --------------------------------------------------------------------------
   DOT Style Centered Header / Navigation
   -------------------------------------------------------------------------- */
.dot-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  padding: 1.2rem 2.5rem;
  transition: all var(--transition-smooth);
}

.dot-nav-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1300px;
  margin: 0 auto;
}

.dot-nav-left, .dot-nav-right {
  display: flex;
  align-items: center;
  gap: 2.2rem;
  list-style: none;
  flex: 1;
}

.dot-nav-left {
  justify-content: flex-end;
}

.dot-nav-right {
  justify-content: flex-start;
}

.dot-nav-link {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 2.2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.8);
  position: relative;
  padding: 0.3rem 0;
}

.dot-nav-link:hover, .dot-nav-link.active {
  color: #ffffff;
}

.dot-nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 1px;
  background: #ffffff;
  transition: width var(--transition-smooth);
}

.dot-nav-link:hover::after, .dot-nav-link.active::after {
  width: 100%;
}

/* Centered Brand Logo */
.dot-brand-center {
  padding: 0 3rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.dot-logo-text {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 3px;
  color: #ffffff;
  text-transform: uppercase;
  line-height: 1;
}

.dot-logo-sub {
  font-size: 0.6rem;
  letter-spacing: 2.5px;
  color: var(--text-muted);
  text-transform: uppercase;
  margin-top: 3px;
}

/* Mobile Toggle */
.dot-mobile-toggle {
  display: none;
  background: none;
  border: none;
  color: #ffffff;
  cursor: pointer;
}

/* --------------------------------------------------------------------------
   DOT Hero Section with Autoplay Video
   -------------------------------------------------------------------------- */
.dot-hero {
  position: relative;
  height: 100vh;
  height: 100svh;
  min-height: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background-color: #000000;
  width: 100%;
  max-width: 100%;
}

.dot-hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  filter: brightness(0.55) contrast(1.05);
}

.dot-hero-tint {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 2;
}

.dot-hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  padding: 0 1.25rem;
  width: 100%;
  max-width: 100%;
}

.dot-hero-title {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 7.5vw, 5.5rem);
  font-weight: 300;
  color: #ffffff;
  letter-spacing: 1px;
  line-height: 1.15;
  margin-bottom: 1.2rem;
  text-shadow: 0 4px 30px rgba(0, 0, 0, 0.8);
  word-break: break-word;
  overflow-wrap: break-word;
  max-width: 100%;
}

.dot-hero-subtitle {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 2.5rem;
}

.dot-hero-cta {
  display: inline-block;
  padding: 0.8rem 2.2rem;
  border: 1px solid rgba(255, 255, 255, 0.7);
  color: #ffffff;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  background: rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(8px);
  transition: all var(--transition-smooth);
}

.dot-hero-cta:hover {
  background: #ffffff;
  color: #000000;
  border-color: #ffffff;
}

/* Hero Controls (Arrows & Slide Numbers as in DOT screenshot) */
.dot-hero-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 4;
  color: rgba(255, 255, 255, 0.6);
  font-size: 1.4rem;
  cursor: pointer;
  padding: 1rem;
  transition: color var(--transition-smooth);
  user-select: none;
}

.dot-hero-arrow:hover {
  color: #ffffff;
}

.dot-hero-arrow-left {
  left: 2.5rem;
}

.dot-hero-arrow-right {
  right: 2.5rem;
}

.dot-hero-counter {
  position: absolute;
  right: 3rem;
  top: 45%;
  z-index: 4;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.75rem;
  font-family: var(--font-sans);
  letter-spacing: 1px;
  color: rgba(255, 255, 255, 0.7);
}

.dot-hero-counter .current-slide {
  color: #ffffff;
  font-weight: 700;
}

/* --------------------------------------------------------------------------
   DOT Section 2: "Hi, We are wedding Storytellers"
   -------------------------------------------------------------------------- */
.dot-intro-section {
  padding: 7rem 0 4rem;
  text-align: center;
  background: var(--bg-dark);
}

.dot-intro-title {
  font-family: var(--font-serif);
  font-size: clamp(2.4rem, 4.5vw, 3.8rem);
  font-weight: 300;
  color: #ffffff;
  margin-bottom: 1.5rem;
  letter-spacing: 0.5px;
}

.dot-intro-desc {
  max-width: 820px;
  margin: 0 auto 4rem;
  font-size: 1rem;
  color: #b0b0b0;
  line-height: 1.9;
  letter-spacing: 0.3px;
}

.dot-intro-desc strong {
  color: #ffffff;
}

/* Horizontal Clean Photo Strip (Exact DOT Weddings 4-column layout) */
.dot-photo-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.dot-strip-item {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  cursor: pointer;
  background: #111111;
}

.dot-strip-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1), filter 0.5s ease;
  filter: brightness(0.92);
}

.dot-strip-item:hover .dot-strip-img {
  transform: scale(1.06);
  filter: brightness(1.05);
}

/* --------------------------------------------------------------------------
   DOT Featured Stories (Portfolios Grid)
   -------------------------------------------------------------------------- */
.dot-portfolio-section {
  padding: 6.5rem 0;
  background: var(--bg-dark);
}

.dot-section-head {
  text-align: center;
  margin-bottom: 4rem;
}

.dot-section-title {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 3.5vw, 3.2rem);
  font-weight: 300;
  color: #ffffff;
  text-decoration: underline;
  text-underline-offset: 10px;
  text-decoration-thickness: 1px;
  margin-bottom: 1rem;
}

.dot-section-sub {
  font-size: 0.85rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
}

.dot-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.dot-gallery-card {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  cursor: pointer;
  background: #111111;
}

.dot-gallery-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1), filter 0.5s ease;
}

.dot-gallery-card:hover .dot-gallery-img {
  transform: scale(1.05);
}

.dot-gallery-info {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.1) 60%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2.2rem;
  opacity: 0;
  transition: opacity var(--transition-smooth);
}

.dot-gallery-card:hover .dot-gallery-info {
  opacity: 1;
}

.dot-gallery-couple {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 400;
  color: #ffffff;
  margin-bottom: 0.3rem;
}

.dot-gallery-venue {
  font-size: 0.82rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #cccccc;
}

/* --------------------------------------------------------------------------
   DOT Cinematography Feature
   -------------------------------------------------------------------------- */
.dot-cinema-card {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: #111111;
  width: 100%;
}

.dot-cinema-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.dot-cinema-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.2) 60%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2.5rem;
}

.dot-cinema-title {
  font-family: var(--font-serif);
  font-size: 2rem;
  color: #ffffff;
  margin-bottom: 0.4rem;
}

.dot-cinema-desc {
  color: #aaaaaa;
  font-size: 0.9rem;
  line-height: 1.6;
}

/* --------------------------------------------------------------------------
   DOT Packages Section (Exact match of dotweddingseg.com/Packages/)
   -------------------------------------------------------------------------- */
.dot-packages-section {
  padding: 7rem 0;
  background: #080808;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.dot-packages-category {
  margin-bottom: 5rem;
}

.dot-category-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 300;
  text-align: center;
  color: #ffffff;
  text-decoration: underline;
  text-underline-offset: 12px;
  text-decoration-thickness: 1px;
  margin-bottom: 3.5rem;
}

.dot-packages-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.dot-package-box {
  background: #111111;
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 3rem 2.2rem;
  display: flex;
  flex-direction: column;
  transition: all var(--transition-smooth);
}

.dot-package-box:hover {
  border-color: rgba(255, 255, 255, 0.4);
  transform: translateY(-6px);
}

.dot-pkg-name {
  font-family: var(--font-serif);
  font-size: 1.9rem;
  font-weight: 400;
  color: #ffffff;
  text-align: center;
  margin-bottom: 0.8rem;
}

.dot-pkg-tagline {
  font-size: 0.82rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-muted);
  text-align: center;
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.dot-pkg-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  margin-bottom: 2.8rem;
  flex-grow: 1;
}

.dot-pkg-list li {
  font-size: 0.92rem;
  color: #d1d5db;
  line-height: 1.6;
  position: relative;
  padding-left: 1.3rem;
}

.dot-pkg-list li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: #888888;
}

.dot-pkg-btn {
  display: block;
  width: 100%;
  text-align: center;
  padding: 0.9rem 1.5rem;
  border: 1px solid #ffffff;
  color: #ffffff;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  background: transparent;
  transition: all var(--transition-smooth);
  cursor: pointer;
}

.dot-pkg-btn:hover {
  background: #ffffff;
  color: #000000;
}

/* --------------------------------------------------------------------------
   DOT Real Cairo Wedding Feedback Section
   -------------------------------------------------------------------------- */
.dot-feedback-section {
  padding: 7rem 0;
  background: #080808;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.dot-feedback-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.8rem;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.dot-feedback-card {
  background: #111111;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-left: 2px solid rgba(255, 255, 255, 0.35);
  padding: 2.2rem 2.2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all var(--transition-smooth);
}

.dot-feedback-card:hover {
  border-color: rgba(255, 255, 255, 0.3);
  border-left-color: #ffffff;
  background: #141414;
  transform: translateY(-4px);
}

.dot-feedback-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 1.2rem;
  gap: 1rem;
}

.dot-feedback-couple {
  font-family: var(--font-serif);
  font-size: 1.45rem;
  font-weight: 500;
  color: #ffffff;
  line-height: 1.2;
}

.dot-feedback-venue {
  font-size: 0.78rem;
  letter-spacing: 1px;
  color: #c4a747;
  text-transform: uppercase;
  margin-top: 4px;
  display: inline-block;
}

.dot-feedback-stars {
  color: #d4af37;
  font-size: 0.95rem;
  letter-spacing: 2px;
  flex-shrink: 0;
}

.dot-feedback-text {
  font-size: 0.95rem;
  line-height: 1.8;
  color: #d1d5db;
  margin: 0;
}

.dot-feedback-text.arabic {
  font-family: 'Cairo', system-ui, -apple-system, sans-serif;
  font-size: 0.95rem;
  line-height: 1.85;
  text-align: right;
  color: #e5e7eb;
}

.dot-feedback-text.english {
  font-family: var(--font-serif);
  font-size: 1.08rem;
  font-style: italic;
  line-height: 1.75;
  text-align: left;
  color: #e5e7eb;
}

@media (max-width: 860px) {
  .dot-feedback-grid {
    grid-template-columns: 1fr;
  }
}

/* --------------------------------------------------------------------------
   DOT Contact & Direct WhatsApp Section
   -------------------------------------------------------------------------- */
.dot-contact-section {
  padding: 7rem 0;
  background: #080808;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.dot-contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  max-width: 1100px;
  margin: 0 auto;
}

.dot-contact-info h3 {
  font-family: var(--font-serif);
  font-size: 2.8rem;
  font-weight: 300;
  margin-bottom: 1.2rem;
  color: #ffffff;
}

.dot-contact-info p {
  font-size: 1rem;
  color: #a3a3a3;
  margin-bottom: 2.5rem;
  line-height: 1.9;
}

.dot-contact-details {
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
}

.dot-contact-item strong {
  display: block;
  font-size: 0.78rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #888888;
  margin-bottom: 0.3rem;
}

.dot-contact-item a, .dot-contact-item span {
  font-size: 1.15rem;
  color: #ffffff;
  font-family: var(--font-serif);
}

.dot-form-box {
  background: #111111;
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 2.8rem;
}

.dot-form-group {
  margin-bottom: 1.4rem;
}

.dot-label {
  display: block;
  font-size: 0.75rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #999999;
  margin-bottom: 0.5rem;
}

.dot-input, .dot-textarea {
  width: 100%;
  padding: 0.9rem 1rem;
  background: #000000;
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #ffffff;
  font-family: inherit;
  font-size: 16px; /* Prevents auto-zoom on iOS Safari */
  transition: border-color var(--transition-smooth);
}

.dot-input:focus, .dot-textarea:focus {
  outline: none;
  border-color: #ffffff;
}

.dot-textarea {
  resize: vertical;
  min-height: 90px;
}

.dot-submit-btn {
  width: 100%;
  padding: 1.1rem;
  background: var(--whatsapp-green);
  color: #ffffff;
  border: none;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  transition: all var(--transition-smooth);
}

.dot-submit-btn:hover {
  background: #20ba5a;
  transform: translateY(-2px);
}

/* --------------------------------------------------------------------------
   DOT Minimalist Footer
   -------------------------------------------------------------------------- */
.dot-footer {
  padding: 4.5rem 0 3rem;
  background: #000000;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  text-align: center;
}

.dot-footer-logo {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: 4px;
  color: #ffffff;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.dot-footer-tag {
  font-size: 0.72rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 2rem;
}

.dot-footer-links {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.6rem;
  list-style: none;
  margin-bottom: 2.5rem;
  padding: 0 1rem;
}

.dot-footer-links a {
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #888888;
}

.dot-footer-links a:hover {
  color: #ffffff;
}

.dot-footer-copy {
  font-size: 0.75rem;
  color: #555555;
  letter-spacing: 1px;
}

/* --------------------------------------------------------------------------
   Lightbox Modal
   -------------------------------------------------------------------------- */
.dot-lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.96);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.dot-lightbox.active {
  display: flex;
}

.dot-lightbox-content {
  position: relative;
  max-width: 90vw;
  max-height: 85vh;
  text-align: center;
}

.dot-lightbox-img {
  max-width: 100%;
  max-height: 80vh;
  object-fit: contain;
}

.dot-lightbox-caption {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  color: #ffffff;
  margin-top: 1rem;
}

.dot-mobile-drawer {
  display: none;
}

.dot-lightbox-close {
  position: absolute;
  top: 15px;
  right: 20px;
  background: none;
  border: none;
  color: #ffffff;
  font-size: 2.2rem;
  cursor: pointer;
  z-index: 2010;
}

/* --------------------------------------------------------------------------
   Responsive Breakpoints
   -------------------------------------------------------------------------- */
@media (max-width: 1024px) {
  .dot-packages-row {
    grid-template-columns: 1fr;
    max-width: 520px;
  }
  .dot-contact-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .dot-gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 860px) {
  .dot-nav-left, .dot-nav-right {
    display: none !important;
  }

  .dot-mobile-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    border: none;
    color: #ffffff;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
  }

  .dot-header {
    padding: 0.9rem 1.25rem;
  }

  .dot-nav-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
  }

  .dot-brand-center {
    padding: 0;
    align-items: flex-start;
    text-align: left;
  }

  .dot-logo-text {
    font-size: 1.22rem;
    letter-spacing: 2px;
  }

  .dot-logo-sub {
    font-size: 0.52rem;
    letter-spacing: 1.8px;
  }

  .dot-hero-arrow,
  .dot-hero-counter {
    display: none !important;
  }

  .dot-photo-strip {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
    padding: 0 1rem;
  }

  .dot-gallery-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
    padding: 0 1rem;
  }

  .dot-gallery-info {
    opacity: 1; /* Always legible on mobile touch devices */
    padding: 1.6rem 1.4rem;
  }

  .dot-feedback-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
    padding: 0 1rem;
  }

  /* Full Screen Blur Mobile Navigation Drawer */
  .dot-mobile-drawer {
    display: none;
    position: fixed;
    top: 60px;
    left: 0;
    width: 100%;
    height: calc(100vh - 60px);
    height: calc(100dvh - 60px);
    background: rgba(5, 5, 5, 0.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    flex-direction: column;
    justify-content: space-between;
    padding: 2.5rem 2rem 3rem;
    overflow-y: auto;
    z-index: 999;
  }

  .dot-mobile-drawer.active {
    display: flex;
  }

  .dot-mobile-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1.4rem;
    align-items: center;
    text-align: center;
    margin: auto 0;
  }

  .dot-mobile-link {
    font-family: var(--font-serif);
    font-size: 1.55rem;
    font-weight: 400;
    letter-spacing: 1.5px;
    color: #d1d5db;
    text-transform: uppercase;
    transition: color 0.25s ease;
  }

  .dot-mobile-link:hover,
  .dot-mobile-link:active {
    color: #ffffff;
  }

  .dot-mobile-footer {
    text-align: center;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
  }

  .dot-mobile-wa-btn {
    display: inline-block;
    padding: 0.85rem 1.8rem;
    background: var(--whatsapp-green);
    color: #ffffff;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    border-radius: 2px;
  }
}

@media (max-width: 600px) {
  .container-narrow {
    padding: 0 1rem;
  }

  .container-fluid-custom {
    padding: 0 0.8rem;
  }

  .dot-hero {
    height: 88vh;
    height: 88svh;
    min-height: 480px;
  }

  .dot-hero-title {
    font-size: clamp(1.85rem, 8vw, 2.6rem);
    letter-spacing: 0.5px;
    margin-bottom: 0.9rem;
  }

  .dot-hero-subtitle {
    font-size: 0.72rem;
    letter-spacing: 2px;
    margin-bottom: 1.8rem;
  }

  .dot-hero-cta {
    padding: 0.75rem 1.8rem;
    font-size: 0.72rem;
    letter-spacing: 2px;
  }

  .dot-intro-section {
    padding: 4.5rem 0 3rem;
  }

  .dot-intro-title {
    font-size: clamp(1.8rem, 6.5vw, 2.4rem);
    margin-bottom: 1rem;
  }

  .dot-intro-desc {
    font-size: 0.92rem;
    line-height: 1.8;
    margin-bottom: 2.5rem;
  }

  .dot-photo-strip {
    gap: 6px;
    padding: 0 0.75rem;
  }

  .dot-portfolio-section {
    padding: 4rem 0;
  }

  .dot-section-head {
    margin-bottom: 2.5rem;
  }

  .dot-section-title {
    font-size: clamp(1.8rem, 6vw, 2.4rem);
    text-underline-offset: 8px;
  }

  .dot-section-sub {
    font-size: 0.78rem;
    letter-spacing: 1.5px;
  }

  .dot-gallery-grid {
    padding: 0 0.75rem;
    gap: 1rem;
  }

  .dot-cinema-overlay {
    padding: 1.2rem;
  }

  .dot-cinema-title {
    font-size: 1.3rem;
  }

  .dot-cinema-desc {
    font-size: 0.78rem;
    line-height: 1.45;
  }

  .dot-packages-section {
    padding: 4.5rem 0;
  }

  .dot-packages-category {
    margin-bottom: 3.5rem;
  }

  .dot-category-title {
    font-size: clamp(1.6rem, 5.5vw, 2.2rem);
    margin-bottom: 2rem;
    text-underline-offset: 8px;
  }

  .dot-packages-row {
    padding: 0 0.75rem;
    gap: 1.5rem;
  }

  .dot-package-box {
    padding: 2rem 1.4rem;
  }

  .dot-pkg-name {
    font-size: 1.6rem;
  }

  .dot-pkg-list {
    margin-bottom: 2rem;
    gap: 0.85rem;
  }

  .dot-pkg-list li {
    font-size: 0.86rem;
    line-height: 1.5;
  }

  .dot-feedback-section {
    padding: 4.5rem 0;
  }

  .dot-feedback-grid {
    padding: 0 0.75rem;
    gap: 1.2rem;
  }

  .dot-feedback-card {
    padding: 1.5rem 1.2rem;
  }

  .dot-feedback-couple {
    font-size: 1.25rem;
  }

  .dot-feedback-text {
    font-size: 0.88rem;
  }

  .dot-feedback-text.arabic {
    font-size: 0.9rem;
    line-height: 1.7;
  }

  .dot-feedback-text.english {
    font-size: 0.95rem;
    line-height: 1.6;
  }

  .dot-contact-section {
    padding: 4.5rem 0;
  }

  .dot-contact-grid {
    gap: 2.5rem;
    padding: 0 0.75rem;
  }

  .dot-contact-info h3 {
    font-size: 2rem;
  }

  .dot-contact-info p {
    font-size: 0.9rem;
    margin-bottom: 1.8rem;
  }

  .dot-form-box {
    padding: 1.6rem 1.2rem;
  }

  .dot-footer {
    padding: 3.5rem 0 2rem;
  }

  .dot-footer-logo {
    font-size: 1.4rem;
    letter-spacing: 3px;
  }

  .dot-footer-tag {
    font-size: 0.65rem;
    letter-spacing: 2px;
  }

  .dot-footer-links {
    gap: 1.2rem;
  }

  .dot-footer-links a {
    font-size: 0.7rem;
    letter-spacing: 1.5px;
  }
}
