/* ==========================================================================
   Base Styles & Variables
   ========================================================================== */
:root {
    /* Premium Color Palette */
    --primary: #D4AF37;       /* Gold / Champagne */
    --primary-hover: #b5952f;
    --bg-main: #0B1021;       /* Deep Navy */
    --bg-darker: #060913;     /* Darker Navy/Black */
    --text-main: #E2E8F0;     /* Soft White */
    --text-muted: #94A3B8;    /* Slate */
    
    /* Typography */
    --font-primary: 'Outfit', sans-serif;
    
    /* Transitions */
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    background-color: var(--bg-main);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
    cursor: none; /* For custom cursor */
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-smooth);
    cursor: none; /* For custom cursor */
}

button {
    cursor: none; /* For custom cursor */
}

ul {
    list-style: none;
}

/* ==========================================================================
   Typography & Utilities
   ========================================================================== */
h1, h2, h3, h4 {
    font-weight: 600;
    line-height: 1.2;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section-padding {
    padding: 100px 0;
}

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

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

.section-title h2 {
    font-size: 2.5rem;
    color: #fff;
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.section-title .underline {
    width: 60px;
    height: 3px;
    background-color: var(--primary);
    margin: 0 auto;
}

.section-title .subtitle {
    margin-top: 15px;
    color: var(--text-muted);
    font-size: 1.1rem;
}

.center-btn {
    text-align: center;
    margin-top: 40px;
}

/* Buttons */
.btn-primary {
    display: inline-block;
    padding: 12px 28px;
    background-color: var(--primary);
    color: #000;
    font-weight: 600;
    border-radius: 4px;
    border: 2px solid var(--primary);
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

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

.btn-primary-outline {
    display: inline-block;
    padding: 12px 28px;
    background-color: transparent;
    color: var(--primary);
    font-weight: 600;
    border-radius: 4px;
    border: 2px solid var(--primary);
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

.btn-primary-outline:hover {
    background-color: var(--primary);
    color: #000;
}

.btn-secondary {
    display: inline-block;
    padding: 12px 28px;
    background-color: rgba(255, 255, 255, 0.1);
    color: #fff;
    font-weight: 600;
    border-radius: 4px;
    border: 2px solid transparent;
    backdrop-filter: blur(5px);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

.btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

/* ==========================================================================
   Navigation
   ========================================================================== */
nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 0;
    z-index: 1000;
    transition: var(--transition-smooth);
}

nav.scrolled {
    background-color: rgba(6, 9, 19, 0.6);
    padding: 15px 0;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: 2px;
}

.logo-highlight {
    color: var(--primary);
    font-weight: 300;
}

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

.nav-links a {
    font-size: 0.95rem;
    font-weight: 400;
    letter-spacing: 0.5px;
    position: relative;
}

.nav-links a:not(.btn-primary-outline):not(.nav-link-vendor)::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0%;
    height: 2px;
    background-color: var(--primary);
    transition: var(--transition-smooth);
}

.nav-links a:hover:not(.btn-primary-outline):not(.nav-link-vendor)::after {
    width: 100%;
}

.nav-link-vendor {
    color: var(--text-muted);
}
.nav-link-vendor:hover {
    color: #fff;
}

.mobile-menu-icon {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
}

/* ==========================================================================
   Floating Social Links
   ========================================================================== */
.floating-socials {
    position: fixed;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 2000;
}
.floating-socials a {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.2rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition-smooth);
}
.floating-socials a:hover {
    background-color: var(--primary);
    color: #000;
    transform: scale(1.1);
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background-color: #000;
    overflow: hidden;
}

.video-wrap {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.hero-video {
    width: 100vw;
    height: 100vh;
    object-fit: cover;
    pointer-events: none;
    opacity: 0.6;
}

@media (max-width: 992px) {
    .services-featured-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .services-standard-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .services-featured-grid, .services-standard-grid {
        grid-template-columns: 1fr;
    }
}

.hero-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: radial-gradient(circle at center, rgba(6,9,19,0.3) 0%, var(--bg-darker) 100%);
    z-index: 2;
}

.hero-typewriter-container {
    font-size: 1.8rem;
    color: var(--primary);
    margin-bottom: 40px;
    animation: fadeInUp 1s ease 0.3s forwards;
    opacity: 0;
    font-weight: 300;
}

.typewriter-text {
    font-weight: 600;
    color: #fff;
}

.cursor {
    display: inline-block;
    width: 2px;
    animation: blink 0.75s step-end infinite;
}

@keyframes blink {
    from, to { color: transparent; }
    50% { color: var(--primary); }
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 800px;
    padding: 0 20px;
}

.hero-title {
    font-size: 4.5rem;
    color: #fff;
    margin-bottom: 20px;
    animation: fadeInUp 1s ease forwards;
    opacity: 0;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 40px;
    animation: fadeInUp 1s ease 0.3s forwards;
    opacity: 0;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    animation: fadeInUp 1s ease 0.6s forwards;
    opacity: 0;
}

/* ==========================================================================
   About Us & Stats Section
   ========================================================================== */
.about-section {
    background-color: var(--bg-darker);
    padding: 100px 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-content h2 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.about-content p {
    color: var(--text-muted);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 20px;
}

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

.stat-card {
    background: rgba(26, 31, 54, 0.4);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 30px 20px;
    text-align: center;
    box-shadow: 0 4px 30px rgba(0,0,0,0.1);
    transition: var(--transition-smooth);
}

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

.stat-card h3 {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 10px;
}

.stat-card p {
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ==========================================================================
   Page Padding
   ========================================================================== */
.page-top-padding {
    padding-top: 150px !important;
}

/* ==========================================================================
   Services Section
   ========================================================================== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.services-featured-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.services-standard-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.service-card {
    background: rgba(26, 31, 54, 0.4);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 50px 30px;
    border-radius: 12px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 2px;
    background-color: var(--primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition-smooth);
}

.service-card:hover {
    transform: translateY(-10px);
    background-color: rgba(255, 255, 255, 0.02);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-icon {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #fff;
}

.service-card p {
    color: var(--text-muted);
}

/* ==========================================================================
   Gallery Section & Modal
   ========================================================================== */
.album-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 20px;
}

.album-item.stacked {
    aspect-ratio: 4/3;
    position: relative;
    cursor: pointer;
    background: transparent;
}

.album-cover {
    width: 100%;
    height: 100%;
    background-color: var(--bg-darker);
    border-radius: 8px;
    position: relative;
    z-index: 3;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    transition: var(--transition-smooth);
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Stacked effect layers */
.album-item.stacked::before,
.album-item.stacked::after {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    transition: var(--transition-smooth);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.album-item.stacked::before {
    z-index: 2;
    transform: rotate(3deg) scale(0.95);
    background-color: rgba(26, 31, 54, 0.8);
    backdrop-filter: blur(5px);
}

.album-item.stacked::after {
    z-index: 1;
    transform: rotate(-3deg) scale(0.9);
    background-color: rgba(26, 31, 54, 0.5);
    backdrop-filter: blur(10px);
}

.album-item.stacked:hover .album-cover {
    transform: translateY(-10px);
}
.album-item.stacked:hover::before {
    transform: rotate(5deg) scale(0.95) translateY(-5px);
}
.album-item.stacked:hover::after {
    transform: rotate(-5deg) scale(0.9) translateY(-2px);
}

.album-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-color: rgba(212, 175, 55, 0.85);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition-smooth);
    z-index: 4;
}

.album-item.stacked:hover .album-overlay {
    opacity: 1;
}

/* Modal */
.album-modal {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(6, 9, 19, 0.9);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    z-index: 3000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
}

.album-modal.active {
    opacity: 1;
    pointer-events: all;
}

.modal-close {
    position: absolute;
    top: 30px; right: 40px;
    font-size: 2rem;
    color: #fff;
    cursor: pointer;
    transition: var(--transition-smooth);
}
.modal-close:hover { color: var(--primary); transform: rotate(90deg); }

.modal-content {
    width: 90%;
    max-width: 1200px;
    max-height: 90vh;
    overflow-y: auto;
    padding: 20px;
}

.modal-content::-webkit-scrollbar {
    width: 8px;
}
.modal-content::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 4px;
}

.modal-media-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 15px;
}

.modal-media-item {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

/* Instagram Row Placeholder Grid */
.insta-placeholder-grid {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 20px;
}
.insta-item {
    aspect-ratio: 1;
    background-color: var(--bg-darker);
    border-radius: 4px;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    background: linear-gradient(45deg, #121930, #0B1021);
    display: flex;
    align-items: center;
    justify-content: center;
}
.insta-item::before {
    content: '\f16d';
    font-family: 'Font Awesome 6 Brands';
    font-size: 2rem;
    color: rgba(255,255,255,0.05);
}
.insta-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-color: rgba(212, 175, 55, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition-smooth);
}
.insta-item:hover .insta-overlay { opacity: 1; }
.insta-overlay i { font-size: 2rem; color: #000; transform: scale(0.5); transition: var(--transition-smooth); }
.insta-item:hover .insta-overlay i { transform: scale(1); }

/* ==========================================================================
   Brands Section
   ========================================================================== */
.brands-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 60px;
    flex-wrap: wrap;
    opacity: 0.7;
}

.brand-item {
    font-size: 4rem;
    color: var(--text-muted);
    transition: var(--transition-smooth);
}

.brand-item:hover {
    color: #fff;
    transform: scale(1.1);
}

/* ==========================================================================
   Testimonials Section
   ========================================================================== */
.testi-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.testi-card {
    background-color: var(--bg-main);
    padding: 40px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
}

.testi-icon {
    position: absolute;
    top: -20px;
    left: 40px;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary), var(--primary-hover));
    color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 1.2rem;
}

