/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Lato', sans-serif;
    line-height: 1.6;
    color: #f0f0f0;
    background: #000000;
    overflow-x: hidden;
}

/* Splash Screen Styles */
.splash-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: linear-gradient(135deg, 
        rgba(0, 0, 0, 0.9) 0%, 
        rgba(212, 175, 55, 0.1) 50%, 
        rgba(0, 0, 0, 0.9) 100%),
        url('https://images.unsplash.com/photo-1578662996442-48f60103fc96?w=1920&h=1080&fit=crop&crop=center') center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    transition: opacity 0.8s ease, visibility 0.8s ease;
    overflow: hidden;
}

.splash-screen.fade-out {
    opacity: 0;
    visibility: hidden;
}

.main-content {
    transition: opacity 0.5s ease;
}

.main-content.hidden {
    opacity: 0;
    pointer-events: none;
}

.splash-content {
    text-align: center;
    z-index: 2;
    position: relative;
}

.splash-logo {
    position: relative;
    margin-bottom: 30px;
    animation: logoFloat 3s ease-in-out infinite;
}

.splash-logo-img {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    box-shadow: 0 0 60px rgba(212, 175, 55, 0.8);
    animation: logoGlow 2s ease-in-out infinite alternate;
    transition: all 0.3s ease;
}

.splash-logo-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 220px;
    height: 220px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.3), transparent);
    border-radius: 50%;
    animation: glowPulse 2s ease-in-out infinite;
}

.splash-title {
    margin: 20px 0;
    animation: titleSlideUp 1s ease-out 0.5s both;
}

.splash-golden-text {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 900;
    background: linear-gradient(135deg, #FFD700, #d4af37, #FFD700);
    background-size: 300% 300%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: goldShimmer 3s ease-in-out infinite;
    text-shadow: 0 0 30px rgba(212, 175, 55, 0.5);
}

.splash-subtitle {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    color: #c0c0c0;
    margin-top: 5px;
    letter-spacing: 0.3em;
    animation: subtitleFadeIn 1s ease-out 1s both;
}

.splash-loader {
    margin-top: 40px;
    animation: loaderFadeIn 1s ease-out 1.5s both;
}

.loader-bar {
    width: 200px;
    height: 4px;
    background: rgba(212, 175, 55, 0.2);
    border-radius: 2px;
    margin: 0 auto 15px;
    overflow: hidden;
}

.loader-progress {
    height: 100%;
    background: linear-gradient(90deg, #d4af37, #FFD700, #d4af37);
    background-size: 300% 100%;
    border-radius: 2px;
    animation: loadingProgress 3s ease-in-out infinite, goldFlow 2s ease-in-out infinite;
}

.loader-text {
    color: #c0c0c0;
    font-size: 0.9rem;
    font-family: 'Lato', sans-serif;
    animation: textPulse 2s ease-in-out infinite;
}

/* Golden Bubbles Animation */
.splash-bubbles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.bubble {
    position: absolute;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.4), rgba(212, 175, 55, 0.2));
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 50%;
    animation: bubbleFloat 8s infinite linear;
}

.bubble:nth-child(1) {
    width: 40px;
    height: 40px;
    left: 10%;
    animation-delay: 0s;
    animation-duration: 8s;
}

.bubble:nth-child(2) {
    width: 60px;
    height: 60px;
    left: 20%;
    animation-delay: 1s;
    animation-duration: 10s;
}

.bubble:nth-child(3) {
    width: 30px;
    height: 30px;
    left: 35%;
    animation-delay: 2s;
    animation-duration: 7s;
}

.bubble:nth-child(4) {
    width: 50px;
    height: 50px;
    left: 50%;
    animation-delay: 3s;
    animation-duration: 9s;
}

.bubble:nth-child(5) {
    width: 35px;
    height: 35px;
    left: 65%;
    animation-delay: 1.5s;
    animation-duration: 8.5s;
}

