/* =============================================
   Luxe Interiors - Premium Dark Theme
   ============================================= */

/* ---------- CSS Variables ---------- */
:root {
    --bg-primary: #0a0a09;
    --bg-secondary: #111110;
    --bg-card: #141413;
    --bg-card-hover: #1a1a19;
    --bg-surface: #171716;
    --gold: #bd9b60;
    --gold-light: #d6b883;
    --gold-dark: #917342;
    --text-primary: #ffffff;
    --text-secondary: #b3b3af;
    --text-muted: #737370;
    --border-color: rgba(255,255,255,0.08);
    --border-subtle: rgba(255,255,255,0.04);
    --gradient-gold: linear-gradient(135deg, #bd9b60 0%, #aa8950 100%);
    --gradient-dark: linear-gradient(180deg, #0a0a09 0%, #111110 100%);
    --shadow-gold: 0 10px 40px rgba(189,155,96,0.1);
    --shadow-card: 0 10px 40px rgba(0,0,0,0.4);
    --shadow-lg: 0 20px 60px rgba(0,0,0,0.6);
    --font-heading: 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
    --font-body: 'Outfit', 'Inter', -apple-system, sans-serif;
    --radius: 0px;
    --radius-lg: 0px;
    --transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

/* ---------- Reset & Base ---------- */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

::selection {
    background: var(--gold);
    color: var(--bg-primary);
}

/* ---------- Scrollbar ---------- */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--bg-secondary); }
::-webkit-scrollbar-thumb { background: var(--gold-dark); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--gold); }

/* ---------- Typography ---------- */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--text-primary);
    font-weight: 600;
    line-height: 1.3;
}

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

a:hover {
    color: var(--gold-light);
}

/* ---------- Preloader ---------- */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bg-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

#preloader.loaded {
    opacity: 0;
    visibility: hidden;
}

.preloader-inner {
    text-align: center;
}

.preloader-ring {
    width: 50px;
    height: 50px;
    border: 3px solid var(--border-subtle);
    border-top-color: var(--gold);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 15px;
}

.preloader-text {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: var(--gold);
    letter-spacing: 3px;
    text-transform: uppercase;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* ---------- Top Bar ---------- */
.top-bar {
    background: var(--bg-secondary);
    border-bottom: 1px solid var(--border-subtle);
    padding: 8px 0;
    font-size: 0.85rem;
}

.top-bar-info span {
    color: var(--text-secondary);
    margin-right: 25px;
}

.top-bar-info i {
    color: var(--gold);
    margin-right: 6px;
}

.top-bar-social a {
    color: var(--text-secondary);
    margin-left: 15px;
    font-size: 0.9rem;
    transition: var(--transition);
}

.top-bar-social a:hover {
    color: var(--gold);
    transform: translateY(-2px);
}

/* ---------- Navbar ---------- */
#mainNavbar {
    background: rgba(10, 10, 15, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-subtle);
    padding: 12px 0;
    transition: var(--transition);
    z-index: 1000;
}

#mainNavbar.scrolled {
    background: rgba(10, 10, 15, 0.97);
    padding: 8px 0;
    box-shadow: var(--shadow-gold);
}

.navbar-brand {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary) !important;
    display: flex;
    align-items: center;
    gap: 10px;
}

.brand-icon {
    color: var(--gold);
    font-size: 1.3rem;
}

.navbar-nav .nav-link {
    color: var(--text-secondary) !important;
    font-weight: 500;
    padding: 8px 16px !important;
    font-size: 0.9rem;
    position: relative;
    transition: var(--transition);
    letter-spacing: 0.3px;
}

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

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

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

.navbar-nav .nav-link i {
    margin-right: 4px;
    font-size: 0.8rem;
}

.navbar-nav .nav-link.btn-nav-order {
    background: transparent !important;
    color: var(--gold) !important;
    border: 1px solid var(--gold) !important;
    border-radius: var(--radius) !important;
    padding: 8px 24px !important;
    font-weight: 500 !important;
    margin-left: 10px;
    letter-spacing: 0.5px;
}

.navbar-nav .nav-link.btn-nav-order::after {
    display: none !important;
}

.navbar-nav .nav-link.btn-nav-order:hover,
.navbar-nav .nav-link.btn-nav-order.active {
    background: var(--gold) !important;
    color: #fff !important;
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold);
}