.testi-card p {
    font-size: 1.1rem;
    font-style: italic;
    color: var(--text-main);
    margin-bottom: 20px;
    line-height: 1.8;
}

.testi-author h4 {
    color: var(--primary);
    font-size: 1.1rem;
    margin-bottom: 2px;
}

.testi-author span {
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* ==========================================================================
   Contact Section (New Layout)
   ========================================================================== */
.contact-header {
    margin-bottom: 50px;
}

.contact-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.25);
    border-radius: 999px;
    padding: 6px 16px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--primary);
    margin-bottom: 20px;
}

.contact-badge .dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--primary);
}

.contact-header h2 {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 16px;
}

.text-gradient {
    background: linear-gradient(90deg, #D4AF37, #F3E5AB);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.contact-header p {
    color: var(--text-muted);
    max-width: 500px;
    margin: 0 auto;
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.contact-info-card {
    background: var(--bg-main);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 24px;
    display: flex;
    gap: 16px;
    align-items: flex-start;
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}

.contact-info-card .icon-box {
    width: 44px;
    height: 44px;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.2rem;
    flex-shrink: 0;
}

.contact-info-card h4 {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 6px;
}

.contact-info-card p, .contact-info-card a {
    font-size: 13px;
    color: var(--text-main);
    line-height: 1.6;
}

.contact-map-form {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 30px;
    align-items: start;
}

.map-container {
    background: var(--bg-main);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    overflow: hidden;
}

.map-header {
    padding: 18px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.map-header h4 {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--primary);
    text-transform: uppercase;
}

.map-header p {
    font-size: 13px;
    color: var(--text-muted);
}

.contact-form-wrapper {
    background: var(--bg-main);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 32px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.3);
    border-top: 3px solid var(--primary);
}

.contact-form-wrapper h3 {
    font-size: 20px;
    margin-bottom: 4px;
}

.form-note {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 24px;
}

.form-row-3 {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 15px;
    margin-bottom: 15px;
}

.form-row-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 25px;
}

