/* ==========================================================================
   YAANRUP DESIGNER — APPLE DYNAMIC ISLAND & WEICHIE LUXURY
   Added Before/After Transformation Slider, YAANRUP Logo, Mobile Email Fix,
   Ultra-Fast Sub-Second Image Loading & GPU Acceleration, 10x Massive Footer Logo
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Dela+Gothic+One&family=Outfit:wght@400;500;600;700;800;900&family=Syne:wght@700;800&display=swap');

:root {
    --bg-main: #0a0a0a;
    --bg-card: rgba(255, 255, 255, 0.035);
    --bg-card-hover: rgba(255, 255, 255, 0.065);
    --glass-bg: rgba(255, 255, 255, 0.045);
    --glass-border: rgba(255, 255, 255, 0.11);
    --glass-border-hover: rgba(255, 255, 255, 0.28);
    --glass-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.15), 0 16px 40px rgba(0, 0, 0, 0.7);
    --accent-orange: #ff6a00;
    --accent-orange-hover: #ff7e1a;
    --accent-orange-glow: rgba(255, 106, 0, 0.45);
    --accent-lime: #e2fd52;
    --text-primary: #ffffff;
    --text-secondary: #a3a3a3;
    --text-muted: #6b7280;
    --star-color: #facc15;
    /* Bright golden yellow star color */
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 22px;
    --radius-pill: 9999px;
    --transition-fast: 0.2s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-smooth: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --max-width: 1200px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

html {
    scroll-behavior: smooth;
    background-color: var(--bg-main);
    color: var(--text-primary);
}

body {
    background-color: #0d0d0d;
    color: #ffffff;
    overflow-x: hidden;
    line-height: 1.6;
    position: relative;
}

/* GPU Hardware Acceleration for all images so they render instantly */
img {
    max-width: 100%;
    height: auto;
    display: block;
    transform: translateZ(0);
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    image-rendering: -webkit-optimize-contrast;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-fast);
}

button,
.btn {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}

::-webkit-scrollbar-track {
    background: #0d0d0d;
}

::-webkit-scrollbar-thumb {
    background: #2b2b2b;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #444444;
}

/* ==========================================================================
   SMOOTH SCROLL REVEAL (INTERSECTION OBSERVER)
   ========================================================================== */
.scroll-reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: opacity, transform;
}

.scroll-reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* ==========================================================================
   NAVIGATION MENU BAR (APPLE DYNAMIC ISLAND LUXURY PILL + YAANRUP LOGO)
   ========================================================================== */
.site-header {
    position: fixed;
    top: 18px;
    left: 50%;
    transform: translateX(-50%) translateZ(0);
    width: calc(100% - 36px);
    max-width: 960px;
    height: 60px;
    background: rgba(16, 16, 16, 0.85);
    backdrop-filter: blur(36px);
    -webkit-backdrop-filter: blur(36px);
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: var(--radius-pill);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 26px;
    z-index: 1000;
    box-shadow: inset 0 1px 2px rgba(255, 255, 255, 0.18), 0 12px 35px rgba(0, 0, 0, 0.7);
    transition: var(--transition-smooth);
    will-change: transform, background, border-color;
}

.site-header.scrolled {
    background: rgba(10, 10, 10, 0.95);
    border-color: rgba(255, 255, 255, 0.24);
    box-shadow: inset 0 1px 2px rgba(255, 255, 255, 0.22), 0 18px 40px rgba(0, 0, 0, 0.9);
}

.logo-link {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Outfit', 'Inter', sans-serif;
    font-size: 1.25rem;
    font-weight: 800;
    letter-spacing: -0.4px;
    color: #ffffff;
}

.header-logo-img {
    height: 34px;
    width: auto;
    object-fit: contain;
    display: block;
    filter: drop-shadow(0 2px 8px rgba(255, 106, 0, 0.45));
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 28px;
}

.nav-link {
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--text-secondary);
    position: relative;
    padding: 6px 0;
    transition: var(--transition-fast);
}

.nav-link:hover,
.nav-link.active {
    color: #ffffff;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #ffffff;
    transition: var(--transition-fast);
    border-radius: 2px;
}

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

.header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.btn-nav-contact {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 20px;
    border-radius: var(--radius-pill);
    font-size: 0.85rem;
    font-weight: 600;
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(10px);
    transition: var(--transition-fast);
}

