/* Main Variables */
*{
    font-family: 'Vazir';
}
:root {
    --primary-gold: #edab20;
    --dark-bg: #121212;
    --darker-bg: #0a0a0a;
    --light-text: #f8f9fa;
}

/* General Styles */
body {
    font-family: 'Vazir';
    background-color: var(--dark-bg);
    background-image: url('../img/bg.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
    color: var(--light-text);
    position: relative;
    min-height: 100vh;
    overflow-x: hidden;  /* Add this line */
    padding-top: 120px; /* Adjust based on your navbar height */
    width: 100%;
    margin: 0;
    padding-left: 0;
    padding-right: 0;
    display: flex;
    flex-direction: column;
}

/* Make main content expand to push footer down */
main {
    flex: 1;
}

/* Add a dark overlay to improve text readability */
body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(18, 18, 18, 0.85); /* Dark overlay with 85% opacity */
    z-index: -1;
}

/* Adjust the gold line to appear above the overlay */
body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, var(--primary-gold) 0%, #f5d76e 50%, var(--primary-gold) 100%);
    z-index: 1031;
}

/* Wavy Gold Accent - Hidden as requested */
.gold-wave {
    display: none;
    height: 0;
    margin: 0;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    color: var(--primary-gold);
}

a {
    color: var(--primary-gold);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #b7810c;
}

/* Custom Navbar */
.navbar {
    border-bottom: 2px solid rgba(212, 175, 55, 0.2); /* Increased border width and opacity */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2); /* Added subtle shadow */
    padding: 1.2rem 0;
    background-color: rgba(10, 10, 10, 0.95) !important;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1030;
    border-radius: 0 0 30px 30px;
}

/* Add padding to body to account for fixed navbar */
body {
    padding-top: 120px; /* Adjust based on your navbar height */
}

/* Update container within navbar */
.navbar > .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Update scrolled state */
.navbar.scrolled {
    padding: 0.8rem 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    border-radius: 0 0 40px 40px;
    border-bottom: 2px solid rgba(212, 175, 55, 0.3);
}

/* Mobile Responsive Styles */
@media (max-width: 768px) {
    .navbar {
        padding: 0.5rem 0;
    }

    body {
        padding-top: 90px;
    }

    .home-banner {
        border-radius: 35px !important;
        padding: 3.5rem 0;
    }
    
    .home-banner::before {
        border-radius: 35px;
    }

    .home-banner h1 {
        font-size: 2rem;
    }

    .home-banner .slogan {
        font-size: 1.2rem;
    }
    
    .product-card {
        border-radius: 35px;
        padding: 1rem 2.5rem;
    }
}

/* These appear to be styles for a scrolled state, likely for .navbar.scrolled */
.navbar.scrolled {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    border-radius: 0 0 40px 40px; /* Slightly larger radius when scrolled */
    border-bottom: 2px solid rgba(212, 175, 55, 0.3); /* Increased border opacity when scrolled */
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3); /* Increased shadow when scrolled */
}