/* ---------- Buttons ---------- */
.btn-gold {
    background: var(--gold);
    color: #fff;
    border: 1px solid var(--gold);
    padding: 14px 36px;
    font-weight: 500;
    border-radius: var(--radius);
    font-size: 0.95rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.btn-gold::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: 0.5s;
}

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

.btn-outline-gold {
    border: 1px solid var(--gold);
    color: var(--gold);
    padding: 14px 36px;
    border-radius: var(--radius);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    background: transparent;
    transition: var(--transition);
}

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

/* ---------- Section Styles ---------- */
.section {
    padding: 100px 0;
    position: relative;
}

.section-dark {
    background: var(--bg-secondary);
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title .subtitle {
    color: var(--gold);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 4px;
    font-weight: 600;
    display: block;
    margin-bottom: 10px;
}

.section-title h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.section-title .title-line {
    width: 80px;
    height: 3px;
    background: var(--gradient-gold);
    margin: 0 auto 20px;
    border-radius: 3px;
}

.section-title p {
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
    font-size: 1.05rem;
}

/* ---------- Hero Section ---------- */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: var(--bg-primary);
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(10,10,15,0.95) 0%, rgba(10,10,15,0.7) 50%, rgba(10,10,15,0.85) 100%);
    z-index: 1;
}

.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

.hero-particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--gold);
    border-radius: 50%;
    opacity: 0;
    animation: floatParticle 6s infinite;
}

@keyframes floatParticle {
    0% { opacity: 0; transform: translateY(100vh) scale(0); }
    10% { opacity: 0.6; }
    90% { opacity: 0.6; }
    100% { opacity: 0; transform: translateY(-10vh) scale(1); }
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 40px 0;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(201,168,76,0.1);
    border: 1px solid rgba(201,168,76,0.3);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    color: var(--gold);
    margin-bottom: 20px;
    animation: fadeInUp 0.8s ease;
}

.hero-badge i {
    font-size: 0.75rem;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    animation: fadeInUp 0.8s ease 0.2s both;
}

.hero-title .highlight {
    color: var(--gold);
    font-style: italic;
    font-weight: 400;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: var(--text-secondary);
    margin-bottom: 35px;
    max-width: 550px;
    animation: fadeInUp 0.8s ease 0.4s both;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 50px;
    animation: fadeInUp 0.8s ease 0.6s both;
}

.hero-stats {
    display: flex;
    gap: 50px;
    animation: fadeInUp 0.8s ease 0.8s both;
}

.hero-stat {
    text-align: center;
}

.hero-stat-number {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--gold);
    display: block;
}

.hero-stat-label {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.hero-visual {
    position: relative;
    animation: fadeInRight 1s ease 0.4s both;
}

.hero-image-wrapper {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.hero-image-wrapper::before {
    display: none;
}

.hero-image-placeholder {
    width: 100%;
    height: 500px;
    background: linear-gradient(135deg, var(--bg-card) 0%, var(--bg-surface) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 15px;
}

.hero-image-placeholder i {
    font-size: 4rem;
    color: var(--gold);
    opacity: 0.5;
}

.hero-image-placeholder span {
    font-size: 1rem;
    color: var(--text-muted);
}

.hero-float-card {
    position: absolute;
    background: rgba(22,22,31,0.9);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    padding: 15px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    animation: float 3s ease-in-out infinite;
}

.hero-float-card.card-1 {
    bottom: 30px;
    left: -30px;
}

.hero-float-card.card-2 {
    top: 30px;
    right: -20px;
    animation-delay: 1.5s;
}

.hero-float-card .icon-box {
    width: 45px;
    height: 45px;
    border: 1px solid var(--border-color);
    background: transparent;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 1.1rem;
}

.hero-float-card .card-info h6 {
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 2px;
}

.hero-float-card .card-info span {
    font-size: 0.75rem;
    color: var(--text-muted);
}

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

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

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

/* ---------- Product Cards ---------- */
.product-card {
    background: var(--bg-card);
    border-radius: var(--radius);
    border: 1px solid var(--border-subtle);
    overflow: hidden;
    transition: var(--transition);
    height: 100%;
}

.product-card:hover {
    transform: translateY(-4px);
    border-color: var(--border-color);
    box-shadow: var(--shadow-card);
}

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

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

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

.product-card-img .img-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--bg-surface), var(--bg-card-hover));
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-card-img .img-placeholder i {
    font-size: 3rem;
    color: var(--gold);
    opacity: 0.3;
}

.product-card-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--gradient-gold);
    color: var(--bg-primary);
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
}