.btn-nav-contact:hover {
    background: rgba(255, 255, 255, 0.16);
    border-color: rgba(255, 255, 255, 0.35);
    transform: translateY(-1px);
}

.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 22px;
    height: 16px;
    cursor: pointer;
    z-index: 1001;
}

.hamburger span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: #fff;
    transition: var(--transition-fast);
}

/* ==========================================================================
   HERO SECTION EXACT BADIS DESIGNS & WEICHIE LUXURY UPGRADE
   ========================================================================== */
.hero-section {
    position: relative;
    width: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 120px 20px 70px;
    background-color: #0c0c0c;
}

.hero-bg-sliders {
    position: absolute;
    top: -5%;
    left: -5%;
    width: 110%;
    height: 110%;
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 14px;
    opacity: 0.88;
    z-index: 1;
    pointer-events: none;
    transform: rotate(-1.5deg) scale(1.02);
}

.loop-column {
    display: flex;
    flex-direction: column;
    gap: 14px;
    overflow: hidden;
}

.loop-inner {
    display: flex;
    flex-direction: column;
    gap: 14px;
    animation: scrollVertical linear infinite;
    will-change: transform;
}

.loop-column.reverse .loop-inner {
    animation-direction: reverse;
}

@keyframes scrollVertical {
    0% {
        transform: translate3d(0, 0, 0);
    }

    100% {
        transform: translate3d(0, -50%, 0);
    }
}

.slider-thumb-item {
    width: 100%;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.16);
    background: #181818;
    transform: translateZ(0);
}

.slider-thumb-item img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    aspect-ratio: 16/9;
}

.hero-gradient-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(12, 12, 12, 0.35) 0%, rgba(12, 12, 12, 0.82) 75%),
        linear-gradient(180deg, rgba(12, 12, 12, 0.1) 0%, #0d0d0d 96%);
    z-index: 2;
}

/* Ambient Backlight Glow Behind Hero Statement */
.hero-ambient-glow {
    position: absolute;
    width: 550px;
    height: 550px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 106, 0, 0.22) 0%, rgba(255, 106, 0, 0) 70%);
    z-index: 3;
    pointer-events: none;
    filter: blur(40px);
    animation: pulseAmbient 6s ease-in-out infinite alternate;
}

@keyframes pulseAmbient {
    0% {
        transform: scale(0.9);
        opacity: 0.7;
    }

    100% {
        transform: scale(1.15);
        opacity: 1;
    }
}

.hero-container {
    position: relative;
    z-index: 5;
    max-width: 860px;
    margin: 0 auto;
    text-align: center;
    padding: 0 16px;
}

/* Sleek Apple Liquid Glass Badge above Hero Title */
.hero-top-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 18px;
    border-radius: var(--radius-pill);
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.22);
    color: #ffffff;
    font-size: 0.82rem;
    font-weight: 700;
    margin-bottom: 22px;
    backdrop-filter: blur(14px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
    letter-spacing: 0.5px;
}

.hero-title {
    font-family: 'Dela Gothic One', 'Outfit', sans-serif;
    font-size: clamp(2.8rem, 6.8vw, 5.4rem);
    font-weight: 900;
    line-height: 1.02;
    text-transform: uppercase;
    letter-spacing: -2px;
    margin-bottom: 24px;
    color: #ffffff;
    text-shadow: 0 12px 35px rgba(0, 0, 0, 0.95), 0 2px 10px rgba(255, 255, 255, 0.3);
    position: relative;
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: #f3f4f6;
    max-width: 620px;
    margin: 0 auto 32px;
    line-height: 1.6;
    font-weight: 500;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.9);
}

