/* ==========================================================================
   SECTION EXTRAS — International Clients + Corporate & Celebrity Work
   Link this AFTER patch-fixes.css so these rules win on shared classnames.

   DESIGN TOKENS (derived from your existing premium-style.css palette —
   gold/cream bridal-luxury, Playfair Display + Jost + Cinzel):
     --gold:        #c9a15f   (assumed primary accent — adjust if your
                                 actual var name differs, e.g. --accent)
     --gold-dark:   #9c7a3f
     --cream:       #fdf6ef
     --ink:         #2c2018
   These rules use CSS custom properties with safe fallbacks so they inherit
   your real theme variables automatically if the names match, and degrade
   gracefully if they don't.
========================================================================== */

:root {
    --intl-gold: var(--gold, var(--accent, #c9a15f));
    --intl-gold-dark: var(--gold-dark, #9c7a3f);
    --intl-cream: var(--cream, var(--bg-light, #fdf6ef));
    --intl-ink: var(--ink, var(--text-dark, #2c2018));
}

/* --------------------------------------------------------------------
   SPINNER LOGO AND BRAND HEADER
-------------------------------------------------------------------- */
.logo {
    display: flex !important;
    align-items: center !important;
    gap: 2px !important;
}

.brand-name-text {
    font-family: var(--font-accent), serif;
    font-size: clamp(1rem, 2vw, 1.25rem);
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: var(--t-base);
}

.spinner-logo-container {
    margin-bottom: clamp(14px, 3vw, 24px);
    display: flex;
    justify-content: center;
    align-items: center;
}

.spinner-logo-img {
    height: clamp(80px, 15vw, 120px);
    width: auto;
    animation: spinnerLogoPulse 2s ease-in-out infinite;
}

@keyframes spinnerLogoPulse {
    0%, 100% {
        transform: scale(0.95);
        filter: drop-shadow(0 0 4px rgba(var(--accent-rgb, 184, 115, 51), 0.3));
        opacity: 0.85;
    }
    50% {
        transform: scale(1.05);
        filter: drop-shadow(0 0 20px rgba(var(--accent-rgb, 184, 115, 51), 0.7));
        opacity: 1;
    }
}

/* --------------------------------------------------------------------
   INTERNATIONAL CLIENTS SECTION
-------------------------------------------------------------------- */
.intl-section {
    position: relative;
    padding: 6rem 0;
    background: linear-gradient(180deg, #ffffff 0%, var(--intl-cream) 100%);
    overflow: hidden;
}

.intl-section::before {
    content: "";
    position: absolute;
    top: -120px;
    right: -120px;
    width: 360px;
    height: 360px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(201, 161, 95, 0.12), transparent 70%);
    pointer-events: none;
}

/* Scrolling flag/destination chip strip — signature motif: motion = "global reach" */
.intl-flag-strip {
    overflow: hidden;
    margin: 2rem 0 3rem;
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
    mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.intl-flag-track {
    display: flex;
    gap: 1.25rem;
    width: max-content;
    animation: intlFlagScroll 32s linear infinite;
}

.intl-flag-strip:hover .intl-flag-track {
    animation-play-state: paused;
}

@keyframes intlFlagScroll {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}

.intl-flag-chip {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.1rem;
    border-radius: 999px;
    background: #fff;
    border: 1px solid rgba(201, 161, 95, 0.35);
    box-shadow: 0 4px 14px rgba(44, 32, 24, 0.06);
    font-family: 'Jost', sans-serif;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--intl-ink);
    white-space: nowrap;
}

.intl-flag-chip img {
    border-radius: 2px;
    box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.08);
}

/* Destination card grid */
.intl-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.75rem;
}

@media (max-width: 992px) {
    .intl-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
    .intl-grid { grid-template-columns: 1fr; }
}

.intl-card {
    background: #fff;
    border-radius: 18px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 8px 24px rgba(44, 32, 24, 0.07);
    border: 1px solid rgba(201, 161, 95, 0.15);
    transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.45s ease;
}

.intl-card:hover,
.intl-card:focus-visible {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(44, 32, 24, 0.16);
}

.intl-card-media {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 5;
    overflow: hidden;
    background: #1a1410;
}

.intl-card-media img,
.intl-hover-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.4s ease, transform 0.6s ease;
}

.intl-card-media img {
    z-index: 1;
}

.intl-hover-video {
    z-index: 2;
    opacity: 0;
}

.intl-card:hover .intl-hover-video {
    opacity: 1;
}

.intl-card:hover .intl-card-media img {
    transform: scale(1.06);
}

.intl-card-overlay {
    position: absolute;
    inset: 0;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(20, 14, 9, 0);
    transition: background 0.35s ease;
    pointer-events: none;
}

.intl-card:hover .intl-card-overlay {
    background: rgba(20, 14, 9, 0.18);
}

.intl-play-btn {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.92);
    color: var(--intl-gold-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    opacity: 0;
    transform: scale(0.7);
    transition: opacity 0.35s ease, transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
}

.intl-card:hover .intl-play-btn {
    opacity: 1;
    transform: scale(1);
}

.intl-country-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 4;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.35rem 0.75rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.95);
    font-family: 'Jost', sans-serif;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    color: var(--intl-ink);
}

.intl-country-badge img {
    border-radius: 2px;
}

.intl-card-body {
    padding: 1.3rem 1.4rem 1.6rem;
}

.intl-card-body h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.15rem;
    margin: 0 0 0.4rem;
    color: var(--intl-ink);
}

.intl-card-body p {
    font-family: 'Jost', sans-serif;
    font-size: 0.9rem;
    color: rgba(44, 32, 24, 0.7);
    line-height: 1.5;
    margin: 0;
}

.intl-cta {
    margin-top: 3rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    text-align: center;
}

.intl-cta p {
    font-family: 'Jost', sans-serif;
    color: var(--intl-ink);
    font-size: 1.02rem;
}

/* --------------------------------------------------------------------
   CORPORATE & CELEBRITY SECTION — the bold accent of this delivery.
   Deliberately breaks from the light theme: a velvet-rope spotlight
   moment, signaling "exclusive" inside an otherwise bright page.
-------------------------------------------------------------------- */
.vip-section {
    position: relative;
    padding: 6.5rem 0;
    background: radial-gradient(ellipse at top, #241a12 0%, #15100b 60%, #0e0a07 100%);
    overflow: hidden;
}

.vip-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 20% 20%, rgba(201, 161, 95, 0.10), transparent 35%),
        radial-gradient(circle at 80% 75%, rgba(201, 161, 95, 0.08), transparent 40%);
    pointer-events: none;
}

