/* ========================================
   ShivAnsh Events - Premium Luxury Design
   ======================================== */

:root {
    --pink: #fdf0f0;
    --pink-medium: #f8d7d6;
    --pink-dark: #e8a0a0;
    --rose: #c06070;
    --rose-dark: #a04050;
    --gold: #c9a84c;
    --gold-light: #e2c878;
    --gold-dark: #a08339;
    --cream: #fef9f5;
    --cream-dark: #f0e6df;
    --charcoal: #2a2020;
    --charcoal-light: #3d3030;
    --text: #4a3a3a;   /* softer luxury tone */
    --text-light: #7a6565;
    --text-on-dark: #f5e8e8;
    --white: #fff;
    --bg: var(--pink);

    --font-display: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'Montserrat', -apple-system, sans-serif;

    --ease: cubic-bezier(0.4, 0, 0.2, 1);
    --ease-out: cubic-bezier(0, 0, 0.2, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 100px; }
body {
    font-family: var(--font-body);
    color: var(--text);
    background: var(--bg);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: .3s var(--ease); }
ul { list-style: none; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section { padding: 100px 0; }

/* ---------- Typography ---------- */
.section__tag {
    display: block;
    font-family: var(--font-body);
    font-size: .7rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--rose);
    margin-bottom: 16px;
}

.section__title {
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 4.5vw, 3.5rem);
    font-weight: 500;
    line-height: 1.15;
    color: var(--charcoal);
}

.section__title em {
    font-style: italic;
    color: var(--rose-dark);
    position: relative;
}

.section__header { margin-bottom: 60px; }
.section__header:not(.section__header--left) { text-align: center; }

.section__subtitle {
    font-size: .95rem;
    color: var(--text-light);
    margin-top: 12px;
}

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 16px 40px;
    font-family: var(--font-body);
    font-size: .8rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    transition: .4s var(--ease);
    border-radius: 4px;
}

.btn--primary { background: var(--rose); color: var(--white); }
.btn--primary:hover { background: var(--rose-dark); transform: translateY(-2px); box-shadow: 0 8px 30px rgba(192, 96, 112, .3); }
.btn--ghost { background: transparent; color: var(--white); border: 1px solid rgba(255,255,255,.45); }
.btn--ghost:hover { background: var(--white); color: var(--charcoal); border-color: var(--white); }
.btn--outline { background: transparent; color: var(--rose); border: 1px solid var(--rose); }
.btn--outline:hover { background: var(--rose); color: var(--white); }
.btn--full { width: 100%; }

/* ---------- Header — Floating Glass Card ---------- */
/* FULL WIDTH HEADER */
.header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;

    padding: 14px 60px;

    background: linear-gradient(
        to bottom,
        rgba(0,0,0,0.45),
        rgba(0,0,0,0.1),
        transparent
    );

    backdrop-filter: blur(6px);
}
.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 1200px;
    padding: 10px 24px;
    background: rgba(253, 240, 240, 0.22);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: 14px;
    box-shadow: 0 4px 28px rgba(42, 32, 32, 0.10);
    transition: .4s var(--ease);
}

.header.scrolled { padding: 10px 24px; }
.header.scrolled .nav {
    background: rgba(253, 240, 240, 0.96);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    box-shadow: 0 6px 36px rgba(42, 32, 32, 0.13);
    border-color: rgba(232, 160, 160, 0.30);
}

.nav__logo { display: flex; align-items: center; gap: 10px; z-index: 101; }

/* Larger logo */
.nav__logo img {
    width: 72px;
    height: 72px;
    object-fit: cover;
    border-radius: 50%;
    border: 2px solid rgba(192, 96, 112, 0.18);
    transition: .3s var(--ease);
}
.nav__logo:hover img { border-color: var(--rose); box-shadow: 0 0 0 3px rgba(192,96,112,.12); }

.nav__logo span {
    font-family: var(--font-display);
    font-size: 1.7rem;        /* bigger than nav */
    font-weight: 600;
    letter-spacing: 1px;

    color: #ffffff;           /* stands out on hero */
}

.nav__menu { display: flex; gap: 36px; }

/* ===== NAV LINKS PINK BOX STYLE ===== */
.nav__link {
    background: #cfa7a7;
    padding: 8px 18px;
    border-radius: 20px;
    transition: 0.3s;

    color: white;
    font-weight: 700;
    text-shadow: 0 1px 3px rgba(0,0,0,0.25);
}

.nav__link:hover {
    background: var(--rose);
    color: var(--white);
}

/* Dark readable links */
.nav__link {
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: white;
    position: relative;
}
.nav__link::after {
    content: '';
    position: absolute;
    bottom: -4px; left: 0;
    width: 0; height: 1px;
    background: var(--rose);
    transition: .3s var(--ease);
}
.nav__link:hover { color: var(--rose-dark); }
.nav__link:hover::after { width: 100%; }

.nav__cta {
    font-size: .7rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--rose);
    border: 1px solid var(--rose);
    padding: 10px 24px;
    border-radius: 4px;
    transition: .3s var(--ease);
}
.nav__cta:hover { background: var(--rose); color: var(--white); }

.nav__toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 101;
}
.nav__toggle span { display: block; width: 24px; height: 1.5px; background: var(--charcoal); transition: .3s var(--ease); }

/* ---------- Hero ---------- */
.hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    overflow: hidden;
}
.hero__bg { position: absolute; inset: 0; z-index: 0; }
.hero__bg img { width: 100%; height: 100%; object-fit: cover; }
.hero__bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,.5) 0%, rgba(0,0,0,.3) 40%, rgba(0,0,0,.55) 100%);
}