.hero-cta-group {
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-hero-orange {
    background: var(--accent-orange);
    color: #ffffff;
    padding: 15px 34px;
    font-size: 1rem;
    font-weight: 700;
    border-radius: var(--radius-pill);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 6px 25px var(--accent-orange-glow);
    transition: var(--transition-smooth);
}

.btn-hero-orange:hover {
    background: var(--accent-orange-hover);
    transform: translateY(-2px);
    box-shadow: 0 10px 35px rgba(255, 106, 0, 0.65);
}

/* ==========================================================================
   TRUSTED BY CREATORS
   ========================================================================== */
.trusted-section {
    padding: 24px 20px 50px;
    max-width: var(--max-width);
    margin: 0 auto;
    position: relative;
    z-index: 5;
    text-align: center;
}

.trusted-badge-box {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(15px);
    padding: 10px 22px;
    border-radius: var(--radius-pill);
    margin-bottom: 18px;
    box-shadow: var(--glass-shadow);
}

.stars-row {
    color: var(--star-color);
    /* Bright Golden Yellow #facc15 */
    font-size: 1rem;
    letter-spacing: 2px;
}

.trusted-text {
    font-weight: 700;
    font-size: 0.88rem;
    color: #ffffff;
}

.trusted-title {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(1.4rem, 3.2vw, 2rem);
    font-weight: 700;
    color: #ffffff;
    line-height: 1.3;
}

.trusted-title span {
    color: var(--text-secondary);
}

/* ==========================================================================
   ABOUT ME SECTION ("WHAT'S UP" - SIMPLE ELEGANT TEXT WITHOUT CARD)
   ========================================================================== */
.about-simple-section {
    padding: 30px 24px 44px;
    max-width: 780px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 5;
}

.about-simple-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
}

.about-simple-title {
    font-family: 'Dela Gothic One', 'Outfit', sans-serif;
    font-size: clamp(2rem, 4.2vw, 3rem);
    font-weight: 900;
    color: #ffffff;
    line-height: 1.25;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.about-simple-title span {
    color: var(--accent-orange);
}

.about-simple-bio {
    font-size: clamp(1rem, 2vw, 1.15rem);
    color: #d1d5db;
    max-width: 720px;
    margin: 0 auto;
    line-height: 1.8;
    font-weight: 400;
}

.about-simple-bio .highlight-orange {
    color: var(--accent-orange);
    font-weight: 700;
}

/* ==========================================================================
   BEFORE / AFTER THUMBNAIL TRANSFORMATION SLIDER (APPLE LIQUID GLASS)
   ========================================================================== */
.before-after-wrapper {
    max-width: 960px;
    margin: 0 auto;
    position: relative;
    border-radius: var(--radius-xl);
    padding: 10px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(28px);
    -webkit-backdrop-filter: blur(28px);
    box-shadow: var(--glass-shadow);
}

.ba-container {
    position: relative;
    width: 100%;
    aspect-ratio: 16/9;
    border-radius: 16px;
    overflow: hidden;
    cursor: ew-resize;
    user-select: none;
    -webkit-user-select: none;
    background: #111111;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.12);
}

.ba-image-after,
.ba-image-before {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.ba-image-after img,
.ba-image-before img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    pointer-events: none;
}

.raw-before-filter {
    filter: none;
    /* Authentic user provided before photo */
}

.ba-image-before {
    width: 100%;
    height: 100%;
    clip-path: inset(0 50% 0 0);
    /* Default starting split */
    -webkit-clip-path: inset(0 50% 0 0);
    will-change: clip-path;
}

.ba-image-before img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    pointer-events: none;
}

.ba-badge {
    position: absolute;
    top: 20px;
    padding: 6px 16px;
    border-radius: var(--radius-pill);
    font-size: 0.85rem;
    font-weight: 800;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    z-index: 10;
    pointer-events: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.6);
}

.before-badge {
    left: 20px;
    background: rgba(0, 0, 0, 0.75);
    color: #e5e5e5;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.after-badge {
    right: 20px;
    background: var(--accent-orange);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.35);
    box-shadow: 0 4px 18px var(--accent-orange-glow);
}

.ba-handle {
    position: absolute;
    top: 0;
    left: 50%;
    width: 44px;
    height: 100%;
    transform: translateX(-50%);
    pointer-events: none;
    z-index: 15;
    will-change: left;
}

.ba-line {
    position: absolute;
    top: 0;
    left: 50%;
    width: 2px;
    height: 100%;
    background: #ffffff;
    transform: translateX(-50%);
    box-shadow: 0 0 12px var(--accent-orange), 0 0 4px rgba(0, 0, 0, 0.6);
}

.ba-button {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--accent-orange);
    border: 2px solid #ffffff;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translate(-50%, -50%);
    box-shadow: 0 4px 20px var(--accent-orange-glow), 0 0 0 6px rgba(255, 106, 0, 0.22);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.ba-container:hover .ba-button {
    transform: translate(-50%, -50%) scale(1.1);
    box-shadow: 0 6px 25px var(--accent-orange-glow), 0 0 0 10px rgba(255, 106, 0, 0.35);
}

