/* ============================================
   JADO STAR PICTURES — PREMIUM THEME
   Black & Gold · Pinterest-style masonry
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Fraunces:ital,opsz,wght@0,9..144,400;0,9..144,500;0,9..144,600;1,9..144,500&display=swap');

:root {
    /* Palette */
    --primary: #D4AF37;
    --primary-dark: #B8960F;
    --primary-light: #FFD700;
    --background: #090909;
    --surface: #141414;
    --surface-light: #1A1A1A;
    --surface-raised: #1F1F1F;
    --border: #2B2B2B;
    --border-light: #3A3A3A;
    --text: #F8F8F8;
    --text-secondary: #9B9B9B;
    --text-muted: #5C5C5C;
    --accent: #FFD700;
    --danger: #E5484D;
    --success: #34C77B;
    --warning: #F5A623;
    --info: #4DA8DA;

    /* Glass / shadow */
    --glass-bg: rgba(20, 20, 20, 0.72);
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
    --shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.55);
    --shadow-gold: 0 12px 40px rgba(212, 175, 55, 0.18);

    /* Radius */
    --radius-xs: 6px;
    --radius-sm: 10px;
    --radius: 18px;
    --radius-lg: 28px;
    --radius-full: 999px;

    /* Motion */
    --ease: cubic-bezier(0.4, 0, 0.2, 1);
    --ease-out-back: cubic-bezier(0.34, 1.56, 0.64, 1);
    --transition: all 0.3s var(--ease);
    --transition-slow: all 0.6s var(--ease);

    /* Type */
    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-display: 'Fraunces', Georgia, serif;

    /* Spacing scale */
    --sp-1: 4px;
    --sp-2: 8px;
    --sp-3: 12px;
    --sp-4: 16px;
    --sp-5: 24px;
    --sp-6: 32px;
    --sp-7: 48px;
    --sp-8: 64px;
    --sp-9: 96px;
}

/* Reset & Base */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
}

body {
    font-family: var(--font-family);
    background: var(--background);
    color: var(--text);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

:focus-visible {
    outline: 2px solid var(--primary);
    outline-offset: 2px;
    border-radius: var(--radius-xs);
}

::-webkit-scrollbar { width: 8px; height: 8px; }
::-webkit-scrollbar-track { background: var(--surface); }
::-webkit-scrollbar-thumb { background: var(--primary); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--primary-dark); }

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 600;
    line-height: 1.1;
    letter-spacing: -0.01em;
    margin-bottom: var(--sp-4);
}

h1 { font-size: clamp(2.5rem, 5vw, 4.75rem); font-weight: 500; }
h2 { font-size: clamp(2rem, 3.4vw, 3rem); }
h3 { font-size: 1.75rem; }
h4 { font-size: 1.35rem; font-family: var(--font-family); font-weight: 600; }
h5 { font-size: 1.1rem; font-family: var(--font-family); font-weight: 600; }
h6 { font-size: 0.95rem; font-family: var(--font-family); font-weight: 600; }

p { margin-bottom: var(--sp-4); color: var(--text-secondary); }

a { color: var(--primary); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--primary-light); }

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--primary);
}
.eyebrow::before {
    content: '';
    width: 20px;
    height: 1px;
    background: var(--primary);
}