.vip-section .section-header.light-on-dark .section-subtitle {
    color: var(--intl-gold);
    letter-spacing: 0.18em;
}

.vip-section .section-header.light-on-dark .section-title {
    color: #f7f1e6;
}

.vip-section .section-header.light-on-dark .section-description {
    color: rgba(247, 241, 230, 0.65);
}

.vip-section .title-ornament i {
    color: var(--intl-gold);
}

.vip-section .title-ornament span {
    background: linear-gradient(90deg, transparent, var(--intl-gold), transparent);
}

.vip-filters {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    margin: 2rem 0 3rem;
    flex-wrap: wrap;
}

.vip-filter-btn {
    padding: 0.6rem 1.5rem;
    border-radius: 999px;
    border: 1px solid rgba(201, 161, 95, 0.4);
    background: transparent;
    color: rgba(247, 241, 230, 0.8);
    font-family: 'Jost', sans-serif;
    font-size: 0.88rem;
    letter-spacing: 0.02em;
    cursor: pointer;
    transition: all 0.3s ease;
}

.vip-filter-btn:hover {
    border-color: var(--intl-gold);
    color: #fff;
}

.vip-filter-btn.active {
    background: var(--intl-gold);
    border-color: var(--intl-gold);
    color: #1a1410;
    font-weight: 600;
}

.vip-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

@media (max-width: 992px) {
    .vip-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
    .vip-grid { grid-template-columns: 1fr; }
}

.vip-card {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    cursor: pointer;
    background: #1a1410;
    border: 1px solid rgba(201, 161, 95, 0.25);
    transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1), border-color 0.4s ease;
}

.vip-card.vip-hidden {
    display: none;
}

.vip-card:hover,
.vip-card:focus-visible {
    transform: translateY(-10px);
    border-color: var(--intl-gold);
}

.vip-card-media {
    position: relative;
    width: 100%;
    aspect-ratio: 3 / 4;
    overflow: hidden;
}

.vip-card-media img,
.vip-hover-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.4s ease, transform 0.6s ease, filter 0.5s ease;
    filter: brightness(0.92) saturate(1.02);
}

.vip-card-media img { z-index: 1; }
.vip-hover-video { z-index: 2; opacity: 0; }

.vip-card:hover .vip-hover-video { opacity: 1; }
.vip-card:hover .vip-card-media img {
    transform: scale(1.07);
    filter: brightness(1) saturate(1.1);
}

/* Gold "shine sweep" on hover — the signature flourish for this section */
.vip-card-shine {
    position: absolute;
    inset: 0;
    z-index: 3;
    background: linear-gradient(115deg, transparent 40%, rgba(255, 230, 180, 0.25) 50%, transparent 60%);
    transform: translateX(-120%);
    pointer-events: none;
}

.vip-card:hover .vip-card-shine {
    animation: vipShineSweep 1.1s ease forwards;
}