.product-card-body {
    padding: 20px;
}

.product-card-category {
    color: var(--gold);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    margin-bottom: 6px;
}

.product-card-title {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 8px;
    transition: var(--transition);
}

.product-card:hover .product-card-title {
    color: var(--gold);
}

.product-card-desc {
    color: var(--text-secondary);
    font-size: 0.88rem;
    margin-bottom: 15px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

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

.product-price {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--gold);
}

.product-card-footer .btn-sm {
    padding: 6px 18px;
    font-size: 0.82rem;
}

/* ---------- Gallery ---------- */
.gallery-filters {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 40px;
}

.gallery-filter-btn {
    padding: 8px 24px;
    border: 1px solid var(--border-color);
    background: transparent;
    color: var(--text-secondary);
    border-radius: 50px;
    font-size: 0.88rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
}

.gallery-filter-btn:hover,
.gallery-filter-btn.active {
    background: var(--gold);
    color: var(--bg-primary);
    border-color: var(--gold);
}

.gallery-grid {
    columns: 3;
    column-gap: 20px;
}

.gallery-item {
    break-inside: avoid;
    margin-bottom: 20px;
    border-radius: var(--radius);
    overflow: hidden;
    position: relative;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    display: block;
    transition: transform 0.6s ease;
}

.gallery-item .img-placeholder {
    width: 100%;
    height: 280px;
    background: linear-gradient(135deg, var(--bg-surface), var(--bg-card));
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 8px;
}

.gallery-item .img-placeholder i {
    font-size: 2.5rem;
    color: var(--gold);
    opacity: 0.3;
}

.gallery-item .img-placeholder span {
    color: var(--text-muted);
    font-size: 0.85rem;
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(10,10,15,0.9) 0%, transparent 60%);
    opacity: 0;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 20px;
}

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

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

.gallery-overlay h5 {
    font-size: 1.1rem;
    margin-bottom: 4px;
}

.gallery-overlay span {
    color: var(--gold);
    font-size: 0.85rem;
}

.gallery-overlay .zoom-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    width: 50px;
    height: 50px;
    background: transparent;
    border: 1px solid var(--border-color);
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 1.2rem;
    transition: var(--transition);
}

.gallery-item:hover .zoom-icon {
    transform: translate(-50%, -50%) scale(1);
}

/* ---------- About Section ---------- */
.about-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius);
    padding: 30px;
    height: 100%;
    transition: var(--transition);
}

.about-card:hover {
    border-color: var(--border-color);
    transform: translateY(-5px);
}

.about-icon {
    width: 60px;
    height: 60px;
    background: transparent;
    border: 1px solid var(--border-color);
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 1.5rem;
    margin-bottom: 20px;
    transition: var(--transition);
}

.about-card:hover .about-icon {
    background: var(--gold);
    color: #fff;
    border-color: var(--gold);
}

/* ---------- Service Cards ---------- */
.service-card {
    background: transparent;
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius);
    padding: 40px 30px;
    text-align: center;
    transition: var(--transition);
    height: 100%;
}

.service-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 255, 255, 0.15);
    background: var(--bg-card);
}

.service-icon {
    width: 60px;
    height: 60px;
    border: 1px solid var(--border-color);
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: var(--gold);
    font-size: 1.6rem;
    transition: var(--transition);
}

.service-card:hover .service-icon {
    background: var(--gold);
    color: #fff;
    border-color: var(--gold);
}

.service-card h4 {
    font-size: 1.15rem;
    margin-bottom: 10px;
}

.service-card p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* ---------- Team Section ---------- */
.team-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius);
    overflow: hidden;
    text-align: center;
    transition: var(--transition);
}

.team-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-card);
    border-color: rgba(255, 255, 255, 0.15);
}

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

.team-card-img .img-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--bg-surface), var(--bg-card-hover));
    display: flex;
    align-items: center;
    justify-content: center;
}

.team-card-img .img-placeholder i {
    font-size: 4rem;
    color: var(--gold);
    opacity: 0.3;
}

.team-card-body {
    padding: 25px 20px;
}

