/* Holiday Bookings — Site Styles */

:root {
    --brand: #0d9488;
    --brand-dark: #0f766e;
    --brand-light: #14b8a6;
    --accent: #f43f5e;
    --accent-dark: #e11d48;
    --navy: #0f172a;
}

html { scroll-behavior: smooth; }

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    overflow-x: hidden;
    background: #ecfdf5;
    position: relative;
}

/* Subtle film-grain overlay for a premium glass-surface finish */
body::before {
    content: '';
    position: fixed;
    inset: 0;
    z-index: 999;
    pointer-events: none;
    opacity: 0.025;
    mix-blend-mode: overlay;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.font-display { font-family: 'Playfair Display', serif; }

@keyframes fadeUp {
    from { opacity: 0; transform: translateY(40px); }
    to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to   { opacity: 1; }
}

@keyframes slideRight {
    from { opacity: 0; transform: translateX(-30px); }
    to   { opacity: 1; transform: translateX(0); }
}

@keyframes kenBurns {
    0%   { transform: scale(1) translate(0, 0); }
    100% { transform: scale(1.12) translate(-1%, -1%); }
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50%      { transform: translateY(-12px); }
}

@keyframes shimmer {
    0%   { background-position: -200% center; }
    100% { background-position: 200% center; }
}

.animate-fade-up { animation: fadeUp 0.8s ease forwards; }
.animate-fade-in { animation: fadeIn 1s ease forwards; }
.animate-slide-right { animation: slideRight 0.8s ease forwards; }
.animate-ken-burns { animation: kenBurns 20s ease-in-out infinite alternate; }
.animate-float { animation: float 4s ease-in-out infinite; }

.delay-100 { animation-delay: 0.1s; opacity: 0; }
.delay-200 { animation-delay: 0.2s; opacity: 0; }
.delay-300 { animation-delay: 0.3s; opacity: 0; }
.delay-400 { animation-delay: 0.4s; opacity: 0; }
.delay-500 { animation-delay: 0.5s; opacity: 0; }

.reveal {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.nav-glass {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.55);
    box-shadow: 0 8px 32px rgba(15, 23, 42, 0.08);
    transition: all 0.4s ease;
}

.nav-glass.scrolled {
    background: rgba(255, 255, 255, 0.85);
    border-color: rgba(255, 255, 255, 0.75);
    box-shadow: 0 12px 40px rgba(15, 23, 42, 0.12);
}

.nav-link {
    position: relative;
    transition: color 0.3s;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--brand);
    transition: width 0.3s ease;
}

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

.hero-overlay {
    background: linear-gradient(
        135deg,
        rgba(15, 23, 42, 0.78) 0%,
        rgba(13, 148, 136, 0.5) 50%,
        rgba(15, 23, 42, 0.7) 100%
    );
}

.hero-badge {
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,0.25);
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1.2s ease;
}

.hero-slide.active {
    opacity: 1;
}

.btn-primary {
    background: linear-gradient(135deg, var(--brand) 0%, var(--brand-dark) 100%);
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(13, 148, 136, 0.35);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(13, 148, 136, 0.45);
}

.btn-accent {
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(244, 63, 94, 0.35);
}

.btn-accent:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(244, 63, 94, 0.45);
}

.btn-outline-white {
    border: 2px solid rgba(255,255,255,0.7);
    transition: all 0.3s ease;
}

.btn-outline-white:hover {
    background: white;
    color: var(--brand-dark);
    transform: translateY(-2px);
}

.card-hover {
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.card-hover:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.card-hover .card-img {
    transition: transform 0.6s ease;
}

.card-hover:hover .card-img {
    transform: scale(1.08);
}

.card-img-wrap { overflow: hidden; }

/* ── Package card ── */
.package-card {
    background: rgba(255, 255, 255, 0.55);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-radius: 1.75rem;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.6);
    box-shadow: 0 8px 32px rgba(15, 23, 42, 0.08);
    transition: background 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
}

.package-card:hover {
    background: rgba(255, 255, 255, 0.75);
    border-color: rgba(13, 148, 136, 0.3);
    box-shadow: 0 24px 60px rgba(13, 148, 136, 0.16);
}

.package-card-overlay {
    opacity: 0.85;
    transition: opacity 0.4s ease;
}

.package-card:hover .package-card-overlay {
    opacity: 1;
}

