@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@300;400;500;600;700;800&display=swap');

:root {
    --bg-primary: #0a0b0e;
    --bg-secondary: #12141c;
    --bg-card: rgba(22, 26, 38, 0.7);
    --bg-card-hover: rgba(30, 36, 52, 0.9);
    --border-color: rgba(255, 255, 255, 0.08);
    --border-color-glow: rgba(212, 175, 55, 0.3);
    
    --text-primary: #f7fafc;
    --text-secondary: #a0aec0;
    --text-muted: #718096;
    
    --accent-gold: #e5b83b;
    --accent-gold-gradient: linear-gradient(135deg, #f3d060 0%, #b8860b 100%);
    --accent-blue: #00f2fe;
    --accent-blue-gradient: linear-gradient(135deg, #00f2fe 0%, #4facfe 100%);
    
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    --transition-smooth: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* Global Reset & Body */
body {
    background-color: var(--bg-primary);
    color: var(--text-primary);
    font-family: var(--font-body);
    margin: 0;
    padding: 0;
    min-height: 100vh;
    display: flex;
    flex-column: column;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--text-primary);
    font-weight: 700;
    letter-spacing: -0.02em;
}

p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Scrollbar Style */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--bg-primary);
}
::-webkit-scrollbar-thumb {
    background: #1f2330;
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--accent-gold);
}

/* Premium Layout Elements */
.navbar-custom {
    background: rgba(10, 11, 14, 0.85) !important;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-color);
    padding: 0.8rem 1.5rem;
    transition: var(--transition-smooth);
}

.brand-title {
    font-family: var(--font-heading);
    font-weight: 800;
    letter-spacing: 1px;
    font-size: 1.4rem;
    color: var(--text-primary);
}
.brand-title span {
    background: var(--accent-gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.nav-link-custom {
    color: var(--text-secondary) !important;
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 0.95rem;
    margin: 0 0.5rem;
    position: relative;
    transition: var(--transition-smooth);
}
.nav-link-custom:hover, .nav-link-custom.active {
    color: var(--accent-gold) !important;
}
.nav-link-custom::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -4px;
    left: 0;
    background: var(--accent-gold-gradient);
    transition: var(--transition-smooth);
}
.nav-link-custom:hover::after, .nav-link-custom.active::after {
    width: 100%;
}

/* Hero Section */
.hero-section {
    position: relative;
    padding: 140px 0 80px 0;
    background: radial-gradient(circle at 80% 20%, rgba(229, 184, 59, 0.08) 0%, rgba(10, 11, 14, 0) 50%),
                radial-gradient(circle at 10% 80%, rgba(0, 242, 254, 0.05) 0%, rgba(10, 11, 14, 0) 50%);
}

.hero-tagline {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--accent-gold);
    font-weight: 700;
    margin-bottom: 1rem;
    display: inline-block;
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 1.5rem;
}
.hero-title span {
    background: var(--accent-gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-desc {
    font-size: 1.15rem;
    max-width: 600px;
    margin-bottom: 2.5rem;
}

/* Glassmorphism Cards */
.glass-card {
    background: var(--bg-card);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 2rem;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}
.glass-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255,255,255,0.03) 0%, rgba(255,255,255,0) 100%);
    pointer-events: none;
}
.glass-card:hover {
    transform: translateY(-8px);
    background: var(--bg-card-hover);
    border-color: var(--border-color-glow);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4), 0 0 15px rgba(229, 184, 59, 0.1);
}

/* Glow Border & Elements */
.glow-text-gold {
    text-shadow: 0 0 15px rgba(229, 184, 59, 0.4);
}
.glow-text-blue {
    text-shadow: 0 0 15px rgba(0, 242, 254, 0.4);
}

/* Buttons */
.btn-gold-glow {
    background: var(--accent-gold-gradient);
    color: #000 !important;
    font-family: var(--font-heading);
    font-weight: 700;
    border: none;
    border-radius: 30px;
    padding: 0.8rem 2rem;
    letter-spacing: 0.5px;
    transition: var(--transition-smooth);
    box-shadow: 0 4px 15px rgba(229, 184, 59, 0.3);
}
.btn-gold-glow:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(229, 184, 59, 0.6);
}

.btn-outline-custom {
    background: transparent;
    color: var(--text-primary) !important;
    font-family: var(--font-heading);
    font-weight: 600;
    border: 1px solid var(--text-muted);
    border-radius: 30px;
    padding: 0.8rem 2rem;
    transition: var(--transition-smooth);
}
.btn-outline-custom:hover {
    border-color: var(--accent-gold);
    color: var(--accent-gold) !important;
    background: rgba(229, 184, 59, 0.05);
    transform: translateY(-3px);
}

