.elementor-12 .elementor-element.elementor-element-acc75b6{--display:flex;}.elementor-12 .elementor-element.elementor-element-acc75b6.e-con{--flex-grow:0;--flex-shrink:0;}.elementor-12 .elementor-element.elementor-element-18e5280{width:100%;max-width:100%;}:root{--page-title-display:none;}@media(min-width:768px){.elementor-12 .elementor-element.elementor-element-acc75b6{--width:115.27%;}}/* Start custom CSS for html, class: .elementor-element-18e5280 */@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&family=Playfair+Display:wght@600;700&family=Dancing+Script:wght@600&display=swap');

/* ── TOKENS ─────────────────────────────────────────────── */
:root {
  --navy:        #1a1a1a;
  --navy-dark:   #111111;
  --red:         #E0263C;
  --red-dark:    #b81e30;
  --gold:        #C9A84C;
  --gold-light:  #F5D78E;
  --white:       #ffffff;
  --off-white:   #f8f9fc;
  --text:        #111111;
  --muted:       #6b7280;
  --border:      #e5e7eb;
  --shadow-sm:   0 2px 8px rgba(0,0,0,.06);
  --shadow:      0 8px 30px rgba(0,0,0,.09);
  --shadow-lg:   0 20px 60px rgba(0,0,0,.14);
  --radius:      12px;
  --radius-lg:   20px;
  --transition:  0.3s ease;
  --header-h-desktop: 90px;
  --header-h-mobile:  62px;
}

/* ── RESET & BASE ─────────────────────────────────────────── */
*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior:smooth; margin:0; padding:0; }
body {
  font-family:'Poppins', sans-serif;
  color:var(--text);
  background:var(--white);
  line-height:1.7;
  overflow-x:hidden;
  width:100%;
  margin:0;
  padding:0;
}
img, svg, video { max-width:100%; }
a { text-decoration:none; color:inherit; transition:color var(--transition); }
ul { list-style:none; }
img { display:block; }
.container { max-width:1200px; margin:0 auto; padding:0 24px; }
section { padding:90px 0; }
.bg-light { background:var(--off-white); }
.overflow-hidden { overflow:hidden; }
.align-center { align-items:center; }
.text-center { text-align:center; }

/* ── WHITE GAP FIX ───────────────────────────────────────── */
#page, .site, .site-content, main, #main,
.elementor, .elementor-section-wrap, .e-container,
body > header, .seerah-header {
  margin-top:0 !important;
  padding-top:0 !important;
}
.seerah-header { top:0 !important; }

/* ── HIDE THEME HEADER ───────────────────────────────────── */
.elementor-location-header,
#masthead,
header.site-header,
.site-header:not(.seerah-header),
.site-header-wrap {
  display:none !important;
}

/* ── FULL-BLEED FIX ──────────────────────────────────────── */
.seerah-wrap {
  width:100vw;
  max-width:100vw;
  position:relative;
  left:50%;
  right:50%;
  margin-left:-50vw;
  margin-right:-50vw;
}

/* ── GRIDS ───────────────────────────────────────────────── */
.grid-2 { display:grid; grid-template-columns:1fr 1fr; gap:48px; }
.grid-3 { display:grid; grid-template-columns:repeat(auto-fit, minmax(280px, 1fr)); gap:28px; }
.grid-4 { display:grid; grid-template-columns:repeat(auto-fit, minmax(220px, 1fr)); gap:24px; }

/* ── TYPOGRAPHY ──────────────────────────────────────────── */
h1, h2, h3 { font-family:'Playfair Display', serif; line-height:1.25; }
h4, h5     { font-family:'Poppins', sans-serif; }

.section-title {
  font-size:clamp(1.9rem, 4vw, 2.8rem);
  color:var(--navy);
  margin-bottom:14px;
}
.section-subtitle {
  color:var(--muted);
  font-size:1rem;
  max-width:560px;
  margin:0 auto 52px;
}
.script-title {
  font-family:'Dancing Script', cursive;
  font-size:clamp(1.6rem, 3vw, 2.2rem);
  color:var(--gold);
  display:block;
  margin-bottom:6px;
}

/* ── BUTTONS ─────────────────────────────────────────────── */
.btn {
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:13px 30px;
  border-radius:50px;
  font-weight:600;
  font-size:.88rem;
  letter-spacing:.04em;
  cursor:pointer;
  border:2px solid transparent;
  transition:all var(--transition);
  position:relative;
  overflow:hidden;
}
.btn::before {
  content:'';
  position:absolute;
  top:0; left:-100%;
  width:60%; height:100%;
  background:linear-gradient(120deg,transparent,rgba(255,255,255,.22),transparent);
  transition:left .5s ease;
}
.btn:hover::before { left:150%; }