.navbar-dark .navbar-nav .nav-link {
    color: var(--light-text);
    position: relative;
    padding: 0.5rem 1rem;
    margin: 0 0.3rem;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

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

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

.navbar-brand img {
    height: 95px; /* Increased from 40px */
    transition: all 0.3s ease;
}

.navbar.scrolled .navbar-brand img {
    height: 85px; /* Increased from 35px */
}

/* Mobile Responsive Styles */
@media (max-width: 768px) {
    .navbar {
        padding: 0.8rem 0;
    }

    .navbar-dark .navbar-toggler {
        border-color: rgba(212, 175, 55, 0.3);
        padding: 0.4rem 0.6rem;
    }

    .navbar-dark .navbar-toggler:focus {
        box-shadow: none;
    }

    .navbar-collapse {
        background-color: rgba(10, 10, 10, 0.95);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        padding: 1rem;
        border-radius: 10px;
        margin-top: 0.5rem;
        border: 1px solid rgba(212, 175, 55, 0.1);
    }

    .navbar-dark .navbar-nav .nav-link {
        padding: 0.8rem 1.5rem;
        margin: 0.2rem 0;
        border-radius: 10px;
    }

    .navbar-dark .navbar-nav .nav-link:hover,
    .navbar-dark .navbar-nav .nav-link.active {
        background-color: rgba(212, 175, 55, 0.1);
    }

    .navbar-dark .navbar-nav .nav-link::after {
        display: none;
    }
}

/* Footer */
footer {
    background-color: var(--darker-bg);
    border-top: 1px solid rgba(212, 175, 55, 0.3);
    width: 100%;
    position: relative;
    padding: 2rem 2rem 0 2rem;
    margin-top: 4rem;
    margin-left: 0;
    margin-right: 0;
    margin-bottom: 0;
    border-radius: 30px 30px 0 0;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    left: 0;
    right: 0;
    bottom: 0;
    box-sizing: border-box;
    flex-shrink: 0;
}

footer > .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Mobile Responsive Footer */
@media (max-width: 768px) {
    footer {
        border-radius: 20px 20px 0 0;
        padding: 2rem 2rem 2rem 2rem;
        margin-top: 3rem;
    }
}

/* Product Card */
.product-card {
    position: relative;
    background-color: rgba(18, 18, 18, 0.7);
    color: white;
    border-radius: 50px;
    overflow: visible;
    padding: 1.2rem 3.2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 11rem;
    margin-right: 6rem;
    margin-left: 0;
    min-height: 150px;
    direction: rtl;
    border: 2px solid rgba(212, 175, 55, 0.4);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
    cursor: pointer;
    left: 0;
    right: 0;
    width: calc(100% - 6rem);
}

.product-card::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, rgba(212, 175, 55, 0.2), transparent, rgba(212, 175, 55, 0.2));
    z-index: -1;
    border-radius: 52px;
    filter: blur(5px);
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.4);
}

.product-card img {
    width: 300px; /* Increased size */
    height: 300px; /* Increased size */
    object-fit: contain;
    border-radius: 50%;
    background-color: #000;
    border: 4px solid rgba(212, 175, 55, 0.5);
    position: absolute;
    right: -150px; /* Half of width to center the overflow */
    top: 50%;
    transform: translateY(-50%);
    z-index: 1;
    box-shadow: 0 4px 20px rgba(0,0,0,0.3); /* Added shadow for depth */
}

.product-name {
    font-size: 2rem;
    font-weight: bold;
    padding-right: 160px;
    text-align: right;
    font-family: 'Vazir', sans-serif;
    color: var(--primary-gold);
}
.product-price {
    font-size: 1.2rem;
    color: var(--darker-bg);
    background: var(--primary-gold);
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-weight: bold;
    margin-left: 20px;
    white-space: nowrap;
}

.product-card .btn-visit {
    font-size: 1.2rem;
    color: #edab20;
    background: white;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-weight: bold;
    border: none;
    transition: all 0.3s ease;
    font-family: 'Vazir', sans-serif;
}

.product-card .btn-visit:hover {
    background: #000;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

/* Mobile Responsive Styles */
@media (max-width: 768px) {
    .product-card {
        min-height: 80px;
        padding: 0.8rem 2rem;
        justify-content: flex-start; /* Align content to right side (RTL) */
        margin-bottom: 9rem; /* Adjusted spacing for mobile */
        border: 2px solid rgba(212, 175, 55, 0.4);
        width: calc(100% - 110px);
        margin-right: 110px;
    }

    .product-card::before {
        border-radius: 40px;
    }

    .product-card img {
        width: 220px;
        height: 220px;
        right: -110px;
        border: 4px solid rgba(212, 175, 55, 0.5);
    }

    .product-name {
        padding-right: 120px;
        font-size: 1.4rem;
        color: var(--primary-gold);
    }

    .product-price {
        display: none; /* Show price on mobile */
        font-size: 1rem;
        padding: 0.2rem 0.6rem;
    }
}

/* Small Mobile Devices */
@media (max-width: 576px) {
    .product-card {
        min-height: 90px;
        padding: 0.5rem 0.5rem;
        margin-bottom: 7rem; /* Adjusted spacing for smaller devices */
        border: 2px solid rgba(212, 175, 55, 0.4);
        border-radius: 30px;
        width: calc(100% - 90px);
        margin-right: 90px;
    }

    .product-card::before {
        border-radius: 32px;
    }

    .product-card img {
        width: 180px;
        height: 180px;
        right: -90px;
        border: 4px solid rgba(212, 175, 55, 0.5);
    }

    .product-name {
        padding-right: 100px;
        font-size: 1.2rem;
        color: var(--primary-gold);
    }

    .home-banner {
        border-radius: 25px !important;
        padding: 2.5rem 0;
    }
    
    .home-banner::before {
        border-radius: 25px;
    }
}

/* Product Detail */
.product-gallery img {
    border: 2px solid rgba(212, 175, 55, 0.4);
    border-radius: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 1;
}

.product-gallery img:hover {
    opacity: 0.8;
    transform: scale(1.05);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
    border-color: rgba(212, 175, 55, 0.8);
}

.product-gallery .active img {
    border: 3px solid var(--primary-gold);
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.5);
}