.text-gradient {
    background: linear-gradient(135deg, var(--primary-light), var(--primary) 55%, var(--primary-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-gold { color: var(--primary); }

/* ============================================
   NAVBAR
   ============================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 500;
    padding: 22px 0;
    transition: var(--transition);
    background: transparent;
}

.navbar.scrolled {
    padding: 14px 0;
    background: var(--glass-bg);
    backdrop-filter: blur(20px) saturate(140%);
    -webkit-backdrop-filter: blur(20px) saturate(140%);
    border-bottom: 1px solid rgba(212, 175, 55, 0.12);
    box-shadow: var(--shadow-sm);
}

.navbar .container { display: flex; align-items: center; justify-content: space-between; }

.brand-logo {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    color: var(--text);
}
.brand-logo span { color: var(--primary); }

.nav-menu {
    display: flex;
    align-items: center;
    gap: var(--sp-6);
    list-style: none;
}

.nav-menu a:not(.btn) {
    color: var(--text-secondary);
    font-size: 14px;
    font-weight: 500;
    position: relative;
    padding-bottom: 4px;
}
.nav-menu a:not(.btn)::after {
    content: '';
    position: absolute;
    left: 0; right: 0; bottom: 0;
    height: 1px;
    background: var(--primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition);
}
.nav-menu a:not(.btn):hover { color: var(--text); }
.nav-menu a:not(.btn):hover::after { transform: scaleX(1); }

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
}
.mobile-menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text);
    border-radius: 2px;
    transition: var(--transition);
}

@media (max-width: 900px) {
    .nav-menu {
        position: fixed;
        top: 0; right: -100%;
        width: min(320px, 80vw);
        height: 100vh;
        background: var(--surface);
        flex-direction: column;
        justify-content: center;
        gap: var(--sp-5);
        transition: right 0.4s var(--ease);
        box-shadow: var(--shadow-lg);
    }
    .nav-menu.active { right: 0; }
    .mobile-menu-toggle { display: flex; z-index: 600; }
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 13px 26px;
    font-family: var(--font-family);
    font-size: 14px;
    font-weight: 600;
    border: none;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    gap: 8px;
    white-space: nowrap;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-light), var(--primary-dark));
    color: #0A0A0A;
    box-shadow: 0 4px 16px rgba(212, 175, 55, 0.25);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 10px 32px rgba(212, 175, 55, 0.38); color: #0A0A0A; }
.btn-primary:active { transform: translateY(0); }

.btn-secondary { background: var(--surface-light); color: var(--text); border: 1px solid var(--border); }
.btn-secondary:hover { background: var(--border); color: var(--text); border-color: var(--border-light); }

.btn-outline { background: transparent; color: var(--text); border: 1px solid rgba(255,255,255,0.2); }
.btn-outline:hover { border-color: var(--primary); color: var(--primary); background: rgba(212,175,55,0.06); }

.btn-danger { background: var(--danger); color: white; }
.btn-success { background: var(--success); color: #06170D; }
.btn-sm { padding: 9px 18px; font-size: 12px; }
.btn-lg { padding: 17px 34px; font-size: 16px; }
.btn:disabled { opacity: 0.5; cursor: not-allowed; transform: none !important; }

/* ============================================
   FORMS
   ============================================ */
.form-group { margin-bottom: var(--sp-5); }
.form-group label { display: block; font-size: 13px; font-weight: 500; color: var(--text-secondary); margin-bottom: 8px; }

.form-control {
    width: 100%;
    padding: 13px 16px;
    background: var(--surface-light);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    color: var(--text);
    font-family: var(--font-family);
    font-size: 14px;
    transition: var(--transition);
}
.form-control:focus { outline: none; border-color: var(--primary); box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.12); }
.form-control::placeholder { color: var(--text-muted); }
.form-control.error { border-color: var(--danger); }
.form-control.success { border-color: var(--success); }
.form-text { font-size: 12px; color: var(--text-muted); margin-top: 6px; }

.input-group { position: relative; }
.input-group .icon { position: absolute; left: 15px; top: 50%; transform: translateY(-50%); color: var(--text-muted); font-size: 17px; }
.input-group .form-control { padding-left: 46px; }

/* ============================================
   CARDS
   ============================================ */
.card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: var(--sp-5);
    transition: var(--transition);
}
.card:hover { transform: translateY(-4px); border-color: rgba(212,175,55,0.35); box-shadow: var(--shadow); }

.card-premium {
    background: linear-gradient(160deg, var(--surface-raised), var(--surface));
    border: 1px solid var(--border);
    position: relative;
    overflow: hidden;
}
.card-premium::before {
    content: '';
    position: absolute;
    inset: 0;
    padding: 1px;
    border-radius: inherit;
    background: linear-gradient(160deg, rgba(212,175,55,0.25), transparent 40%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

/* ============================================
   TABLES / ALERTS / STATUS (unchanged core, refined)
   ============================================ */
.table-container { overflow-x: auto; background: var(--surface); border-radius: var(--radius); border: 1px solid var(--border); }
.table { width: 100%; border-collapse: collapse; font-size: 14px; }
.table th { background: var(--surface-light); color: var(--text-secondary); font-weight: 600; text-align: left; padding: 14px 16px; border-bottom: 1px solid var(--border); }
.table td { padding: 14px 16px; border-bottom: 1px solid var(--border); color: var(--text); }
.table tr:hover { background: rgba(255, 255, 255, 0.02); }
.status-badge { display: inline-block; padding: 4px 12px; border-radius: var(--radius-full); font-size: 12px; font-weight: 500; }
.status-active, .status-paid { background: rgba(52, 199, 123, 0.15); color: var(--success); }
.status-inactive, .status-unpaid { background: rgba(229, 72, 77, 0.15); color: var(--danger); }
.status-pending { background: rgba(245, 166, 35, 0.15); color: var(--warning); }

.alert { padding: 14px 16px; border-radius: var(--radius-sm); margin-bottom: 16px; font-size: 14px; }
.alert-success { background: rgba(52,199,123,0.1); border: 1px solid rgba(52,199,123,0.2); color: var(--success); }
.alert-danger { background: rgba(229,72,77,0.1); border: 1px solid rgba(229,72,77,0.2); color: var(--danger); }
.alert-warning { background: rgba(245,166,35,0.1); border: 1px solid rgba(245,166,35,0.2); color: var(--warning); }
.alert-info { background: rgba(77,168,218,0.1); border: 1px solid rgba(77,168,218,0.2); color: var(--info); }

/* ============================================
   GRID SYSTEM
   ============================================ */
.container { width: 100%; max-width: 1240px; margin: 0 auto; padding: 0 24px; }
.row { display: flex; flex-wrap: wrap; margin: -10px; }
.col { flex: 1; padding: 10px; }
.col-1{flex:0 0 8.333%;max-width:8.333%}.col-2{flex:0 0 16.666%;max-width:16.666%}
.col-3{flex:0 0 25%;max-width:25%}.col-4{flex:0 0 33.333%;max-width:33.333%}
.col-5{flex:0 0 41.666%;max-width:41.666%}.col-6{flex:0 0 50%;max-width:50%}
.col-7{flex:0 0 58.333%;max-width:58.333%}.col-8{flex:0 0 66.666%;max-width:66.666%}
.col-9{flex:0 0 75%;max-width:75%}.col-10{flex:0 0 83.333%;max-width:83.333%}
.col-11{flex:0 0 91.666%;max-width:91.666%}.col-12{flex:0 0 100%;max-width:100%}

.section-header { text-align: center; max-width: 640px; margin: 0 auto var(--sp-7); }
.section-header h2 { margin-bottom: var(--sp-3); }

/* ============================================
   LOADING SYSTEM — real, not fake
   ============================================ */

/* Shimmer skeletons */
.skeleton {
    position: relative;
    background: var(--surface-light);
    border-radius: var(--radius-sm);
    overflow: hidden;
}
.skeleton::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent, rgba(212,175,55,0.09), transparent);
    animation: shimmer 1.6s infinite;
}
@keyframes shimmer { 0% { transform: translateX(-100%); } 100% { transform: translateX(100%); } }

.skel-text { height: 14px; margin-bottom: 8px; border-radius: 4px; }
.skel-text.short { width: 40%; }
.skel-text.medium { width: 70%; }
.skel-title { height: 22px; width: 55%; margin-bottom: 14px; border-radius: 5px; }
.skel-avatar { width: 48px; height: 48px; border-radius: 50%; }
.skel-photo { width: 100%; border-radius: var(--radius); background: var(--surface-light); }

/* Card skeleton */
.card-skeleton { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: var(--sp-5); }
.card-skeleton .skel-photo { height: 220px; margin-bottom: var(--sp-4); }

/* Blur-up progressive image loading */
.progressive-img {
    position: relative;
    overflow: hidden;
    background: var(--surface-light);
}
.progressive-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.progressive-img img.ph {
    position: absolute;
    inset: 0;
    filter: blur(18px);
    transform: scale(1.08);
    transition: opacity 0.5s ease;
}
.progressive-img img.full {
    position: relative;
    opacity: 0;
    transition: opacity 0.5s ease;
}
.progressive-img img.full.loaded { opacity: 1; }
.progressive-img img.ph.hide { opacity: 0; }

/* Lazy image not yet in viewport */
img.lazy { opacity: 0; }
img.lazy.loaded { animation: fadeIn 0.5s ease forwards; }

/* Circular progress indicator */
.circular-progress {
    position: relative;
    width: 56px;
    height: 56px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.circular-progress svg { transform: rotate(-90deg); width: 100%; height: 100%; }
.circular-progress circle {
    fill: none;
    stroke-width: 4;
}
.circular-progress .cp-track { stroke: var(--border); }
.circular-progress .cp-value {
    stroke: var(--primary);
    stroke-linecap: round;
    transition: stroke-dashoffset 0.2s linear;
}
.circular-progress .cp-label {
    position: absolute;
    font-size: 12px;
    font-weight: 700;
    color: var(--text);
}

/* Linear progress bar (real upload/download) */
.progress-bar-track {
    width: 100%;
    height: 8px;
    background: var(--surface-light);
    border-radius: var(--radius-full);
    overflow: hidden;
    border: 1px solid var(--border);
}
.progress-bar-fill {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, var(--primary-dark), var(--primary-light));
    border-radius: var(--radius-full);
    transition: width 0.15s linear;
}
.progress-meta {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    color: var(--text-secondary);
    margin-top: 6px;
}

.spinner {
    display: inline-block;
    width: 36px;
    height: 36px;
    border: 3px solid var(--border);
    border-top-color: var(--primary);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }
@keyframes fadeIn { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: translateY(0); } }
@keyframes slideIn { from { transform: translateX(-100%); } to { transform: translateX(0); } }
.fade-in { animation: fadeIn 0.7s var(--ease) forwards; }
.slide-in { animation: slideIn 0.4s var(--ease) forwards; }