/* Watermark logo */
.hero__watermark {
    position: absolute;
    inset: 0;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
}
.hero__watermark img {
    width: clamp(280px, 45vw, 560px);
    height: clamp(280px, 45vw, 560px);
    object-fit: contain;
    opacity: 0.05;
    filter: grayscale(1) blur(1px);
    border-radius: 50%;
}

/* Hero content centered */
.hero__content {
    position: relative;
    z-index: 2;
    width: 100%;
    text-align: center;
}

.hero__title {
    font-family: var(--font-display);
    font-size: clamp(3.5rem, 7vw, 6rem);
    font-weight: 500;
    line-height: 1.05;
    color: var(--white);
    text-align: center;
    font-style: italic;   /* 🔥 THIS IS THE KEY CHANGE */
}

/* SAME FONT for both lines */
.hero__title span {
    display: block;
    color: var(--white);
}

.hero__title em {
    display: block;
    color: var(--pink-medium);
    font-style: inherit;
    margin-left: 150px;   /* adjust if needed */
}

.hero__title span {
    text-align: center;
}

.hero__title em {
    text-align: center;
    margin-left: 0;
}
@media (min-width: 769px) {
    .hero__title em {
        margin-left: 120px;
    }
}

.hero__sub {
    font-size: 1.05rem;
    font-weight: 400;
    color: rgba(255,255,255,0.9);
    margin-bottom: 40px;
    letter-spacing: .5px;
    text-shadow: 0 2px 12px rgba(0,0,0,.6), 0 1px 3px rgba(0,0,0,.4);
    text-align: center;
}

.hero__actions { display: flex; gap: 16px; flex-wrap: wrap; justify-content: center; }

.hero__scroll { position: absolute; bottom: 40px; left: 50%; transform: translateX(-50%); z-index: 2; }
.hero__scroll-line {
    width: 1px; height: 60px;
    background: linear-gradient(to bottom, var(--pink-medium), transparent);
    animation: scrollLine 2s ease-in-out infinite;
}
@keyframes scrollLine {
    0% { opacity: 0; transform: scaleY(0); transform-origin: top; }
    50% { opacity: 1; transform: scaleY(1); transform-origin: top; }
    100% { opacity: 0; transform: scaleY(1); transform-origin: bottom; }
}

.hero-anim { opacity: 0; transform: translateY(24px); animation: heroIn .9s var(--ease-out) forwards; }
@keyframes heroIn { to { opacity: 1; transform: translateY(0); } }

/* ---------- Stats Ribbon ---------- */
.ribbon { background: var(--charcoal); padding: 48px 0; }
.ribbon__inner { display: flex; justify-content: space-around; flex-wrap: wrap; gap: 32px; }
.ribbon__stat { text-align: center; }
.ribbon__number { font-family: var(--font-display); font-size: 3rem; font-weight: 500; color: var(--pink-medium); }
.ribbon__number::after { content: '+'; font-size: 2rem; }
.ribbon__label { display: block; font-size: .7rem; letter-spacing: 2px; text-transform: uppercase; color: rgba(255,255,255,.5); margin-top: 4px; }

/* ---------- About ---------- */
.about { background: var(--white); }
.about__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about__image { position: relative; }
.about__image img { width: 100%; height: 500px; object-fit: cover; border-radius: 8px; }
.about__image-accent {
    position: absolute; top: -16px; left: -16px;
    width: 100px; height: 100px;
    border: 2px solid var(--pink-medium);
    border-radius: 8px; z-index: -1;
}
.about__text { font-size: .95rem; color: var(--text-light); margin-bottom: 40px; line-height: 1.9; }
.about__pillars { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.about__pillar {
    padding: 24px;
    border: 1px solid var(--pink-medium);
    border-radius: 8px;
    background: var(--pink);
    transition: .35s var(--ease);
}
.about__pillar:hover { border-color: var(--rose); box-shadow: 0 6px 24px rgba(192,96,112,.12); transform: translateY(-3px); }
.about__pillar-number { font-family: var(--font-display); font-size: 1.8rem; color: var(--rose); display: block; margin-bottom: 8px; }
.about__pillar h4 { font-size: .85rem; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 8px; color: var(--charcoal); }
.about__pillar p { font-size: .82rem; color: var(--text-light); line-height: 1.7; }

/* ---------- Services ---------- */
.services { background: var(--pink); }
.services__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }

/* Cards with lift + scale hover */
.service-card {
    position: relative;
    overflow: hidden;
    display: block;
    border-radius: 12px;
    aspect-ratio: 3/4;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(0,0,0,.08);
    transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}
.service-card:hover { transform: translateY(-8px) scale(1.02); box-shadow: 0 20px 50px rgba(0,0,0,.18); }

.service-card__img { position: absolute; inset: 0; }
.service-card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.service-card:hover .service-card__img img { transform: scale(1.08); }

.service-card__body {
    position: absolute; bottom: 0; left: 0; right: 0;
    padding: 32px 24px;
    background: linear-gradient(to top, rgba(42,32,32,.9) 0%, rgba(42,32,32,.5) 60%, transparent 100%);
    z-index: 2;
    transform: translateY(20px);
    transition: transform .4s var(--ease);
}
.service-card:hover .service-card__body { transform: translateY(0); }
.service-card__number { font-family: var(--font-display); font-size: 1rem; color: var(--pink-medium); display: block; margin-bottom: 8px; }
.service-card__body h3 { font-family: var(--font-display); font-size: 1.5rem; font-weight: 500; color: var(--white); margin-bottom: 10px; }
.service-card__list { list-style: none; padding: 0; opacity: 0; transform: translateY(10px); transition: .4s var(--ease); }
.service-card:hover .service-card__list { opacity: 1; transform: translateY(0); }
.service-card__list li { font-size: .78rem; color: rgba(255,255,255,.75); line-height: 1.7; padding-left: 14px; position: relative; }
.service-card__list li::before { content: ''; position: absolute; left: 0; top: 9px; width: 5px; height: 5px; border-radius: 50%; background: var(--pink-medium); }