/* ==========================================================================
   SECTION HEADINGS & LAYOUTS
   ========================================================================== */
.section-container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 64px 24px;
}

.section-header {
    text-align: center;
    margin-bottom: 40px;
}

.section-title {
    font-family: 'Outfit', 'Inter', sans-serif;
    font-size: clamp(2rem, 4.2vw, 3rem);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 12px;
    letter-spacing: -1px;
    color: #ffffff;
}

.section-subtitle {
    color: var(--text-secondary);
    font-size: 1rem;
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.6;
}

/* ==========================================================================
   FEATURED THUMBNAILS (PORTFOLIO GRID) - HIDDEN FILENAMES FOR MAXIMUM IMPACT
   ========================================================================== */
.thumbnails-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
}

.thumb-card {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.45);
    transition: var(--transition-smooth);
    cursor: pointer;
    aspect-ratio: 16/9;
    transform: translateZ(0);
}

.thumb-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    transform: translateZ(0);
}

/* Hide thumbnail overlay filenames permanently */
.thumb-card-overlay {
    display: none !important;
}

.thumb-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.32);
    box-shadow: 0 16px 35px rgba(0, 0, 0, 0.75);
}

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

/* ==========================================================================
   CLIENT REVIEWS (FIRST LETTER PROFILE PIC + YOUTUBER SUBTITLE + YELLOW STARS)
   ========================================================================== */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 20px;
}

.review-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-radius: var(--radius-lg);
    padding: 26px 24px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: var(--glass-shadow);
    transition: var(--transition-fast);
    position: relative;
    overflow: hidden;
}

.review-card:hover {
    border-color: rgba(255, 255, 255, 0.24);
    transform: translateY(-4px);
    background: rgba(255, 255, 255, 0.07);
}

.review-card-profile-only {
    justify-content: center;
    padding: 22px 24px;
}

.review-stars {
    color: var(--star-color);
    /* Bright Golden Yellow #facc15 */
    font-size: 0.95rem;
    margin-bottom: 14px;
    letter-spacing: 3px;
}

.review-text {
    font-size: 0.92rem;
    color: #b3b3b3;
    line-height: 1.65;
    margin-bottom: 24px;
    flex-grow: 1;
}

/* Author Row with First-Letter Profile Picture Circle and YouTuber subtitle */
.review-author {
    display: flex;
    align-items: center;
    gap: 14px;
}

.author-avatar-initial {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #1c1c1c;
    border: 1px solid rgba(255, 255, 255, 0.18);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    color: #ffffff;
    font-size: 1.15rem;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
}

.author-avatar-img {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;
    border: 1px solid rgba(255, 255, 255, 0.18);
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
}

.author-avatar-link {
    display: inline-flex;
    text-decoration: none;
    transition: transform 0.2s ease;
}

.author-avatar-link:hover {
    transform: scale(1.08);
}

.review-author-link {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.2s ease;
}

.review-author-link:hover {
    color: var(--accent-orange);
}

.youtuber-sub-link {
    font-size: 0.82rem;
    color: var(--text-secondary);
    font-weight: 500;
    text-decoration: none;
    transition: color 0.2s ease;
}

.youtuber-sub-link:hover {
    color: var(--accent-orange);
}

.author-info h4,
.review-author-title {
    font-size: 0.98rem;
    font-weight: 800;
    color: #ffffff;
    margin: 0;
    line-height: 1.38;
    word-break: break-word;
    overflow-wrap: anywhere;
    display: block;
}

.review-author-link,
.review-author-name {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.2s ease;
    display: inline;
    word-break: break-word;
    overflow-wrap: anywhere;
}

.review-author-link:hover {
    color: var(--accent-orange);
}

.author-info span.youtuber-sub {
    font-size: 0.82rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.verified-icon {
    color: #38bdf8;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    vertical-align: -0.125em;
    margin-left: 5px;
    margin-right: 3px;
    flex-shrink: 0;
    white-space: nowrap;
}

.verified-icon svg {
    flex-shrink: 0;
    display: block;
}

.author-arrow {
    font-size: 0.85em;
    opacity: 0.75;
    margin-left: 1px;
    display: inline;
    white-space: nowrap;
}

/* ==========================================================================
   SERVICE GUIDE CARD (BADIS DESIGNS REFERENCE SCREENSHOT 3 - NO LIVE BADGE)
   ========================================================================== */
.guide-box-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(28px);
    -webkit-backdrop-filter: blur(28px);
    border-radius: var(--radius-xl);
    padding: 36px;
    display: grid;
    grid-template-columns: 1fr 1.15fr;
    gap: 40px;
    align-items: center;
    box-shadow: var(--glass-shadow);
    position: relative;
    overflow: hidden;
}

