/*
Theme Name: Demo
Theme URI: https://demo.alexawebservers.com
Author: Rake CMS
Author URI: https://alexawebservers.com
Description: Auto-generated theme for Demo
Version: 1.0.0
License: Proprietary
Text Domain: rake-cms
*/

/* ═══════════════════════════════════════════════════
   Rake CMS — Auto-generated Theme
   Primary: #584838  Secondary: #c8c8c8  Accent: #1a1a2e
   ═══════════════════════════════════════════════════ */

:root {
    --color-primary: #584838;
    --color-primary-rgb: 88, 72, 56;
    --color-gold: #c8c8c8;
    --color-gold-light: #c8c8c8;
    --color-gold-rgb: 200, 200, 200;
    --color-bg-page: #1a1a2e;
    --color-bg-section: rgba(88, 72, 56, 0.4);
    --color-bg-card-inner: rgba(0, 0, 0, 0.4);
    --color-text-page: #ffffff;
    --color-text-heading: #ffffff;
    --color-text-secondary: rgba(255, 255, 255, 0.7);
    --color-text-tertiary: rgba(255, 255, 255, 0.5);
    --color-text-quaternary: rgba(255, 255, 255, 0.3);
    --color-header-bg: rgba(0, 0, 0, 0.6);
    --border-angle: 0deg;
}

/* ══════════════ KEYFRAMES ══════════════ */