.bubble:nth-child(6) {
    width: 45px;
    height: 45px;
    left: 80%;
    animation-delay: 2.5s;
    animation-duration: 7.5s;
}

.bubble:nth-child(7) {
    width: 25px;
    height: 25px;
    left: 90%;
    animation-delay: 0.5s;
    animation-duration: 9.5s;
}

.bubble:nth-child(8) {
    width: 55px;
    height: 55px;
    left: 75%;
    animation-delay: 4s;
    animation-duration: 8s;
}

/* Splash Screen Animations */
@keyframes logoFloat {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

@keyframes logoGlow {
    0% { box-shadow: 0 0 50px rgba(212, 175, 55, 0.8); }
    100% { box-shadow: 0 0 80px rgba(212, 175, 55, 1), 0 0 120px rgba(255, 215, 0, 0.6); }
}

@keyframes glowPulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.3; }
    50% { transform: translate(-50%, -50%) scale(1.2); opacity: 0.6; }
}

@keyframes titleSlideUp {
    0% { transform: translateY(30px); opacity: 0; }
    100% { transform: translateY(0); opacity: 1; }
}

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

@keyframes subtitleFadeIn {
    0% { opacity: 0; transform: translateY(20px); }
    100% { opacity: 1; transform: translateY(0); }
}

@keyframes loaderFadeIn {
    0% { opacity: 0; transform: translateY(20px); }
    100% { opacity: 1; transform: translateY(0); }
}

@keyframes loadingProgress {
    0% { width: 0%; }
    100% { width: 100%; }
}

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

@keyframes textPulse {
    0%, 100% { opacity: 0.7; }
    50% { opacity: 1; }
}

@keyframes bubbleFloat {
    0% {
        bottom: -100px;
        transform: translateX(0px) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        bottom: 100vh;
        transform: translateX(-50px) rotate(360deg);
        opacity: 0;
    }
}

/* Golden Particles for Splash Screen */
.splash-golden-particle {
    position: absolute;
    width: 6px;
    height: 6px;
    background: radial-gradient(circle, #d4af37, #ffd700);
    border-radius: 50%;
    pointer-events: none;
    z-index: 3;
    animation: splashGoldenFloat 4s ease-out forwards;
}

@keyframes splashGoldenFloat {
    0% {
        opacity: 1;
        transform: translateY(0) scale(1) rotate(0deg);
        box-shadow: 0 0 10px rgba(212, 175, 55, 0.8);
    }
    50% {
        opacity: 0.8;
        transform: translateY(-200px) scale(1.2) rotate(180deg);
        box-shadow: 0 0 20px rgba(212, 175, 55, 0.6);
    }
    100% {
        opacity: 0;
        transform: translateY(-400px) scale(0.8) rotate(360deg);
        box-shadow: 0 0 5px rgba(212, 175, 55, 0.3);
    }
}

/* Responsive splash screen */
@media (max-width: 768px) {
    .splash-golden-text {
        font-size: 2.2rem;
    }
    
    .splash-subtitle {
        font-size: 1rem;
    }
    
    .splash-logo-img {
        width: 120px;
        height: 120px;
    }
    
    .splash-logo-glow {
        width: 160px;
        height: 160px;
    }
    
    .loader-bar {
        width: 150px;
    }
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #1a1a1a;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(45deg, #d4af37, #ffd700);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(45deg, #ffd700, #ffed4e);
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 2px solid #d4af37;
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: rgba(0, 0, 0, 0.98);
    box-shadow: 0 5px 30px rgba(212, 175, 55, 0.3);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-img {
    height: 50px;
    width: 50px;
    object-fit: contain;
    border-radius: 50%;
}

.nav-logo h2 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    color: #d4af37;
    font-size: 1.5rem;
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
}

.nav-menu {
    display: flex;
    gap: 40px;
}

.nav-link {
    color: #f0f0f0;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    position: relative;
    padding: 8px 16px;
    letter-spacing: 1px;
}

.nav-link:hover {
    color: #d4af37;
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.7);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(45deg, #d4af37, #ffd700);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

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

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background: #d4af37;
    margin: 3px 0;
    transition: 0.3s;
}

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

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

.hero-bg-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
}

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(0, 0, 0, 0.8) 0%, 
        rgba(212, 175, 55, 0.1) 50%, 
        rgba(0, 0, 0, 0.9) 100%);
    z-index: -1;
}