.package-card-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
    color: var(--brand-dark);
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 0.35rem 0.75rem;
    border-radius: 9999px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.package-card-badge-hot {
    background: linear-gradient(135deg, #f43f5e, #e11d48);
    color: white;
}

.package-card-body {
    background: transparent;
}

.package-card-actions {
    transition: border-color 0.3s;
}

.package-card:hover .package-card-actions {
    border-color: rgba(13, 148, 136, 0.15);
}

.package-card-lg {
    box-shadow: 0 8px 30px rgba(13, 148, 136, 0.1);
}

.package-card-lg:hover {
    box-shadow: 0 24px 60px rgba(13, 148, 136, 0.18);
    transform: translateY(-10px);
}

/* ── Glassmorphism primitives ── */
.glass-panel {
    background: rgba(255, 255, 255, 0.55);
    backdrop-filter: blur(24px) saturate(180%);
    -webkit-backdrop-filter: blur(24px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.6);
    box-shadow: 0 20px 60px rgba(15, 23, 42, 0.1);
    border-radius: 2rem;
}

.glass-panel-dark {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(24px) saturate(180%);
    -webkit-backdrop-filter: blur(24px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.16);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
    border-radius: 2rem;
}

/* ── Floating hero stat card (bridges hero → next section) ── */
.hero-stat-card {
    background: rgba(15, 23, 42, 0.55);
    backdrop-filter: blur(24px) saturate(180%);
    -webkit-backdrop-filter: blur(24px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.16);
    box-shadow: 0 25px 70px rgba(15, 23, 42, 0.35);
    border-radius: 1.75rem;
}

/* ── Bento grid ── */
.bento-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 230px;
    gap: 1.25rem;
}

@media (min-width: 1024px) {
    .bento-grid {
        grid-template-columns: repeat(4, 1fr);
        grid-auto-rows: 210px;
        gap: 1.5rem;
    }
    .bento-grid > *:first-child {
        grid-column: span 2;
        grid-row: span 2;
    }
}

/* ── Decorative blobs ── */
.blob {
    width: 20rem;
    height: 20rem;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.5;
    animation: float 6s ease-in-out infinite;
}

.blob-teal { background: rgba(13, 148, 136, 0.35); }
.blob-rose { background: rgba(244, 63, 94, 0.25); }
.blob-light { background: rgba(255, 255, 255, 0.12); width: 16rem; height: 16rem; }
.blob-accent { background: rgba(244, 63, 94, 0.2); width: 14rem; height: 14rem; }
.blob-amber { background: rgba(251, 191, 36, 0.3); width: 18rem; height: 18rem; }
.blob-violet { background: rgba(129, 140, 248, 0.28); width: 17rem; height: 17rem; }
.blob-sky { background: rgba(56, 189, 248, 0.25); width: 15rem; height: 15rem; }