/* ---------- Tours Collage (Fixed Image Grid) ---------- */
.tours { background: var(--white); }
.tours__collage {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 12px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
}
.tours__item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    cursor: pointer;
    box-shadow: 0 4px 16px rgba(0,0,0,.1);
    transition: transform .4s var(--ease), box-shadow .4s var(--ease);
    aspect-ratio: 2 / 3;
}
.tours__item:hover { transform: translateY(-6px); box-shadow: 0 12px 40px rgba(0,0,0,.15); }
.tours__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .5s var(--ease);
}
.tours__item:hover img { transform: scale(1.06); }
.tours__cta-wrap { text-align: center; margin-top: 48px; }

/* ---------- Lightbox ---------- */
.lightbox {
    position: fixed; inset: 0; z-index: 9999;
    background: rgba(0,0,0,.85);
    display: flex; align-items: center; justify-content: center;
    opacity: 0; visibility: hidden;
    transition: opacity .3s var(--ease), visibility .3s;
    cursor: zoom-out;
}
.lightbox.active { opacity: 1; visibility: visible; }
.lightbox__img { max-width: 90vw; max-height: 90vh; object-fit: contain; border-radius: 12px; box-shadow: 0 20px 60px rgba(0,0,0,.5); transform: scale(.9); transition: transform .3s var(--ease-out); }
.lightbox.active .lightbox__img { transform: scale(1); }
.lightbox__close { position: absolute; top: 20px; right: 24px; width: 44px; height: 44px; background: rgba(255,255,255,.15); border: none; border-radius: 50%; color: #fff; font-size: 1.5rem; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: background .3s; }
.lightbox__close:hover { background: rgba(255,255,255,.3); }
.lightbox__nav { position: absolute; top: 50%; transform: translateY(-50%); width: 48px; height: 48px; background: rgba(255,255,255,.15); border: none; border-radius: 50%; color: #fff; font-size: 1.4rem; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: background .3s; }
.lightbox__nav:hover { background: rgba(255,255,255,.3); }
.lightbox__nav--prev { left: 20px; }
.lightbox__nav--next { right: 20px; }

/* ---------- Image Break ---------- */
.image-break { position: relative; height: 50vh; min-height: 350px; overflow: hidden; }
.image-break > img { width: 100%; height: 100%; object-fit: cover; }
.image-break__overlay { position: absolute; inset: 0; background: rgba(42,32,32,.55); display: flex; align-items: center; justify-content: center; }
.image-break__quote { text-align: center; max-width: 600px; padding: 0 24px; }
.image-break__quote p { font-family: var(--font-display); font-size: clamp(1.8rem, 3.5vw, 2.8rem); font-style: italic; color: var(--white); line-height: 1.4; margin-bottom: 16px; }
.image-break__quote cite { font-family: var(--font-body); font-size: .75rem; letter-spacing: 3px; text-transform: uppercase; color: var(--pink-medium); font-style: normal; }

.image-break__quote p {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.image-break__quote p span {
    display: block;
}

.image-break__quote p em {
    display: block;
    font-style: italic;
    margin-left: 120px;
}


/* ---------- Why Us ---------- */
.why { background: var(--pink); }
.why__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.why__card { text-align: center; padding: 40px 20px; border: 1px solid var(--pink-medium); border-radius: 12px; background: var(--white); transition: .4s var(--ease); box-shadow: 0 2px 12px rgba(192,96,112,.05); }
.why__card:hover { border-color: var(--rose); transform: translateY(-6px); box-shadow: 0 16px 40px rgba(192,96,112,.12); }
.why__icon { color: var(--rose); margin-bottom: 20px; }
.why__card h3 { font-family: var(--font-display); font-size: 1.3rem; font-weight: 600; margin-bottom: 12px; color: var(--charcoal); }
.why__card p { font-size: .82rem; color: var(--text-light); line-height: 1.7; }

.client {
    background: var(--pink);
}

.client__content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.client__logo {
    display: block;
    max-width: 280px;
    width: 100%;
    height: auto;
    margin: 0 auto 30px;
}

.client__text {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text);
    max-width: 850px;
    margin: 0 auto;
}
/* ---------- Portfolio (Fixed: aspect-ratio, no fixed heights) ---------- */
.portfolio { background: var(--white); }
.portfolio__gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 10px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
}
.portfolio__item {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    border-radius: 8px;
    aspect-ratio: 1 / 1;
}
.portfolio__item--wide { grid-column: span 2; aspect-ratio: 2 / 1; }
.portfolio__item img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .6s var(--ease); }
.portfolio__item:hover img { transform: scale(1.06); }
.portfolio__overlay { position: absolute; inset: 0; background: rgba(42,32,32,.45); display: flex; align-items: center; justify-content: center; opacity: 0; transition: .3s var(--ease); }
.portfolio__item:hover .portfolio__overlay { opacity: 1; }
.portfolio__overlay span { font-family: var(--font-display); font-size: 1.3rem; color: var(--white); letter-spacing: 1px; border-bottom: 1px solid var(--pink-medium); padding-bottom: 4px; }