.team-card-body h5 {
    font-size: 1.1rem;
    margin-bottom: 4px;
}

.team-card-body .position {
    color: var(--gold);
    font-size: 0.85rem;
    font-weight: 500;
}

.team-card-body p {
    color: var(--text-secondary);
    font-size: 0.88rem;
    margin-top: 10px;
}

/* ---------- CTA Section ---------- */
.cta-section {
    background: var(--bg-card);
    border-top: 1px solid var(--border-subtle);
    border-bottom: 1px solid var(--border-subtle);
}

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.cta-section p {
    color: var(--text-secondary);
    font-size: 1.05rem;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* ---------- Forms ---------- */
.form-dark .form-control,
.form-dark .form-select {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    color: var(--text-primary);
    padding: 12px 16px;
    border-radius: var(--radius);
    font-size: 0.95rem;
    transition: var(--transition);
}

.form-dark .form-control:focus,
.form-dark .form-select:focus {
    background: var(--bg-card-hover);
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(201,168,76,0.15);
    color: var(--text-primary);
}

.form-dark .form-control::placeholder {
    color: var(--text-muted);
}

.form-dark .form-label {
    color: var(--text-secondary);
    font-weight: 500;
    font-size: 0.9rem;
    margin-bottom: 6px;
}

.form-dark textarea.form-control {
    min-height: 120px;
    resize: vertical;
}

/* ---------- Alerts ---------- */
.alert-custom {
    border: none;
    border-radius: var(--radius);
    font-size: 0.92rem;
}

.alert-success {
    background: rgba(40, 167, 69, 0.15);
    border-left: 4px solid #28a745;
    color: #7dcea0;
}

.alert-danger {
    background: rgba(220, 53, 69, 0.15);
    border-left: 4px solid #dc3545;
    color: #f5b7b1;
}

/* ---------- Contact Info Cards ---------- */
.contact-info-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius);
    padding: 30px;
    text-align: center;
    transition: var(--transition);
    height: 100%;
}

.contact-info-card:hover {
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
}

.contact-info-card .icon {
    width: 50px;
    height: 50px;
    border: 1px solid var(--border-color);
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--gold);
    font-size: 1.4rem;
}

.contact-info-card h5 {
    font-size: 1rem;
    margin-bottom: 8px;
}

.contact-info-card p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin: 0;
}

/* ---------- Map Container ---------- */
.map-container {
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--border-color);
    height: 400px;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
    filter: grayscale(0.3) brightness(0.7) contrast(1.1);
}

/* ---------- Blog Cards ---------- */
.blog-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius);
    overflow: hidden;
    transition: var(--transition);
    height: 100%;
}

.blog-card:hover {
    transform: translateY(-8px);
    border-color: var(--border-color);
    box-shadow: var(--shadow-gold);
}

.blog-card-img {
    height: 220px;
    overflow: hidden;
}

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

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

.blog-card-img .img-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--bg-surface), var(--bg-card-hover));
    display: flex;
    align-items: center;
    justify-content: center;
}

.blog-card-img .img-placeholder i {
    font-size: 2.5rem;
    color: var(--gold);
    opacity: 0.3;
}

.blog-card-body {
    padding: 25px;
}

.blog-card-meta {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 10px;
    font-size: 0.8rem;
    color: var(--text-muted);
}

.blog-card-meta i {
    color: var(--gold);
    margin-right: 4px;
}

.blog-card-title {
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 10px;
    transition: var(--transition);
}

.blog-card:hover .blog-card-title {
    color: var(--gold);
}

.blog-card-excerpt {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 15px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-read-more {
    color: var(--gold);
    font-weight: 600;
    font-size: 0.9rem;
}

.blog-read-more:hover {
    color: var(--gold-light);
}

.blog-read-more i {
    transition: transform 0.3s ease;
}

.blog-read-more:hover i {
    transform: translateX(5px);
}

/* ---------- Blog Detail ---------- */
.blog-detail-header {
    background: var(--bg-secondary);
    padding: 80px 0 50px;
    border-bottom: 1px solid var(--border-subtle);
}

.blog-detail-content {
    padding: 50px 0;
}

.blog-detail-content .content-body {
    color: var(--text-secondary);
    font-size: 1.05rem;
    line-height: 1.9;
}

.blog-detail-content .content-body h2,
.blog-detail-content .content-body h3 {
    color: var(--text-primary);
    margin: 30px 0 15px;
}

.blog-detail-content .content-body p {
    margin-bottom: 20px;
}

.blog-sidebar .sidebar-widget {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius);
    padding: 25px;
    margin-bottom: 25px;
}

