/* ============================================================
   Arash Zad — site theme
   Palette (from the original site):
     --maroon-950 #360014   deepest (footer, marquee, buttons)
     --maroon-900 #490A1D   modal / package cards
     --maroon-800 #53091F   accents, hovers
     --maroon-700 #69293b   calendar selection
   Font: Urbanist (Google Fonts)
   ============================================================ */

:root {
  --maroon-950: #360014;
  --maroon-900: #490A1D;
  --maroon-800: #53091F;
  --maroon-700: #69293b;
  --maroon-600: #7d3348;
  --rose-100: #d9ccd0;
  --rose-200: #c1a0b0;
  --ink: #1c1c1e;
  --gray-500: #73859f;
  --paper: #ffffff;
  --radius-lg: 26px;
  --radius-xl: 44px;
  --shadow-lg: 0 20px 50px rgba(54, 0, 20, .12);
  --font: 'Urbanist', -apple-system, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  color: var(--ink);
  background: #fff;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, video { max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
input, select, textarea { font-family: inherit; font-size: 1rem; }
.container { width: min(1240px, 92vw); margin: 0 auto; }

/* ---------- Reveal-on-scroll animations ---------- */
.reveal { opacity: 0; transform: translateY(36px); transition: opacity .8s cubic-bezier(.22,.61,.36,1), transform .8s cubic-bezier(.22,.61,.36,1); will-change: opacity, transform; }
.reveal.reveal-left { transform: translateX(-46px); }
.reveal.reveal-right { transform: translateX(46px); }
.reveal.reveal-zoom { transform: scale(.92); }
.reveal.is-visible { opacity: 1; transform: none; }
.reveal-d1 { transition-delay: .12s; }
.reveal-d2 { transition-delay: .24s; }
.reveal-d3 { transition-delay: .36s; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
  .marquee-track { animation: none !important; }
}

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 90;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(54,0,20,.06);
}
.site-header .container { display: flex; align-items: center; justify-content: space-between; height: 78px; gap: 18px; }
.logo img { height: 34px; width: auto; display: block; }
.main-nav { display: flex; align-items: center; gap: 34px; }
.main-nav a { font-weight: 500; font-size: 1rem; color: var(--ink); transition: color .2s; }
.main-nav a:hover, .main-nav a.active { color: var(--maroon-800); }
.nav-drop { position: relative; }
.nav-drop > a::after { content: ''; display: inline-block; margin-left: 7px; width: 8px; height: 8px; border-right: 2px solid currentColor; border-bottom: 2px solid currentColor; transform: rotate(45deg) translateY(-3px); transition: transform .2s; }
.nav-drop-menu {
  position: absolute; top: calc(100% + 10px); left: 50%; transform: translateX(-50%) translateY(8px);
  background: #fff; border-radius: 14px; box-shadow: var(--shadow-lg);
  padding: 10px; min-width: 200px; opacity: 0; visibility: hidden; transition: all .25s;
}
.nav-drop:hover .nav-drop-menu, .nav-drop:focus-within .nav-drop-menu { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.nav-drop-menu a { display: block; padding: 10px 16px; border-radius: 10px; font-size: .95rem; }
.nav-drop-menu a:hover { background: #f6eff2; }
.btn { display: inline-flex; align-items: center; gap: 8px; font-weight: 600; border: none; border-radius: 12px; padding: 13px 24px; font-size: .95rem; transition: all .25s; }
.btn-maroon { background: var(--maroon-950); color: #fff; }
.btn-maroon:hover { background: var(--maroon-800); transform: translateY(-1px); }
.btn-light { background: #fff; color: var(--ink); }
.btn-light:hover { background: #f1e8eb; }
.btn-outline { background: transparent; color: #fff; border: 1.5px solid rgba(255,255,255,.8); }
.btn-outline:hover { background: rgba(255,255,255,.14); }
.btn .arrow { font-style: normal; transition: transform .25s; }
.btn:hover .arrow { transform: translate(2px, -2px); }
.nav-book-mobile { display: none; }
.burger { display: none; background: none; border: none; width: 42px; height: 42px; position: relative; }
.burger span { position: absolute; left: 8px; right: 8px; height: 2.5px; background: var(--maroon-950); border-radius: 2px; transition: all .3s; }
.burger span:nth-child(1) { top: 13px; } .burger span:nth-child(2) { top: 20px; } .burger span:nth-child(3) { top: 27px; }

@media (max-width: 900px) {
  .main-nav {
    position: fixed; inset: 78px 0 auto 0; background: #fff; flex-direction: column; align-items: flex-start;
    padding: 22px 6vw 30px; gap: 18px; box-shadow: 0 30px 40px rgba(0,0,0,.12);
    transform: translateY(-130%); transition: transform .35s; z-index: 80;
  }
  .main-nav.open { transform: translateY(0); }
  .nav-drop-menu { position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none; padding: 6px 0 0 14px; display: none; }
  .nav-drop.open .nav-drop-menu { display: block; }
  .burger { display: block; }
  .header-cta { display: none; }
  .nav-book-mobile { display: inline-flex; }
}

/* ---------- Marquee bands ---------- */
.marquee { overflow: hidden; white-space: nowrap; position: relative; }
.marquee-track { display: inline-flex; align-items: center; animation: marquee 22s linear infinite; will-change: transform; }
/* Even spacing after every item (incl. a trailing gap) keeps the -50% loop seamless with no big gap. */
.marquee-track > * { margin-right: 3rem; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.band-maroon { background: var(--maroon-950); color: #fff; padding: 14px 0; }
.band-maroon .marquee-track { font-size: clamp(1.1rem, 2.2vw, 1.6rem); font-weight: 600; }
.band-gray { background: #6b6b70; color: #fff; padding: 14px 0; }
.band-gray .marquee-track { font-size: clamp(1.1rem, 2.2vw, 1.6rem); font-weight: 600; }

/* ---------- Hero (home) ---------- */
.hero { position: relative; margin: 0 auto; width: min(1400px, 96vw); border-radius: 0 0 var(--radius-lg) var(--radius-lg); overflow: hidden; min-height: min(86vh, 760px); display: flex; align-items: flex-end; }
.hero-bg { position: absolute; inset: 0; background-size: cover; background-position: center; transform: scale(1.04); animation: heroZoom 9s ease-out forwards; }
@keyframes heroZoom { to { transform: scale(1); } }
.hero-bg::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to top, rgba(20,0,8,.55), rgba(20,0,8,.05) 55%); }
.hero-inner { position: relative; z-index: 2; padding: 0 5% 56px; width: 100%; display: flex; justify-content: space-between; align-items: flex-end; gap: 30px; }
.hero-text img.hero-logo { width: min(260px, 50vw); margin-bottom: 14px; }
.hero-text p { color: #fff; font-size: clamp(1.25rem, 2.6vw, 1.9rem); max-width: 520px; line-height: 1.35; font-weight: 400; }
.hero-video { position: relative; width: min(390px, 38vw); border-radius: 18px; overflow: hidden; box-shadow: 0 24px 60px rgba(0,0,0,.4); }
.hero-video img { display: block; width: 100%; }
.play-btn { position: absolute; inset: 0; margin: auto; width: 66px; height: 66px; border-radius: 50%; border: none; background: rgba(73,10,29,.85); color: #fff; display: flex; align-items: center; justify-content: center; transition: transform .25s, background .25s; }
.play-btn:hover { transform: scale(1.1); background: var(--maroon-800); }
.play-btn svg { width: 22px; height: 22px; margin-left: 3px; }
@media (max-width: 760px) { .hero-inner { flex-direction: column; align-items: flex-start; } .hero-video { width: 100%; } }

/* ---------- Generic sections ---------- */
.section { padding: 84px 0; }
.section-tag { display: inline-block; background: #f4e9ee; color: var(--maroon-800); font-size: .8rem; font-weight: 700; letter-spacing: .06em; padding: 7px 16px; border-radius: 999px; margin-bottom: 14px; text-transform: uppercase; }
.section h2 { font-size: clamp(1.7rem, 3.4vw, 2.6rem); font-weight: 700; line-height: 1.2; }
.section .lead { color: #55606e; margin-top: 12px; max-width: 640px; }

/* About Arash (home) */
.about-grid { display: grid; grid-template-columns: 1fr 1.15fr; gap: 56px; align-items: center; }
.about-photo { position: relative; }
.about-photo::before { content: ''; position: absolute; inset: -8% -14%; background: radial-gradient(closest-side, rgba(160,64,96,.25), transparent 72%); filter: blur(8px); }
.about-photo img { position: relative; width: 100%; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); }
@media (max-width: 860px) { .about-grid { grid-template-columns: 1fr; } }

/* Firm section */
.firm-grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: 56px; align-items: center; }
.firm-grid img.firm-photo { width: 100%; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); }
.firm-grid img.firm-logo { height: 84px; margin-bottom: 18px; }
@media (max-width: 860px) { .firm-grid { grid-template-columns: 1fr; } }

/* Mission / vision */
.mv-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 34px; }
.mv-card { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); background: #fff; display: flex; flex-direction: column; }
.mv-card .mv-text { background: var(--maroon-950); color: #fff; padding: 30px 32px; }
.mv-card .mv-text h3 { font-size: 1.4rem; margin-bottom: 10px; }
.mv-card .mv-text p { color: #e8d9df; font-size: .98rem; }
.mv-card img { width: 100%; height: 260px; object-fit: cover; flex: 1; }
.mv-card:nth-child(2) { transform: translateY(38px); }
@media (max-width: 860px) { .mv-grid { grid-template-columns: 1fr; } .mv-card:nth-child(2) { transform: none; } }

/* Watch & Learn */
.watch { position: relative; border-radius: var(--radius-lg); overflow: hidden; min-height: 520px; display: flex; align-items: center; color: #fff; }
.watch video, .watch .watch-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.watch::after { content: ''; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(15,2,7,.78), rgba(15,2,7,.25) 60%, rgba(15,2,7,.05)); }
.watch-inner { position: relative; z-index: 2; padding: 56px; max-width: 620px; }
.watch-inner .wl-title { font-size: clamp(1.9rem, 4vw, 3rem); font-weight: 300; color: #e9dee2; }
.watch-inner h3 { font-size: clamp(1.6rem, 3vw, 2.3rem); margin: 18px 0 4px; font-weight: 300; }
.watch-inner p { color: #e5d5dc; margin: 14px 0 26px; }
.watch-foot { position: absolute; right: 40px; bottom: 26px; z-index: 2; font-size: 1.3rem; color: #ddc9d1; font-weight: 300; }
@media (max-width: 700px) { .watch-inner { padding: 34px 24px; } .watch-foot { right: 20px; } }

/* Social carousel */
.social-row { display: flex; gap: 22px; overflow-x: auto; scroll-snap-type: x mandatory; padding: 26px 4px 34px; }
.social-row::-webkit-scrollbar { display: none; }
.social-card { flex: 0 0 min(280px, 78vw); scroll-snap-align: center; background: #fff; border: 1px solid #efe3e8; border-radius: 22px; box-shadow: 0 2px 10px rgba(54,0,20,.05); padding: 26px 22px 24px; text-align: center; transition: transform .3s, box-shadow .3s, border-color .3s; }
.social-card:hover { transform: translateY(-6px); border-color: #e4d2da; box-shadow: 0 10px 24px rgba(54,0,20,.10); }
.social-card img.icon { width: 74px; height: 74px; object-fit: contain; margin: 6px auto 14px; }
.social-card .handle { font-weight: 700; }
.social-card .followers { display: inline-block; background: var(--maroon-800); color: #fff; border-radius: 999px; font-size: .85rem; padding: 6px 18px; margin-top: 10px; }
.social-card .follow { display: block; margin-top: 12px; color: var(--gray-500); font-size: .9rem; }

/* Testimonials */
/* minmax(0,1fr) forces the two columns to be truly equal — plain 1fr lets the text card's
   content push it wider than the video card. Capped + centred so they sit in the middle. */
.testi-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 44px; align-items: stretch; max-width: 1040px; margin-inline: auto; }
.testi-grid > [data-carousel] { display: flex; flex-direction: column; min-width: 0; }
/* Sliding carousel: a viewport clips the track, the track slides one slide-width at a time.
   Sizing is all-flex (no percentage heights) so both columns resolve to equal height reliably. */
.carousel-viewport { flex: 1 1 auto; overflow: hidden; display: flex; flex-direction: column; }
.carousel-track { flex: 1 1 auto; display: flex; transition: transform .6s cubic-bezier(.4, 0, .2, 1); }
.carousel-track > [data-slide] { flex: 0 0 100%; min-width: 0; display: flex; flex-direction: column; }
.testi-quote { flex: 1 1 auto; background: #faf6f8; border: 1px solid #efe2e7; border-radius: var(--radius-lg); padding: 34px; min-height: 300px; display: flex; flex-direction: column; justify-content: space-between; }
.testi-quote blockquote { font-size: 1.08rem; color: #3c4350; }
.testi-author { display: flex; gap: 14px; align-items: center; margin-top: 24px; }
.testi-author img { width: 54px; height: 54px; border-radius: 50%; object-fit: cover; }
.testi-author .name { font-weight: 700; }
.testi-author .title { color: var(--gray-500); font-size: .85rem; }
.testi-nav { display: flex; gap: 12px; margin-top: 20px; justify-content: center; }
.testi-nav button, .vr-nav button { width: 42px; height: 42px; border-radius: 50%; border: 1.5px solid var(--maroon-800); background: #fff; color: var(--maroon-800); font-size: 1.1rem; transition: all .2s; }
.testi-nav button:hover, .vr-nav button:hover { background: var(--maroon-800); color: #fff; }
/* Video review: a card matching the quote card, with a landscape thumbnail and caption below */
.video-review { flex: 1 1 auto; min-height: 300px; background: #faf6f8; border: 1px solid #efe2e7; border-radius: var(--radius-lg); padding: 18px; display: flex; flex-direction: column; gap: 16px; }
.vr-media { position: relative; border-radius: 16px; overflow: hidden; }
.vr-media img { width: 100%; display: block; aspect-ratio: 8 / 7; object-fit: cover; }
.vr-caption { padding: 2px 6px 4px; }
.vr-caption .big { font-size: 1.15rem; font-weight: 700; letter-spacing: .01em; color: #1f2430; }
.vr-caption > div:last-child { color: var(--gray-500); font-size: .9rem; margin-top: 2px; }
.vr-nav { display: flex; gap: 12px; margin-top: 20px; justify-content: center; }
@media (max-width: 860px) { .testi-grid { grid-template-columns: minmax(0, 1fr); gap: 32px; } }
@media (max-width: 560px) {
  .testi-grid { gap: 24px; max-width: 100%; }
  .testi-quote { padding: 22px; min-height: 0; border-radius: 20px; }
  .testi-quote blockquote { font-size: 1rem; }
  .testi-author { margin-top: 18px; }
  .testi-author img { width: 46px; height: 46px; }
  .video-review { padding: 12px; min-height: 0; gap: 12px; }
  .testi-nav, .vr-nav { margin-top: 14px; }
}
@media (prefers-reduced-motion: reduce) { .carousel-track { transition: none; } }

/* Blog cards — a landscape image sits on top, the title/excerpt on a solid body,
   so both the photo and the text stay clearly legible (no text over the photo). */
.blog-cards { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 26px; }
.blog-card { position: relative; border-radius: 22px; overflow: hidden; box-shadow: var(--shadow-lg); background: var(--maroon-900); color: #fff; display: flex; flex-direction: column; transition: transform .3s; }
.blog-card:hover { transform: translateY(-6px); }
.blog-card .bg { position: relative; aspect-ratio: 16 / 9; background-size: cover; background-position: center; transition: transform .6s; } /* 16:9 matches the 720x405 source images, so nothing is cropped */
.blog-card:hover .bg { transform: scale(1.04); }
.blog-card .read-pill { position: absolute; top: 14px; right: 14px; background: rgba(35,0,14,.82); color: #fff; border-radius: 999px; padding: 6px 14px; font-size: .8rem; z-index: 2; }
.blog-card .body { position: relative; z-index: 2; padding: 22px 22px 62px; flex: 1 1 auto; }
.blog-card h3 { font-size: 1.15rem; line-height: 1.35; }
.blog-card p { color: #e3d2d9; font-size: .92rem; margin-top: 8px; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
.blog-card .go { position: absolute; right: 16px; bottom: 16px; width: 40px; height: 40px; border-radius: 50%; background: rgba(255,255,255,.16); display: flex; align-items: center; justify-content: center; z-index: 2; transition: background .2s; }
.blog-card:hover .go { background: var(--maroon-800); }

/* Home "Blogs / Insight" slider — a horizontal scroll-snap row with dot indicators below.
   Native scroll/swipe does the paging; the dots (built by JS) show position and are clickable. */
.blog-slider { position: relative; }
.blog-track { display: flex; gap: 26px; overflow-x: auto; scroll-snap-type: x mandatory; scroll-behavior: smooth; padding: 14px 6px 30px; -webkit-overflow-scrolling: touch; scrollbar-width: none; }
.blog-track::-webkit-scrollbar { display: none; }
.blog-track > .blog-card { flex: 0 0 min(440px, 86%); scroll-snap-align: start; }
.blog-dots { display: none; justify-content: center; gap: 11px; margin-top: 20px; }
.blog-slider.has-overflow .blog-dots { display: flex; }
.blog-dot { width: 10px; height: 10px; padding: 0; border: none; border-radius: 50%; background: #dcc9d0; cursor: pointer; transition: background .25s, transform .25s; }
.blog-dot:hover { background: var(--maroon-600); }
.blog-dot.is-active { background: var(--maroon-800); transform: scale(1.3); }

/* ---------- Page hero banners (blogs, aztv) ---------- */
.page-hero { position: relative; min-height: 420px; display: flex; align-items: flex-end; color: #fff; overflow: hidden; }
.page-hero .bg { position: absolute; inset: 0; background-size: cover; background-position: center; }
.page-hero .shade { position: absolute; inset: 0; background: linear-gradient(100deg, rgba(54,0,20,.82), rgba(54,0,20,.25) 65%); }
.page-hero .container { position: relative; z-index: 2; padding: 60px 0; }
.page-hero h1 { font-size: clamp(2.2rem, 6vw, 4rem); font-weight: 300; letter-spacing: .04em; }
.page-hero p { max-width: 560px; margin-top: 12px; color: #f0e2e8; }

/* ---------- Team page ---------- */
.team-hero { background: linear-gradient(160deg, var(--maroon-950), var(--maroon-700) 55%, #b98ca0); color: #fff; padding: 40px 0 0; }
.team-hero .titles { padding: 30px 0 26px; }
.team-hero h1 { font-size: clamp(1.7rem, 3.6vw, 2.6rem); }
.team-hero .sub { color: #ecd9e1; }
.photo-panel { position: relative; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); }
.photo-panel img.main { width: 100%; display: block; object-fit: cover; max-height: 720px; }
.glass-caption { position: absolute; left: 4%; right: 4%; bottom: 5%; background: rgba(20,8,12,.55); backdrop-filter: blur(8px); border: 1px solid rgba(255,255,255,.18); border-radius: 18px; color: #fff; padding: 22px 26px; }
.glass-caption h3 { margin-bottom: 8px; font-size: 1.25rem; }
.glass-caption p, .glass-caption li { font-size: .95rem; color: #f0e6ea; }
.expertise-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 40px; align-items: stretch; }
.expertise-grid .photo img { width: 100%; height: 100%; object-fit: cover; border-radius: 22px; box-shadow: var(--shadow-lg); }
.expertise-card { background: linear-gradient(150deg, #fdf7fa, #f3e3ea); border-radius: 22px; padding: 34px 36px; box-shadow: var(--shadow-lg); }
.expertise-card ul { margin: 14px 0 20px 20px; }
.expertise-card li { margin: 6px 0; }
@media (max-width: 800px) { .expertise-grid { grid-template-columns: 1fr; } }

/* ---------- Booking page ---------- */
.booking-title { text-align: center; font-size: clamp(2rem, 5vw, 3.4rem); font-weight: 300; padding: 54px 0 30px; }
.advice-video { width: min(760px, 92vw); margin: 0 auto; border-radius: 22px; overflow: hidden; box-shadow: var(--shadow-lg); position: relative; }
.advice-video video { display: block; width: 100%; }
.pricing-panel { background: #fff; border-radius: 26px; box-shadow: var(--shadow-lg); padding: 34px; display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 30px; }
.price-card { display: flex; flex-direction: column; gap: 8px; padding: 10px 6px; position: relative; }
.price-card + .price-card::before { content: ''; position: absolute; left: -16px; top: 8%; bottom: 8%; width: 1px; background: #eee3e8; }
.price-card .badge { position: absolute; top: -26px; left: 0; background: var(--maroon-900); color: #fff; font-size: .68rem; font-weight: 700; letter-spacing: .05em; border-radius: 999px; padding: 5px 12px; }
.price-card .amount { font-size: 1.45rem; font-weight: 800; color: var(--ink); }
.price-card .amount small { font-size: .68rem; font-weight: 500; color: var(--gray-500); }
.price-card h3 { font-size: 1.05rem; font-weight: 700; }
.price-card .details { color: #55606e; font-size: .88rem; min-height: 56px; }
.price-card .feature { display: flex; align-items: center; gap: 8px; font-size: .92rem; font-weight: 600; }
.price-card .feature .tick { width: 20px; height: 20px; border-radius: 50%; background: #f2e6eb; color: var(--maroon-800); display: inline-flex; align-items: center; justify-content: center; font-size: .7rem; }
.price-card .actions { margin-top: 14px; display: flex; flex-direction: column; gap: 10px; }
.price-card .actions .btn { justify-content: center; }
.btn-gray { background: #f2f3f5; color: var(--ink); }
.btn-gray:hover { background: #e6e7ea; }
@media (max-width: 700px) { .price-card + .price-card::before { display: none; } .price-card { border-top: 1px solid #eee3e8; padding-top: 22px; } .price-card .badge { top: -4px; } }

/* FAQ */
.faq-wrap { background: linear-gradient(180deg, #faf6f8, #fff); border-radius: 26px; padding: 44px clamp(16px, 5vw, 60px); }
.faq-wrap h2 { text-align: center; font-size: clamp(1.8rem, 4vw, 2.6rem); font-weight: 300; }
.faq-wrap .faq-sub { text-align: center; font-weight: 600; font-size: 1.15rem; margin: 8px 0 30px; }
.faq-item { background: linear-gradient(90deg, #fff, #f7eef2); border: 1px solid #eadfe4; border-radius: 12px; margin-bottom: 12px; overflow: hidden; }
.faq-item button.q { width: 100%; display: flex; justify-content: space-between; align-items: center; gap: 16px; background: none; border: none; text-align: left; font-weight: 700; font-size: 1rem; padding: 16px 18px; }
.faq-item .chev { flex: 0 0 auto; width: 30px; height: 30px; border-radius: 8px; background: var(--maroon-950); color: #fff; display: flex; align-items: center; justify-content: center; transition: transform .3s; }
.faq-item.open .chev { transform: rotate(180deg); }
.faq-item .a { max-height: 0; overflow: hidden; transition: max-height .4s ease; color: #4b5563; padding: 0 18px; white-space: pre-line; }
.faq-item.open .a { padding-bottom: 16px; }

/* Package modal */
.modal-overlay { position: fixed; inset: 0; background: rgba(10,2,6,.62); z-index: 200; display: none; align-items: center; justify-content: center; padding: 3vh 3vw; }
.modal-overlay.open { display: flex; }
.pkg-modal { display: flex; gap: 16px; width: min(1100px, 94vw); max-height: 90vh; }
.pkg-modal .side { flex: 0 0 280px; background: var(--maroon-900); border-radius: var(--radius-lg); padding: 28px 24px; color: #fff; display: none; flex-direction: column; gap: 12px; height: fit-content; }
.pkg-modal .side .badge { align-self: flex-end; background: #fff; color: var(--maroon-800); font-size: .68rem; font-weight: 800; padding: 5px 12px; border-radius: 999px; }
.pkg-modal .side .amount { font-size: 1.6rem; font-weight: 800; }
.pkg-modal .side .amount small { font-size: .7rem; font-weight: 500; opacity: .8; }
.pkg-modal .side .feature { display: flex; gap: 8px; align-items: center; font-size: .95rem; }
.pkg-modal .side .feature .tick { width: 22px; height: 22px; border-radius: 50%; background: rgba(255,255,255,.2); display: inline-flex; align-items: center; justify-content: center; font-size: .7rem; }
.pkg-modal .body { flex: 1; background: var(--maroon-900); border-radius: var(--radius-lg); padding: 30px; color: #fff; overflow-y: auto; }
.pkg-modal .body h4 { margin: 18px 0 8px; font-size: 1.05rem; }
.pkg-modal .body p, .pkg-modal .body li { color: #ecdae1; font-size: .95rem; }
.pkg-modal .body ul, .pkg-modal .body ol { margin: 8px 0 8px 22px; }
.modal-close { position: absolute; top: 18px; right: 22px; width: 42px; height: 42px; border-radius: 50%; border: none; background: rgba(255,255,255,.14); color: #fff; font-size: 1.3rem; z-index: 5; }
.modal-close:hover { background: rgba(255,255,255,.3); }
@media (min-width: 860px) { .pkg-modal .side { display: flex; } }

/* Video modal */
.video-modal video { max-width: min(1000px, 92vw); max-height: 82vh; border-radius: 14px; background: #000; }

/* ---------- Schedule page ---------- */
.schedule-grid { display: grid; grid-template-columns: 1.5fr 1fr; gap: 40px; align-items: start; padding: 40px 0 70px; }
@media (max-width: 900px) { .schedule-grid { grid-template-columns: 1fr; } }
.schedule-grid h1 { font-size: clamp(1.8rem, 4vw, 2.6rem); font-weight: 400; }
.field { display: flex; flex-direction: column; gap: 8px; margin-bottom: 18px; }
.field label { font-weight: 600; font-size: .95rem; }
.field .in { position: relative; }
.field .in .ico { position: absolute; left: 16px; top: 50%; transform: translateY(-50%); color: var(--maroon-800); }
.field input, .field select, .field textarea {
  width: 100%; border: 1px solid #e5e0e2; border-radius: 14px; padding: 16px 16px 16px 48px; font-size: 1rem; outline: none; transition: box-shadow .2s, border-color .2s; background: #fff;
}
.field textarea { padding-left: 16px; min-height: 110px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--maroon-700); box-shadow: 0 10px 26px rgba(54,0,20,.08); }
.field .err { color: #dc2626; font-size: .85rem; }

/* ---------- International phone field (intl-tel-input) ---------- */
/* Make the plugin wrapper fill the field; it sizes the input's left padding
   itself (inline) to fit the flag + dial code, so the site input styling
   (border, radius, height) is preserved. */
.field .iti { display: block; width: 100%; }
.field .iti .tel-input { width: 100%; }
.iti__selected-country { border-radius: 14px 0 0 14px; padding: 0 6px 0 14px; }
.iti--separate-dial-code .iti__selected-dial-code { color: #55606e; }
.iti__dropdown-content {
  border: 1px solid #eadfe3; border-radius: 12px; overflow: hidden;
  box-shadow: 0 16px 40px rgba(54, 0, 20, .16); font-family: inherit;
}
.iti__search-input { padding: 12px 14px; font-size: .95rem; border: 0; border-bottom: 1px solid #f0eaec; }
.iti__search-input:focus { outline: none; }
.iti__country { padding: 9px 12px; }
.iti__country.iti__highlight { background: rgba(105, 41, 59, .10); } /* --maroon-700 tint */
.iti__dial-code { color: #8a939e; }
.form-2col { display: grid; grid-template-columns: 1fr 1fr; gap: 0 22px; }
@media (max-width: 640px) { .form-2col { grid-template-columns: 1fr; } }

.cal-panel { background: #f4f4f6; border: 1px solid #e8e2e5; border-radius: 18px; padding: 18px; box-shadow: var(--shadow-lg); }
.cal-flex { display: flex; gap: 18px; }
.cal-month { flex: 1; }
.cal-month header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 10px; }
.cal-month header h3 { font-size: 1rem; }
.cal-month header button { background: none; border: none; font-size: 1.1rem; padding: 4px 10px; border-radius: 8px; }
.cal-month header button:disabled { opacity: .35; cursor: not-allowed; }
.cal-month header button:not(:disabled):hover { background: #eee; }
.cal-grid { background: #fff; border-radius: 14px; padding: 8px; display: grid; grid-template-columns: repeat(7, 1fr); gap: 4px; }
.cal-grid .dow { text-align: center; font-size: .72rem; font-weight: 700; color: #9aa2ad; padding: 6px 0; }
.cal-grid button.day { height: 38px; border: none; background: none; border-radius: 10px; font-weight: 600; color: #374151; transition: all .15s; }
.cal-grid button.day:hover:not(:disabled) { background: var(--maroon-700); color: #fff; }
.cal-grid button.day:disabled { color: #d1d5db; cursor: not-allowed; }
.cal-grid button.day.sel { background: var(--maroon-700); color: #fff; }
.slots-col { flex: 0 0 128px; border-left: 1px solid #e5e0e2; padding-left: 14px; text-align: center; }
.slots-col h4 { font-size: .95rem; margin-bottom: 10px; }
.slots-list { background: #fff; border-radius: 14px; padding: 8px; max-height: 250px; overflow-y: auto; display: flex; flex-direction: column; gap: 5px; }
.slots-list button { border: none; background: none; padding: 7px 6px; border-radius: 8px; font-weight: 600; font-size: .82rem; color: #374151; }
.slots-list button:hover:not(:disabled) { background: #f3f4f6; }
.slots-list button:disabled { background: #f3f4f6; color: #9ca3af; text-decoration: line-through; cursor: not-allowed; }
.slots-list button.sel { background: var(--maroon-700); color: #fff; }
.slot-chip { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
.slot-chip .chip { flex: 1; background: var(--maroon-700); color: #fff; border-radius: 12px; padding: 12px 16px; font-size: .92rem; display: flex; align-items: center; gap: 8px; }
.slot-chip .chip.empty { background: #eaeaea; color: #6b7280; }
.slot-chip button.x { background: var(--maroon-700); border: none; color: #fff; border-radius: 12px; width: 42px; height: 42px; font-weight: 800; }
.slot-chip button.x:hover { background: var(--maroon-600); }

.pkg-summary { background: #fff; border-radius: 22px; box-shadow: var(--shadow-lg); padding: 26px; }
.pkg-summary h2 { text-align: center; font-size: 1.5rem; margin-bottom: 18px; }
.pkg-summary .inner { background: var(--maroon-900); border-radius: 18px; color: #fff; padding: 26px; }
.pkg-summary .inner .dur { display: flex; align-items: center; gap: 10px; font-weight: 700; font-size: 1.1rem; margin-bottom: 12px; }
.pkg-summary .inner .feature { display: flex; align-items: center; gap: 8px; margin: 6px 0; }
.pkg-summary .inner .feature .tick { width: 22px; height: 22px; border-radius: 50%; background: rgba(255,255,255,.2); display: inline-flex; align-items: center; justify-content: center; font-size: .7rem; }
.pkg-summary .inner p.details { margin-top: 14px; color: #ecdae1; }
.pkg-summary .inner .vat { display: block; margin-top: 12px; font-size: .8rem; color: #d9bfc9; }
.pkg-summary .inner .amount { font-size: 1.5rem; font-weight: 800; margin-top: 10px; }

.lets-talk { background: var(--maroon-900); border-radius: 22px; box-shadow: var(--shadow-lg); color: #fff; padding: 28px; margin-top: 26px; }
.lets-talk h3 { font-size: 1.4rem; margin-bottom: 8px; }
.lets-talk p { color: #e7d4dc; font-size: .95rem; margin-bottom: 18px; }
.lets-talk .white-box { background: #fff; border-radius: 12px; padding: 12px 16px; margin-bottom: 14px; }
.lets-talk .white-box label { display: block; color: var(--ink); font-weight: 700; font-size: .92rem; }
.lets-talk .white-box input, .lets-talk .white-box textarea { border: none; outline: none; width: 100%; padding: 6px 0 2px; color: var(--ink); background: transparent; }
.lets-talk .white-box textarea { min-height: 70px; resize: vertical; }
.upload-zone { border: 2px dashed rgba(255,255,255,.55); border-radius: 12px; padding: 22px; text-align: center; cursor: pointer; transition: background .2s; }
.upload-zone:hover { background: rgba(255,255,255,.06); }
.upload-zone .up-ico { display: inline-flex; background: #fff; color: var(--maroon-900); border-radius: 8px; padding: 8px 14px; margin-bottom: 10px; }
.upload-zone p { margin: 0; font-size: .85rem; }
.file-chip { display: flex; justify-content: space-between; align-items: center; gap: 8px; background: rgba(255,255,255,.1); border-radius: 8px; padding: 8px 12px; font-size: .85rem; margin-top: 8px; }
.file-chip button { background: none; border: none; color: #f3c9d6; font-weight: 800; }

.note-strip { border-left: 4px solid var(--maroon-800); background: #fff; box-shadow: var(--shadow-lg); border-radius: 10px; padding: 16px 20px; font-size: .95rem; color: #374151; margin: 10px 0 30px; }
.form-nav { display: flex; justify-content: center; gap: 18px; padding-bottom: 60px; }
.form-nav .btn { min-width: 150px; justify-content: center; }
.form-msg { border-radius: 12px; padding: 14px 18px; margin-bottom: 18px; font-size: .95rem; display: none; }
.form-msg.err { display: block; background: #fef2f2; border: 1px solid #fecaca; color: #b91c1c; white-space: pre-line; }
.form-msg.ok { display: block; background: #f0fdf4; border: 1px solid #bbf7d0; color: #15803d; white-space: pre-line; }

/* Submit button "sending" state */
.btn:disabled { opacity: .8; cursor: default; }
.btn.is-loading:hover { transform: none; }
.btn-spinner { width: 16px; height: 16px; border-radius: 50%; border: 2px solid rgba(255,255,255,.4); border-top-color: #fff; display: inline-block; animation: az-spin .7s linear infinite; }
@keyframes az-spin { to { transform: rotate(360deg); } }

/* Contact form: confirmation panel shown after a successful send */
.contact-sent { text-align: center; padding: 30px 10px 20px; opacity: 0; transform: translateY(10px); transition: opacity .5s ease, transform .5s ease; }
.contact-sent.is-in { opacity: 1; transform: none; }
.contact-sent-check { display: inline-block; width: 66px; height: 66px; }
.contact-sent-check svg { width: 66px; height: 66px; }
.contact-sent-check .c { fill: none; stroke: #15803d; stroke-width: 2.5; stroke-dasharray: 151; stroke-dashoffset: 151; animation: az-check-c .6s ease forwards .1s; }
.contact-sent-check .t { stroke: #15803d; stroke-width: 3.5; stroke-linecap: round; stroke-linejoin: round; stroke-dasharray: 40; stroke-dashoffset: 40; animation: az-check-t .35s ease forwards .55s; }
@keyframes az-check-c { to { stroke-dashoffset: 0; } }
@keyframes az-check-t { to { stroke-dashoffset: 0; } }
.contact-sent-title { font-size: 1.7rem; font-weight: 300; margin: 16px 0 10px; color: var(--ink); }
.contact-sent-text { color: #15803d; font-size: 1.02rem; margin: 0 0 12px; }
.contact-sent-note { color: #9aa2ad; font-size: .85rem; margin: 0; }
@media (prefers-reduced-motion: reduce) {
  .btn-spinner { animation-duration: 1.4s; }
  .contact-sent { transition: none; opacity: 1; transform: none; }
  .contact-sent-check .c, .contact-sent-check .t { animation: none; stroke-dashoffset: 0; }
}

/* ---------- AZ TV ---------- */
.aztv-hero { position: relative; min-height: 620px; display: flex; flex-direction: column; justify-content: center; color: #fff; overflow: hidden; background: #14060b; }
.aztv-hero .bg { position: absolute; inset: 0; background-size: cover; background-position: center; opacity: .6; }
.aztv-hero .shade { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(10,2,6,.85), rgba(10,2,6,.2)); }
.aztv-hero .container { position: relative; z-index: 2; padding: 70px 0 30px; }
.aztv-hero h1 { font-size: clamp(2rem, 5vw, 3.4rem); font-weight: 300; }
.aztv-hero .play-inline { display: inline-flex; width: 56px; height: 56px; margin-right: 14px; vertical-align: middle; }
.aztv-hero h2 { font-size: clamp(1.6rem, 3.6vw, 2.6rem); font-weight: 700; margin-top: 22px; }
.aztv-hero .sub { font-weight: 300; font-size: clamp(1.4rem, 3vw, 2.2rem); }
.aztv-hero p { max-width: 620px; color: #e9d9e0; margin: 16px 0 26px; }

.video-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 30px; }
.video-card { background: #fff; border-radius: 18px; overflow: hidden; box-shadow: var(--shadow-lg); transition: transform .3s; }
.video-card:hover { transform: translateY(-6px); }
.video-card .frame { position: relative; aspect-ratio: 9/13; background: #191114; }
.video-card .frame video, .video-card .frame img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.video-card .frame .play-btn { width: 58px; height: 58px; }
.video-card h3 { padding: 14px 16px 16px; font-size: 1.02rem; border-bottom: 3px solid transparent; }
.video-card:hover h3 { color: var(--maroon-800); }

/* ---------- Blogs page ---------- */
.blog-tools { display: flex; justify-content: flex-end; gap: 14px; padding: 30px 0 6px; flex-wrap: wrap; }
.blog-tools select, .blog-tools input { border: 1px solid #e2dade; border-radius: 999px; padding: 10px 18px; outline: none; font-size: .92rem; }
.blog-tools input { min-width: 220px; }
.load-more-row { text-align: center; padding: 34px 0 10px; }
.no-more { text-align: center; color: #9aa2ad; padding: 26px 0; font-size: .9rem; }

/* Blog detail */
.blog-detail-head { display: flex; justify-content: space-between; align-items: center; gap: 18px; padding: 34px 0 18px; flex-wrap: wrap; }
.blog-detail-head h1 { font-size: clamp(1.5rem, 3.4vw, 2.2rem); font-weight: 600; }
.read-pill-lite { border: 1px solid #e2dade; border-radius: 999px; padding: 7px 16px; font-size: .85rem; color: #55606e; white-space: nowrap; }
.blog-hero-img { border-radius: 22px; overflow: hidden; box-shadow: var(--shadow-lg); }
.blog-hero-img img { width: 100%; display: block; max-height: 520px; object-fit: cover; }
.posted-on { color: #8a939e; font-size: .9rem; margin: 16px 0 26px; }
.blog-content { max-width: 860px; margin: 0 auto; font-size: 1.03rem; color: #333a44; }
.blog-content h2, .blog-content h3, .blog-content h4 { margin: 28px 0 10px; color: var(--ink); }
.blog-content p { margin: 14px 0; }
.blog-content ul, .blog-content ol { margin: 14px 0 14px 26px; }
.blog-content figure { margin: 26px 0; }
.blog-content img { border-radius: 16px; width: 100%; }
.category-chip { display: inline-block; background: #f4e9ee; color: var(--maroon-800); border-radius: 999px; padding: 7px 18px; font-size: .85rem; font-weight: 700; margin-top: 26px; }

/* ---------- Contact ---------- */
.contact-top { padding: 50px 0 20px; }
.contact-top h1 { font-size: clamp(2.4rem, 6vw, 4rem); font-weight: 300; margin-bottom: 26px; }
.contact-top h2 { font-size: 1.5rem; margin-top: 14px; }
.contact-top .val { font-size: 1.25rem; }
.map-frame { position: relative; border-radius: 18px; overflow: hidden; box-shadow: var(--shadow-lg); margin: 26px 0; }
.map-frame iframe { display: block; width: 100%; height: 340px; border: 0; filter: grayscale(1) invert(92%); pointer-events: none; }
.map-overlay { position: absolute; inset: 0; z-index: 2; display: block; }
.contact-desc { font-size: 1.3rem; max-width: 720px; margin: 30px 0 10px; }
.get-in-touch { max-width: 560px; margin: 30px auto 70px; }
.get-in-touch h2 { text-align: center; font-size: 2rem; font-weight: 300; }
.get-in-touch .sub { text-align: center; color: #9aa2ad; font-size: .9rem; margin-bottom: 26px; }

/* ---------- Confirmation pages ---------- */
.confirm-wrap { max-width: 720px; margin: 60px auto 80px; text-align: center; }
.confirm-wrap .badge-circle { width: 86px; height: 86px; margin: 0 auto 22px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 2.2rem; color: #fff; }
.confirm-wrap .badge-circle.ok { background: #16a34a; }
.confirm-wrap .badge-circle.warn { background: #d97706; }
.confirm-wrap .badge-circle.err { background: var(--maroon-800); }
.confirm-wrap h1 { font-size: clamp(1.7rem, 4vw, 2.4rem); margin-bottom: 10px; }
.confirm-wrap .sub { color: #55606e; margin-bottom: 30px; }
.confirm-wrap .sub a { text-decoration: underline; }
.confirm-card { background: #faf6f8; border: 1px solid #eee3e8; border-radius: 18px; padding: 10px 26px; text-align: left; margin-bottom: 26px; }
.confirm-card .row { display: flex; justify-content: space-between; gap: 16px; padding: 12px 0; border-bottom: 1px solid #f0e7ea; font-size: .97rem; }
.confirm-card .row:last-child { border-bottom: none; }
.confirm-card .row .k { color: #6b7280; }
.confirm-card .row .v { font-weight: 700; text-align: right; }
.zoom-cta { background: var(--maroon-950); border-radius: 18px; color: #fff; padding: 26px; margin-bottom: 26px; }
.zoom-cta .small { color: #d8bfca; font-size: .85rem; word-break: break-all; margin-top: 10px; }

/* ---------- Footer ---------- */
.site-footer { background: var(--maroon-950); color: #fff; margin-top: 60px; overflow: hidden; }
.footer-grid { display: grid; grid-template-columns: 1.3fr 1fr .7fr; gap: 44px; padding: 62px 0 40px; }
.footer-grid h2 { font-size: clamp(1.5rem, 3vw, 2.1rem); font-weight: 600; }
.footer-grid .nl-sub { color: #d9c2cc; margin: 12px 0 24px; max-width: 320px; font-size: .95rem; }
.nl-form { display: flex; background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.25); border-radius: 12px; overflow: hidden; max-width: 360px; }
.nl-form input { flex: 1; background: transparent; border: none; outline: none; color: #fff; padding: 14px 16px; }
.nl-form input::placeholder { color: #cfb4bf; }
.nl-form button { background: rgba(255,255,255,.22); color: #fff; border: none; padding: 0 20px; font-weight: 600; }
.nl-form button:hover { background: rgba(255,255,255,.34); }
.nl-msg { margin-top: 10px; font-size: .88rem; color: #ffd9e6; }
.foot-col h4 { font-size: 1.02rem; margin-bottom: 8px; margin-top: 20px; }
.foot-col h4:first-child { margin-top: 0; }
.foot-col a, .foot-col p { color: #e3ccd6; font-size: .92rem; display: block; }
.foot-col a:hover { color: #fff; text-decoration: underline; }
.foot-links a { margin: 4px 0; }
.copyright { color: #cdaebc; font-size: .85rem; margin-top: 26px; }
@media (max-width: 860px) { .footer-grid { grid-template-columns: 1fr; gap: 30px; } }
.social-ticker { border-top: 1px solid rgba(255,255,255,.08); padding: 10px 0 22px; }
.social-ticker .marquee-track { animation-duration: 30s; }
.social-ticker .marquee-track > * { margin-right: 4rem; }
.social-ticker a { font-size: clamp(3rem, 9vw, 6rem); font-weight: 700; color: rgba(255,255,255,.16); transition: color .3s; display: inline-flex; align-items: center; gap: 14px; }
.social-ticker a:hover { color: rgba(255,255,255,.5); }
.social-ticker .tick-arrow { font-size: .55em; color: rgba(255,255,255,.35); }

/* WhatsApp float */
.wa-float { position: fixed; right: 22px; bottom: 22px; z-index: 60; width: 56px; height: 56px; border-radius: 50%; background: #25d366; display: flex; align-items: center; justify-content: center; box-shadow: 0 12px 30px rgba(0,0,0,.25); transition: transform .25s; }
.wa-float:hover { transform: scale(1.08); }
.wa-float svg { width: 30px; height: 30px; fill: #fff; }

/* Flash messages (top of page) */
.flash { padding: 14px 20px; border-radius: 12px; margin: 16px auto; width: min(1240px, 92vw); }
.flash.success { background: #f0fdf4; border: 1px solid #bbf7d0; color: #15803d; }
.flash.error { background: #fef2f2; border: 1px solid #fecaca; color: #b91c1c; }

/* 404 */
.nf-wrap { text-align: center; padding: 110px 0 130px; }
.nf-wrap h1 { font-size: 5rem; color: var(--maroon-950); }
.nf-wrap p { color: #55606e; margin: 10px 0 30px; }