.main-product-image {
    border: 2px solid rgba(212, 175, 55, 0.4) !important;
    border-radius: 20px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
    transition: all 0.3s ease;
    max-height: 500px;
    object-fit: contain;
    background-color: rgba(18, 18, 18, 0.5);
    padding: 10px;
    position: relative;
    z-index: 1;
}

.price-block {
    border-radius: 15px !important;
    border: 2px solid rgba(212, 175, 55, 0.4) !important;
    background-color: rgba(18, 18, 18, 0.7) !important;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.price-block::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, rgba(212, 175, 55, 0.2), transparent, rgba(212, 175, 55, 0.2));
    z-index: -1;
    border-radius: 17px;
    filter: blur(5px);
}

.price-block:hover {
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
    transform: translateY(-2px);
}

.specs-table {
    background-color: rgba(18, 18, 18, 0.7);
    border: 2px solid rgba(212, 175, 55, 0.4) !important;
    border-radius: 15px !important;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.specs-table th {
    color: var(--primary-gold);
    background-color: rgba(10, 10, 10, 0.7);
    padding: 12px 15px;
    font-weight: 600;
}

.specs-table td {
    padding: 12px 15px;
    border-color: rgba(212, 175, 55, 0.2);
}

.specs-table tr:hover td {
    background-color: rgba(212, 175, 55, 0.05);
}

/* Breadcrumb Styling */
.breadcrumb {
    background-color: rgba(10, 10, 10, 0.7);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 50px;
    padding: 0.8rem 1.5rem;
    margin-bottom: 1.5rem;
}

.breadcrumb-item + .breadcrumb-item::before {
    color: rgba(212, 175, 55, 0.5);
}

.breadcrumb-item a {
    color: var(--primary-gold);
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb-item a:hover {
    color: #f0c04c;
    text-decoration: underline;
}

.breadcrumb-item.active {
    color: #f0c04c;
}

/* Product Cards on Detail Page */
.related-product-card {
    border: 2px solid rgba(212, 175, 55, 0.4);
    background-color: rgba(18, 18, 18, 0.7);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    height: 100%;
    position: relative;
    z-index: 1;
}

.related-product-card::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, rgba(212, 175, 55, 0.2), transparent, rgba(212, 175, 55, 0.2));
    z-index: -1;
    border-radius: 22px;
    filter: blur(5px);
}

.related-product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.card-img-container {
    overflow: hidden;
    border-radius: 15px;
    margin-bottom: 1rem;
}

.card-img-container img {
    transition: transform 0.5s ease;
    object-fit: cover;
    width: 100%;
    height: 180px;
}

.related-product-card:hover .card-img-container img {
    transform: scale(1.05);
}

.related-product-card .card-title {
    color: var(--primary-gold);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.related-product-card .price {
    color: white;
    font-size: 1.1rem;
    font-weight: 500;
}

/* Category Pills */
.category-pill {
    background-color: var(--darker-bg);
    border: 1px solid var(--primary-gold);
    color: var(--light-text);
    transition: background-color 0.3s ease, color 0.3s ease;
}

.category-pill:hover,
.category-pill.active {
    background-color: var(--primary-gold);
    color: var(--darker-bg);
}

/* Home Banner */
.home-banner {
    position: relative;
    background-color: var(--darker-bg);
    padding: 5rem 0;
    overflow: hidden;
    border-radius: 50px !important;
    border: 3px solid rgba(212, 175, 55, 0.5);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    margin-bottom: 3rem;
    transform: translateZ(0); /* Force hardware acceleration */
}

.home-banner::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../img/lighting-bg.jpg') center center/cover no-repeat;
    opacity: 0.3;
    z-index: 0;
    border-radius: 50px;
}

