/* --- Base Styles --- */
:root {
    --gold: #d4af37;
    --dark-gold: #aa8a2e;
    --black-gold: #1a1a1a;
    --black: #000000;
    --white: #ffffff;
    --gray-100: #f5f5f5;
    --gray-200: #e5e5e5;
    --gray-400: #a3a3a3;
    --gray-500: #737373;
    --gray-800: #262626;
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--black-gold);
    color: var(--gray-200);
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* --- Typography --- */
h1, h2, h3, h4 {
    color: var(--white);
    line-height: 1.2;
}

.gold-text {
    color: var(--gold);
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.section-subtitle {
    color: var(--gold);
    font-size: 0.875rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.large-title {
    font-size: 4rem;
    font-weight: 800;
}

/* --- Buttons --- */
button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
    transition: var(--transition);
}

.btn-primary {
    background: var(--gold);
    color: var(--black);
    padding: 1rem 2rem;
    border-radius: 12px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-primary:hover {
    background: var(--white);
    transform: translateY(-2px);
}

.btn-outline {
    border: 1px solid var(--gold);
    color: var(--gold);
    padding: 1rem 2rem;
    border-radius: 12px;
    font-weight: 700;
}

.btn-outline:hover {
    background: var(--gold);
    color: var(--black);
}

.btn-black {
    background: var(--black);
    color: var(--white);
    padding: 1rem 2rem;
    border-radius: 12px;
    font-weight: 700;
}

.btn-outline-black {
    border: 2px solid var(--black);
    color: var(--black);
    padding: 1rem 2rem;
    border-radius: 12px;
    font-weight: 700;
}

.link-btn {
    color: var(--gold);
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.link-btn:hover {
    color: var(--white);
}

.link-btn i {
    transition: transform 0.3s;
}

.link-btn:hover i {
    transform: translateX(5px);
}

/* --- Header --- */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 24px 0;
    transition: var(--transition);
}

header.scrolled {
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    padding: 16px 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
}

.logo-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--gold), #f9e29c);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--black);
    font-weight: 800;
    font-size: 1.5rem;
}

.logo-text {
    display: flex;
    flex-col: column;
}

.brand {
    color: var(--gold);
    font-weight: 800;
    font-size: 1.25rem;
    letter-spacing: 1px;
}

.sub-brand {
    font-size: 0.6rem;
    color: var(--gray-400);
    letter-spacing: 2px;
}

.desktop-nav {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-link {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--gray-200);
    position: relative;
    padding: 8px 0;
}

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

.nav-link.active, .nav-link:hover {
    color: var(--gold);
}

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

.btn-consult {
    background: var(--gold);
    color: var(--black);
    padding: 8px 24px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.875rem;
}

.mobile-toggle {
    display: none;
    color: var(--gold);
}

.mobile-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: rgba(0,0,0,0.95);
    padding: 24px;
    flex-direction: column;
    gap: 16px;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
}

/* --- Pages --- */
.page {
    display: none;
    animation: fadeIn 0.6s ease-out;
}

.page.active {
    display: block;
}

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

/* --- Hero --- */
.hero {
    height: 90vh;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: -1;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.4;
}

.hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, var(--black), rgba(0,0,0,0.8), transparent);
}

.hero-content {
    max-width: 800px;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.3);
    padding: 6px 16px;
    border-radius: 20px;
    color: var(--gold);
    font-size: 0.875rem;
    margin-bottom: 2rem;
}

.hero h1 {
    font-size: 4.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
}

.hero p {
    font-size: 1.25rem;
    color: var(--gray-400);
    margin-bottom: 2.5rem;
    max-width: 600px;
}

.hero-btns {
    display: flex;
    gap: 16px;
}

.hero-stats {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(0,0,0,0.4);
    backdrop-filter: blur(5px);
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    padding: 32px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    text-align: center;
}

.stat-val {
    font-size: 2rem;
    font-weight: 800;
    color: var(--gold);
}

.stat-label {
    font-size: 0.75rem;
    color: var(--gray-400);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-top: 4px;
}

/* --- Sections --- */
.section {
    padding: 100px 0;
}

.bg-darker {
    background-color: var(--black);
}

.border-y {
    border-top: 1px solid rgba(212, 175, 55, 0.1);
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

.mb-50 { margin-bottom: 50px; }
.text-center { text-align: center; }
.mx-auto { margin-left: auto; margin-right: auto; }
.max-w-600 { max-width: 600px; }

.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }

/* --- Intro --- */
.intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.intro-img {
    position: relative;
}

.intro-img img {
    border-radius: 24px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}

.intro-img::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    width: 100px;
    height: 100px;
    border-top: 4px solid var(--gold);
    border-left: 4px solid var(--gold);
}

.play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--gold), #f9e29c);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--black);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.4);
    cursor: pointer;
}

.features-mini {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin: 32px 0;
}

.f-item {
    display: flex;
    gap: 16px;
    background: rgba(255,255,255,0.05);
    padding: 20px;
    border-radius: 16px;
    border: 1px solid rgba(255,255,255,0.1);
}

.f-item i {
    color: var(--gold);
}

.f-item h4 {
    font-size: 1rem;
    margin-bottom: 4px;
}

.f-item p {
    font-size: 0.8rem;
    color: var(--gray-500);
}

/* --- Cards --- */
.card {
    background: var(--black-gold);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 20px;
    overflow: hidden;
    transition: var(--transition);
}

.card:hover {
    transform: translateY(-10px);
    border-color: var(--gold);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.15);
}

.card-img {
    height: 240px;
    overflow: hidden;
    position: relative;
}

.card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s;
}

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

.card-content {
    padding: 24px;
}

.card-content h4 {
    font-size: 1.25rem;
    margin-bottom: 12px;
}

.card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 16px;
}

.price {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--gold);
}

/* --- News Card --- */
.news-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    padding: 32px;
    border-radius: 24px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    transition: var(--transition);
}

.news-card:hover {
    border-color: rgba(212, 175, 55, 0.5);
}

.news-meta {
    display: flex;
    justify-content: space-between;
    font-size: 0.75rem;
    margin-bottom: 16px;
}

.news-cat {
    color: var(--gold);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.news-date {
    color: var(--gray-500);
}

.news-card h4 {
    font-size: 1.25rem;
    margin-bottom: 12px;
}

.news-card p {
    font-size: 0.875rem;
    color: var(--gray-500);
    margin-bottom: 24px;
}

/* --- Slider --- */
.slider {
    display: flex;
    overflow-x: auto;
    gap: 32px;
    padding-bottom: 32px;
    scrollbar-width: none;
}

.slider::-webkit-scrollbar {
    display: none;
}

.slider-item {
    min-width: 350px;
    background: var(--black);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 20px;
    overflow: hidden;
}

/* --- Promo --- */
.promo-card {
    background: linear-gradient(135deg, var(--gold), #f9e29c, var(--dark-gold));
    border-radius: 40px;
    padding: 80px;
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 64px;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.promo-card::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 400px;
    height: 400px;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="black" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M4 12v8a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2v-8"/><polyline points="16 6 12 2 8 6"/><line x1="12" y1="2" x2="12" y2="15"/></svg>') no-repeat center;
    opacity: 0.05;
    transform: scale(10);
}

.promo-content h2 {
    color: var(--black);
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.promo-content p {
    color: rgba(0,0,0,0.7);
    font-size: 1.125rem;
    font-weight: 500;
    margin-bottom: 2rem;
}

.promo-btns {
    display: flex;
    gap: 16px;
}

.promo-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.p-stat {
    background: rgba(255,255,255,0.2);
    backdrop-filter: blur(10px);
    padding: 24px;
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,0.3);
    text-align: center;
}

.p-stat span {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: var(--black);
}

.p-stat label {
    font-size: 0.75rem;
    color: rgba(0,0,0,0.6);
    font-weight: 700;
    text-transform: uppercase;
}

/* --- Dynamics --- */
.flex-header {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-bottom: 48px;
}

.line {
    flex-grow: 1;
    height: 1px;
    background: rgba(212, 175, 55, 0.2);
}

.global-tag {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--gold);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 2px;
}

.dynamic-item {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    padding: 24px;
    border-radius: 16px;
    transition: var(--transition);
}

.dynamic-item:hover {
    background: rgba(212, 175, 55, 0.05);
    border-color: rgba(212, 175, 55, 0.3);
}

.dyn-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 16px;
}

.dyn-icon {
    width: 32px;
    height: 32px;
    background: rgba(212, 175, 55, 0.2);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
}

.dyn-time {
    font-size: 0.7rem;
    color: var(--gray-500);
    font-family: monospace;
}

/* --- Products Page --- */
.py-100 { padding: 100px 0; }