/* Scroll reveal */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.reveal.in-view { opacity: 1; transform: translateY(0); }

/* ============================================
   HERO — slider + video background + animated type
   ============================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 140px 20px 100px;
}

.hero-slides { position: absolute; inset: 0; z-index: 0; }
.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1.2s ease;
}
.hero-slide.active { opacity: 1; }
.hero-slide img, .hero-slide video {
    width: 100%; height: 100%;
    object-fit: cover;
    transform: scale(1.02);
}

.hero-overlay {
    position: absolute; inset: 0;
    background:
        radial-gradient(ellipse at 50% 30%, rgba(9,9,9,0.35), rgba(9,9,9,0.85) 70%),
        linear-gradient(180deg, rgba(9,9,9,0.55) 0%, rgba(9,9,9,0.75) 60%, var(--background) 100%);
    z-index: 1;
}

.hero-content { position: relative; z-index: 2; text-align: center; max-width: 820px; margin: 0 auto; }

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    border: 1px solid rgba(212,175,55,0.35);
    border-radius: var(--radius-full);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--primary);
    background: rgba(212,175,55,0.06);
    margin-bottom: var(--sp-5);
}

.hero-title {
    font-size: clamp(2.6rem, 6vw, 5rem);
    font-weight: 500;
    line-height: 1.05;
    margin-bottom: var(--sp-5);
}

/* Animated word reveal */
.anim-word {
    display: inline-block;
    opacity: 0;
    transform: translateY(100%) rotate(4deg);
    animation: wordIn 0.8s var(--ease-out-back) forwards;
}
@keyframes wordIn { to { opacity: 1; transform: translateY(0) rotate(0); } }