.home-banner .content {
    position: relative;
    z-index: 1;
}

.home-banner h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.home-banner .slogan {
    font-size: 1.5rem;
    color: var(--primary-gold);
    margin-bottom: 2rem;
}

/* Contact Form */
.contact-form {
    background-color: rgba(18, 18, 18, 0.7);
    border: 2px solid rgba(212, 175, 55, 0.4);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 1;
}

.contact-form::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, rgba(212, 175, 55, 0.2), transparent, rgba(212, 175, 55, 0.2));
    z-index: -1;
    border-radius: 22px;
    filter: blur(5px);
}

.contact-form .form-control {
    background-color: rgba(40, 40, 40, 0.85);
    border: 1px solid rgba(212, 175, 55, 0.4);
    border-radius: 12px;
    color: rgba(255, 255, 255, 0.9);
    padding: 0.8rem 1.2rem;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 0 5px rgba(212, 175, 55, 0.15);
}

/* Add styling for placeholder text to make it more visible */
.contact-form .form-control::placeholder {
    color: rgba(255, 255, 255, 0.7);
    opacity: 1;
    font-weight: 500;
}

.contact-form .form-label {
    color: var(--primary-gold);
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.contact-form .form-control:focus {
    background-color: rgba(50, 50, 50, 0.9);
    border-color: var(--primary-gold);
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.4);
    color: white;
}

.contact-info {
    background-color: rgba(18, 18, 18, 0.7) !important;
    border: 2px solid rgba(212, 175, 55, 0.4) !important;
    border-radius: 20px !important;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
    padding: 2.5rem !important;
}

.contact-info::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, rgba(212, 175, 55, 0.2), transparent, rgba(212, 175, 55, 0.2));
    z-index: -1;
    border-radius: 22px;
    filter: blur(5px);
}

.contact-info:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.4);
}

/* Add styles for the FAQ box in contact page */
.bg-dark.border-warning.rounded {
    background-color: rgba(18, 18, 18, 0.7) !important;
    border: 2px solid rgba(212, 175, 55, 0.4) !important;
    border-radius: 20px !important;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}

.bg-dark.border-warning.rounded::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, rgba(212, 175, 55, 0.2), transparent, rgba(212, 175, 55, 0.2));
    z-index: -1;
    border-radius: 22px;
    filter: blur(5px);
}

.bg-dark.border-warning.rounded:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.4);
}

.social-icons a {
    display: inline-block;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    transform: translateY(-3px) scale(1.1);
}

/* Unified Button Styles */
.btn {
    border-radius: 50px !important;
    padding: 8px 20px;
    transition: all 0.3s ease;
    font-weight: 500;
}

.btn-gold {
    background-color: var(--primary-gold);
    color: var(--darker-bg);
    border: none;
    transition: all 0.3s ease;
    border-radius: 50px;
    padding: 12px 35px;
    font-weight: 600;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.btn-gold:hover {
    background-color: #f0c04c;
    color: var(--darker-bg);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    transform: translateY(-3px);
}

.btn-outline-warning {
    border: 2px solid var(--primary-gold);
    color: var(--primary-gold);
    background-color: transparent;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.1);
}

.btn-outline-warning:hover {
    background-color: var(--primary-gold);
    color: var(--darker-bg);
    border-color: var(--primary-gold);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transform: translateY(-2px);
}

/* Add a glowing effect for focus state on all buttons */
.btn:focus, .btn:active {
    box-shadow: 0 0 0 0.25rem rgba(212, 175, 55, 0.4) !important;
}