@keyframes gradient {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

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

@keyframes pulse-glow {
    0%, 100% { box-shadow: 0 0 20px rgba(var(--color-gold-rgb), 0.3); }
    50% { box-shadow: 0 0 40px rgba(var(--color-gold-rgb), 0.6); }
}

@keyframes spin-slow {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes grain {
    0%, 100% { transform: translate(0, 0); }
    10% { transform: translate(-5%, -5%); }
    20% { transform: translate(-10%, 5%); }
    30% { transform: translate(5%, -10%); }
    40% { transform: translate(-5%, 15%); }
    50% { transform: translate(-10%, 10%); }
    60% { transform: translate(15%, 5%); }
    70% { transform: translate(10%, -5%); }
    80% { transform: translate(-15%, 10%); }
    90% { transform: translate(5%, 5%); }
}

@keyframes border-rotate {
    0% { --border-angle: 0deg; }
    100% { --border-angle: 360deg; }
}

@keyframes sparkle {
    0%, 100% { opacity: 0; transform: scale(0) rotate(0deg); }
    50% { opacity: 1; transform: scale(1) rotate(180deg); }
}

@keyframes breathe {
    0%, 100% { opacity: 0.3; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(1.05); }
}

@keyframes drift {
    0% { transform: translate(0, 0) rotate(0deg); }
    33% { transform: translate(20px, -30px) rotate(120deg); }
    66% { transform: translate(-15px, -10px) rotate(240deg); }
    100% { transform: translate(0, 0) rotate(360deg); }
}

@keyframes slide-in-left {
    from { opacity: 0; transform: translateX(-40px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes slide-in-right {
    from { opacity: 0; transform: translateX(40px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes fade-up {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

/* ══════════════ RESET & BASE ══════════════ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: var(--color-bg-page);
    color: var(--color-text-page);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

/* ══════════════ GRADIENT TEXT ══════════════ */

.gradient-text {
    background: linear-gradient(135deg, var(--color-gold) 0%, #ffffff 50%, var(--color-gold) 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.gradient-text-gold {
    background: linear-gradient(135deg, var(--color-gold), var(--color-gold-light));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* ══════════════ GLASSMORPHISM ══════════════ */

.glass {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}
.glass-strong {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

/* ══════════════ GLOW CARD ══════════════ */

.glow-card {
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.03);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.glow-card::before {
    content: "";
    position: absolute;
    inset: -1px;
    border-radius: inherit;
    padding: 1px;
    background: conic-gradient(from var(--border-angle), transparent, rgba(var(--color-gold-rgb), 0.3), transparent, rgba(var(--color-gold-rgb), 0.5), transparent);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    animation: border-rotate 4s linear infinite;
    opacity: 0;
    transition: opacity 0.4s ease;
}
.glow-card:hover::before {
    opacity: 1;
}
.glow-card:hover {
    border-color: transparent;
    background: rgba(255, 255, 255, 0.06);
    box-shadow: 0 0 30px rgba(var(--color-gold-rgb), 0.15), 0 0 60px rgba(var(--color-gold-rgb), 0.05);
    transform: translateY(-4px);
}

/* ══════════════ SHIMMER BUTTON ══════════════ */

.shimmer-btn {
    position: relative;
    overflow: hidden;
    isolation: isolate;
}
.shimmer-btn::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.25), transparent);
    transform: translateX(-100%);
    animation: shimmer 2s infinite;
    pointer-events: none;
}
.shimmer-btn-gold::before {
    background: linear-gradient(90deg, transparent, rgba(var(--color-gold-rgb), 0.35), transparent);
}

/* ══════════════ ANIMATED BACKGROUND MESH ══════════════ */

.animated-mesh {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
    z-index: 0;
}
.animated-mesh .mesh-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.15;
    animation: breathe 6s ease-in-out infinite;
}
.animated-mesh .mesh-blob:nth-child(1) {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(var(--color-gold-rgb), 0.4), transparent 70%);
    top: -10%;
    left: -5%;
    animation-delay: 0s;
}
.animated-mesh .mesh-blob:nth-child(2) {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(var(--color-primary-rgb), 0.3), transparent 70%);
    bottom: -5%;
    right: -5%;
    animation-delay: 2s;
}
.animated-mesh .mesh-blob:nth-child(3) {
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(var(--color-gold-rgb), 0.25), transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: 4s;
}

/* ══════════════ DRIFT PATTERN ══════════════ */

.drift-pattern {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
    z-index: 0;
}
.drift-pattern .drift-shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.08;
    animation: drift 12s linear infinite;
}
.drift-pattern .drift-shape:nth-child(1) {
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(var(--color-gold-rgb), 0.5), transparent 70%);
    top: 20%;
    left: 10%;
    animation-duration: 14s;
}
.drift-pattern .drift-shape:nth-child(2) {
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(var(--color-primary-rgb), 0.4), transparent 70%);
    top: 60%;
    right: 15%;
    animation-duration: 18s;
    animation-delay: -3s;
}
.drift-pattern .drift-shape:nth-child(3) {
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(var(--color-gold-rgb), 0.3), transparent 70%);
    bottom: 10%;
    left: 30%;
    animation-duration: 10s;
    animation-delay: -6s;
}

/* ══════════════ FLOATING PARTICLES ══════════════ */

.floating-particle {
    position: absolute;
    border-radius: 9999px;
    background: radial-gradient(circle at center, rgba(var(--color-gold-rgb), 0.6), transparent 70%);
    pointer-events: none;
    animation: float var(--particle-duration, 3s) ease-in-out var(--particle-delay, 0s) infinite;
    width: var(--particle-size, 6px);
    height: var(--particle-size, 6px);
    top: var(--particle-y, 0);
    left: var(--particle-x, 0);
}

/* ══════════════ FLOATING ANIMATION UTILITIES ══════════════ */

.float {
    animation: float 3s ease-in-out infinite;
}
.float-delayed {
    animation: float 4s ease-in-out 1s infinite;
}
.float-slow {
    animation: float 5s ease-in-out 0.5s infinite;
}

/* ══════════════ PULSE GLOW ══════════════ */

.pulse-glow {
    animation: pulse-glow 2s ease-in-out infinite;
}

/* ══════════════ PULSE BUTTON ══════════════ */

.pulse-btn {
    animation: pulse 2s ease-in-out infinite;
}
.pulse-btn:hover {
    animation: none;
    transform: scale(1.05);
}

/* ══════════════ HOVER LIFT ══════════════ */

.hover-lift {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.hover-lift:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
}
.hover-lift-sm:hover {
    transform: translateY(-2px);
}
.hover-lift-lg:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

/* ══════════════ SCROLL REVEAL ══════════════ */

.reveal {
    opacity: 0;
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}
.reveal.fade-up {
    transform: translateY(30px);
}
.reveal.fade-left {
    transform: translateX(-30px);
}
.reveal.fade-right {
    transform: translateX(30px);
}
.reveal.revealed {
    opacity: 1;
    transform: translateX(0) translateY(0);
}

/* ══════════════ SPARKLE STARS ══════════════ */

.sparkle-star {
    display: inline-block;
    color: #FFD700;
    animation: sparkle 1.5s ease-in-out infinite;
}
.sparkle-star:nth-child(2) { animation-delay: 0.2s; }
.sparkle-star:nth-child(3) { animation-delay: 0.4s; }
.sparkle-star:nth-child(4) { animation-delay: 0.6s; }
.sparkle-star:nth-child(5) { animation-delay: 0.8s; }

/* ══════════════ COUNTER STAT CARDS ══════════════ */

.stat-card {
    text-align: center;
    padding: 2rem 1.5rem;
}
.stat-card .stat-number {
    font-size: 3rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--color-gold), #FFD700, var(--color-gold));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.1;
    margin-bottom: 0.5rem;
}
.stat-card .stat-label {
    font-size: 1rem;
    color: var(--color-text-secondary);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* ══════════════ HERO CAROUSEL ══════════════ */

.hero-carousel {
    position: relative;
    overflow: hidden;
    width: 100%;
}
.hero-carousel .slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.8s ease, transform 0.8s ease;
}
.hero-carousel .slide.active {
    opacity: 1;
    position: relative;
    animation: fade-up 0.8s ease forwards;
}
.hero-carousel .slide.slide-in-left {
    animation: slide-in-left 0.8s ease forwards;
}
.hero-carousel .slide.slide-in-right {
    animation: slide-in-right 0.8s ease forwards;
}
.carousel-prev,
.carousel-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: white;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1.25rem;
}
.carousel-prev:hover,
.carousel-next:hover {
    background: rgba(var(--color-gold-rgb), 0.3);
    border-color: rgba(var(--color-gold-rgb), 0.5);
    box-shadow: 0 0 20px rgba(var(--color-gold-rgb), 0.2);
}
.carousel-prev { left: 1rem; }
.carousel-next { right: 1rem; }
.carousel-indicators {
    position: absolute;
    bottom: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.5rem;
    z-index: 10;
}
.carousel-indicator {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.35);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}
.carousel-indicator.active {
    background: var(--color-gold);
    box-shadow: 0 0 10px rgba(var(--color-gold-rgb), 0.5);
    width: 28px;
    border-radius: 5px;
}