.hero-content {
    text-align: center;
    z-index: 1;
    max-width: 900px;
    padding: 0 20px;
}

.hero-logo {
    margin-bottom: 30px;
}

.hero-logo-img {
    height: 120px;
    width: 120px;
    object-fit: contain;
    border-radius: 50%;
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.5);
    animation: logoGlow 3s ease-in-out infinite alternate;
}

@keyframes logoGlow {
    0% { box-shadow: 0 0 30px rgba(212, 175, 55, 0.5); }
    100% { box-shadow: 0 0 50px rgba(212, 175, 55, 0.8); }
}

.hero-title {
    font-family: 'Playfair Display', serif;
    margin-bottom: 25px;
}

.golden-text {
    display: block;
    font-size: 4.5rem;
    font-weight: 900;
    background: linear-gradient(45deg, #d4af37, #ffd700, #ffed4e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px rgba(212, 175, 55, 0.8);
    animation: goldenGlow 3s ease-in-out infinite alternate;
}

@keyframes goldenGlow {
    0% { filter: brightness(1); }
    100% { filter: brightness(1.2); }
}

.subtitle {
    display: block;
    font-size: 1.8rem;
    font-weight: 400;
    color: #c0c0c0;
    margin-top: 15px;
    letter-spacing: 3px;
}

.hero-tagline {
    font-size: 1.6rem;
    font-weight: 600;
    color: #d4af37;
    margin-bottom: 20px;
    text-shadow: 0 0 15px rgba(212, 175, 55, 0.5);
}

.hero-description {
    font-size: 1.2rem;
    color: #b0b0b0;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 25px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 35px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    border-radius: 50px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 2px solid transparent;
}

.btn::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: left 0.5s ease;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: linear-gradient(45deg, #d4af37, #ffd700);
    color: #000;
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(212, 175, 55, 0.6);
    background: linear-gradient(45deg, #ffd700, #ffed4e);
}

.btn-secondary {
    background: transparent;
    color: #f0f0f0;
    border-color: #666;
}

.btn-secondary:hover {
    background: #666;
    color: #d4af37;
    transform: translateY(-3px);
    border-color: #d4af37;
}

.btn-accent {
    background: linear-gradient(45deg, #333, #555);
    color: #d4af37;
    border-color: #d4af37;
}

.btn-accent:hover {
    background: #d4af37;
    color: #000;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.4);
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-10px); }
    60% { transform: translateX(-50%) translateY(-5px); }
}

.scroll-arrow {
    width: 30px;
    height: 30px;
    border-right: 3px solid #d4af37;
    border-bottom: 3px solid #d4af37;
    transform: rotate(45deg);
}

/* Section Styles */
section {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 700;
    color: #d4af37;
    margin-bottom: 20px;
    text-shadow: 0 0 20px rgba(212, 175, 55, 0.5);
}

.section-title i {
    margin-right: 15px;
}

.title-underline {
    width: 100px;
    height: 4px;
    background: linear-gradient(45deg, #d4af37, #ffd700);
    margin: 0 auto 20px;
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #b0b0b0;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.8;
}

/* About Section */
.about {
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 50%, #000000 100%);
}

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

.about-image-container {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.about-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.about-image-container:hover .about-image {
    transform: scale(1.05);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(212, 175, 55, 0.2), rgba(0, 0, 0, 0.3));
}

.about-subtitle {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: #d4af37;
    margin-bottom: 25px;
}

.about-description {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 40px;
    color: #c0c0c0;
}

.about-features {
    display: grid;
    gap: 25px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 25px;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.feature-item:hover {
    background: rgba(212, 175, 55, 0.2);
    transform: translateX(10px);
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.2);
}

.feature-item i {
    font-size: 2rem;
    color: #d4af37;
    margin-top: 5px;
}

.feature-item h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #d4af37;
    margin-bottom: 8px;
}

.feature-item p {
    color: #b0b0b0;
    line-height: 1.6;
}

/* Products Section */
.products {
    background: #000000;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.product-card {
    background: linear-gradient(135deg, #1a1a1a, #2a2a2a);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s ease;
    border: 2px solid transparent;
    position: relative;
}

.product-card:hover {
    transform: translateY(-15px);
    border-color: #d4af37;
    box-shadow: 0 25px 60px rgba(212, 175, 55, 0.3);
}

.product-image-container {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.product-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

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

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    opacity: 0;
}

.product-overlay i {
    font-size: 3.5rem;
    color: white;
    text-shadow: 0 0 20px rgba(0, 0, 0, 0.8);
}

.product-card:hover .product-overlay {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.8), rgba(0, 0, 0, 0.6));
    opacity: 1;
}