.guide-preview-card {
    background: #141414;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.7);
    display: flex;
    flex-direction: column;
}

.guide-thumb-wrap {
    position: relative;
    width: 100%;
    aspect-ratio: 16/9;
    background: #181818;
    overflow: hidden;
}

.guide-thumb-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.guide-preview-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 22px;
    background: #1a1a1a;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.guide-preview-author {
    font-size: 1.05rem;
    font-weight: 800;
    color: #ffffff;
    display: flex;
    align-items: center;
    gap: 8px;
}

.guide-content {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.live-status-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.16);
    color: #e5e5e5;
    font-size: 0.84rem;
    font-weight: 700;
    padding: 6px 16px;
    border-radius: var(--radius-pill);
    width: fit-content;
}

.status-dot-orange {
    width: 8px;
    height: 8px;
    background-color: var(--accent-orange);
    border-radius: 50%;
    display: inline-block;
    box-shadow: 0 0 10px var(--accent-orange);
    animation: pulseOrange 2s infinite;
}

@keyframes pulseOrange {
    0% {
        transform: scale(0.95);
        opacity: 0.8;
    }

    50% {
        transform: scale(1.3);
        opacity: 1;
    }

    100% {
        transform: scale(0.95);
        opacity: 0.8;
    }
}

.guide-title {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(1.8rem, 3.2vw, 2.5rem);
    font-weight: 800;
    line-height: 1.2;
    color: #ffffff;
}

.guide-description {
    font-size: 0.96rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.stats-checklist {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.stats-checklist li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.94rem;
    color: #e5e7eb;
    line-height: 1.5;
}

.check-icon-orange {
    color: var(--accent-orange);
    font-weight: 800;
    font-size: 1.15rem;
    flex-shrink: 0;
}

.guide-actions-row {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
    margin-top: 8px;
}

.guide-trusted-block {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.guide-trusted-stars {
    color: var(--star-color);
    /* Bright Golden Yellow #facc15 */
    font-size: 0.95rem;
    letter-spacing: 2px;
}

.guide-trusted-text {
    font-size: 0.82rem;
    color: var(--text-muted);
    font-weight: 600;
}

/* ==========================================================================
   FAQ ACCORDION
   ========================================================================== */
.faq-list {
    max-width: 760px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.faq-item {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(20px);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: var(--transition-fast);
}

.faq-item.active {
    border-color: rgba(255, 255, 255, 0.28);
    background: rgba(255, 255, 255, 0.08);
}

.faq-question {
    width: 100%;
    padding: 20px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-align: left;
    font-size: 1rem;
    font-weight: 700;
    color: #ffffff;
    cursor: pointer;
}

.faq-icon {
    width: 20px;
    height: 20px;
    position: relative;
    flex-shrink: 0;
    margin-left: 14px;
}

.faq-icon .bar-1,
.faq-icon .bar-2 {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 14px;
    height: 2px;
    background-color: #ffffff;
    transform: translate(-50%, -50%);
    transition: var(--transition-fast);
}

.faq-icon .bar-2 {
    transform: translate(-50%, -50%) rotate(90deg);
}

.faq-item.active .faq-icon .bar-2 {
    transform: translate(-50%, -50%) rotate(0deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-answer-inner {
    padding: 0 24px 22px;
    color: var(--text-secondary);
    font-size: 0.92rem;
    line-height: 1.7;
}

/* ==========================================================================
   CONTACT & BOOKING DASHBOARD (APPLE LIQUID GLASS & INTERACTIVE CUTE PILLS)
   ========================================================================== */
.contact-dashboard {
    max-width: 860px;
    margin: 0 auto;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(28px);
    -webkit-backdrop-filter: blur(28px);
    border-radius: var(--radius-xl);
    padding: 44px;
    box-shadow: var(--glass-shadow);
    display: flex;
    flex-direction: column;
    gap: 32px;
    position: relative;
    overflow: hidden;
}

.contact-dashboard::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 250px;
    height: 250px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 106, 0, 0.18) 0%, rgba(255, 106, 0, 0) 70%);
    pointer-events: none;
}

.contact-email-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    background: rgba(0, 0, 0, 0.45);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 18px;
    padding: 22px 26px;
    flex-wrap: wrap;
    transition: var(--transition-fast);
}

.contact-email-card:hover {
    border-color: rgba(255, 255, 255, 0.28);
    background: rgba(0, 0, 0, 0.6);
}

.email-display-col {
    display: flex;
    flex-direction: column;
    gap: 4px;
    max-width: 100%;
}

.email-display-col h3 {
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--accent-orange);
    font-weight: 800;
    display: flex;
    align-items: center;
    gap: 6px;
}