.hero-subtitle {
    font-size: 1.15rem;
    color: var(--text-secondary);
    margin-bottom: var(--sp-6);
    font-weight: 300;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons { display: flex; gap: var(--sp-4); justify-content: center; flex-wrap: wrap; }

.hero-dots {
    position: absolute;
    bottom: 110px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    gap: 10px;
}
.hero-dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: rgba(255,255,255,0.3);
    cursor: pointer;
    transition: var(--transition);
    border: none;
    padding: 0;
}
.hero-dot.active { background: var(--primary); width: 26px; border-radius: var(--radius-full); }

.hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    font-size: 11px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--text-muted);
}
.scroll-indicator {
    width: 1px; height: 40px;
    background: linear-gradient(var(--primary), transparent);
    position: relative;
    overflow: hidden;
}
.scroll-indicator::after {
    content: '';
    position: absolute;
    top: -40px; left: 0;
    width: 100%; height: 40px;
    background: linear-gradient(var(--text), transparent);
    animation: scrollLine 1.8s ease infinite;
}
@keyframes scrollLine { to { top: 40px; } }

/* ============================================
   STORIES
   ============================================ */
.stories-section { padding: var(--sp-7) 0; }
.stories-container {
    display: flex;
    gap: var(--sp-5);
    overflow-x: auto;
    padding: 8px 4px 16px;
    scrollbar-width: none;
}
.stories-container::-webkit-scrollbar { display: none; }