/* ── Section backgrounds ── */
.section-trending {
    background: linear-gradient(165deg, #ecfdf5 0%, #d1fae5 35%, #ecfeff 70%, #ecfdf5 100%);
    overflow: hidden;
}

.section-trending-bg {
    background:
        radial-gradient(ellipse at 15% 20%, rgba(13, 148, 136, 0.12) 0%, transparent 45%),
        radial-gradient(ellipse at 85% 80%, rgba(244, 63, 94, 0.08) 0%, transparent 45%);
}

.section-customize {
    background: linear-gradient(135deg, #0f766e 0%, #115e59 40%, #134e4a 100%);
    overflow: hidden;
}

.section-customize-bg {
    background:
        radial-gradient(circle at 10% 50%, rgba(255,255,255,0.08) 0%, transparent 40%),
        radial-gradient(circle at 90% 30%, rgba(244, 63, 94, 0.15) 0%, transparent 35%);
}

.section-services {
    background: linear-gradient(180deg, #0f172a 0%, #1e293b 50%, #0f172a 100%);
    overflow: hidden;
}

.section-services-bg {
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.02'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.section-offers {
    background: linear-gradient(180deg, #fff7ed 0%, #ffedd5 40%, #fef3c7 100%);
    overflow: hidden;
}

.section-offers-bg {
    background: radial-gradient(ellipse at 70% 20%, rgba(251, 191, 36, 0.2) 0%, transparent 50%);
}

.section-about {
    background: linear-gradient(165deg, #ecfeff 0%, #e0f2fe 50%, #cffafe 100%);
    overflow: hidden;
}

.section-about-bg {
    background:
        radial-gradient(ellipse at 0% 100%, rgba(13, 148, 136, 0.1) 0%, transparent 50%),
        radial-gradient(ellipse at 100% 0%, rgba(14, 165, 233, 0.08) 0%, transparent 50%);
}

.section-testimonials {
    background: linear-gradient(180deg, #f0fdfa 0%, #ccfbf1 50%, #f0fdfa 100%);
    overflow: hidden;
}

.section-testimonials-bg {
    background: radial-gradient(circle at 50% 0%, rgba(13, 148, 136, 0.08) 0%, transparent 60%);
}

.section-gallery {
    background: linear-gradient(135deg, #134e4a 0%, #115e59 50%, #0f766e 100%);
    overflow: hidden;
}

.section-gallery-bg {
    background:
        radial-gradient(ellipse at 20% 80%, rgba(255,255,255,0.06) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 20%, rgba(244, 63, 94, 0.1) 0%, transparent 40%);
}

/* ── Wave dividers ── */
.wave-divider {
    line-height: 0;
    width: 100%;
    overflow: hidden;
}

.wave-divider .wave-svg {
    display: block;
    width: 100%;
    height: 52px;
}

@media (min-width: 768px) {
    .wave-divider .wave-svg {
        height: 68px;
    }
}

.wave-flip {
    transform: scaleY(-1);
}

.wave-divider-bottom {
    pointer-events: none;
}

@keyframes waveFloat {
    0%, 100% { transform: translateY(0); }
    50%      { transform: translateY(-5px); }
}

@keyframes waveDrift {
    0%, 100% { transform: translateX(0); }
    50%      { transform: translateX(-12px); }
}

.wave-animate .wave-layer-back {
    animation: waveDrift 9s ease-in-out infinite;
}

.wave-animate .wave-layer-front {
    animation: waveFloat 6s ease-in-out infinite;
}

@media (prefers-reduced-motion: reduce) {
    .wave-animate .wave-layer-back,
    .wave-animate .wave-layer-front {
        animation: none;
    }
}

.section-tag {
    display: inline-block;
    background: linear-gradient(135deg, rgba(13,148,136,0.1), rgba(244,63,94,0.1));
    color: var(--brand);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 0.4rem 1rem;
    border-radius: 9999px;
    border: 1px solid rgba(13,148,136,0.2);
}

.section-tag-light {
    background: rgba(255, 255, 255, 0.12);
    color: #99f6e4;
    border-color: rgba(255, 255, 255, 0.2);
}

/* ── Service cards (bento tiles) ── */
.service-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1.5rem;
    overflow: hidden;
    transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease, background 0.4s ease;
    backdrop-filter: blur(16px) saturate(180%);
    -webkit-backdrop-filter: blur(16px) saturate(180%);
}

.service-card:hover {
    transform: translateY(-6px);
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(13, 148, 136, 0.4);
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.3);
}

.service-card-image {
    flex: 1 1 auto;
    min-height: 4.5rem;
    position: relative;
    border-radius: 0;
}

.service-card-shine {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(15, 23, 42, 0.7) 0%, transparent 60%);
    pointer-events: none;
}

.service-card-body {
    flex: 0 0 auto;
    padding: 1.25rem;
}

/* ── Offer cards ── */
.offer-card {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-radius: 1.75rem;
    overflow: hidden;
    border: 1px solid rgba(251, 191, 36, 0.25);
    box-shadow: 0 8px 30px rgba(251, 191, 36, 0.12);
    transition: transform 0.4s ease, box-shadow 0.4s ease, background 0.4s ease;
}

.offer-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(251, 191, 36, 0.2);
}

.offer-card-image {
    height: 12rem;
    position: relative;
}

.offer-card-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #fbbf24 0%, #f97316 50%, #f43f5e 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: white;
}

.offer-card-placeholder span { font-size: 2.5rem; }
.offer-card-placeholder p { font-weight: 700; font-size: 0.875rem; }

.offer-card-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: linear-gradient(135deg, #f43f5e, #e11d48);
    color: white;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 0.35rem 0.75rem;
    border-radius: 9999px;
}

.offer-card-body { padding: 1.5rem; }

/* ── About photo grid ── */
.about-photo-grid {
    position: relative;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    min-height: 28rem;
}

.about-photo {
    border-radius: 1.25rem;
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(13, 148, 136, 0.15);
    transition: transform 0.4s ease;
}

.about-photo:hover { transform: scale(1.03); }

.about-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 10rem;
}

.about-photo-1 { grid-row: span 1; }
.about-photo-2 { margin-top: 2rem; }
.about-photo-3 { margin-top: -2rem; }
.about-photo-4 { }

.about-photo-accent {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 5rem;
    height: 5rem;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--brand), var(--accent));
    opacity: 0.2;
    filter: blur(20px);
    pointer-events: none;
    z-index: -1;
}