.contact-form-wrapper label {
    display: block;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.6px;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 6px;
}

.contact-form-wrapper input,
.contact-form-wrapper select {
    width: 100%;
    background: var(--bg-darker);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 12px;
    font-size: 13px;
    color: #fff;
    font-family: var(--font-primary);
    outline: none;
    transition: var(--transition-smooth);
}

.contact-form-wrapper input:focus {
    border-color: var(--primary);
}

.btn-gradient {
    width: 100%;
    background: linear-gradient(135deg, var(--primary) 0%, #F3E5AB 100%);
    color: #000;
    font-weight: 700;
    font-size: 15px;
    padding: 15px;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    letter-spacing: 0.5px;
    transition: var(--transition-smooth);
}

.btn-gradient:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.4);
}

/* ==========================================================================
   Footer
   ========================================================================== */
footer {
    background-color: #030408;
    padding: 60px 0 20px;
    text-align: center;
}

.footer-logo h2 {
    font-size: 2rem;
    letter-spacing: 2px;
}

.footer-logo p {
    color: var(--text-muted);
    margin-top: 5px;
    margin-bottom: 30px;
}

.footer-socials {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
}

.footer-socials a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255,255,255,0.05);
    border-radius: 50%;
    color: #fff;
}

.footer-socials a:hover {
    background-color: var(--primary);
    color: #000;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.05);
    padding-top: 20px;
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* ==========================================================================
   Animations & Responsive
   ========================================================================== */
@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
    from {
        opacity: 0;
        transform: translateY(30px);
    }
}

.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.slide-up {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.slide-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 992px) {
    .about-grid, .contact-grid {
        grid-template-columns: 1fr;
    }
    .hero-title {
        font-size: 3.5rem;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none; /* Mobile menu hidden by default */
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--bg-darker);
        flex-direction: column;
        padding: 20px 0;
        text-align: center;
        box-shadow: 0 10px 20px rgba(0,0,0,0.5);
    }
    
    .nav-links.active {
        display: flex;
    }
    
    .mobile-menu-icon {
        display: block;
    }
    
    .services-grid, .insta-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
}

/* ==========================================================================
   Custom Cursor
   ========================================================================== */
.custom-cursor {
    width: 20px;
    height: 20px;
    border: 2px solid var(--primary);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: width 0.2s, height 0.2s, background-color 0.2s, border-color 0.2s;
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
}

.custom-cursor.hover {
    width: 50px;
    height: 50px;
    background-color: rgba(212, 175, 55, 0.1);
    border-color: rgba(212, 175, 55, 0.5);
}

/* ==========================================================================
   Custom Cursor
   ========================================================================== */
.custom-cursor {
    width: 20px;
    height: 20px;
    border: 2px solid var(--primary);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: width 0.2s, height 0.2s, background-color 0.2s, border-color 0.2s;
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
}

.custom-cursor.hover {
    width: 50px;
    height: 50px;
    background-color: rgba(212, 175, 55, 0.1);
    border-color: rgba(212, 175, 55, 0.5);
}

/* ==========================================================================
   Custom Cursor
   ========================================================================== */
.custom-cursor {
    width: 20px;
    height: 20px;
    border: 2px solid var(--primary);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: width 0.2s, height 0.2s, background-color 0.2s, border-color 0.2s;
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
}

.custom-cursor.hover {
    width: 50px;
    height: 50px;
    background-color: rgba(212, 175, 55, 0.1);
    border-color: rgba(212, 175, 55, 0.5);
}