.story-circle { display: flex; flex-direction: column; align-items: center; gap: 10px; cursor: pointer; flex-shrink: 0; width: 84px; }
.story-avatar {
    width: 72px; height: 72px;
    border-radius: 50%;
    padding: 3px;
    background: linear-gradient(135deg, var(--primary-light), var(--primary-dark));
    position: relative;
    transition: var(--transition);
}
.story-circle:hover .story-avatar { transform: scale(1.06); }
.story-avatar img { width: 100%; height: 100%; border-radius: 50%; object-fit: cover; border: 2px solid var(--background); }
.story-type { position: absolute; bottom: -2px; right: -2px; background: var(--surface); border-radius: 50%; padding: 3px 4px; font-size: 11px; }
.story-username { font-size: 12px; color: var(--text-secondary); text-align: center; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; max-width: 84px; }

/* ============================================
   PINTEREST-STYLE MASONRY GALLERY
   ============================================ */
.gallery-section { padding: var(--sp-8) 0; }

.masonry-grid {
    column-count: 4;
    column-gap: var(--sp-5);
}
@media (max-width: 1100px) { .masonry-grid { column-count: 3; } }
@media (max-width: 720px) { .masonry-grid { column-count: 2; column-gap: var(--sp-3); } }
@media (max-width: 460px) { .masonry-grid { column-count: 1; } }

.pin-card {
    break-inside: avoid;
    margin-bottom: var(--sp-5);
    border-radius: var(--radius);
    overflow: hidden;
    position: relative;
    background: var(--surface);
    border: 1px solid var(--border);
    cursor: pointer;
    transition: var(--transition-slow);
}
@media (max-width: 720px) { .pin-card { margin-bottom: var(--sp-3); } }

.pin-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: rgba(212,175,55,0.3); }

.pin-card .progressive-img { width: 100%; }
.pin-card .progressive-img img { transition: transform 0.6s var(--ease); }
.pin-card:hover .progressive-img img.full { transform: scale(1.06); }

.pin-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.15) 45%, transparent 70%);
    opacity: 0;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: var(--sp-4);
}
.pin-card:hover .pin-overlay { opacity: 1; }

.pin-overlay h4 { margin-bottom: 4px; font-size: 1rem; }
.pin-overlay .pin-meta { display: flex; gap: 14px; font-size: 12px; color: var(--text-secondary); margin-bottom: 10px; }
.pin-overlay .btn { align-self: flex-start; }