.page-header {
    margin-bottom: 48px;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.page-header p {
    color: var(--gray-400);
}

.filter-bar {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(212, 175, 55, 0.2);
    padding: 32px;
    border-radius: 32px;
    margin-bottom: 48px;
}

.search-row {
    display: flex;
    gap: 24px;
    margin-bottom: 32px;
}

.search-box {
    flex-grow: 1;
    position: relative;
}

.search-box i {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--gold);
}

.search-box input {
    width: 100%;
    background: var(--black);
    border: 1px solid rgba(212, 175, 55, 0.2);
    padding: 16px 16px 16px 48px;
    border-radius: 12px;
    color: var(--white);
    outline: none;
}

.search-box input:focus {
    border-color: var(--gold);
}

.sort-box select {
    background: var(--black);
    border: 1px solid rgba(212, 175, 55, 0.2);
    padding: 16px 24px;
    border-radius: 12px;
    color: var(--white);
    outline: none;
}

.filter-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 32px;
}

.filter-item label {
    display: block;
    font-size: 0.7rem;
    color: var(--gold);
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.filter-item select {
    width: 100%;
    background: var(--black);
    border: 1px solid rgba(212, 175, 55, 0.2);
    padding: 12px;
    border-radius: 12px;
    color: var(--white);
    outline: none;
}

.tag-row {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: 24px;
    border-top: 1px solid rgba(212, 175, 55, 0.1);
}

.tag-row span {
    font-size: 0.75rem;
    color: var(--gray-500);
}

.tag {
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.2);
    color: var(--gold);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
}

.pagination {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 64px;
}

.page-btn {
    width: 48px;
    height: 48px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-weight: 700;
}

.page-btn.active {
    background: var(--gold);
    color: var(--black);
    border-color: var(--gold);
}

/* --- About Page --- */
.about-hero {
    height: 60vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-hero h1 {
    font-size: 4rem;
    margin-bottom: 1.5rem;
}

.timeline {
    position: relative;
    padding: 48px 0;
}

.timeline::after {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 1px;
    background: rgba(212, 175, 55, 0.2);
}

.t-item {
    display: flex;
    margin-bottom: 48px;
}

.t-item:nth-child(even) { flex-direction: row-reverse; }

.t-content {
    width: 50%;
    padding: 0 48px;
}

.t-item:nth-child(even) .t-content { text-align: right; }

.t-year {
    font-size: 2.5rem;
    font-weight: 800;
    color: rgba(212, 175, 55, 0.3);
    font-family: monospace;
}

.t-dot {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 16px;
    height: 16px;
    background: var(--gold);
    border-radius: 50%;
    box-shadow: 0 0 15px var(--gold);
    z-index: 10;
}

.culture-items {
    display: flex;
    flex-direction: column;
    gap: 32px;
    margin-top: 48px;
}

.c-item {
    display: flex;
    gap: 24px;
}

.c-icon {
    width: 64px;
    height: 64px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
}

/* --- Contact Page --- */
.contact-layout {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 64px;
}

.contact-form-box {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    padding: 64px;
    border-radius: 48px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    font-size: 0.75rem;
    color: var(--gold);
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.form-group input, .form-group textarea {
    width: 100%;
    background: var(--black);
    border: 1px solid rgba(255,255,255,0.1);
    padding: 16px;
    border-radius: 12px;
    color: var(--white);
    outline: none;
}

.form-group input:focus, .form-group textarea:focus {
    border-color: var(--gold);
}

.form-success {
    text-align: center;
    padding: 48px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 24px;
}

.form-success i {
    color: var(--gold);
    width: 64px;
    height: 64px;
    margin-bottom: 24px;
}

.hidden { display: none; }

.sidebar-section {
    margin-bottom: 48px;
}

.social-icons {
    display: flex;
    gap: 16px;
}

.social-icons a {
    width: 56px;
    height: 56px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-400);
    transition: var(--transition);
}

.social-icons a:hover {
    background: var(--gold);
    color: var(--black);
    border-color: var(--gold);
}

.flex-title {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1.25rem;
    margin-bottom: 24px;
}

.map-box {
    height: 320px;
    border-radius: 32px;
    overflow: hidden;
    position: relative;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.map-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.map-pin {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--gold), #f9e29c);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--black);
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 100% { transform: translate(-50%, -50%); }
    50% { transform: translate(-50%, -70%); }
}

.info-card {
    background: rgba(255,255,255,0.05);
    padding: 24px;
    border-radius: 24px;
    margin-top: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.info-item {
    display: flex;
    gap: 16px;
}

.info-item i { color: var(--gold); }

/* --- Footer --- */
.main-footer {
    background: var(--black);
    padding: 80px 0 40px;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1.5fr 1.5fr;
    gap: 48px;
    margin-bottom: 64px;
}

.footer-brand p {
    color: var(--gray-400);
    font-size: 0.875rem;
    margin: 24px 0;
}

.footer-links h4, .footer-contact h4, .footer-sub h4 {
    margin-bottom: 24px;
    position: relative;
    display: inline-block;
}

.footer-links h4::after, .footer-contact h4::after, .footer-sub h4::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 32px;
    height: 4px;
    background: var(--gold);
}

.footer-links ul li { margin-bottom: 16px; }
.footer-links ul a { color: var(--gray-400); font-size: 0.875rem; transition: var(--transition); }
.footer-links ul a:hover { color: var(--gold); }

.footer-contact ul li {
    display: flex;
    gap: 12px;
    color: var(--gray-400);
    font-size: 0.875rem;
    margin-bottom: 16px;
}

.footer-contact i { color: var(--gold); flex-shrink: 0; }

.footer-sub p { color: var(--gray-400); font-size: 0.875rem; margin-bottom: 16px; }

.sub-input {
    display: flex;
}

.sub-input input {
    flex-grow: 1;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(212, 175, 55, 0.2);
    padding: 12px 16px;
    border-radius: 8px 0 0 8px;
    color: var(--white);
    outline: none;
}

.sub-input button {
    background: var(--gold);
    color: var(--black);
    padding: 0 20px;
    border-radius: 0 8px 8px 0;
    font-weight: 700;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.05);
    padding-top: 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--gray-500);
    font-size: 0.75rem;
}