.blog-sidebar .sidebar-widget h4 {
    font-size: 1.1rem;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--border-subtle);
}

.sidebar-post {
    display: flex;
    gap: 12px;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--border-subtle);
}

.sidebar-post:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.sidebar-post h6 {
    font-size: 0.9rem;
    font-family: var(--font-body);
    font-weight: 600;
    margin-bottom: 3px;
    transition: var(--transition);
}

.sidebar-post:hover h6 {
    color: var(--gold);
}

.sidebar-post span {
    font-size: 0.78rem;
    color: var(--text-muted);
}

/* ---------- Page Banner ---------- */
.page-banner {
    background: var(--bg-secondary);
    padding: 120px 0 60px;
    text-align: center;
    position: relative;
    border-bottom: 1px solid var(--border-subtle);
}

.page-banner::before {
    display: none;
}

.page-banner h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
    position: relative;
}

.page-banner .breadcrumb {
    justify-content: center;
    position: relative;
}

.page-banner .breadcrumb-item {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.page-banner .breadcrumb-item a {
    color: var(--gold);
}

.page-banner .breadcrumb-item.active {
    color: var(--text-secondary);
}

.breadcrumb-item + .breadcrumb-item::before {
    color: var(--text-muted);
}

/* ---------- Local SEO Section ---------- */
.local-seo-section {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius);
    padding: 60px;
    margin-top: 30px;
}

.local-seo-section h2 {
    color: var(--gold);
    font-size: 2rem;
    margin-bottom: 20px;
}

.local-seo-section p {
    color: var(--text-secondary);
    font-size: 1.05rem;
    line-height: 1.8;
}

/* ---------- WhatsApp Float ---------- */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.8rem;
    z-index: 999;
    box-shadow: 0 4px 20px rgba(37,211,102,0.4);
    transition: var(--transition);
    animation: pulse 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    color: #fff;
    box-shadow: 0 6px 30px rgba(37,211,102,0.6);
}

@keyframes pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(37,211,102,0.4); }
    50% { box-shadow: 0 0 0 15px rgba(37,211,102,0); }
}

/* ---------- Back to Top ---------- */
.back-to-top {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 45px;
    height: 45px;
    background: var(--gold);
    border: none;
    border-radius: 0;
    color: #fff;
    font-size: 1rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 999;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-gold);
}

/* ---------- Footer ---------- */
.site-footer {
    background: var(--bg-secondary);
    border-top: 1px solid var(--border-subtle);
}

.footer-top {
    padding: 80px 0 50px;
}

.footer-brand {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-brand i {
    color: var(--gold);
}

.footer-about {
    color: var(--text-secondary);
    font-size: 0.92rem;
    margin-bottom: 20px;
}

.footer-social {
    display: flex;
    gap: 10px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: transparent;
    border: 1px solid var(--border-color);
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 0.9rem;
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--gold);
    color: var(--bg-primary);
    transform: translateY(-3px);
}

.footer-title {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    margin-bottom: 20px;
    color: var(--text-primary);
    position: relative;
    padding-bottom: 10px;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--gold);
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: var(--text-secondary);
    font-size: 0.9rem;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--gold);
    padding-left: 5px;
}

.footer-links a i {
    color: var(--gold);
    font-size: 0.7rem;
    margin-right: 8px;
}

.footer-contact {
    list-style: none;
    padding: 0;
}

.footer-contact li {
    display: flex;
    gap: 12px;
    margin-bottom: 15px;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.footer-contact li i {
    color: var(--gold);
    margin-top: 4px;
    font-size: 0.9rem;
}

.footer-bottom {
    border-top: 1px solid var(--border-subtle);
    padding: 20px 0;
}

.copyright, .footer-credits {
    color: var(--text-muted);
    font-size: 0.85rem;
    margin: 0;
}

/* ---------- Lightbox ---------- */
.lightbox-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.95);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.lightbox-overlay.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-content {
    max-width: 90%;
    max-height: 90vh;
    position: relative;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 85vh;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
}