/* ---------- Testimonials ---------- */
.testimonials { background: var(--charcoal); color: var(--white); }
.testimonials .section__title { color: var(--white); }
.testimonials .section__tag { color: var(--pink-medium); }
.testimonials .section__title em { color: var(--pink-medium); }
.testimonials__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testimonial-card { background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.08); border-radius: 12px; padding: 32px; transition: .4s var(--ease); }
.testimonial-card:hover { background: rgba(255,255,255,.1); border-color: rgba(248,215,214,.2); transform: translateY(-4px); box-shadow: 0 12px 32px rgba(0,0,0,.2); }
.testimonial-card__stars { display: flex; gap: 4px; color: var(--gold); margin-bottom: 20px; }
.testimonial-card__text { font-family: var(--font-display); font-size: 1.05rem; font-style: italic; line-height: 1.7; color: rgba(255,255,255,.8); margin-bottom: 24px; }
.testimonial-card__author { display: flex; align-items: center; gap: 14px; }
.testimonial-card__avatar { width: 44px; height: 44px; border-radius: 50%; background: var(--rose); color: var(--white); display: flex; align-items: center; justify-content: center; font-size: .75rem; font-weight: 700; letter-spacing: 1px; flex-shrink: 0; }
.testimonial-card__name { display: block; font-size: .85rem; font-weight: 600; color: var(--pink-medium); letter-spacing: .5px; }
.testimonial-card__role { font-size: .72rem; color: rgba(255,255,255,.45); letter-spacing: .5px; }

/* ---------- Partners (Clickable cards) ---------- */
.partners { background: var(--pink); }
.partners__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.partners__card {
    display: block;
    text-align: center;
    padding: 48px 24px;
    background: var(--white);
    border: 1px solid var(--pink-medium);
    border-radius: 12px;
    transition: .4s var(--ease);
    box-shadow: 0 2px 12px rgba(192,96,112,.05);
    cursor: pointer;
    color: inherit;
}
.partners__card:hover { border-color: var(--rose); transform: translateY(-6px); box-shadow: 0 16px 40px rgba(192,96,112,.15); text-decoration: none; }
.partners__icon { color: var(--rose); margin-bottom: 20px; }
.partners__card h3 { font-family: var(--font-display); font-size: 1.4rem; font-weight: 600; margin-bottom: 12px; color: var(--charcoal); }
.partners__card p { font-size: .85rem; color: var(--text-light); line-height: 1.7; }