/* ── Gallery grid (bento mosaic) ── */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 160px;
    gap: 0.75rem;
}

@media (min-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(4, 1fr);
        grid-auto-rows: 180px;
        gap: 1rem;
    }
    .gallery-grid .gallery-item:nth-child(6n+1) {
        grid-column: span 2;
        grid-row: span 2;
    }
    .gallery-grid .gallery-item:nth-child(6n+4) {
        grid-row: span 2;
    }
}

.gallery-item {
    position: relative;
    border-radius: 1.25rem;
    overflow: hidden;
    transition: transform 0.4s ease;
    border: 1px solid rgba(255, 255, 255, 0.14);
}

.gallery-item:hover {
    transform: scale(1.04);
    border-color: rgba(255, 255, 255, 0.25);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.gallery-item:hover img { transform: scale(1.1); }

.gallery-video {
    width: 100%;
    height: 100%;
    background: rgba(15, 23, 42, 0.6);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    gap: 0.5rem;
}

.gallery-play {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.875rem;
}

.gallery-item-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(15, 23, 42, 0.8) 0%, transparent 50%);
    display: flex;
    align-items: flex-end;
    padding: 1rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item-overlay span {
    color: white;
    font-size: 0.875rem;
    font-weight: 600;
}

.gallery-item:hover .gallery-item-overlay { opacity: 1; }

.btn-outline-light {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    border: 2px solid rgba(255, 255, 255, 0.5);
    color: white;
    padding: 0.625rem 1.25rem;
    border-radius: 9999px;
    font-weight: 600;
    font-size: 0.875rem;
    transition: all 0.3s ease;
}

.btn-outline-light:hover {
    background: white;
    color: var(--brand-dark);
    border-color: white;
}

.empty-state {
    text-align: center;
    padding: 4rem 0;
}

.empty-state-icon {
    width: 5rem;
    height: 5rem;
    margin: 0 auto 1rem;
    border-radius: 50%;
    background: rgba(13, 148, 136, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.placeholder-img {
    background: linear-gradient(135deg, #0d9488 0%, #0f766e 40%, #134e4a 100%);
    position: relative;
    overflow: hidden;
}

.placeholder-img::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.08) 50%, transparent 100%);
    background-size: 200% 100%;
    animation: shimmer 3s infinite;
}

.hero-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,0.4);
    transition: all 0.3s;
    cursor: pointer;
}

.hero-dot.active {
    background: white;
    width: 28px;
    border-radius: 5px;
}

.stat-item {
    border-right: 1px solid rgba(255,255,255,0.15);
}

.stat-item:last-child { border-right: none; }

.testimonial-card {
    background: rgba(255, 255, 255, 0.55);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: 1.75rem;
    padding: 1.75rem;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.testimonial-card:hover {
    background: rgba(255, 255, 255, 0.72);
    border-color: rgba(13,148,136,0.35);
    box-shadow: 0 16px 48px rgba(13,148,136,0.15);
    transform: translateY(-4px);
}

@media (min-width: 768px) {
    .testimonial-card:nth-child(2) {
        transform: translateY(-14px);
    }
    .testimonial-card:nth-child(2):hover {
        transform: translateY(-18px);
    }
}

.testimonial-quote {
    position: absolute;
    top: 0.5rem;
    right: 1rem;
    font-size: 4rem;
    font-family: 'Playfair Display', serif;
    color: rgba(13, 148, 136, 0.12);
    line-height: 1;
    pointer-events: none;
}

.form-input {
    transition: border-color 0.3s, box-shadow 0.3s;
}

.form-input:focus {
    outline: none;
    border-color: var(--brand);
    box-shadow: 0 0 0 3px rgba(13, 148, 136, 0.15);
}

.page-hero {
    background: linear-gradient(135deg, var(--navy) 0%, #134e4a 100%);
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.page-hero-back {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.16);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 0.5rem 1.1rem;
    border-radius: 9999px;
    transition: all 0.3s ease;
}

.page-hero-back:hover {
    background: rgba(255, 255, 255, 0.16);
    border-color: rgba(255, 255, 255, 0.3);
}

.mobile-menu {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(24px) saturate(180%);
    -webkit-backdrop-filter: blur(24px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.6);
    box-shadow: 0 24px 60px rgba(15, 23, 42, 0.25);
    transform: translateX(120%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-menu.open {
    transform: translateX(0);
}

.success-toast {
    animation: fadeUp 0.5s ease forwards;
}

.footer-dark {
    background: linear-gradient(180deg, #0f172a 0%, #020617 100%);
}