.bottom-links {
    display: flex;
    gap: 24px;
}

/* --- FAB --- */
.fab {
    position: fixed;
    bottom: 32px;
    right: 32px;
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--gold), #f9e29c);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--black);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.4);
    z-index: 999;
}

.fab .tooltip {
    position: absolute;
    right: 72px;
    background: var(--black);
    color: var(--gold);
    padding: 4px 12px;
    border-radius: 8px;
    font-size: 0.75rem;
    white-space: nowrap;
    opacity: 0;
    transition: var(--transition);
    pointer-events: none;
    border: 1px solid rgba(212, 175, 55, 0.3);
}

.fab:hover .tooltip { opacity: 1; }

/* --- Responsive --- */
@media (max-width: 1024px) {
    .grid-4 { grid-template-columns: repeat(2, 1fr); }
    .grid-3 { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .promo-card { grid-template-columns: 1fr; padding: 48px; }
    .intro-grid { grid-template-columns: 1fr; }
    .hero h1 { font-size: 3rem; }
}

@media (max-width: 768px) {
    .desktop-nav { display: none; }
    .mobile-toggle { display: block; }
    .grid-4, .grid-3, .grid-2 { grid-template-columns: 1fr; }
    .stats-grid { grid-template-columns: 1fr 1fr; gap: 24px; }
    .large-title { font-size: 2.5rem; }
    .contact-layout { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
    .t-content { width: 100%; text-align: left !important; padding: 0 24px 0 48px; }
    .timeline::after { left: 24px; }
    .t-dot { left: 24px; }
}

.flex-between {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.rating {
    display: flex;
    align-items: center;
    gap: 4px;
    color: var(--gold);
    font-size: 0.875rem;
    font-weight: 700;
}

.p-meta {
    display: flex;
    gap: 16px;
    margin-top: 8px;
    font-size: 0.75rem;
    color: var(--gray-500);
}

.p-meta span {
    display: flex;
    align-items: center;
    gap: 4px;
}

.card-badges {
    position: absolute;
    top: 12px;
    left: 12px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.badge-mini {
    background: var(--gold);
    color: var(--black);
    font-size: 0.625rem;
    font-weight: 800;
    padding: 2px 8px;
    border-radius: 4px;
    text-transform: uppercase;
}

.btn-primary-small {
    background: var(--gold);
    color: var(--black);
    padding: 6px 16px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.75rem;
}

.btn-primary-small:hover {
    background: var(--white);
}

.mt-16 { margin-top: 16px; }
.mb-10 { margin-bottom: 10px; }
.mb-20 { margin-bottom: 20px; }
.mb-30 { margin-bottom: 30px; }
.col-span-4 { grid-column: span 4; }

.w-full { width: 100%; }

/* --- Slider Custom --- */
.slider-item .card-content {
    padding: 32px;
}