/* ══════════════ MOBILE MENU ══════════════ */

#mobile-menu-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 36px;
    height: 36px;
    cursor: pointer;
    background: none;
    border: none;
    gap: 5px;
    padding: 6px;
    z-index: 100;
}
#mobile-menu-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: white;
    border-radius: 2px;
    transition: all 0.3s ease;
    transform-origin: center;
}
#mobile-menu-toggle.is-active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}
#mobile-menu-toggle.is-active span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}
#mobile-menu-toggle.is-active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

#mobile-menu {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: 280px;
    max-width: 85vw;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    z-index: 90;
    padding: 5rem 2rem 2rem;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
}
#mobile-menu.open {
    transform: translateX(0);
}
#mobile-menu-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 80;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
}
#mobile-menu-overlay.open {
    opacity: 1;
    pointer-events: auto;
}

/* ══════════════ LANGUAGE DROPDOWN ══════════════ */

.lang-dropdown {
    position: relative;
    display: inline-block;
}
.lang-dropdown-toggle {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: white;
    padding: 0.375rem 0.75rem;
    border-radius: 6px;
    cursor: pointer;
    font-size: 0.875rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.375rem;
}
.lang-dropdown-toggle:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(var(--color-gold-rgb), 0.4);
}
.lang-dropdown-menu {
    position: absolute;
    top: 100%;
    right: 0;
    margin-top: 0.5rem;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 0.5rem;
    min-width: 120px;
    opacity: 0;
    transform: translateY(-8px);
    pointer-events: none;
    transition: all 0.3s ease;
    z-index: 60;
}
.lang-dropdown:hover .lang-dropdown-menu,
.lang-dropdown-menu.open {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}
.lang-dropdown-item {
    display: block;
    width: 100%;
    padding: 0.5rem 1rem;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    border-radius: 4px;
    font-size: 0.875rem;
    transition: all 0.2s ease;
    cursor: pointer;
    background: none;
    border: none;
    text-align: left;
}
.lang-dropdown-item:hover {
    background: rgba(var(--color-gold-rgb), 0.15);
    color: white;
}
.lang-dropdown-item.active {
    color: var(--color-gold);
    font-weight: 600;
}

/* ══════════════ THEME TOGGLE ══════════════ */