.lightbox-close {
    position: absolute;
    top: -40px;
    right: 0;
    background: none;
    border: none;
    color: #fff;
    font-size: 2rem;
    cursor: pointer;
    transition: var(--transition);
}

.lightbox-close:hover {
    color: var(--gold);
    transform: rotate(90deg);
}

.lightbox-caption {
    text-align: center;
    padding: 15px;
    color: var(--text-secondary);
}

/* ---------- Order Page ---------- */
.order-form-wrapper {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    padding: 40px;
}

.order-form-wrapper h3 {
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--border-subtle);
}

.order-info-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius);
    padding: 25px;
    margin-bottom: 20px;
}

.order-info-card h5 {
    color: var(--gold);
    font-size: 1rem;
    margin-bottom: 15px;
}

.order-info-card ul {
    list-style: none;
    padding: 0;
}

.order-info-card ul li {
    padding: 8px 0;
    border-bottom: 1px solid var(--border-subtle);
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.order-info-card ul li:last-child {
    border-bottom: none;
}

.order-info-card ul li i {
    color: var(--gold);
    margin-right: 10px;
    width: 16px;
}

/* ---------- Product Detail ---------- */
.product-detail-section {
    padding: 50px 0 100px;
}

.product-detail-img {
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border-subtle);
}

.product-detail-img img {
    width: 100%;
    height: auto;
}

.product-detail-img .img-placeholder {
    width: 100%;
    height: 450px;
    background: linear-gradient(135deg, var(--bg-surface), var(--bg-card));
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-detail-img .img-placeholder i {
    font-size: 5rem;
    color: var(--gold);
    opacity: 0.3;
}

.product-detail-info {
    padding: 20px 0;
}

.product-detail-info .category {
    color: var(--gold);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
}

.product-detail-info h1 {
    font-size: 2rem;
    margin: 10px 0 15px;
}

.product-detail-info .price {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--gold);
    font-weight: 700;
    margin-bottom: 20px;
}

.product-detail-info .description {
    color: var(--text-secondary);
    font-size: 1.02rem;
    line-height: 1.8;
    margin-bottom: 30px;
}

/* ---------- 404 Page ---------- */
.error-page {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.error-page h1 {
    font-size: 8rem;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 10px;
}

.error-page h3 {
    margin-bottom: 15px;
}

.error-page p {
    color: var(--text-secondary);
    margin-bottom: 30px;
}

/* ---------- Responsive ---------- */
@media (max-width: 991px) {
    .hero-title { font-size: 2.5rem; }
    .hero-stats { gap: 30px; }
    .hero-visual { margin-top: 40px; }
    .hero-float-card { display: none; }
    .section { padding: 70px 0; }
    .section-title h2 { font-size: 2rem; }
    .gallery-grid { columns: 2; }
    .local-seo-section { padding: 30px; }
}

@media (max-width: 767px) {
    .hero-title { font-size: 2rem; }
    .hero-subtitle { font-size: 1rem; }
    .hero-stats { flex-wrap: wrap; gap: 20px; }
    .hero-stat-number { font-size: 2rem; }
    .hero-buttons { flex-direction: column; }
    .hero-buttons .btn { width: 100%; text-align: center; }
    .section { padding: 50px 0; }
    .section-title h2 { font-size: 1.7rem; }
    .section-title { margin-bottom: 40px; }
    .gallery-grid { columns: 1; }
    .page-banner { padding: 100px 0 40px; }
    .page-banner h1 { font-size: 1.8rem; }
    .order-form-wrapper { padding: 25px; }
    .cta-section h2 { font-size: 1.8rem; }
    .footer-top { padding: 50px 0 30px; }
    .whatsapp-float { bottom: 20px; right: 15px; width: 50px; height: 50px; font-size: 1.5rem; }
    .back-to-top { bottom: 80px; right: 15px; }
    .btn-nav-order { margin: 10px 0 0 0; }
    .local-seo-section { padding: 25px; }
    .local-seo-section h2 { font-size: 1.5rem; }
}

/* ---------- Utility Classes ---------- */
.text-gold { color: var(--gold) !important; }
.bg-gold { background: var(--gradient-gold) !important; }
.border-gold { border-color: var(--gold) !important; }
.mb-6 { margin-bottom: 5rem !important; }
.mt-6 { margin-top: 5rem !important; }