/* ---------- Contact ---------- */
.contact { background: var(--white); }
.contact__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.contact__desc { font-size: .95rem; color: var(--text-light); margin-bottom: 40px; line-height: 1.8; }
.contact__details { display: flex; flex-direction: column; gap: 16px; }
.contact__detail { display: flex; align-items: center; gap: 12px; font-size: .9rem; color: var(--text); padding: 12px 0; border-bottom: 1px solid var(--pink-medium); }
.contact__detail svg { color: var(--rose); flex-shrink: 0; }
.contact__detail:hover { color: var(--rose); }
.contact__form { padding: 48px; background: var(--pink); border: 1px solid var(--pink-medium); border-radius: 12px; box-shadow: 0 4px 24px rgba(192,96,112,.07); }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form__group { margin-bottom: 16px; }
.form__input { width: 100%; padding: 14px 0; font-family: var(--font-body); font-size: .85rem; color: var(--text); background: transparent; border: none; border-bottom: 1px solid var(--pink-dark); outline: none; transition: .3s var(--ease); }
.form__input:focus { border-color: var(--rose); }
.form__input::placeholder { color: #b09090; }
.form__textarea { resize: vertical; min-height: 80px; border: 1px solid var(--pink-dark); padding: 14px 16px; margin-top: 8px; border-radius: 6px; }
.form__textarea:focus { border-color: var(--rose); }
select.form__input { appearance: none; background-image: url("data:image/svg+xml,%3Csvg width='10' height='6' viewBox='0 0 10 6' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%23b09090' fill='none' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 4px center; cursor: pointer; }
.form__input.error { border-color: #c0392b; }
.form__note { text-align: center; font-size: .75rem; color: var(--text-light); margin-top: 16px; }
.contact__success { text-align: center; padding: 60px 48px; background: var(--pink); border: 1px solid var(--pink-medium); border-radius: 12px; }
.contact__success svg { color: var(--rose); margin-bottom: 20px; }
.contact__success h3 { font-family: var(--font-display); font-size: 2rem; margin-bottom: 12px; color: var(--charcoal); }
.contact__success p { color: var(--text-light); margin-bottom: 24px; }

/* ---------- FAQ ---------- */
.faq { background: var(--pink); }
.faq__list { max-width: 700px; margin: 0 auto; }
.faq__item { border-bottom: 1px solid var(--pink-medium); }
.faq__item summary { padding: 20px 0; font-size: .9rem; font-weight: 500; color: var(--charcoal); cursor: pointer; list-style: none; display: flex; justify-content: space-between; align-items: center; transition: .3s; }
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after { content: '+'; font-size: 1.2rem; color: var(--rose); font-weight: 300; transition: .2s; }
.faq__item[open] summary::after { content: '\2212'; }
.faq__item summary:hover { color: var(--rose-dark); }
.faq__item p { padding-bottom: 20px; font-size: .85rem; color: var(--text-light); line-height: 1.8; }

/* ---------- Footer ---------- */
.footer { background: var(--charcoal); padding: 48px 0 24px; color: rgba(255,255,255,.5); }
.footer__top { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 32px; padding-bottom: 32px; border-bottom: 1px solid rgba(255,255,255,.08); }
.footer__logo { display: flex; align-items: center; gap: 10px; }
.footer__logo img { width: 36px; height: 36px; border-radius: 50%; }
.footer__logo span { font-family: var(--font-display); font-size: 1.2rem; color: var(--white); }
.footer__brand p { font-size: .8rem; color: rgba(255,255,255,.4); margin-top: 4px; font-style: italic; }
.footer__links { display: flex; gap: 28px; }
.footer__links a { font-size: .75rem; letter-spacing: 1.5px; text-transform: uppercase; color: rgba(255,255,255,.5); }
.footer__links a:hover { color: var(--pink-medium); }
.footer__social { display: flex; gap: 16px; }
.footer__social a { color: rgba(255,255,255,.4); transition: .3s; }
.footer__social a:hover { color: var(--pink-medium); }
.footer__bottom { text-align: center; padding-top: 24px; font-size: .75rem; }

/* ---------- WhatsApp ---------- */
.whatsapp { position: fixed; bottom: 28px; right: 28px; width: 54px; height: 54px; background: #25D366; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #fff; box-shadow: 0 4px 20px rgba(37,211,102,.35); z-index: 99; transition: .3s var(--ease); }
.whatsapp:hover { transform: scale(1.1); }

/* ---------- Scroll Reveal ---------- */
.reveal-el { opacity: 0; transform: translateY(30px); transition: opacity .7s var(--ease-out), transform .7s var(--ease-out); }
.reveal-el.revealed { opacity: 1; transform: translateY(0); }

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
    .services__grid { grid-template-columns: repeat(2, 1fr); }
    .why__grid { grid-template-columns: repeat(2, 1fr); }
    .portfolio__gallery { grid-template-columns: repeat(2, 1fr); }
    .portfolio__item--wide { grid-column: span 2; }
    .tours__collage { grid-template-columns: repeat(3, 1fr); }
    .testimonials__grid { grid-template-columns: repeat(2, 1fr); }
    .partners__grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
    .section { padding: 80px 0; }
    .header { padding: 14px 16px; }
    .nav { padding: 10px 16px; }
    .nav__menu, .nav__cta { display: none; }
    .nav__toggle { display: flex; }
    .nav__logo img { width: 54px; height: 54px; }
    .nav__menu.open {
    display: flex !important;
    flex-direction: column;

    position: fixed;
    inset: 0;

    background: rgba(42,32,32,0.97);

    align-items: center;
    justify-content: center;

    gap: 24px;

    z-index: 200;
    margin: 0 !important;
    padding: 80px 20px;
    }
    .nav__menu.open .nav__link {
    display: block;
    width: 220px;

    text-align: center;

    padding: 14px 20px !important;

    border-radius: 30px;

    background: rgba(255,255,255,0.08) !important;

    color: white !important;

    font-size: 1rem !important;

    letter-spacing: 2px;
    }
    .nav__toggle.open span { background: var(--white); }
    .nav__toggle.open span:first-child { transform: rotate(45deg) translate(4px, 4px); }
    .nav__toggle.open span:last-child { transform: rotate(-45deg) translate(4px, -4px); }
    .about__grid { grid-template-columns: 1fr; gap: 40px; }
    .about__image img { height: 350px; }
    .about__image-accent { display: none; }
    .services__grid { grid-template-columns: 1fr; }
    .service-card { aspect-ratio: 16/9; }
    .tours__collage { grid-template-columns: repeat(2, 1fr); }
    .why__grid { grid-template-columns: 1fr 1fr; }
    .portfolio__gallery { grid-template-columns: 1fr 1fr; padding: 0 16px; }
    .portfolio__item--wide { grid-column: span 2; aspect-ratio: 2/1; }
    .testimonials__grid { grid-template-columns: 1fr; }
    .partners__grid { grid-template-columns: 1fr; }
    .contact__grid { grid-template-columns: 1fr; gap: 48px; }
    .contact__form { padding: 32px 24px; }
    .form__row { grid-template-columns: 1fr; }
    .footer__top { flex-direction: column; text-align: center; }
    .footer__links { flex-wrap: wrap; justify-content: center; }
}

@media (max-width: 480px) {
    .hero__title { font-size: 2.5rem; }
    .hero__actions { flex-direction: column; }
    .hero__actions .btn { width: 100%; text-align: center; }
    .ribbon__inner { flex-direction: column; gap: 24px; }
    .portfolio__gallery { grid-template-columns: 1fr; }
    .portfolio__item--wide { grid-column: span 1; aspect-ratio: 16/9; }
    .about__pillars { grid-template-columns: 1fr; }
    .tours__collage { grid-template-columns: repeat(2, 1fr); }
    .why__grid { grid-template-columns: 1fr; }
}


/* ========================================
   PARTNERS SECTION (FULL STYLING)
======================================== */

/* Section spacing handled by .section */

/* Header */
.section__header {
    text-align: center;
    margin-bottom: 60px;
}

.section__tag {
    display: inline-block;
    font-size: 0.75rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--rose);
    margin-bottom: 10px;
}

.section__title {
    font-family: var(--font-display);
    font-size: 2.8rem;
    color: var(--charcoal);
}

.section__title em {
    font-style: italic;
    color: var(--rose);
}

/* Grid Layout */
.partners__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* Card */
.partners__card {
    display: block;
    text-decoration: none;
    color: inherit;

    background: var(--white);
    border-radius: 16px;
    padding: 40px 30px;

    text-align: center;

    border: 1px solid rgba(0,0,0,0.05);

    transition: all 0.35s ease;
}

/* Hover Effect */
.partners__card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.12);
}

/* Icon */
.partners__icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: var(--pink);
    border-radius: 50%;
    color: var(--rose);
}