/* FAQ Section - Improved styling with better transitions */
.faq-item {
    margin-bottom: 1.5rem;
    border: 2px solid rgba(212, 175, 55, 0.4);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

.faq-item:hover {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transform: translateY(-2px);
}

.faq-question {
    background-color: rgba(212, 175, 55, 0.15);
    padding: 1rem 1.5rem 0.6rem 1.5rem;
    color: var(--primary-gold);
    font-weight: bold;
    cursor: pointer;
    position: relative;
    transition: all 0.25s ease;
    border-bottom: 1px solid rgba(212, 175, 55, 0.3);
}

.faq-question.active {
    background-color: rgba(212, 175, 55, 0.25);
    border-bottom-color: transparent;
    padding-bottom: 0.4rem;
}

.faq-question i {
    transition: transform 0.3s ease;
}

.faq-question.active i {
    transform: rotate(180deg);
}

.faq-answer {
    font-size: 1.1rem;
    line-height: 1.6;
    padding: 0 1.5rem 1.5rem 1.5rem;
    background-color: rgba(18, 18, 18, 0.7);
    border-top: 0;
    transition: all 0.3s ease;
}

.faq-answer p {
    margin-bottom: 0.8rem;
    margin-top: 0.3rem;
    padding: 0.2rem 0;
}

/* First paragraph in faq answers */
.faq-answer p:first-child {
    margin-top: 0;
}

/* Mobile Responsiveness - Fixed structure */
@media (max-width: 768px) {
    .navbar {
        padding: 0.5rem 0;
    }

    body {
        padding-top: 90px;
    }

    .home-banner h1 {
        font-size: 2rem;
    }

    .home-banner .slogan {
        font-size: 1.2rem;
    }
}

/* RTL Specific Adjustments - Fixed structure */
.dropdown-menu {
    text-align: right;
}

@media (max-width: 992px) {
    .navbar-collapse {
        text-align: right;
    }
}

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

@keyframes gentle-glow {
    0% { box-shadow: 0 0 10px rgba(212, 175, 55, 0.3); }
    50% { box-shadow: 0 0 20px rgba(212, 175, 55, 0.5); }
    100% { box-shadow: 0 0 10px rgba(212, 175, 55, 0.3); }
}

.home-banner {
    animation: fadeIn 1s ease-out;
}

.home-banner .btn-gold {
    animation: gentle-glow 3s infinite;
}

.product-card, .related-product-card, .contact-info, .contact-form, .faq-item, .specs-table {
    animation: fadeIn 0.8s ease-out;
}

.product-card:nth-child(even) {
    animation-delay: 0.2s;
}

.product-card:nth-child(odd) {
    animation-delay: 0.4s;
}

/* Hover Effects for Links */
a:not(.btn) {
    position: relative;
    display: inline-block;
}

a:not(.btn, .navbar-brand, .nav-link)::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -2px;
    left: 0;
    background-color: var(--primary-gold);
    transition: width 0.3s ease;
}

a:not(.btn, .navbar-brand, .nav-link):hover::after {
    width: 100%;
}

/* Product Link - No decoration */
.product-link {
    text-decoration: none;
    color: inherit;
    display: block;
    width: 100%;
}

.product-link::after {
    display: none;
}

/* Container for product cards */
.list-group {
    width: 100%;
    padding-left: 0;
    padding-right: 0;
    margin-left: 0;
    margin-right: 0;
}

/* Ensure row expands fully */
.row {
    margin-left: 0;
    margin-right: 0;
    width: 100%;
}

/* Remove any margins/paddings from the container row and columns */
.row, .col-12 {
    padding-left: 0 !important;
    padding-right: 0 !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
}

/* About Us page cards styling to match contact page */
.card.bg-dark.border-warning {
    background-color: rgba(18, 18, 18, 0.7) !important;
    border: 2px solid rgba(212, 175, 55, 0.4) !important;
    border-radius: 20px !important;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}

.card.bg-dark.border-warning::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, rgba(212, 175, 55, 0.2), transparent, rgba(212, 175, 55, 0.2));
    z-index: -1;
    border-radius: 22px;
    filter: blur(5px);
}

.card.bg-dark.border-warning:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.4);
}

/* Add animations for the about page elements */
.card.bg-dark.border-warning {
    animation: fadeIn 0.8s ease-out;
}

.card.bg-dark.border-warning:nth-child(1) {
    animation-delay: 0.1s;
}

.card.bg-dark.border-warning:nth-child(2) {
    animation-delay: 0.2s;
}

.card.bg-dark.border-warning:nth-child(3) {
    animation-delay: 0.3s;
}

/* FAQ Page specific styles */
.faq-container {
    min-height: calc(100vh - 500px); /* Ensure minimum height for content */
}

@media (max-width: 768px) {
    .faq-container {
        min-height: calc(100vh - 400px);
    }
}

html, body {
    height: 100%;
}

body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}