/* Product Catalog Layout */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 2rem;
    padding: 2rem 0;
}

.product-card {
    display: flex;
    flex-direction: column;
    height: 100%;
}
.product-image-placeholder {
    height: 200px;
    background: linear-gradient(135deg, #161922 0%, #0d0f15 100%);
    border-radius: 12px;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255,255,255,0.03);
    position: relative;
    overflow: hidden;
}
.product-image-placeholder i {
    font-size: 3rem;
    color: var(--text-muted);
    opacity: 0.3;
    transition: var(--transition-smooth);
}
.product-card:hover .product-image-placeholder i {
    transform: scale(1.1);
    color: var(--accent-gold);
    opacity: 0.7;
}

.product-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: rgba(229, 184, 59, 0.15);
    border: 1px solid var(--accent-gold);
    color: var(--accent-gold);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    padding: 3px 10px;
    border-radius: 20px;
}

.product-title {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}
.product-description {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.product-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: auto;
}
.product-price {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--accent-gold);
}

/* Service Showcases */
.service-icon-box {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    background: rgba(229, 184, 59, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(229, 184, 59, 0.2);
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
    color: var(--accent-gold);
    transition: var(--transition-smooth);
}
.glass-card:hover .service-icon-box {
    background: var(--accent-gold-gradient);
    color: #000;
    border-color: transparent;
    transform: scale(1.05);
}

/* Interactive Shopping Cart Page */
.cart-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0 15px;
}
.cart-table th {
    border: none;
    color: var(--text-muted);
    font-weight: 600;
    padding: 0 1.5rem;
    font-size: 0.9rem;
}
.cart-row {
    background: var(--bg-card);
    border-radius: 12px;
    transition: var(--transition-smooth);
}
.cart-row td {
    padding: 1.5rem;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}
.cart-row td:first-child {
    border-left: 1px solid var(--border-color);
    border-top-left-radius: 12px;
    border-bottom-left-radius: 12px;
}
.cart-row td:last-child {
    border-right: 1px solid var(--border-color);
    border-top-right-radius: 12px;
    border-bottom-right-radius: 12px;
}

.cart-qty-input {
    width: 70px;
    background: rgba(0,0,0,0.3);
    border: 1px solid var(--border-color);
    color: var(--text-primary);
    border-radius: 6px;
    padding: 5px 10px;
    text-align: center;
}
.cart-qty-input:focus {
    outline: none;
    border-color: var(--accent-gold);
}

.btn-remove {
    background: transparent;
    border: none;
    color: var(--text-muted);
    font-size: 1.2rem;
    transition: var(--transition-smooth);
}
.btn-remove:hover {
    color: #e53e3e;
    transform: scale(1.1);
}

/* Checkout Form Input styling */
.form-control-custom {
    background: rgba(0, 0, 0, 0.25) !important;
    border: 1px solid var(--border-color) !important;
    color: var(--text-primary) !important;
    border-radius: 8px !important;
    padding: 0.75rem 1rem !important;
    transition: var(--transition-smooth) !important;
}
.form-control-custom:focus {
    border-color: var(--accent-gold) !important;
    box-shadow: 0 0 10px rgba(229, 184, 59, 0.15) !important;
    outline: none !important;
}
label.form-label-custom {
    font-family: var(--font-heading);
    font-weight: 500;
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
}

/* Alert Notification Overlay */
.alert-overlay {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1050;
    background: #1a202c;
    border-left: 4px solid var(--accent-gold);
    box-shadow: 0 4px 12px rgba(0,0,0,0.5);
    border-radius: 4px;
}

/* Floating Cart Badge */
.cart-badge {
    background: var(--accent-gold-gradient);
    color: #000;
    font-weight: 700;
    font-size: 0.75rem;
    border-radius: 50%;
    padding: 0.25em 0.6em;
    position: absolute;
    top: -5px;
    right: -10px;
}

/* Media Specific Animation Settings */
@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}
.animated-float {
    animation: float 6s ease-in-out infinite;
}

/* Footer Section */
.footer-custom {
    background: #08090c;
    border-top: 1px solid var(--border-color);
    padding: 4rem 0 2rem 0;
    margin-top: auto;
}

/* Mobile Responsiveness Improvements */
@media(max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    .product-grid {
        grid-template-columns: 1fr;
    }
}