/* Title */
.partners__card h3 {
    font-family: var(--font-display);
    font-size: 1.4rem;
    margin-bottom: 10px;
    color: var(--charcoal);
}

/* Description */
.partners__card p {
    font-size: 0.9rem;
    color: var(--text);
    line-height: 1.6;
}

/* View Link */
.partners__link {
    display: inline-block;
    margin-top: 15px;

    font-size: 0.75rem;
    letter-spacing: 2px;
    text-transform: uppercase;

    color: var(--rose);
    transition: 0.3s;
}

/* Arrow movement */
.partners__card:hover .partners__link {
    transform: translateX(6px);
}

/* Responsive */
@media (max-width: 900px) {
    .partners__grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 600px) {
    .partners__grid {
        grid-template-columns: 1fr;
    }
}
.header {
    position: absolute;   /* 🔥 key change */
    top: 0;
    left: 0;
    width: 100%;

    padding: 18px 60px;

    background: transparent;   /* 🔥 merges with hero */
    box-shadow: none;
    border-radius: 0;

    z-index: 1000;
}
.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav__logo img {
    height: 75px;   /* balanced size */
}
.nav__link {
    color: rgba(255,255,255,0.85);
}

.nav__link:hover {
    color: #fff;
}

.nav__cta {
    border: 1px solid rgba(255,255,255,0.6);
    color: #fff;
    background: transparent;
}

.nav__cta:hover {
    background: var(--rose);
    border-color: var(--rose);
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.35);
    z-index: 1;
}

.hero__content {
    position: relative;
    z-index: 2;
}

.nav__logo span {
    position: relative;
}



.nav__link {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;

    color: rgba(255,255,255,0.9);   /* 🔥 strong visibility */
    transition: 0.3s;
}

.nav__link:hover {
    color: #ffffff;
}

.nav__menu {
    margin-left: 40px;
}

.nav__logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.nav__cta {
    padding: 10px 24px;
    border-radius: 8px;

    border: 1px solid rgba(255,255,255,0.6);
    color: #fff;
    background: transparent;

    font-size: 0.75rem;
    letter-spacing: 1.5px;
}

.nav__cta:hover {
    background: var(--rose);
    border-color: var(--rose);
}

.nav {
    display: flex;
    align-items: center;
}

/* push menu to center */
.nav__menu {
    display: flex;
    gap: 22px;
    margin-left: 60px;
}

/* push CTA fully right */
.nav__cta {
    margin-left: auto;
}



.nav__link {
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 0 1px 2px rgba(0,0,0,0.2);  /* very subtle */
}