.theme-toggle-btn {
    width: 36px !important;
    height: 36px !important;
    min-width: 36px !important;
    min-height: 36px !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    background: rgba(255, 255, 255, 0.08) !important;
    border: 1px solid rgba(255, 255, 255, 0.12) !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    position: relative !important;
    overflow: visible !important;
    color: white !important;
    font-size: 1rem !important;
}
.theme-toggle-btn:hover {
    background: rgba(255, 255, 255, 0.15) !important;
    border-color: rgba(200, 200, 200, 0.4) !important;
    box-shadow: 0 0 12px rgba(200, 200, 200, 0.25) !important;
}
.theme-toggle-btn:focus-visible {
    outline: none !important;
    box-shadow: 0 0 0 2px rgba(200, 200, 200, 0.5) !important;
}
.theme-toggle-btn::after {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(200, 200, 200, 0.15), transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}
.theme-toggle-btn:hover::after {
    opacity: 1;
}

/* ══════════════ BACKGROUND UTILITIES ══════════════ */

.bg-page { background: var(--color-bg-page); }
.bg-section { background: var(--color-bg-section); }
.bg-header { background: var(--color-header-bg); }
.bg-card-inner { background: var(--color-bg-card-inner); }

/* ══════════════ TEXT UTILITIES ══════════════ */

.text-page { color: var(--color-text-page); }
.text-heading { color: var(--color-text-heading); }
.text-secondary { color: var(--color-text-secondary); }
.text-tertiary { color: var(--color-text-tertiary); }
.text-quaternary { color: var(--color-text-quaternary); }

/* ══════════════ LAYOUT ══════════════ */

.container { width: 100%; margin: 0 auto; }
.max-w-6xl { max-width: 72rem; }
.max-w-4xl { max-width: 56rem; }
.max-w-2xl { max-width: 42rem; }
.max-w-xl { max-width: 36rem; }
.max-w-sm { max-width: 24rem; }
.px-4 { padding-left: 1rem; padding-right: 1rem; }
.px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }
.py-24 { padding-top: 6rem; padding-bottom: 6rem; }
.py-32 { padding-top: 8rem; padding-bottom: 8rem; }
.py-16 { padding-top: 4rem; padding-bottom: 4rem; }
.pt-20 { padding-top: 5rem; }
.mx-auto { margin-left: auto; margin-right: auto; }

/* ══════════════ PADDING ALL ══════════════ */

.p-6 { padding: 1.5rem; }
.p-8 { padding: 2rem; }
.p-10 { padding: 2.5rem; }

/* ══════════════ GRID ══════════════ */

.grid { display: grid; }
.gap-6 { gap: 1.5rem; }
.gap-10 { gap: 2.5rem; }
.gap-12 { gap: 3rem; }
.gap-16 { gap: 4rem; }
.md\:grid-cols-2 { }
.md\:grid-cols-3 { }
.md\:grid-cols-4 { }
.hidden { display: none; }

@media (min-width: 768px) {
    .md\:grid-cols-2 { grid-template-columns: repeat(2, 1fr); }
    .md\:grid-cols-3 { grid-template-columns: repeat(3, 1fr); }
    .md\:grid-cols-4 { grid-template-columns: repeat(4, 1fr); }
    .md\:flex { display: flex; }
    .md\:hidden { display: none; }
    .md\:text-4xl { font-size: 2.25rem; }
    .md\:text-5xl { font-size: 3rem; }
}
@media (max-width: 767px) {
}

/* ══════════════ FLEX ══════════════ */