/* Responsive clamp + word break so email address NEVER clips on mobile devices */
.email-display-col p {
    font-size: clamp(0.92rem, 4.5vw, 1.25rem);
    font-weight: 800;
    color: #ffffff;
    word-break: break-all;
    overflow-wrap: anywhere;
    line-height: 1.4;
}

.copy-btn {
    background: #ffffff;
    color: #111111;
    font-weight: 700;
    padding: 13px 24px;
    border-radius: var(--radius-pill);
    font-size: 0.9rem;
    transition: var(--transition-fast);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.2);
    flex-shrink: 0;
}

.copy-btn:hover {
    background: var(--accent-orange);
    color: #ffffff;
    transform: scale(1.03);
    box-shadow: 0 6px 20px var(--accent-orange-glow);
}

/* Simple, Normal Good Design for Cal.com Button */
.cal-cute-group {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
}

.btn-cal-cute {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 13px 26px;
    border-radius: var(--radius-pill);
    background: var(--accent-orange);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #ffffff;
    font-size: 0.95rem;
    font-weight: 700;
    transition: var(--transition-smooth);
    box-shadow: 0 4px 18px var(--accent-orange-glow);
    text-decoration: none;
    white-space: nowrap;
}

.btn-cal-cute:hover {
    background: var(--accent-orange-hover);
    border-color: rgba(255, 255, 255, 0.4);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 106, 0, 0.65);
}

.cute-arrow {
    transition: transform 0.2s ease;
    font-weight: 800;
}

.btn-cal-cute:hover .cute-arrow {
    transform: translateX(4px);
}

/* ==========================================================================
   FOOTER (10X MASSIVE LOGO BRAND SIGNATURE + LUXURY STUDIO DESIGN)
   ========================================================================== */
.site-footer {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    background: linear-gradient(180deg, #0a0a0a 0%, #050505 100%);
    padding: 70px 24px 38px;
    position: relative;
    overflow: hidden;
}

.footer-container {
    max-width: var(--max-width);
    margin: 0 auto;
}

.footer-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 36px;
    margin-bottom: 48px;
}

.footer-brand-col {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 22px;
}

/* 10x Massive Footer Brand Logo & Typography */
.footer-logo-link {
    display: flex;
    align-items: center;
    gap: 24px;
    font-family: 'Dela Gothic One', 'Outfit', 'Inter', sans-serif;
    font-size: clamp(2.8rem, 6.5vw, 4.8rem);
    font-weight: 900;
    letter-spacing: -2px;
    color: #ffffff;
    line-height: 1;
    text-transform: uppercase;
}

.footer-logo-img {
    height: clamp(85px, 11vw, 140px);
    width: auto;
    object-fit: contain;
    display: block;
    filter: drop-shadow(0 6px 25px rgba(255, 106, 0, 0.75));
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.footer-logo-link:hover .footer-logo-img {
    transform: scale(1.08) rotate(-3deg);
}

.footer-status-pill {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.16);
    font-size: 0.85rem;
    padding: 7px 18px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
}

.footer-actions-col {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 16px;
    max-width: 440px;
    text-align: right;
}

.footer-actions-row {
    display: flex;
    align-items: center;
    gap: 18px;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.footer-portfolio-note {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.65;
    font-weight: 400;
}

.footer-portfolio-note a {
    color: #ffffff;
    font-weight: 700;
    text-decoration: underline;
    text-underline-offset: 4px;
    transition: var(--transition-fast);
}

.footer-portfolio-note a:hover {
    color: var(--accent-orange);
}

.footer-email-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    padding: 11px 22px;
    border-radius: var(--radius-pill);
    font-size: clamp(0.82rem, 3.8vw, 0.9rem);
    font-weight: 700;
    color: #ffffff;
    transition: var(--transition-fast);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
    word-break: break-all;
    overflow-wrap: anywhere;
    max-width: 100%;
}