.portfolio__gallery {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.portfolio__item--wide {
    grid-column: span 2;
    aspect-ratio: 2 / 1;
}

.portfolio__item {
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    border-radius: 12px;
}

.portfolio__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* =========================================
   RESPONSIVE OVERRIDES — Final Pass
   Fixes cascade conflicts from duplicate
   rules above + adds missing breakpoints
   ========================================= */

/* ── Header: fix padding override on mobile ── */
@media (max-width: 768px) {
    .header { padding: 10px 16px !important; }
    .nav { padding: 8px 12px !important; margin-left: 0 !important; }
    .nav__logo span { font-size: 1.3rem; }
    .header.scrolled .nav__logo span { color: var(--charcoal); }
}

/* ── Hero: readable text on all screens ── */
@media (max-width: 768px) {
    .hero__content { padding: 0 24px; }
    .hero__sub { font-size: 0.9rem; }
}
@media (max-width: 480px) {
    .hero__title { font-size: clamp(1.8rem, 9vw, 2.4rem) !important; }
    .hero__sub { font-size: 0.82rem; padding: 0 8px; }
}

/* ── Section padding: tighter on small screens ── */
@media (max-width: 480px) {
    .section { padding: 60px 0; }
    .container { padding: 0 16px; }
}

/* ── Portfolio: responsive grid (overrides 4-col default above) ── */
@media (max-width: 1024px) {
    .portfolio__gallery { grid-template-columns: repeat(3, 1fr) !important; gap: 12px !important; }
    .portfolio__item--wide { grid-column: span 2 !important; }
}
@media (max-width: 768px) {
    .portfolio__gallery { grid-template-columns: repeat(2, 1fr) !important; padding: 0 16px !important; }
    .portfolio__item--wide { grid-column: span 2 !important; aspect-ratio: 2/1 !important; }
}
@media (max-width: 480px) {
    .portfolio__gallery { grid-template-columns: 1fr !important; }
    .portfolio__item--wide { grid-column: span 1 !important; aspect-ratio: 16/9 !important; }
    .portfolio__item { aspect-ratio: 4/3 !important; }
}

/* ── About: image + pillars on small screens ── */
@media (max-width: 480px) {
    .about__image img { height: 260px; }
    .about__pillar { padding: 18px 14px; }
}

/* ── Ribbon stats: scale down on mobile ── */
@media (max-width: 480px) {
    .ribbon { padding: 40px 0; }
    .ribbon__number { font-size: 2.2rem; }
}

/* ── Image break: shorter on mobile ── */
@media (max-width: 768px) {
    .image-break { height: 35vh; min-height: 220px; }
    .image-break__quote p { font-size: clamp(1.3rem, 4vw, 2rem); }
}

/* ── Contact: tighter padding on mobile ── */
@media (max-width: 480px) {
    .contact__form { padding: 24px 16px !important; }
    .contact__success { padding: 36px 20px !important; }
    .contact__success h3 { font-size: 1.5rem; }
}

/* ── Testimonials: readable on small screens ── */
@media (max-width: 480px) {
    .testimonial-card { padding: 24px 18px; }
    .testimonial-card__text { font-size: 0.93rem; }
}

/* ── Why cards: padding on mobile ── */
@media (max-width: 480px) {
    .why__card { padding: 28px 16px; }
}

/* ── Partners card: padding on mobile ── */
@media (max-width: 480px) {
    .partners__card { padding: 28px 18px; }
}

/* ── FAQ: font size on very small screens ── */
@media (max-width: 480px) {
    .faq__item summary { font-size: 0.85rem; }
}

/* ── Footer: small screen cleanup ── */
@media (max-width: 480px) {
    .footer__links { gap: 14px; }
    .footer__links a { font-size: 0.7rem; }
}

/* ── WhatsApp: nudge inward on small screens ── */
@media (max-width: 480px) {
    .whatsapp { bottom: 20px; right: 16px; width: 48px; height: 48px; }
}

/* ── Prevent horizontal scroll on all screens ── */
html, body { max-width: 100%; overflow-x: hidden; }

/* ── Hero title: pixel-perfect centering on all screens ── */
.hero__content {
    display: flex !important;
    flex-direction: column;
    align-items: center;
    text-align: center;
}
.hero__title,
.hero__title em { text-align: center !important; width: 100%; }

/* ── Plan Your Event button: pink ── */
.btn--primary {
   background: #efb3b3 !important;
    color: var(--white) !important;
}
.btn--primary:hover {
    background: #d07080 !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(192, 96, 112, .3);
}

/* ── Portfolio: 3×2 grid for 6 images ── */
@media (min-width: 601px) {
    .portfolio__gallery {
        grid-template-columns: repeat(3, 1fr) !important;
        max-width: 1100px;
        margin: 0 auto;
        gap: 14px !important;
    }
    .portfolio__item { aspect-ratio: 4/3 !important; }
}
@media (max-width: 600px) {
    .portfolio__gallery {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 10px !important;
    }
    .portfolio__item { aspect-ratio: 1/1 !important; }
}

/* ── Logo: always one line, footer logo larger ── */
.nav__logo span    { white-space: nowrap; }
.footer__logo span { white-space: nowrap; font-size: 1.3rem; color: var(--white); }
.footer__logo img  { width: 52px !important; height: 52px !important; }

/* ── Nav pink boxes: compact on medium screens (1100px – 901px) ── */
@media (max-width: 1100px) {
    .nav__menu { gap: 10px !important; margin-left: 20px !important; }
    .nav__link  { padding: 6px 10px !important; font-size: 0.68rem !important; letter-spacing: 1.5px !important; }
    .nav__logo span { font-size: 1.3rem !important; }
    .nav__logo img  { width: 52px !important; height: 52px !important; }
    .nav__cta { padding: 8px 14px !important; font-size: 0.68rem !important; }
}

/* ── Nav: switch to hamburger at 900px (was 768px) ── */
@media (max-width: 900px) {
    .nav__menu, .nav__cta { display: none; }
    .nav__toggle { display: flex; }
    .nav__logo img  { width: 50px !important; height: 50px !important; }
    .nav__logo span { font-size: 1.2rem !important; }
}

/* ── Keep existing mobile open-menu behaviour working at new breakpoint ── */
@media (max-width: 900px) {
    .nav__menu.open {
        display: flex !important;
        flex-direction: column;
        position: fixed;
        inset: 0;
        background: var(--charcoal);
        align-items: center;
        justify-content: center;
        gap: 32px;
        z-index: 100;
        border-radius: 0;
        margin: 0 !important;
    }
    .nav__menu.open .nav__link {
        font-size: 1rem !important;
        color: var(--white) !important;
        padding: 10px 28px !important;
        background: rgba(255,255,255,0.08) !important;
        border-radius: 24px !important;
    }
    .nav__menu.open + .nav__cta { display: none; }
    .nav__toggle.open span { background: var(--white); }
    .nav__toggle.open span:first-child { transform: rotate(45deg) translate(4px, 4px); }
    .nav__toggle.open span:last-child  { transform: rotate(-45deg) translate(4px, -4px); }
}

/* =====================================================
   LOOK & FEEL POLISH + COMPREHENSIVE DEVICE COVERAGE
   Covers: 320px → 375px → 480px → 600px → 768px →
           900px → 1024px → 1280px → 1440px+
   ===================================================== */

/* ── Global polish ── */
.btn {
    border-radius: 8px !important;
    min-height: 44px;
    transition: all 0.3s ease !important;
}
.btn:active { transform: scale(0.97); }

.service-card,
.why__card,
.partners__card,
.testimonial-card {
    transition: transform 0.35s ease, box-shadow 0.35s ease !important;
}

.form__input {
    border-radius: 0;
    transition: border-color 0.25s ease, background 0.25s ease;
    font-size: 16px; /* prevents iOS auto-zoom on focus */
}
select.form__input { font-size: 16px; }

/* ── Large desktop (1440px+): more breathing room ── */
@media (min-width: 1440px) {
    .container { max-width: 1320px; }
    .section { padding: 120px 0; }
    .section__title { font-size: 3.8rem; }
}

/* ── Standard desktop (1280px): comfortable density ── */
@media (max-width: 1280px) {
    .nav__menu { gap: 8px !important; margin-left: 16px !important; }
    .nav__link  { padding: 6px 10px !important; font-size: 0.67rem !important; }
}

/* ── Tablet landscape (1024px) ── */
@media (max-width: 1024px) {
    .section { padding: 80px 0; }
    .section__title { font-size: clamp(2rem, 4vw, 3rem); }
    .about__grid { gap: 48px; }
    .contact__grid { gap: 48px; }
}

/* ── Tablet portrait (768px) ── */
@media (max-width: 768px) {
    .section { padding: 70px 0; }
    .section__header { margin-bottom: 40px; }
    .hero { min-height: 100svh; }
    .hero__title { font-size: clamp(2.2rem, 7vw, 3.2rem) !important; line-height: 1.1; }
    .hero__sub { font-size: 0.92rem; max-width: 520px; margin-left: auto; margin-right: auto; }
    .hero__actions { gap: 12px; }
    .btn { padding: 14px 28px !important; font-size: 0.75rem !important; }
    .ribbon__number { font-size: 2.5rem; }
    .about__image img { height: 320px; object-position: center top; }
    .service-card { aspect-ratio: 3/2; }
    .tours__collage { gap: 8px; }
    .why__grid { gap: 16px; }
    .testimonials__grid { gap: 16px; }
    .contact__form { padding: 28px 20px; }
    .footer { padding: 40px 0 20px; }
    .footer__social { justify-content: center; }
}

/* ── Large phone (600px) ── */
@media (max-width: 600px) {
    .section { padding: 60px 0; }
    .container { padding: 0 20px; }
    .hero__title { font-size: clamp(2rem, 8vw, 2.8rem) !important; }
    .hero__sub { font-size: 0.88rem; }
    .hero__actions { flex-direction: column; align-items: center; gap: 10px; }
    .hero__actions .btn { width: 100%; max-width: 320px; }
    .ribbon__inner { gap: 20px; }
    .ribbon__number { font-size: 2.2rem; }
    .ribbon__label { font-size: 0.65rem; }
    .about__pillars { grid-template-columns: 1fr 1fr; gap: 12px; }
    .about__pillar { padding: 20px 16px; }
    .tours__collage { grid-template-columns: repeat(2, 1fr) !important; gap: 8px; }
    .tours__item { aspect-ratio: 1/1; }
    .testimonial-card { padding: 24px 18px; }
    .contact__form { padding: 24px 16px; }
    .contact__success { padding: 40px 20px; }
    .form__group { margin-bottom: 12px; }
}

/* ── Phone (480px) ── */
@media (max-width: 480px) {
    .section { padding: 52px 0; }
    .container { padding: 0 16px; }
    .section__title { font-size: clamp(1.8rem, 7vw, 2.4rem) !important; }
    .section__tag { font-size: 0.65rem; letter-spacing: 2.5px; }
    .hero__title { font-size: clamp(1.9rem, 9vw, 2.4rem) !important; }
    .hero__sub { font-size: 0.84rem; }
    .ribbon { padding: 36px 0; }
    .ribbon__number { font-size: 2rem; }
    .ribbon__inner { gap: 20px; }
    .about__image img { height: 260px; }
    .about__pillars { grid-template-columns: 1fr; gap: 10px; }
    .about__pillar { padding: 18px 14px; }
    .service-card { aspect-ratio: 4/3; }
    .tours__collage { grid-template-columns: repeat(2, 1fr) !important; gap: 6px; }
    .tours__item { aspect-ratio: 3/4; }
    .why__grid { grid-template-columns: 1fr !important; gap: 12px; }
    .why__card { padding: 28px 20px; }
    .portfolio__gallery { grid-template-columns: 1fr !important; gap: 10px !important; }
    .portfolio__item { aspect-ratio: 4/3 !important; }
    .testimonial-card { padding: 20px 16px; }
    .testimonial-card__text { font-size: 0.9rem; }
    .partners__card { padding: 28px 16px; }
    .contact__form { padding: 20px 14px !important; }
    .contact__success { padding: 32px 16px !important; }
    .contact__success h3 { font-size: 1.4rem; }
    .faq__item summary { font-size: 0.83rem; padding: 16px 0; }
    .footer__links { gap: 12px; }
    .footer__links a { font-size: 0.68rem; }
    .whatsapp { width: 46px; height: 46px; bottom: 18px; right: 14px; }
}

/* ── Small phone (375px — iPhone SE, Galaxy A series) ── */
@media (max-width: 375px) {
    .container { padding: 0 14px; }
    .section { padding: 44px 0; }
    .hero__title { font-size: clamp(1.7rem, 10vw, 2.2rem) !important; line-height: 1.15; }
    .hero__sub { font-size: 0.8rem; letter-spacing: 0.2px; }
    .hero__actions .btn { padding: 13px 20px !important; font-size: 0.72rem !important; }
    .nav__logo span { font-size: 1rem !important; }
    .nav__logo img { width: 40px !important; height: 40px !important; }
    .section__title { font-size: clamp(1.6rem, 9vw, 2rem) !important; }
    .ribbon__number { font-size: 1.8rem; }
    .about__image img { height: 220px; }
    .service-card { aspect-ratio: 3/2; }
    .contact__form { padding: 16px 12px !important; }
    .testimonial-card__text { font-size: 0.85rem; }
    .footer__links { flex-direction: column; gap: 8px; align-items: center; }
}

/* ── Very small phone (320px — iPhone SE 1st gen) ── */
@media (max-width: 320px) {
    .hero__title { font-size: 1.6rem !important; }
    .section__title { font-size: 1.55rem !important; }
    .btn { padding: 12px 16px !important; font-size: 0.7rem !important; }
    .tours__collage { grid-template-columns: 1fr !important; }
    .tours__item { aspect-ratio: 16/9; }
    .ribbon__number { font-size: 1.6rem; }
}
.nav__link {
    font-weight: 700 !important;
}