.flex { display: flex; }
.items-center { align-items: center; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.flex-col { flex-direction: column; }
.gap-3 { gap: 0.75rem; }
.gap-4 { gap: 1rem; }
.gap-8 { gap: 2rem; }
@media (min-width: 640px) {
    .sm\:flex-row { flex-direction: row; }
}

/* ══════════════ TYPOGRAPHY ══════════════ */

.text-xs { font-size: 0.75rem; }
.text-sm { font-size: 0.875rem; }
.text-base { font-size: 1rem; }
.text-lg { font-size: 1.125rem; }
.text-xl { font-size: 1.25rem; }
.text-2xl { font-size: 1.5rem; }
.text-3xl { font-size: 1.875rem; }
.text-4xl { font-size: 2.25rem; }
.font-medium { font-weight: 500; }
.font-semibold { font-weight: 600; }
.font-bold { font-weight: 700; }
.font-black { font-weight: 900; }
.tracking-tight { letter-spacing: -0.025em; }
.tracking-wider { letter-spacing: 0.05em; }
.uppercase { text-transform: uppercase; }
.leading-tight { line-height: 1.25; }
.leading-relaxed { line-height: 1.625; }
.text-center { text-align: center; }
.antialiased { -webkit-font-smoothing: antialiased; }
.font-sans { font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif; }

/* ══════════════ BUTTONS ══════════════ */

.shimmer-btn-gold {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    border: none;
    text-decoration: none;
}
.shimmer-btn-gold:hover {
    transform: scale(1.05);
    transition: all 0.3s ease;
}

/* ══════════════ CARDS ══════════════ */

.rounded-xl { border-radius: 0.75rem; }
.rounded-2xl { border-radius: 1rem; }
.rounded-lg { border-radius: 0.5rem; }
.rounded-full { border-radius: 9999px; }
.border { border: 1px solid; }
.border-white\/10 { border-color: rgba(255, 255, 255, 0.1); }
.border-white\/30 { border-color: rgba(255, 255, 255, 0.3); }

/* ══════════════ BACKDROP BLUR ══════════════ */

.backdrop-blur-sm { backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px); }
.backdrop-blur-2xl { backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px); }

/* ══════════════ OVERFLOW & POSITION ══════════════ */

.overflow-hidden { overflow: hidden; }
.relative { position: relative; }
.absolute { position: absolute; }
.fixed { position: fixed; }
.z-10 { z-index: 10; }
.z-50 { z-index: 50; }
.inset-0 { top: 0; right: 0; bottom: 0; left: 0; }
.top-0 { top: 0; }
.left-0 { left: 0; }
.right-0 { right: 0; }

/* ══════════════ SHADOW ══════════════ */

.shadow-lg { box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -2px rgba(0,0,0,0.05); }
.shadow-black\/5 { box-shadow: 0 0 0 1px rgba(0,0,0,0.05); }
.shadow-\[0_0_20px_rgba\(var\(--color-gold-rgb\),0\.3\)\] { box-shadow: 0 0 20px rgba(222, 102, 72, 0.3); }

/* ══════════════ TRANSITIONS ══════════════ */

.transition-all { transition: all 0.3s ease; }
.duration-300 { transition-duration: 0.3s; }
.hover\:scale-105:hover { transform: scale(1.05); }
.hover\:text-white:hover { color: white; }

/* ══════════════ WP OVERWRITES ══════════════ */

a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; }

/* ══════════════ FORM INPUTS ══════════════ */

input, textarea {
    background: rgba(0,0,0,0.3);
    color: white;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 0.5rem;
    padding: 0.75rem 1rem;
    transition: all 0.3s ease;
}
input:focus, textarea:focus {
    border-color: var(--color-gold);
    outline: none;
    box-shadow: 0 0 0 2px rgba(var(--color-gold-rgb), 0.15), 0 0 25px rgba(var(--color-gold-rgb), 0.15);
    background: rgba(0,0,0,0.4);
}
input:hover, textarea:hover {
    border-color: rgba(var(--color-gold-rgb), 0.3);
}

/* ══════════════ OBJECT FIT ══════════════ */

.object-cover { object-fit: cover; }
.h-full { height: 100%; }
.w-full { width: 100%; }
.h-\[90vh\] { height: 90vh; }
.min-h-\[600px\] { min-height: 600px; }
.min-h-screen { min-height: 100vh; }

/* ══════════════ ANIMATED GRADIENT BACKGROUND ══════════════ */

.animated-gradient {
    background: linear-gradient(135deg, #584838, #c8c8c8, #584838, #c8c8c8);
    background-size: 400% 400%;
    animation: gradient 8s ease infinite;
}

/* ══════════════ SCROLLBAR ══════════════ */

::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: rgba(0,0,0,0.2); }
::-webkit-scrollbar-thumb { background: linear-gradient(180deg, #584838, #c8c8c8); border-radius: 3px; }

/* ══════════════ SELECTION ══════════════ */

::selection { background: #584838; color: white; }

/* ══════════════ MAP CONTAINER ══════════════ */

.map-container { width: 100%; height: 250px; border-radius: 0.75rem; overflow: hidden; }
.map-container iframe { width: 100%; height: 100%; border: 0; }