@keyframes vipShineSweep {
    to { transform: translateX(120%); }
}

.vip-card-overlay {
    position: absolute;
    inset: 0;
    z-index: 4;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(10, 7, 5, 0);
    transition: background 0.35s ease;
    pointer-events: none;
}

.vip-card:hover .vip-card-overlay {
    background: rgba(10, 7, 5, 0.32);
}

.vip-play-btn {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--intl-gold);
    color: #1a1410;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.05rem;
    opacity: 0;
    transform: scale(0.7);
    transition: opacity 0.35s ease, transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
    box-shadow: 0 0 0 6px rgba(201, 161, 95, 0.15);
}

.vip-card:hover .vip-play-btn {
    opacity: 1;
    transform: scale(1);
}

.vip-tag {
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 5;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.35rem 0.8rem;
    border-radius: 999px;
    background: rgba(20, 14, 9, 0.75);
    border: 1px solid rgba(201, 161, 95, 0.5);
    color: var(--intl-gold);
    font-family: 'Jost', sans-serif;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.03em;
}

.vip-card-body {
    padding: 1.4rem 1.5rem 1.7rem;
    background: #1a1410;
}

.vip-card-body h3 {
    font-family: 'Cinzel', serif;
    font-size: 1.05rem;
    color: #f7f1e6;
    margin: 0 0 0.5rem;
    letter-spacing: 0.01em;
}

.vip-card-body p {
    font-family: 'Jost', sans-serif;
    font-size: 0.88rem;
    color: rgba(247, 241, 230, 0.55);
    line-height: 1.55;
    margin: 0;
}

.vip-discretion-note {
    margin-top: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.65rem;
    text-align: center;
    color: rgba(247, 241, 230, 0.55);
    font-family: 'Jost', sans-serif;
    font-size: 0.88rem;
}

.vip-discretion-note i {
    color: var(--intl-gold);
}

.vip-cta {
    margin-top: 2rem;
    display: flex;
    justify-content: center;
}

.vip-cta-btn {
    background: var(--intl-gold);
    color: #1a1410;
    border: none;
    box-shadow: 0 0 0 0 rgba(201, 161, 95, 0.5);
    animation: vipPulse 2.6s ease-in-out infinite;
}

@keyframes vipPulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(201, 161, 95, 0.35); }
    50%      { box-shadow: 0 0 0 10px rgba(201, 161, 95, 0); }
}

/* --------------------------------------------------------------------
   SHARED WORK MODAL (video/image/iframe player for both sections)
-------------------------------------------------------------------- */
.work-modal-overlay {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    background: rgba(10, 7, 5, 0.88);
    padding: 2rem;
    opacity: 0;
    transition: opacity 0.35s ease;
}

.work-modal-overlay.active {
    display: flex;
    opacity: 1;
}

.work-modal-content {
    position: relative;
    width: 100%;
    max-width: 760px;
    max-height: 90vh;
    background: #100c08;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(201, 161, 95, 0.3);
    transform: scale(0.92) translateY(20px);
    opacity: 0;
    transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.4s ease;
    display: flex;
    flex-direction: column;
}

.work-modal-overlay.active .work-modal-content {
    transform: scale(1) translateY(0);
    opacity: 1;
}

.work-modal-media {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    background: #000;
}

.work-modal-media video,
.work-modal-media img,
.work-modal-media iframe {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border: 0;
    display: block;
}

.work-modal-info {
    padding: 1.4rem 1.6rem 1.6rem;
}

.work-modal-info h3 {
    font-family: 'Playfair Display', serif;
    color: #f7f1e6;
    font-size: 1.2rem;
    margin: 0 0 0.4rem;
}

.work-modal-info p {
    font-family: 'Jost', sans-serif;
    color: rgba(247, 241, 230, 0.6);
    font-size: 0.92rem;
    line-height: 1.5;
    margin: 0;
}

.work-modal-close {
    position: absolute;
    top: 14px;
    right: 14px;
    z-index: 5;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.25s ease;
}

.work-modal-close:hover {
    background: var(--intl-gold);
    color: #1a1410;
}

/* --------------------------------------------------------------------
   Scroll-reveal — reuses your existing .reveal pattern; this just adds
   a staggered delay hook so cards cascade in rather than pop together.
-------------------------------------------------------------------- */
.intl-card[data-delay],
.vip-card[data-delay] {
    transition-delay: var(--reveal-delay, 0ms);
}

/* Respect reduced-motion preference */
@media (prefers-reduced-motion: reduce) {
    .intl-flag-track,
    .vip-cta-btn,
    .vip-card-shine,
    .intl-card,
    .vip-card {
        animation: none !important;
        transition-duration: 0.01ms !important;
    }
}