.footer-email-btn:hover {
    border-color: var(--accent-orange);
    background: rgba(255, 255, 255, 0.12);
    box-shadow: 0 6px 20px var(--accent-orange-glow);
}

.footer-socials {
    display: flex;
    align-items: center;
    gap: 12px;
}

.social-link {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    transition: var(--transition-fast);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
}

.social-link:hover {
    background: #ffffff;
    color: #111111;
    border-color: #ffffff;
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(255, 106, 0, 0.35);
}

.footer-divider {
    border: none;
    height: 1px;
    background: rgba(255, 255, 255, 0.08);
    margin: 26px 0;
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 18px;
}

.footer-links {
    display: flex;
    align-items: center;
    gap: 22px;
    flex-wrap: wrap;
}

.footer-links a {
    font-size: 0.86rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.footer-links a:hover {
    color: #ffffff;
}

.footer-copy {
    font-size: 0.82rem;
    color: var(--text-muted);
}

/* ==========================================================================
   LIGHTBOX FULLSCREEN MODAL
   ========================================================================== */
.lightbox-modal {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.92);
    backdrop-filter: blur(20px);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.lightbox-modal.active {
    opacity: 1;
    pointer-events: auto;
}

.lightbox-content {
    max-width: 1100px;
    max-height: 85vh;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.18);
    position: relative;
    transform: scale(0.95);
    transition: transform 0.3s ease;
}

.lightbox-modal.active .lightbox-content {
    transform: scale(1);
}

.lightbox-img {
    max-width: 100%;
    max-height: 85vh;
    display: block;
    object-fit: contain;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 24px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(20, 20, 20, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    font-size: 1.3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-fast);
}

.lightbox-close:hover {
    background: #ffffff;
    color: #111;
}

/* ==========================================================================
   TOAST NOTIFICATION
   ========================================================================== */
.toast-notification {
    position: fixed;
    bottom: 26px;
    right: 26px;
    background: rgba(25, 25, 25, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(15px);
    color: #ffffff;
    padding: 14px 22px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.7);
    z-index: 10001;
    transform: translateY(100px);
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.toast-notification.show {
    transform: translateY(0);
    opacity: 1;
}

.toast-icon {
    color: #4ade80;
    font-size: 1.2rem;
}

/* ==========================================================================
   POLICIES & TERMS DEDICATED PAGES CSS
   ========================================================================== */
.policies-page-wrap {
    padding-top: 110px;
    padding-bottom: 80px;
    min-height: 100vh;
}

.policies-hero {
    text-align: center;
    margin-bottom: 44px;
}

.policies-hero h1 {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(2.2rem, 4.5vw, 3.4rem);
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 12px;
}

.policies-hero p {
    color: var(--text-secondary);
    font-size: 1.05rem;
    max-width: 680px;
    margin: 0 auto;
}

.policies-simple-box {
    max-width: 900px;
    margin: 0 auto;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(28px);
    -webkit-backdrop-filter: blur(28px);
    border-radius: var(--radius-xl);
    padding: 48px;
    box-shadow: var(--glass-shadow);
}

.policy-block {
    margin-bottom: 40px;
}

.policy-block:last-child {
    margin-bottom: 0;
}

.policy-block h2 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.6rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 12px;
}

.policy-block ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.policy-block li {
    font-size: 0.96rem;
    color: var(--text-secondary);
    line-height: 1.7;
    position: relative;
    padding-left: 20px;
}

.policy-block li::before {
    content: "•";
    position: absolute;
    left: 0;
    top: 0;
    color: var(--accent-orange);
    font-weight: 800;
}

.policy-block li strong {
    color: #ffffff;
    font-weight: 700;
}

/* ==========================================================================
   MOBILE & RESPONSIVE AUTO LAYOUT BREAKPOINTS (HIDE MENU CONTACT BTN ON MOBILE)
   ========================================================================== */