.pin-quickactions {
    position: absolute;
    top: 12px; right: 12px;
    display: flex;
    gap: 8px;
    opacity: 0;
    transform: translateY(-6px);
    transition: var(--transition);
}
.pin-card:hover .pin-quickactions { opacity: 1; transform: translateY(0); }
.pin-quickaction {
    width: 36px; height: 36px;
    border-radius: 50%;
    background: rgba(9,9,9,0.65);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,0.12);
    color: var(--text);
    display: flex; align-items: center; justify-content: center;
    cursor: pointer;
    font-size: 14px;
    transition: var(--transition);
}
.pin-quickaction:hover { background: var(--primary); color: #0A0A0A; }

.gallery-loadmore { display: flex; justify-content: center; margin-top: var(--sp-6); }

/* ============================================
   PACKAGES
   ============================================ */
.packages-section { padding: var(--sp-8) 0; background: var(--surface); }
.packages-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: var(--sp-5); }
.package-card {
    background: var(--surface-raised);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: var(--sp-6) var(--sp-5);
    position: relative;
    transition: var(--transition-slow);
}
.package-card:hover { transform: translateY(-8px); border-color: var(--primary); box-shadow: var(--shadow-gold); }
.package-card.featured { border-color: var(--primary); background: linear-gradient(160deg, #201a0c, var(--surface-raised)); }
.package-badge {
    position: absolute; top: -12px; right: 24px;
    background: linear-gradient(135deg, var(--primary-light), var(--primary-dark));
    color: #0A0A0A;
    font-size: 11px; font-weight: 700;
    padding: 5px 14px;
    border-radius: var(--radius-full);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}
.package-name { font-size: 1.1rem; font-weight: 600; margin-bottom: var(--sp-2); }
.package-price { font-family: var(--font-display); font-size: 2.4rem; font-weight: 500; color: var(--primary); margin-bottom: var(--sp-3); }
.package-duration { font-size: 0.9rem; color: var(--text-secondary); font-family: var(--font-family); }
.package-description { margin-bottom: var(--sp-4); }
.package-features { list-style: none; margin-bottom: var(--sp-5); }
.package-features li { padding: 8px 0; border-bottom: 1px solid var(--border); font-size: 14px; color: var(--text-secondary); display: flex; gap: 10px; }
.package-features li:last-child { border-bottom: none; }

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials-section { padding: var(--sp-8) 0; }
.testimonials-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: var(--sp-5); }
.testimonial-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: var(--sp-5); }
.testimonial-stars { margin-bottom: var(--sp-3); }
.star { color: var(--border-light); font-size: 16px; }
.star.filled { color: var(--primary); }
.testimonial-text { font-style: italic; color: var(--text); margin-bottom: var(--sp-4); }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-author img, .testimonial-avatar-placeholder { width: 44px; height: 44px; border-radius: 50%; object-fit: cover; }
.testimonial-avatar-placeholder { background: linear-gradient(135deg, var(--primary), var(--primary-dark)); display: flex; align-items: center; justify-content: center; font-weight: 700; color: #0A0A0A; font-size: 13px; }
.author-name { font-weight: 600; font-size: 14px; }
.author-role { font-size: 12px; color: var(--text-muted); }

/* ============================================
   BLOG
   ============================================ */
.blog-section { padding: var(--sp-8) 0; }
.blog-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: var(--sp-5); }
.blog-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; transition: var(--transition); }
.blog-card:hover { transform: translateY(-4px); border-color: rgba(212,175,55,0.3); box-shadow: var(--shadow); }
.blog-image { width: 100%; height: 200px; object-fit: cover; display: block; }
.blog-content { padding: var(--sp-5); }
.blog-meta { display: flex; justify-content: space-between; font-size: 12px; color: var(--text-muted); margin-bottom: var(--sp-3); }
.blog-content h3 { font-size: 1.2rem; margin-bottom: var(--sp-2); font-family: var(--font-family); }
.blog-content h3 a { color: var(--text); }
.blog-content h3 a:hover { color: var(--primary); }

/* ============================================
   FOOTER
   ============================================ */
.footer { padding: var(--sp-8) 0 var(--sp-5); background: var(--surface); border-top: 1px solid var(--border); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.3fr; gap: var(--sp-6); margin-bottom: var(--sp-6); }
.footer-brand h3 { font-family: var(--font-display); }
.footer-brand h3 span { color: var(--primary); }
.footer-social { display: flex; gap: 10px; margin-top: var(--sp-4); }
.social-link { width: 38px; height: 38px; border-radius: 50%; background: var(--surface-light); display: flex; align-items: center; justify-content: center; border: 1px solid var(--border); transition: var(--transition); }
.social-link:hover { border-color: var(--primary); background: rgba(212,175,55,0.08); }
.footer-links h4, .footer-contact h4 { font-size: 14px; margin-bottom: var(--sp-4); font-family: var(--font-family); }
.footer-links ul, .footer-contact ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-links a { color: var(--text-secondary); font-size: 14px; }
.footer-links a:hover { color: var(--primary); }
.footer-contact li { color: var(--text-secondary); font-size: 14px; }
.footer-bottom { text-align: center; padding-top: var(--sp-5); border-top: 1px solid var(--border); font-size: 13px; color: var(--text-muted); }

@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; } }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 992px) {
    .col-lg-6 { flex: 0 0 100%; max-width: 100%; }
}
@media (max-width: 768px) {
    .col-md-6 { flex: 0 0 100%; max-width: 100%; }
    .card { padding: var(--sp-4); }
    .hero { padding-top: 120px; }
}
@media (max-width: 576px) {
    .container { padding: 0 16px; }
    .btn { padding: 11px 18px; font-size: 13px; }
}