.btn-gold       { background:var(--gold); color:var(--navy); box-shadow:0 4px 18px rgba(201,168,76,.35); }
.btn-gold:hover { background:#b89235; box-shadow:0 6px 24px rgba(201,168,76,.5); transform:translateY(-2px); }
.btn-red        { background:var(--red); color:var(--white); box-shadow:0 4px 18px rgba(224,38,60,.3); }
.btn-red:hover  { background:var(--red-dark); transform:translateY(-2px); box-shadow:0 6px 24px rgba(224,38,60,.45); }
.btn-navy       { background:var(--navy); color:var(--white); }
.btn-navy:hover { background:var(--navy-dark); transform:translateY(-2px); }
.btn-outline-white { border-color:rgba(255,255,255,.7); color:var(--white); background:transparent; }
.btn-outline-white:hover { background:var(--white); color:var(--navy); }
.btn-sm { padding:9px 20px; font-size:.78rem; }
.btn-lg { padding:16px 38px; font-size:.95rem; }

/* ── HEADER ──────────────────────────────────────────────── */
.seerah-header {
  position:fixed;
  top:0; left:0;
  width:100%;
  z-index:900;
  background:var(--white);
  border-bottom:1px solid var(--border);
  box-shadow:0 4px 24px rgba(0,0,0,.08);
  transition:background var(--transition), border-color var(--transition), box-shadow var(--transition);
}
body.home .seerah-header:not(.scrolled) {
  background:transparent;
  border-bottom-color:transparent;
  box-shadow:none;
}
.logo-img { mix-blend-mode:multiply; }
body.home .seerah-header:not(.scrolled) .nav-links a { color:var(--white); }
body.home .seerah-header:not(.scrolled) .nav-links a:hover { color:var(--gold-light); background:rgba(255,255,255,.12); }
body.home .seerah-header:not(.scrolled) .nav-links a::after { background:var(--gold-light); }
body.home .seerah-header:not(.scrolled) .hamburger span { background:var(--white); }

.header-inner {
  max-width:1200px;
  margin:0 auto;
  padding:0 24px;
  height:var(--header-h-desktop);
  display:grid;
  grid-template-columns:1fr auto 1fr;
  align-items:center;
}
.logo {
  grid-column:2;
  justify-self:center;
  width:100px;
  height:70px;
  display:flex;
  align-items:center;
  justify-content:center;
}
.logo-img {
  width:100%;
  height:auto;
  display:block;
  object-fit:contain;
  transition:transform var(--transition);
}
.logo:hover .logo-img { transform:scale(1.04); }

.nav-links { display:flex; gap:4px; align-items:center; }
.nav-left  { grid-column:1; justify-self:start; }
.nav-right { grid-column:3; justify-self:end; }
.nav-links a {
  font-size:.88rem;
  font-weight:500;
  color:var(--text);
  padding:8px 14px;
  border-radius:8px;
  position:relative;
  transition:color var(--transition), background var(--transition);
}
.nav-links a::after {
  content:'';
  position:absolute;
  bottom:4px; left:14px;
  width:0; height:2px;
  background:var(--red);
  border-radius:2px;
  transition:width var(--transition);
}
.nav-links a:hover { color:var(--red); background:rgba(224,38,60,.05); }
.nav-links a:hover::after { width:calc(100% - 28px); }
.header-cta { grid-column:1; justify-self:start; display:flex; align-items:center; gap:12px; flex-shrink:0; }

.hamburger {
  display:none;
  flex-direction:column;
  gap:5px;
  background:none;
  border:none;
  cursor:pointer;
  padding:6px;
}
.hamburger span {
  display:block;
  width:24px; height:2px;
  background:var(--navy);
  border-radius:2px;
  transition:all var(--transition);
}
.hamburger.open span:nth-child(1) { transform:translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity:0; }
.hamburger.open span:nth-child(3) { transform:translateY(-7px) rotate(-45deg); }

.mobile-nav {
  position:fixed;
  inset:0 auto 0 0;
  width:min(300px, 85vw);
  background:var(--white);
  z-index:1000;
  padding:80px 28px 40px;
  display:flex;
  flex-direction:column;
  gap:4px;
  box-shadow:8px 0 40px rgba(0,0,0,.15);
  transform:translateX(-100%);
  transition:transform .38s cubic-bezier(.4,0,.2,1);
}
.mobile-nav.open { transform:translateX(0); }
.mobile-nav a {
  font-size:1rem;
  font-weight:500;
  color:var(--text);
  padding:12px 16px;
  border-radius:10px;
  transition:background var(--transition), color var(--transition);
}
.mobile-nav a:hover { background:var(--off-white); color:var(--red); }
.close-btn {
  position:absolute;
  top:20px; right:20px;
  background:var(--off-white);
  border:none;
  width:38px; height:38px;
  border-radius:50%;
  cursor:pointer;
  font-size:1rem;
  color:var(--text);
  display:flex; align-items:center; justify-content:center;
  transition:background var(--transition);
}
.close-btn:hover { background:var(--border); }
.nav-overlay {
  position:fixed; inset:0;
  background:rgba(0,0,0,.45);
  z-index:999;
  opacity:0; pointer-events:none;
  transition:opacity var(--transition);
}
.nav-overlay.open { opacity:1; pointer-events:all; }

/* ── HERO ────────────────────────────────────────────────── */
.hero {
  position:relative;
  min-height:720px;
  display:flex;
  align-items:center;
  overflow:hidden;
  padding-top:120px;
  background:#fff;
}
.hero-bg {
  position:absolute;
  inset:0;
  background:url("YOUR-HERO-IMAGE.jpg") center center/cover no-repeat;
  animation:heroZoom 15s ease forwards;
}
@keyframes heroZoom {
  from { transform:scale(1.08); }
  to   { transform:scale(1); }
}
.hero-overlay {
  position:absolute;
  inset:0;
  background:linear-gradient(
    90deg,
    rgba(255,248,240,.88) 0%,
    rgba(255,248,240,.55) 28%,
    rgba(255,255,255,.05) 65%,
    rgba(0,0,0,.10) 100%
  );
}
.hero .container { position:relative; z-index:10; }
.hero-content { max-width:620px; }
.hero-tag {
  display:inline-block;
  color:#d8245d;
  font-weight:700;
  font-size:18px;
  margin-bottom:20px;
}
.hero-content h1 {
  font-size:72px;
  line-height:1.05;
  font-weight:800;
  color:#111;
  margin-bottom:28px;
}
.hero-content h1 span { display:block; color:#d8245d; }
.hero-content p {
  max-width:520px;
  font-size:22px;
  line-height:1.8;
  color:#444;
  margin-bottom:45px;
}
.hero-btns { display:flex; gap:18px; }
.btn-primary-red {
  background:linear-gradient(135deg,#d8245d,#eb4238);
  color:#fff;
  padding:16px 34px;
  border-radius:60px;
  font-weight:600;
  display:inline-flex;
  align-items:center;
  gap:12px;
  text-decoration:none;
  transition:.35s;
  box-shadow:0 18px 40px rgba(216,36,93,.28);
}
.btn-primary-red:hover { transform:translateY(-4px); }
.hero-wave { position:absolute; bottom:-1px; left:0; width:100%; line-height:0; }
.hero-wave svg { display:block; width:100%; height:110px; }

@media(max-width:992px) {
  .hero { min-height:640px; padding-top:100px; }
  .hero-content { max-width:100%; }
  .hero-content h1 { font-size:52px; }
  .hero-content p { font-size:18px; }
  .hero-bg { background-position:68% center; }
}
@media(max-width:768px) {
  .hero { min-height:580px; }
  .hero-content h1 { font-size:42px; }
  .hero-content p { font-size:16px; line-height:1.7; }
  .hero-wave svg { height:70px; }
  .hero-btns { flex-direction:column; align-items:flex-start; }
}

/* ── TRUST BAR ───────────────────────────────────────────── */
.trust-bar {
  background:var(--white);
  border-bottom:1px solid var(--border);
  padding:28px 0;
  box-shadow:var(--shadow-sm);
  position:relative;
  z-index:2;
}
.trust-grid { display:grid; grid-template-columns:repeat(4, 1fr); gap:0; }
.trust-item {
  display:flex;
  align-items:center;
  gap:14px;
  padding:16px 28px;
  border-right:1px solid var(--border);
  min-width:0;
}
.trust-item:last-child { border-right:none; }
.trust-icon {
  width:46px; height:46px;
  background:linear-gradient(135deg, rgba(224,38,60,.1), rgba(224,38,60,.06));
  border-radius:12px;
  display:flex; align-items:center; justify-content:center;
  color:var(--red);
  font-size:1.2rem;
  flex-shrink:0;
  transition:transform var(--transition), background var(--transition);
}
.trust-item:hover .trust-icon { background:var(--red); color:var(--white); transform:scale(1.08); }
.trust-item h4 { font-size:.9rem; font-weight:600; color:var(--navy); }
.trust-item p  { font-size:.76rem; color:var(--muted); }
.trust-icon i { display:inline-block; animation:floatIcon 3s ease-in-out infinite; }
.trust-item:nth-child(2) .trust-icon i { animation-delay:.4s; }
.trust-item:nth-child(3) .trust-icon i { animation-delay:.8s; }
.trust-item:nth-child(4) .trust-icon i { animation-delay:1.2s; }
@keyframes floatIcon {
  0%,100% { transform:translateY(0); }
  50%      { transform:translateY(-5px); }
}

/* ── WELCOME ─────────────────────────────────────────────── */
.welcome-section { padding:110px 0; background:#fff; }
.welcome-wrapper {
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:70px;
}
.welcome-content { width:42%; }
.welcome-content h2 { font-size:48px; font-weight:700; line-height:1.2; color:#111; margin-bottom:28px; }
.welcome-content p { font-size:18px; line-height:1.9; color:#555; margin-bottom:16px; max-width:520px; }
.welcome-btn {
  display:inline-flex;
  align-items:center;
  gap:10px;
  margin-top:18px;
  padding:15px 34px;
  border-radius:60px;
  text-decoration:none;
  color:#fff;
  font-weight:600;
  background:linear-gradient(135deg,#d8245d,#eb4238);
  box-shadow:0 12px 28px rgba(216,36,93,.25);
  transition:.35s;
}
.welcome-btn:hover { transform:translateY(-4px); }
.welcome-gallery {
  width:58%;
  display:flex;
  justify-content:flex-end;
  align-items:flex-end;
  gap:18px;
}
.gallery-item {
  overflow:hidden;
  position:relative;
  background:#eee;
  box-shadow:0 18px 40px rgba(0,0,0,.08);
}
.gallery-item img { width:100%; height:100%; object-fit:cover; transition:.5s; }
.gallery-item:hover img { transform:scale(1.08); }
.gallery-item.small { width:90px; height:210px; border-radius:110px 0 0 110px; }
.gallery-item.large { width:150px; height:310px; border-radius:150px 0 0 150px; }
.gallery-item:hover { transform:translateY(-8px); transition:.35s; }

@media(max-width:992px) {
  .welcome-wrapper { flex-direction:column; text-align:center; }
  .welcome-content { width:100%; }
  .welcome-gallery { width:100%; justify-content:center; margin-top:50px; }
}
@media(max-width:768px) {
  .welcome-section { padding:70px 0; }
  .welcome-content h2 { font-size:34px; }
  .welcome-content p { font-size:16px; }
  .gallery-item.large { width:95px; height:200px; }
  .gallery-item.small { width:65px; height:150px; }
}

/* ── POPULAR SERVICES ────────────────────────────────────── */
.popular-services { padding:90px 0; background:#f7f8fb; }
.pkg-featured {
  display:grid;
  grid-template-columns:1.1fr .9fr;
  gap:28px;
  margin-top:50px;
  align-items:start;
}
.pkg-stack { display:flex; flex-direction:column; gap:22px; }
.pkg-card-large, .pkg-card-sm {
  background:#fff;
  border-radius:24px;
  overflow:hidden;
  border:1px solid #ececec;
  box-shadow:0 16px 45px rgba(0,0,0,.08);
  transition:.35s;
}
.pkg-card-large:hover, .pkg-card-sm:hover { transform:translateY(-8px); }
.pkg-card-large { display:flex; flex-direction:column; }
.pkg-card-large img { width:100%; height:300px; object-fit:cover; }
.pkg-card-sm { display:grid; grid-template-columns:165px 1fr; min-height:170px; }
.pkg-card-sm img { width:100%; height:100%; object-fit:cover; }
.card-body { display:flex; flex-direction:column; padding:22px 24px; height:100%; }
.card-tag { font-size:11px; font-weight:700; letter-spacing:.14em; color:#E3263C; margin-bottom:10px; text-transform:uppercase; }
.card-body h3 { margin:0 0 10px; font-size:20px; line-height:1.25; font-weight:700; color:#1B1B1B; }
.pkg-card-large h3 { font-size:36px; }
.card-desc { color:#666; line-height:1.75; margin-bottom:18px; flex:1; }
.card-cta { display:flex; justify-content:flex-end; margin-top:auto; }
.card-cta a, .services-main-btn {
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:12px 24px;
  background:#E3263C;
  color:#fff;
  border-radius:999px;
  font-weight:600;
  text-decoration:none;
  transition:.3s;
}
.card-cta a:hover, .services-main-btn:hover { background:#1B1B1B; }
.services-btn-wrap { margin-top:45px; }

@media(max-width:991px) {
  .pkg-featured { grid-template-columns:1fr; }
  .pkg-card-sm { grid-template-columns:150px 1fr; }
}
@media(max-width:767px) {
  .pkg-featured { display:block; }
  .pkg-card-large { margin-bottom:22px; }
  .pkg-card-sm { grid-template-columns:120px 1fr; min-height:150px; margin-bottom:18px; }
  .pkg-card-large img { height:240px; }
  .pkg-card-large h3 { font-size:28px; }
  .card-body h3 { font-size:18px; }
  .card-body { padding:18px; }
}

/* ── POPULAR SERVICES ────────────────────────────────────── */

.popular-services{
    padding:90px 0;
    background:#f7f8fb;
}

.pkg-featured{
    display:grid;
    grid-template-columns:1.1fr .9fr;
    gap:28px;
    margin-top:50px;
    align-items:start;
}

.pkg-stack{
    display:flex;
    flex-direction:column;
    gap:18px;
}

/* ===================== CARD ===================== */

.pkg-card-large,
.pkg-card-sm{
    background:#fff;
    border-radius:24px;
    overflow:hidden;
    border:1px solid #ececec;
    box-shadow:0 16px 45px rgba(0,0,0,.08);
    transition:.35s;
}

.pkg-card-large:hover,
.pkg-card-sm:hover{
    transform:translateY(-8px);
}

/* ===================== LARGE CARD ===================== */

.pkg-card-large{
    display:flex;
    flex-direction:column;
}

.pkg-card-large img{
    width:100%;
    height:300px;
    object-fit:cover;
}

/* ===================== SMALL CARDS ===================== */

.pkg-card-sm{
    display:grid;
    grid-template-columns:145px 1fr;
    min-height:155px;
}

.pkg-card-sm img{
    width:100%;
    height:100%;
    object-fit:cover;
}

/* ===================== CONTENT ===================== */

.card-body{
    display:flex;
    flex-direction:column;
    padding:18px 20px;
    height:100%;
}

.card-tag{
    font-size:10px;
    font-weight:700;
    letter-spacing:.14em;
    color:#E3263C;
    margin-bottom:8px;
    text-transform:uppercase;
}

.card-body h3{
    margin:0 0 8px;
    font-size:18px;
    line-height:1.25;
    font-weight:700;
    color:#1B1B1B;
}

.pkg-card-large h3{
    font-size:36px;
}

.card-desc{
    color:#666;
    font-size:15px;
    line-height:1.6;
    margin-bottom:14px;
    flex:1;
}

.card-cta{
    display:flex;
    justify-content:flex-end;
    margin-top:auto;
}

.card-cta a,
.services-main-btn{
    display:inline-flex;
    align-items:center;
    gap:8px;
    padding:10px 22px;
    background:#E3263C;
    color:#fff;
    border-radius:999px;
    font-size:15px;
    font-weight:600;
    text-decoration:none;
    transition:.3s;
}

.card-cta a:hover,
.services-main-btn:hover{
    background:#1B1B1B;
}

.services-btn-wrap{
    margin-top:45px;
}

/* ===================== TABLET ===================== */

@media(max-width:991px){

    .pkg-featured{
        grid-template-columns:1fr;
    }

    .pkg-card-sm{
        grid-template-columns:140px 1fr;
    }

}

/* ===================== MOBILE ===================== */

@media(max-width:767px){

    .pkg-featured{
        display:block;
    }

    .pkg-card-large{
        margin-bottom:22px;
    }

    .pkg-card-sm{
        grid-template-columns:115px 1fr;
        min-height:140px;
        margin-bottom:18px;
    }

    .pkg-card-large img{
        height:240px;
    }

    .pkg-card-large h3{
        font-size:28px;
    }

    .card-body{
        padding:16px;
    }

    .card-body h3{
        font-size:17px;
    }

    .card-desc{
        font-size:14px;
        line-height:1.5;
    }

    .card-cta a{
        padding:9px 18px;
        font-size:14px;
    }

}

/* ── ABOUT STRIP ─────────────────────────────────────────── */
.about-images { position:relative; height:500px; }
.img-back {
  position:absolute;
  top:0; right:0;
  width:78%; height:350px;
  object-fit:cover;
  border-radius:22px;
  box-shadow:var(--shadow-lg);
  transform:rotate(3deg);
  transition:.45s ease;
  overflow:hidden;
}
.img-front {
  position:absolute;
  left:0; bottom:15px;
  width:70%; height:300px;
  object-fit:cover;
  border-radius:22px;
  border:8px solid #fff;
  box-shadow:var(--shadow-lg);
  z-index:2;
  transform:rotate(-3deg);
  transition:.45s ease;
}
.about-images:hover .img-back  { transform:rotate(1deg) scale(1.03); }
.about-images:hover .img-front { transform:rotate(-1deg) scale(1.05); }

.experience-badge {
  position:absolute;
  top:14%; left:-10px;
  width:135px; height:135px;
  border-radius:50%;
  background:linear-gradient(135deg,#2ECC71,#27AE60);
  color:#fff;
  display:flex; flex-direction:column; align-items:center; justify-content:center;
  text-align:center;
  z-index:5;
  box-shadow:0 12px 35px rgba(46,204,113,.35);
  animation:badgePulse 2.8s infinite;
  font-size:.82rem;
  font-weight:600;
  letter-spacing:.02em;
}
.experience-badge span { font-size:2rem; font-weight:700; line-height:1; margin-bottom:6px; }
@keyframes badgePulse {
  0%,100% { box-shadow:0 0 0 0 rgba(46,204,113,.35), 0 12px 35px rgba(46,204,113,.35); }
  50%      { box-shadow:0 0 0 18px rgba(46,204,113,0), 0 12px 35px rgba(46,204,113,.35); }
}

.feature-list { margin-top:24px; }
.feature-list li {
  display:flex; align-items:flex-start; gap:12px;
  margin-bottom:16px;
  color:var(--muted);
  font-size:16px; line-height:1.7;
}
.feature-list i { color:var(--red); margin-top:5px; font-size:16px; flex-shrink:0; }
.btn.btn-navy { margin-top:32px; display:inline-flex; align-items:center; gap:10px; }
.btn.btn-navy i { transition:.3s; }
.btn.btn-navy:hover i { transform:translateX(6px); }

@media(max-width:991px) {
  .about-images { height:420px; }
  .img-back { height:290px; }
  .img-front { height:250px; }
  .experience-badge { width:115px; height:115px; font-size:.75rem; }
  .experience-badge span { font-size:1.7rem; }
}
@media(max-width:768px) {
  .about-images { height:360px; margin-bottom:50px; }
  .img-back { width:78%; height:230px; }
  .img-front { width:70%; height:190px; bottom:0; }
  .experience-badge { width:95px; height:95px; left:-5px; top:10%; }
  .experience-badge span { font-size:1.4rem; }
  .script-title { font-size:1.8rem; }
  .feature-list li { font-size:14px; line-height:1.6; margin-bottom:12px; }
}
@media(max-width:480px) {
  .about-images { height:300px; }
  .img-back { height:190px; }
  .img-front { height:160px; }
  .experience-badge { width:80px; height:80px; font-size:11px; }
  .experience-badge span { font-size:1.2rem; }
  .script-title { font-size:1.6rem; }
}

/* ── COMMUNITY BAR ───────────────────────────────────────── */
/* ── COMMUNITY / TRUST BAR ───────────────────────────── */

.community-section{
    padding:40px 0 80px;
    background:#fff;
}

.community-bar{
    position:relative;
    overflow:hidden;
    border-radius:22px;
    padding:42px 48px;
    background:
        radial-gradient(circle at 90% 50%,rgba(255,255,255,.15),transparent 35%),
        linear-gradient(90deg,#B8162C 0%,#C91F35 35%,#D72D44 65%,#D84B62 100%);
    box-shadow:0 22px 55px rgba(186,18,44,.18);
}

.community-pattern{
    position:absolute;
    inset:0;
    background:url("images/world-map-pattern.png") center/cover;
    opacity:.08;
    pointer-events:none;
}

.community-content{
    position:relative;
    z-index:2;
}

.community-title{
    display:block;
    text-align:center;
    color:#fff;
    font-size:22px;
    font-weight:600;
    margin-bottom:34px;
}

.community-stats{
    display:flex;
    justify-content:space-between;
    align-items:center;
}

.community-item{
    display:flex;
    align-items:center;
    gap:18px;
    flex:1;
}

.community-divider{
    width:1px;
    height:60px;
    background:rgba(255,255,255,.22);
    margin:0 18px;
}

.community-icon{
    width:56px;
    height:56px;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#fff;
    font-size:30px;
    flex-shrink:0;
}

.community-info h3{
    margin:0 0 6px;
    color:#fff;
    font-size:42px;
    line-height:1;
    font-weight:700;
}

.community-info span{
    color:rgba(255,255,255,.92);
    font-size:17px;
    font-weight:500;
    line-height:1.4;
}

/* Tablet */

@media(max-width:1100px){

    .community-bar{
        padding:36px 30px;
    }

    .community-stats{
        flex-wrap:wrap;
        justify-content:center;
        gap:30px;
    }

    .community-item{
        flex:0 0 calc(50% - 20px);
    }

    .community-divider{
        display:none;
    }

}

/* Mobile */

@media(max-width:768px){

    .community-section{
        padding:30px 0 60px;
    }

    .community-bar{
        padding:30px 24px;
    }

    .community-title{
        margin-bottom:28px;
        font-size:20px;
    }

    .community-stats{
        flex-direction:column;
        align-items:flex-start;
        gap:24px;
    }

    .community-item{
        width:100%;
    }

    .community-info h3{
        font-size:34px;
    }

    .community-info span{
        font-size:15px;
    }

}

/* ── EXPERIENCE SECTION ──────────────────────────────────── */
:root {
  --exp-red:#E3263C;
  --exp-dark:#1B1B1B;
  --exp-text:#666;
  --exp-border:#E9E9E9;
  --exp-shadow:0 20px 45px rgba(0,0,0,.12);
}
.experience-section { background:#fff; padding:90px 0; overflow:hidden; }
.experience-section .container { max-width:1200px; margin:auto; padding:0 20px; }
.experience-grid {
  display:grid;
  grid-template-columns:350px 520px;
  justify-content:space-between;
  align-items:center;
  column-gap:55px;
  position:relative;
}
.gallery { display:flex; gap:20px; align-items:center; }
.mask { width:165px; height:280px; overflow:hidden; box-shadow:var(--exp-shadow); background:#f2f2f2; transition:.35s ease; }
.mask:hover { transform:translateY(-8px); }
.mask img { width:100%; height:100%; object-fit:cover; display:block; }
.left-mask  { clip-path:path("M165 0 L165 280 L82 280 A82 140 0 0 1 82 0 Z"); }
.right-mask { clip-path:path("M0 0 L82 0 A82 140 0 0 1 82 280 L0 280 Z"); }
.content h2 { font-size:48px; line-height:1.15; color:var(--exp-dark); margin-bottom:18px; }
.content h2 span { display:block; color:var(--exp-red); }
.content p { color:var(--exp-text); line-height:1.9; margin-bottom:24px; }
.content ul { list-style:none; padding:0; margin:0 0 28px; }
.content li { display:flex; align-items:center; gap:10px; margin-bottom:12px; font-weight:500; }
.content li i { color:var(--exp-red); }
.waves { position:absolute; right:0; bottom:10px; }
.features { margin-top:70px; display:grid; grid-template-columns:repeat(3,1fr); }
.features article { display:flex; gap:18px; padding:0 28px; }
.features article:not(:last-child) { border-right:1px solid var(--exp-border); }
.icon { width:58px; height:58px; border:2px solid var(--exp-red); border-radius:50%; display:flex; align-items:center; justify-content:center; color:var(--exp-red); flex-shrink:0; }
.features h4 { margin:0 0 10px; font-size:22px; color:var(--exp-dark); }
.features p { margin:0; color:var(--exp-text); line-height:1.8; }

@media(max-width:991px) {
  .experience-grid { grid-template-columns:1fr; row-gap:50px; justify-items:center; }
  .content { text-align:center; max-width:700px; }
  .content ul { display:inline-block; text-align:left; }
  .gallery { justify-content:center; }
  .waves { display:none; }
  .features { grid-template-columns:1fr; gap:35px; }
  .features article { border-right:none !important; padding:0; }
}
@media(max-width:576px) {
  .gallery { gap:16px; }
  .mask { width:140px; height:235px; }
  .content h2 { font-size:34px; }
  .features article { flex-direction:column; text-align:center; align-items:center; }
}

/* ── TESTIMONIALS ────────────────────────────────────────── */
.swipe-hint { display:none; }
.testimonial-card {
  background:var(--white);
  border-radius:var(--radius-lg);
  padding:32px;
  box-shadow:var(--shadow);
  border:1px solid var(--border);
  position:relative;
  transition:transform var(--transition), box-shadow var(--transition);
}
.testimonial-card:hover { transform:translateY(-6px); box-shadow:var(--shadow-lg); }
.quote-icon { font-family:'Playfair Display', serif; font-size:5rem; line-height:1; color:rgba(224,38,60,.12); position:absolute; top:8px; left:20px; }
.testimonial-stars { margin-bottom:14px; }
.testimonial-stars i { color:#FBBC04; font-size:.9rem; }
.testimonial-card p { font-style:italic; color:var(--muted); font-size:.92rem; margin-bottom:22px; position:relative; z-index:1; }
.client-info { display:flex; align-items:center; gap:12px; }
.client-avatar {
  width:42px; height:42px;
  border-radius:50%;
  background:linear-gradient(135deg, var(--red-dark), var(--red));
  color:var(--white);
  display:flex; align-items:center; justify-content:center;
  font-weight:700; font-size:1rem;
}
.client-info h5 { font-size:.92rem; font-weight:600; color:var(--navy); }
.client-info small { color:var(--muted); font-size:.75rem; }

/* ── FOOTER ──────────────────────────────────────────────── */
footer { background:linear-gradient(160deg, #2a0a0e 0%, #1a0608 100%); color:var(--white); padding:56px 0 0; }
.footer-grid { display:grid; grid-template-columns:1.6fr 1fr 1.2fr; gap:32px; padding-bottom:36px; border-bottom:1px solid rgba(255,255,255,.08); }
.footer-brand .logo { display:inline-flex; width:auto; height:auto; background:rgba(255,255,255,.95); padding:6px 12px; border-radius:10px; }
.footer-brand .logo .logo-img { width:100px; height:auto; }
.footer-brand p { color:rgba(255,255,255,.55); font-size:.84rem; margin-bottom:16px; line-height:1.6; max-width:360px; }
.footer-col h4 { font-family:'Poppins', sans-serif; font-size:.78rem; font-weight:700; letter-spacing:.09em; text-transform:uppercase; color:var(--gold-light); margin-bottom:16px; }
.footer-col ul li { margin-bottom:8px; }
.footer-col ul li a { color:rgba(255,255,255,.55); font-size:.84rem; display:inline-flex; align-items:center; gap:8px; transition:color var(--transition), padding-left var(--transition); }
.footer-col ul li a i { font-size:.6rem; }
.footer-col ul li a:hover { color:var(--gold-light); padding-left:6px; }
.footer-contact li { display:flex; align-items:flex-start; gap:10px; color:rgba(255,255,255,.55); font-size:.84rem; margin-bottom:10px; }
.footer-contact li i { color:var(--gold-light); margin-top:3px; flex-shrink:0; }
.social-icons { display:flex; gap:8px; flex-wrap:wrap; }
.social-icons a {
  width:34px; height:34px;
  border-radius:50%;
  background:rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.12);
  display:flex; align-items:center; justify-content:center;
  color:rgba(255,255,255,.7);
  font-size:.82rem;
  transition:all var(--transition);
}
.social-icons a:hover { background:var(--red); border-color:var(--red); color:var(--white); transform:scale(1.15) rotate(8deg); }
.footer-bottom { text-align:center; padding:16px 0; color:rgba(255,255,255,.3); font-size:.76rem; }

/* ── FLOATING WHATSAPP ───────────────────────────────────── */
.floating-whatsapp {
  position:fixed; bottom:36px; right:36px;
  width:58px; height:58px;
  background:#25D366; color:var(--white);
  border-radius:50%;
  display:flex; align-items:center; justify-content:center;
  font-size:1.8rem;
  z-index:800;
  box-shadow:0 4px 20px rgba(37,211,102,.45);
  transition:all var(--transition);
  animation:waPulse 2.2s ease-in-out infinite;
}
.floating-whatsapp:hover { background:#128c7e; transform:scale(1.12); animation:none; }
@keyframes waPulse {
  0%,100% { box-shadow:0 0 0 0 rgba(37,211,102,.6), 0 4px 20px rgba(37,211,102,.35); }
  70%      { box-shadow:0 0 0 16px rgba(37,211,102,0), 0 4px 20px rgba(37,211,102,.35); }
}

/* ── BACK TO TOP ─────────────────────────────────────────── */
#back-to-top {
  position:fixed; bottom:104px; right:36px;
  width:42px; height:42px;
  background:var(--navy); color:var(--white);
  border:none; border-radius:50%;
  font-size:1rem; cursor:pointer;
  z-index:800;
  display:flex; align-items:center; justify-content:center;
  opacity:0; transform:translateY(16px);
  transition:opacity var(--transition), transform var(--transition), background var(--transition);
  box-shadow:var(--shadow);
}
#back-to-top.visible { opacity:1; transform:translateY(0); }
#back-to-top:hover { background:var(--red); transform:translateY(-2px); }

/* ── SCROLL REVEAL ───────────────────────────────────────── */
.reveal       { opacity:0; transform:translateY(28px); transition:opacity .65s ease, transform .65s ease; }
.reveal.revealed { opacity:1; transform:translateY(0); }
.reveal-left  { opacity:0; transform:translateX(-44px); transition:opacity .65s ease, transform .65s ease; }
.reveal-left.revealed { opacity:1; transform:translateX(0); }
.reveal-right { opacity:0; transform:translateX(44px); transition:opacity .65s ease, transform .65s ease; }
.reveal-right.revealed { opacity:1; transform:translateX(0); }
.delay-1 { transition-delay:.1s !important; }
.delay-2 { transition-delay:.2s !important; }
.delay-3 { transition-delay:.3s !important; }

/* ── REDUCED MOTION ──────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration:.01ms !important;
    animation-iteration-count:1 !important;
    transition-duration:.01ms !important;
  }
}

/* ══════════════════════════════════════════════════════════
   TABLET (≤1024px)
   ══════════════════════════════════════════════════════════ */
@media (max-width:1024px) {
  .footer-grid { grid-template-columns:1fr 1fr; gap:28px; }
  .footer-brand { grid-column:1 / -1; }
  .pkg-featured { grid-template-columns:1fr; }
  .pkg-stack { flex-direction:row; flex-wrap:wrap; }
  .pkg-card-sm { flex:1; min-width:200px; flex-direction:column; }
  .pkg-card-sm img { width:100%; height:140px; }
  .trust-grid { grid-template-columns:repeat(2, 1fr); row-gap:16px; }
  .trust-item { border-right:1px solid var(--border); border-bottom:none; }
  .trust-item:nth-child(2n) { border-right:none; }
  .trust-item:nth-child(1), .trust-item:nth-child(2) { border-bottom:1px solid var(--border); padding-bottom:20px; }
  .trust-item:nth-child(3), .trust-item:nth-child(4) { padding-top:20px; }
}

/* ══════════════════════════════════════════════════════════
   MOBILE (≤768px)
   ══════════════════════════════════════════════════════════ */
@media (max-width:768px) {
  section { padding:56px 0; }
  .header-inner { grid-template-columns:44px 1fr 44px; height:var(--header-h-mobile); }
  .header-inner nav { display:none; }
  .logo { width:84px; height:56px; }
  .nav-links { display:none; }
  .hamburger { display:flex; }
  .hero { margin-top:0; }
  .grid-2 { grid-template-columns:1fr; gap:32px; }
  .grid-3 { grid-template-columns:1fr; }
  .grid-4 { grid-template-columns:repeat(2, 1fr); gap:16px; }
  .hero-content { text-align:center; }
  .hero-btns { justify-content:center; }

  .trust-grid { grid-template-columns:repeat(2, 1fr); gap:0; row-gap:0; }
  .trust-item { padding:14px 12px; border:none !important; }
  .trust-item:nth-child(1), .trust-item:nth-child(2) { border-bottom:1px solid var(--border) !important; padding-bottom:18px; }
  .trust-item:nth-child(3), .trust-item:nth-child(4) { padding-top:18px; }
  .trust-item:nth-child(odd) { border-right:1px solid var(--border) !important; }
  .trust-icon { width:40px; height:40px; font-size:1.05rem; }
  .trust-item h4 { font-size:.82rem; }
  .trust-item p { font-size:.7rem; }

  .pkg-featured { display:none; }
  .pkg-mobile-stack { display:block; position:relative; padding-bottom:8px; }
  .pkg-stack-card {
    position:sticky;
    top:calc(var(--header-h-mobile) + 14px);
    height:440px;
    border-radius:var(--radius-lg);
    overflow:hidden;
    box-shadow:var(--shadow-lg);
    margin-bottom:22px;
    background:#1a0608;
  }
  .pkg-stack-card:nth-child(1) { z-index:1; }
  .pkg-stack-card:nth-child(2) { z-index:2; }
  .pkg-stack-card:nth-child(3) { z-index:3; }
  .pkg-stack-card:nth-child(4) { z-index:4; }
  .pkg-stack-img { position:absolute; inset:0; width:100%; height:100%; object-fit:cover; }
  .pkg-stack-overlay { position:absolute; inset:0; background:linear-gradient(180deg, rgba(50,0,8,0) 0%, rgba(50,0,8,.35) 45%, rgba(50,0,8,.95) 100%); }
  .pkg-stack-body { position:absolute; left:0; right:0; bottom:0; padding:26px 22px 24px; color:var(--white); }
  .pkg-stack-tag {
    display:inline-block;
    font-size:.66rem; font-weight:700; letter-spacing:.09em; text-transform:uppercase;
    color:var(--gold-light);
    background:rgba(255,255,255,.14);
    border:1px solid rgba(255,255,255,.25);
    padding:4px 12px; border-radius:50px;
    margin-bottom:12px;
    backdrop-filter:blur(4px);
  }
  .pkg-stack-body h3 { font-size:1.35rem; color:var(--white); margin-bottom:8px; }
  .pkg-stack-desc { font-size:.85rem; color:rgba(255,255,255,.82); line-height:1.6; margin-bottom:16px; }
  .pkg-stack-footer { display:flex; align-items:center; }

  .swipe-hint { display:flex; align-items:center; gap:6px; justify-content:center; font-size:.78rem; color:var(--muted); margin:-30px 0 24px; }
  .testimonial-grid { display:flex; overflow-x:auto; scroll-snap-type:x mandatory; gap:16px; margin:0 -24px; padding:4px 24px 12px; -webkit-overflow-scrolling:touch; scrollbar-width:none; }
  .testimonial-grid::-webkit-scrollbar { display:none; }
  .testimonial-grid .testimonial-card { flex:0 0 82%; scroll-snap-align:center; }

  .about-images { height:380px; margin-bottom:16px; }
  .cta-content { flex-direction:column; text-align:center; gap:28px; }

  footer { padding:44px 0 0; }
  .footer-grid { grid-template-columns:1fr; gap:28px; padding-bottom:24px; text-align:left; }
  .footer-brand { grid-column:auto; }
  .footer-brand p { max-width:100%; }
  .footer-bottom { padding:14px 0; }

  .floating-whatsapp { bottom:22px; right:22px; width:50px; height:50px; font-size:1.5rem; }
  #back-to-top { bottom:82px; right:22px; }
}

/* ══════════════════════════════════════════════════════════
   SMALL PHONES (≤480px)
   ══════════════════════════════════════════════════════════ */
@media (max-width:480px) {
  .grid-4 { grid-template-columns:1fr; }
  .hero-content h1 { font-size:2.2rem; }
  .pkg-stack-card { height:400px; }
  .testimonial-grid .testimonial-card { flex-basis:88%; }
  footer { padding:36px 0 0; }
  .footer-grid { gap:22px; padding-bottom:20px; }
  .footer-brand p { font-size:.8rem; }
  .footer-col h4 { margin-bottom:12px; }
  .footer-col ul li { margin-bottom:6px; }
  .social-icons a { width:32px; height:32px; font-size:.78rem; }
  .footer-bottom { font-size:.72rem; padding:12px 0; }
}/* End custom CSS */