@media (max-width: 1024px) {
    .guide-box-card {
        grid-template-columns: 1fr;
        padding: 32px;
    }

    .hero-bg-sliders {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 768px) {
    .site-header {
        height: 54px;
        padding: 0 18px;
    }

    /* Hide Contact button in menu bar on mobile layout */
    .btn-nav-contact {
        display: none !important;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 66px;
        left: 0;
        width: 100%;
        background: rgba(15, 15, 15, 0.97);
        backdrop-filter: blur(30px);
        border: 1px solid var(--glass-border);
        border-radius: 18px;
        flex-direction: column;
        padding: 24px;
        gap: 18px;
        box-shadow: 0 20px 50px rgba(0, 0, 0, 0.9);
    }

    .nav-links.open {
        display: flex;
    }

    .hamburger {
        display: flex;
    }

    .hero-section {
        padding: 100px 16px 50px;
    }

    .hero-bg-sliders {
        grid-template-columns: repeat(3, 1fr);
        top: -5%;
        left: -10%;
        width: 120%;
        opacity: 0.85;
    }

    .hero-title {
        letter-spacing: -1px;
        margin-bottom: 18px;
    }

    .about-simple-section {
        padding: 24px 18px 32px;
    }

    .reviews-grid {
        grid-template-columns: 1fr;
    }

    .review-author {
        gap: 12px;
    }

    .author-info h4,
    .review-author-title {
        font-size: 0.95rem;
        line-height: 1.38;
    }

    .verified-icon {
        margin-left: 4px;
        margin-right: 2px;
    }

    .thumbnails-grid {
        grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
        gap: 16px;
    }

    .guide-box-card {
        padding: 24px;
    }

    .contact-dashboard {
        padding: 24px 18px;
        gap: 24px;
    }

    .contact-email-card {
        flex-direction: column;
        align-items: flex-start;
        padding: 20px 18px;
        gap: 16px;
        width: 100%;
    }

    .email-display-col {
        width: 100%;
    }

    .email-display-col p {
        font-size: clamp(0.95rem, 5vw, 1.15rem);
        word-break: break-all;
        overflow-wrap: anywhere;
    }

    /* Compact, sleek buttons on mobile (Fixing oversized buttons) */
    .btn-hero-orange {
        padding: 11px 22px;
        font-size: 0.88rem;
        gap: 8px;
        width: auto;
    }

    .copy-btn {
        width: auto !important;
        padding: 10px 18px;
        font-size: 0.84rem;
        align-self: flex-start;
        justify-content: center;
    }

    .cal-cute-group {
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        gap: 10px;
        align-items: center;
        justify-content: flex-start;
    }

    .btn-cal-cute {
        width: auto !important;
        padding: 9px 16px;
        font-size: 0.82rem;
        gap: 8px;
        justify-content: center;
    }

    .footer-top {
        flex-direction: column;
        align-items: flex-start;
        gap: 24px;
    }

    .footer-actions-col {
        width: 100%;
        align-items: flex-start;
        text-align: left;
    }

    .footer-actions-row {
        width: 100%;
        justify-content: flex-start;
    }

    .policies-simple-box {
        padding: 28px 20px;
    }

    .ba-badge {
        font-size: 0.68rem;
        padding: 4px 10px;
        top: 12px;
    }

    .before-badge {
        left: 12px;
    }

    .after-badge {
        right: 12px;
    }

    .ba-button {
        width: 40px;
        height: 40px;
    }
}

@media (max-width: 480px) {
    .review-card {
        padding: 20px 18px;
    }

    .author-info h4,
    .review-author-title {
        font-size: 0.92rem;
        line-height: 1.38;
    }

    .verified-icon {
        margin-left: 4px;
        margin-right: 2px;
    }
}

/* ==========================================================================
   FULLSCREEN ULTRA-FAST PRELOADER (2-Second 3-Blink Logo Animation)
   ========================================================================== */
.site-preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: #060608;
    z-index: 999999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.5s ease;
    opacity: 1;
    visibility: visible;
}

.site-preloader.fade-out {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.preloader-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    animation: preloaderLogoBlink 2s ease-in-out forwards;
}

.preloader-logo {
    width: clamp(280px, 65vw, 680px);
    height: auto;
    max-height: 85vh;
    object-fit: contain;
    will-change: opacity;
}

/* Simple 2-Second Animation that blinks EXACTLY 3 times (no glow, simple opacity blink) */
@keyframes preloaderLogoBlink {
    0% {
        opacity: 0;
    }

    15% {
        opacity: 1;
    }

    30% {
        opacity: 0.1;
    }

    45% {
        opacity: 1;
    }

    60% {
        opacity: 0.1;
    }

    80% {
        opacity: 1;
    }

    100% {
        opacity: 1;
    }
}