.product-content {
    padding: 30px;
}

.product-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: #d4af37;
    margin-bottom: 12px;
}

.product-description {
    color: #b0b0b0;
    margin-bottom: 20px;
    line-height: 1.6;
}

.product-specs {
    list-style: none;
    margin-bottom: 25px;
}

.product-specs li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
    color: #c0c0c0;
}

.product-specs i {
    color: #d4af37;
    font-size: 0.9rem;
}

.product-btn {
    display: block;
    width: 100%;
    padding: 15px;
    background: linear-gradient(45deg, #d4af37, #ffd700);
    color: #000;
    border: none;
    border-radius: 10px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    text-align: center;
}

.product-btn:hover {
    background: linear-gradient(45deg, #ffd700, #ffed4e);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.4);
}

/* Contact Section */
.contact {
    background: linear-gradient(135deg, #1a1a1a 0%, #000000 50%, #1a1a1a 100%);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-top: 60px;
}

.contact-form-container {
    background: rgba(212, 175, 55, 0.1);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid rgba(212, 175, 55, 0.3);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    color: #d4af37;
    font-weight: 600;
    margin-bottom: 8px;
    font-size: 1.1rem;
}

.form-group input,
.form-group textarea {
    padding: 15px;
    background: rgba(0, 0, 0, 0.6);
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 10px;
    color: #f0f0f0;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #d4af37;
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 25px;
    background: rgba(0, 0, 0, 0.4);
    border-radius: 15px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    transition: all 0.3s ease;
}

.info-item:hover {
    background: rgba(212, 175, 55, 0.1);
    transform: translateX(10px);
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.2);
}

.info-item i {
    font-size: 1.5rem;
    color: #d4af37;
    margin-top: 5px;
}

.info-item h4 {
    color: #d4af37;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.info-item p {
    color: #c0c0c0;
    line-height: 1.6;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #000000, #1a1a1a);
    border-top: 2px solid #d4af37;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.footer-logo-img {
    height: 40px;
    width: 40px;
    object-fit: contain;
    border-radius: 50%;
}

.footer-section h3 {
    font-family: 'Playfair Display', serif;
    color: #d4af37;
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.footer-section h4 {
    color: #d4af37;
    font-size: 1.2rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.footer-section p {
    color: #b0b0b0;
    line-height: 1.6;
    margin-bottom: 20px;
}

.footer-section ul {
    list-style: none;
}

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

.footer-section ul li a {
    color: #c0c0c0;
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-section ul li a:hover {
    color: #d4af37;
    transform: translateX(5px);
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: rgba(212, 175, 55, 0.2);
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 50%;
    color: #d4af37;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: #d4af37;
    color: #000;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(212, 175, 55, 0.4);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(212, 175, 55, 0.3);
    color: #808080;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 80px;
        flex-direction: column;
        background-color: rgba(0, 0, 0, 0.98);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 30px 0;
        border-top: 1px solid #d4af37;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    /* Improved Hero Mobile Layout */
    .hero {
        height: 100vh;
        padding: 0 10px;
    }
    
    .hero-content {
        padding: 0 20px;
        max-width: 100%;
    }
    
    .golden-text {
        font-size: 2.8rem;
        line-height: 1.1;
        margin-bottom: 15px;
    }
    
    .hero-tagline {
        font-size: 1.4rem;
        margin-bottom: 15px;
    }
    
    .hero-description {
        font-size: 1.1rem;
        margin-bottom: 35px;
        line-height: 1.6;
    }
    
    .subtitle {
        font-size: 1.2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .btn {
        width: 100%;
        max-width: 300px;
        padding: 15px 25px;
        font-size: 1rem;
        text-align: center;
        justify-content: center;
    }
    
    .about-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .hero-logo-img {
        height: 100px;
        width: 100px;
    }
    
    /* Better section spacing */
    .section {
        padding: 60px 0;
    }
    
    /* Improved typography */
    .section-subtitle {
        font-size: 1rem;
        margin-bottom: 40px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    /* Enhanced Small Mobile Layout */
    .hero {
        height: 100vh;
        padding: 0 5px;
    }
    
    .hero-content {
        padding: 0 15px;
    }
    
    .hero-logo-img {
        height: 80px;
        width: 80px;
        margin-bottom: 20px;
    }
    
    .golden-text {
        font-size: 2.3rem;
        line-height: 1.1;
        margin-bottom: 12px;
    }
    
    .hero-tagline {
        font-size: 1.2rem;
        margin-bottom: 12px;
    }
    
    .hero-description {
        font-size: 1rem;
        margin-bottom: 30px;
        line-height: 1.5;
        padding: 0 10px;
    }
    
    .hero-buttons {
        gap: 12px;
    }
    
    .btn {
        width: 100%;
        max-width: 280px;
        padding: 14px 20px;
        font-size: 0.95rem;
    }
    
    .contact-form-container {
        padding: 20px;
        margin: 0 10px;
    }
    
    .product-content {
        padding: 20px;
    }
    
    /* Better section spacing for small screens */
    .section {
        padding: 50px 0;
    }
    
    .section-title {
        font-size: 1.9rem;
        margin-bottom: 15px;
    }
    
    .section-subtitle {
        font-size: 0.95rem;
        margin-bottom: 35px;
    }
    
    /* Navigation improvements */
    .navbar {
        height: 70px;
    }
    
    .nav-container {
        height: 70px;
        padding: 0 15px;
    }
    
    .nav-menu {
        top: 70px;
    }
    
    .logo-img {
        height: 40px;
        width: 40px;
    }
}

/* Loading animation */
body:not(.loaded) {
    overflow: hidden;
}

body:not(.loaded) .hero-content {
    opacity: 0;
    transform: translateY(50px);
}

body.loaded .hero-content {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 1s ease, transform 1s ease;
}

/* Product Page Styles */
.product-hero {
    padding: 150px 0 100px;
    background: linear-gradient(135deg, #1a1a1a 0%, #000000 50%, #1a1a1a 100%);
    text-align: center;
}

.product-hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.breadcrumb {
    color: #b0b0b0;
    margin-bottom: 30px;
    font-size: 1rem;
}

.breadcrumb a {
    color: #d4af37;
    text-decoration: none;
}

.breadcrumb a:hover {
    text-decoration: underline;
}

.product-hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 900;
    color: #d4af37;
    margin-bottom: 20px;
    text-shadow: 0 0 30px rgba(212, 175, 55, 0.5);
}

.product-hero-subtitle {
    font-size: 1.3rem;
    color: #c0c0c0;
    max-width: 600px;
    margin: 0 auto;
}

.product-overview {
    padding: 100px 0;
    background: #000000;
}

.product-content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.product-media {
    position: sticky;
    top: 100px;
}

.product-video-container {
    position: relative;
    width: 100%;
    height: 300px;
    margin-bottom: 30px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.2);
}

.product-video {
    width: 100%;
    height: 100%;
    border: none;
}

.product-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.gallery-img {
    width: 100%;
    height: 100px;
    object-fit: cover;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.gallery-img:hover {
    border-color: #d4af37;
    transform: scale(1.05);
}

.product-details {
    color: #f0f0f0;
}

.product-section-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: #d4af37;
    margin-bottom: 40px;
    line-height: 1.4;
}

.product-highlights {
    margin-bottom: 40px;
}

.highlight-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 30px;
    padding: 25px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 15px;
    border-left: 4px solid #d4af37;
}

.highlight-item i {
    font-size: 2rem;
    color: #d4af37;
    margin-top: 5px;
}

.highlight-item h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #d4af37;
    margin-bottom: 8px;
}

.highlight-item p {
    color: #c0c0c0;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 40px;
}

.product-specs-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #000000 50%, #1a1a1a 100%);
}

.specs-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-top: 60px;
}

.spec-category {
    background: rgba(212, 175, 55, 0.1);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid rgba(212, 175, 55, 0.3);
}

.spec-category h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: #d4af37;
    margin-bottom: 25px;
}

.spec-list {
    list-style: none;
}

.spec-list li {
    padding: 12px 0;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    color: #c0c0c0;
    font-size: 1rem;
}

.spec-list li:last-child {
    border-bottom: none;
}

.spec-list strong {
    color: #d4af37;
}

.product-applications {
    padding: 100px 0;
    background: #000000;
}

.applications-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.application-card {
    background: linear-gradient(135deg, #1a1a1a, #2a2a2a);
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.application-card:hover {
    border-color: #d4af37;
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(212, 175, 55, 0.3);
}

.app-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, #d4af37, #ffd700);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.app-icon i {
    font-size: 2.5rem;
    color: #000;
}

.application-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    color: #d4af37;
    margin-bottom: 15px;
}

.application-card p {
    color: #c0c0c0;
    line-height: 1.6;
    margin-bottom: 20px;
}

.benefit-list {
    list-style: none;
    text-align: left;
}

.benefit-list li {
    color: #b0b0b0;
    padding: 8px 0;
    position: relative;
    padding-left: 25px;
}

.benefit-list li:before {
    content: '✓';
    color: #d4af37;
    font-weight: bold;
    position: absolute;
    left: 0;
    top: 8px;
}

.why-choose-us {
    padding: 100px 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #000000 50%, #1a1a1a 100%);
}

.reasons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.reason-item {
    text-align: center;
    padding: 40px 20px;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 20px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    transition: all 0.3s ease;
}

.reason-item:hover {
    background: rgba(212, 175, 55, 0.1);
    transform: translateY(-5px);
}

.reason-number {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 900;
    color: #d4af37;
    margin-bottom: 20px;
    text-shadow: 0 0 20px rgba(212, 175, 55, 0.5);
}

.reason-item h3 {
    font-size: 1.3rem;
    color: #d4af37;
    margin-bottom: 15px;
}

.reason-item p {
    color: #c0c0c0;
    line-height: 1.6;
}

.testimonials {
    padding: 100px 0;
    background: #000000;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.testimonial-card {
    background: linear-gradient(135deg, #1a1a1a, #2a2a2a);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid rgba(212, 175, 55, 0.3);
    position: relative;
}

.testimonial-card:before {
    content: '"';
    font-size: 4rem;
    color: #d4af37;
    position: absolute;
    top: 10px;
    left: 20px;
    font-family: 'Playfair Display', serif;
}

.stars {
    margin-bottom: 20px;
}

.stars i {
    color: #d4af37;
    margin-right: 5px;
}

.testimonial-card p {
    color: #c0c0c0;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 25px;
    font-style: italic;
}

.testimonial-author strong {
    color: #d4af37;
    display: block;
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.testimonial-author span {
    color: #b0b0b0;
    font-size: 0.95rem;
}

.product-cta {
    padding: 100px 0;
    background: linear-gradient(135deg, #d4af37 0%, #ffd700 100%);
    color: #000;
    text-align: center;
}

.cta-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 1.3rem;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.product-cta .btn {
    color: #000;
    border-color: #000;
}

.product-cta .btn-primary {
    background: #000;
    color: #d4af37;
}

.product-cta .btn-primary:hover {
    background: #1a1a1a;
    color: #ffd700;
}

.product-cta .btn-secondary {
    background: transparent;
    color: #000;
    border-color: #000;
}

.product-cta .btn-secondary:hover {
    background: #000;
    color: #d4af37;
}

/* Responsive Design for Product Pages */
@media (max-width: 768px) {
    .product-content-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .product-media {
        position: static;
    }
    
    .specs-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .applications-grid {
        grid-template-columns: 1fr;
    }
    
    .reasons-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .product-hero-title {
        font-size: 2.5rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}

/* FAQ Page Styles */
.faq-section {
    padding: 80px 0;
    background: #000000;
}

.faq-categories {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.faq-category {
    background: linear-gradient(135deg, #1a1a1a, #2a2a2a);
    border-radius: 20px;
    padding: 40px;
    border: 1px solid rgba(212, 175, 55, 0.3);
}

.faq-list {
    margin-top: 40px;
}

.faq-item {
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.faq-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 0;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-question:hover {
    color: #d4af37;
}

.faq-question h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #f0f0f0;
    margin: 0;
    transition: all 0.3s ease;
}

.faq-question i {
    color: #d4af37;
    font-size: 1rem;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question h3 {
    color: #d4af37;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding: 0 0 0 0;
}

.faq-item.active .faq-answer {
    padding: 0 0 25px 0;
}

.faq-answer p {
    color: #c0c0c0;
    line-height: 1.8;
    margin-bottom: 15px;
}

.faq-answer ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 15px;
}

.faq-answer li {
    color: #b0b0b0;
    padding: 5px 0;
    position: relative;
    padding-left: 25px;
}

.faq-answer li:before {
    content: '•';
    color: #d4af37;
    font-weight: bold;
    position: absolute;
    left: 0;
    top: 5px;
}

.faq-answer a {
    color: #d4af37;
    text-decoration: none;
}

.faq-answer a:hover {
    text-decoration: underline;
}

.faq-contact-cta {
    text-align: center;
    background: linear-gradient(135deg, #d4af37 0%, #ffd700 100%);
    color: #000;
    padding: 60px 40px;
    border-radius: 20px;
    margin-top: 80px;
}

.faq-contact-cta h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.faq-contact-cta p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.faq-contact-cta .btn {
    color: #000;
    border-color: #000;
}

.faq-contact-cta .btn-primary {
    background: #000;
    color: #d4af37;
}

.faq-contact-cta .btn-primary:hover {
    background: #1a1a1a;
    color: #ffd700;
}

.faq-contact-cta .btn-secondary {
    background: transparent;
    color: #000;
    border-color: #000;
}

.faq-contact-cta .btn-secondary:hover {
    background: #000;
    color: #d4af37;
}

/* Mobile FAQ Styles */
@media (max-width: 768px) {
    .faq-category {
        padding: 25px;
    }
    
    .faq-question h3 {
        font-size: 1.1rem;
    }
    
    .faq-contact-cta {
        padding: 40px 20px;
    }
    
    .faq-contact-cta h2 {
        font-size: 2rem;
    }
}/* Cache buster 1758216092 */
