
/* CSS Variables */
:root {
    --primary-gold: #ddae43;
    --primary-gold-hover: #c99a3a;
    --bg-main: #0d0d0d;
    --bg-secondary: #171717;
    --text-primary: #ffffff;
    --text-secondary: #cccccc;
    --border-color: #333333;
    --shadow-color: rgba(0, 0, 0, 0.5);
}

/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-main);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--bg-secondary);
}

::-webkit-scrollbar-thumb {
    background: var(--primary-gold);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-gold-hover);
}

/* Text Selection */
::selection {
    background-color: var(--primary-gold);
    color: var(--bg-main);
}

.text-gold {
    color: var(--primary-gold);
}

.bg-gold {
    background-color: var(--primary-gold);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    margin-bottom: 1rem;
}

p {
    color: var(--text-secondary);
}

/* Navigation */
#mainNav {
    background-color: var(--bg-main);
    transition: all 0.3s ease;
    padding: 1rem 0;
    box-shadow: 0 2px 10px var(--shadow-color);
}

.navbar-brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary) !important;
}

.brand-accent {
    color: var(--primary-gold);
}

.navbar-nav .nav-link {
    color: var(--text-secondary) !important;
    font-weight: 500;
    margin-left: 1.5rem;
    transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
    color: var(--primary-gold) !important;
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    background: var(--bg-main);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at top right, rgba(221, 174, 67, 0.1) 0%, transparent 40%),
    radial-gradient(ellipse at bottom left, rgba(221, 174, 67, 0.05) 0%, transparent 40%);
    z-index: 1;
}

.hero-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle, rgba(221, 174, 67, 0.3) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: float 20s ease-in-out infinite;
    z-index: 1;
}

.hero-section .container {
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(221, 174, 67, 0.1);
    border: 1px solid rgba(221, 174, 67, 0.3);
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    font-size: 0.875rem;
    color: var(--primary-gold);
    font-weight: 500;
}

.hero-title {
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 900;
    line-height: 0.9;
    letter-spacing: -0.02em;
}

.text-stroke {
    -webkit-text-stroke: 2px var(--primary-gold);
    -webkit-text-fill-color: transparent;
    text-stroke: 2px var(--primary-gold);
    text-fill-color: transparent;
}

.gradient-text-hero {
    background: linear-gradient(135deg, var(--primary-gold) 0%, #fff 50%, var(--primary-gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% 200%;
    animation: gradientShift 3s ease infinite;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.hero-description {
    font-size: 1.125rem;
    line-height: 1.7;
    color: var(--text-secondary);
    max-width: 500px;
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-gold);
    margin-bottom: 0.25rem;
}

.stat-label {
    display: block;
    font-size: 0.875rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: var(--border-color);
}

.hero-cta {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.btn-hero-primary {
    background: var(--primary-gold);
    color: var(--bg-main);
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    transition: all 0.3s ease;
    text-decoration: none;
    border: 2px solid var(--primary-gold);
}

.btn-hero-primary:hover {
    background: transparent;
    color: var(--primary-gold);
    transform: translateX(5px);
}

.btn-hero-secondary {
    background: transparent;
    color: var(--text-primary);
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    transition: all 0.3s ease;
    text-decoration: none;
    border: 2px solid var(--border-color);
}

.btn-hero-secondary:hover {
    border-color: var(--primary-gold);
    color: var(--primary-gold);
}

.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image-wrapper {
    position: relative;
    max-width: 500px;
    width: 100%;
}

.hero-image {
    width: 100%;
    height: auto;
    border-radius: 20px;
    position: relative;
    z-index: 2;
}

.hero-image-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    background: radial-gradient(circle, rgba(221, 174, 67, 0.4) 0%, transparent 70%);
    filter: blur(60px);
    z-index: 1;
}

.floating-card {
    position: absolute;
    bottom: 2rem;
    right: -2rem;
    background: rgba(13, 13, 13, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border-color);
    padding: 1rem 1.5rem;
    border-radius: 15px;
    display: flex;
    align-items: center;
    gap: 1rem;
    z-index: 3;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.floating-card i {
    font-size: 2rem;
}

.floating-card strong {
    display: block;
    color: var(--text-primary);
    font-size: 0.875rem;
}

.floating-card small {
    color: var(--text-secondary);
    font-size: 0.75rem;
}

.hero-bottom-gradient {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(to bottom, transparent, var(--bg-main));
    z-index: 2;
}

@media (max-width: 991px) {
    .hero-section {
        padding: 120px 0 80px;
    }

    .hero-visual {
        margin-top: 3rem;
    }

    .hero-stats {
        flex-wrap: wrap;
    }

    .stat-divider {
        display: none;
    }

    .hero-cta {
        flex-wrap: wrap;
    }

    .floating-card {
        right: 1rem;
        bottom: 1rem;
    }
}

/* Buttons */
.btn {
    position: relative;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
}

.btn-primary {
    background-color: var(--primary-gold);
    border-color: var(--primary-gold);
    color: var(--bg-main);
    padding: 0.875rem 2.5rem;
    border-radius: 50px;
    position: relative;
    z-index: 1;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background-color: var(--primary-gold-hover);
    transition: width 0.3s ease;
    z-index: -1;
    border-radius: 50px;
}

.btn-primary:hover::before {
    width: 100%;
}

.btn-primary:hover {
    background-color: transparent;
    border-color: var(--primary-gold-hover);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(221, 174, 67, 0.4);
}

.btn-primary:active {
    transform: translateY(-1px);
    box-shadow: 0 5px 15px rgba(221, 174, 67, 0.3);
}

/* Glow Button Effect */
.btn-glow {
    animation: glow 2s ease-in-out infinite;
}

@keyframes glow {
    0% { box-shadow: 0 0 5px rgba(221, 174, 67, 0.5); }
    50% { box-shadow: 0 0 20px rgba(221, 174, 67, 0.8), 0 0 30px rgba(221, 174, 67, 0.6); }
    100% { box-shadow: 0 0 5px rgba(221, 174, 67, 0.5); }
}

/* Outline Button */
.btn-outline-gold {
    background-color: transparent;
    border: 2px solid var(--primary-gold);
    color: var(--primary-gold);
    padding: 0.875rem 2.5rem;
    border-radius: 50px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.btn-outline-gold::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background-color: var(--primary-gold);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.5s ease, height 0.5s ease;
}

.btn-outline-gold:hover {
    color: var(--bg-main);
    border-color: var(--primary-gold);
}

.btn-outline-gold:hover::before {
    width: 300px;
    height: 300px;
}

.btn-outline-gold span {
    position: relative;
    z-index: 1;
}

/* Section Styles */
section {
    padding: 5rem 0;
}

.bg-secondary-dark {
    background-color: var(--bg-secondary);
}

.section-heading {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-primary);
    position: relative;
    display: inline-block;
}

.section-heading::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: var(--primary-gold);
}

/* About Section */
.about-card {
    background-color: var(--bg-secondary);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.about-card:hover {
    border-color: var(--primary-gold);
    transform: translateY(-5px);
}

.about-icon {
    font-size: 3rem;
    color: var(--primary-gold);
    margin-bottom: 1rem;
}

.about-title {
    color: var(--primary-gold);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.about-text {
    color: var(--text-secondary);
}

.values-list {
    list-style: none;
    padding: 0;
    text-align: left;
}

.values-list li {
    color: var(--text-secondary);
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--border-color);
}

.values-list li:last-child {
    border-bottom: none;
}

/* Products Section */
.product-card {
    background-color: var(--bg-main);
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px var(--shadow-color);
    border-color: var(--primary-gold);
}

.product-image {
    overflow: hidden;
    height: 200px;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.1);
}

.product-body {
    padding: 1.5rem;
}

.product-title {
    color: var(--text-primary);
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.product-caliber {
    color: var(--primary-gold);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.product-description {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

/* Safety Section */
.accordion-item {
    background-color: var(--bg-secondary);
    border: 1px solid var(--border-color);
    margin-bottom: 1rem;
}

.accordion-button {
    background-color: var(--bg-secondary);
    color: var(--text-primary);
    font-weight: 600;
    border: none;
}

.accordion-button:not(.collapsed) {
    background-color: var(--bg-secondary);
    color: var(--primary-gold);
}

.accordion-button:focus {
    box-shadow: none;
}

.accordion-button::after {
    filter: brightness(0) invert(1);
}

.accordion-body {
    background-color: var(--bg-main);
    color: var(--text-secondary);
}

/* Contact Section */
.contact-form .form-control {
    background-color: var(--bg-main);
    border: 1px solid var(--border-color);
    color: var(--text-primary);
    padding: 0.75rem 1rem;
    transition: all 0.3s ease;
}

.contact-form .form-control:focus {
    background-color: var(--bg-main);
    border-color: var(--primary-gold);
    color: var(--text-primary);
    box-shadow: 0 0 0 0.2rem rgba(221, 174, 67, 0.25);
}

.contact-form .form-control::placeholder {
    color: #666666;
}

.contact-info {
    padding-left: 2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
}

.contact-item i {
    font-size: 2rem;
    color: var(--primary-gold);
    margin-right: 1rem;
    min-width: 40px;
}

.contact-item h5 {
    color: var(--text-primary);
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
}

.contact-item p {
    margin-bottom: 0;
}

/* Footer */
.footer {
    background-color: var(--bg-main);
    border-top: 1px solid var(--border-color);
}

.footer-brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
}

.social-links a {
    color: var(--text-secondary);
    font-size: 1.25rem;
    margin: 0 0.75rem;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: var(--primary-gold);
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    margin-left: 1.5rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary-gold);
}

.footer hr {
    border-color: var(--border-color);
}

/* Scroll to Top Button */
.scroll-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background-color: var(--primary-gold);
    color: var(--bg-main);
    border: none;
    border-radius: 50%;
    font-size: 1.25rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
}

.scroll-to-top.show {
    opacity: 1;
    visibility: visible;
}

.scroll-to-top:hover {
    background-color: var(--primary-gold-hover);
    transform: translateY(-3px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-heading {
        font-size: 2.5rem;
    }

    .hero-subheading {
        font-size: 1rem;
    }

    .section-heading {
        font-size: 2rem;
    }

    .navbar-nav .nav-link {
        margin-left: 0;
        padding: 0.5rem 0;
    }

    .contact-info {
        padding-left: 0;
        margin-top: 2rem;
    }

    .footer-links a {
        display: block;
        margin: 0.5rem 0;
    }
}

/* Modern Card Hover Effects */
.card-hover {
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.card-hover:hover {
    transform: translateY(-10px) scale(1.02);
}

/* Gradient Text Effect */
.gradient-text {
    background: linear-gradient(135deg, var(--primary-gold) 0%, #fff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Modern Link Hover */
.modern-link {
    position: relative;
    text-decoration: none;
    color: var(--text-primary);
    transition: color 0.3s ease;
}

.modern-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-gold);
    transition: width 0.3s ease;
}

.modern-link:hover {
    color: var(--primary-gold);
}

.modern-link:hover::after {
    width: 100%;
}

/* Animation Classes */
.fade-in {
    animation: fadeIn 0.6s ease-in;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Slide animations */
.slide-in-left {
    animation: slideInLeft 0.8s ease-out;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.slide-in-right {
    animation: slideInRight 0.8s ease-out;
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Pulse Animation */
.pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

/* Floating Animation */
.float {
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}

/* Common Page Header Style */
.page-header {
    background: linear-gradient(135deg, var(--bg-secondary) 0%, var(--bg-main) 100%);
    padding: 120px 0 60px;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(221, 174, 67, 0.2) 0%, rgba(221, 174, 67, 0.05) 40%, transparent 70%);
    filter: blur(80px);
    z-index: 0;
}

.page-header .container {
    position: relative;
    z-index: 1;
}

.page-header h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.page-header .lead {
    font-size: 1.25rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

/* About Page Header with Background Image */
.page-header.about-header {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.3) 100%), 
                url('../img/header/about-bg.png') center/cover no-repeat;
}

/* Products Page Header with Background Image */
.page-header.products-header {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.3) 100%), 
                url('../img/header/products-bg.png') center/cover no-repeat;
}

/* Safety Page Header with Background Image */
.page-header.safety-header {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.3) 100%), 
                url('../img/header/safety-bg_.png') center/cover no-repeat;
}

/* Careers Page Header with Background Image */
.page-header.careers-header {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.3) 100%), 
                url('../img/header/career-bg.png') center/cover no-repeat;
}

/* Careers Hero */
.careers-hero {
    background-color: var(--bg-secondary);
    padding-top: 80px;
    min-height: 50vh;
    display: flex;
    align-items: center;
}

/* Benefits Section */
.benefit-card {
    padding: 2rem;
    height: 100%;
    transition: all 0.3s ease;
}

.benefit-card i {
    font-size: 3rem;
    color: var(--primary-gold);
    margin-bottom: 1rem;
}

.benefit-card h4 {
    color: var(--text-primary);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.benefit-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.benefit-card:hover {
    transform: translateY(-5px);
}

/* Job Cards */
.job-card {
    background-color: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    padding: 2rem;
    height: 100%;
    transition: all 0.3s ease;
}

.job-card:hover {
    border-color: var(--primary-gold);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px var(--shadow-color);
}

.job-header {
    display: flex;
    justify-content: space-between;
    align-items: start;
    margin-bottom: 1rem;
}

.job-title {
    color: var(--text-primary);
    font-size: 1.5rem;
    margin-bottom: 0;
}

.job-type {
    background-color: var(--primary-gold);
    color: var(--bg-main);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 500;
}

.job-details {
    margin-bottom: 1rem;
}

.job-location,
.job-department {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.job-location i,
.job-department i {
    color: var(--primary-gold);
    margin-right: 0.5rem;
}

.job-description {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .job-header {
        flex-direction: column;
        gap: 0.5rem;
    }

    .job-type {
        align-self: flex-start;
    }

    .careers-hero h1 {
        font-size: 2.5rem;
    }
}

.product-detail-section {
    padding-top: 100px;
    min-height: 100vh;
}

.product-gallery {
    position: sticky;
    top: 100px;
}

.gallery-wrapper {
    position: relative;
}

.gallery-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(13, 13, 13, 0.8);
    color: var(--primary-gold);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    border: 1px solid var(--border-color);
}

.gallery-nav:hover {
    background: var(--primary-gold);
    color: var(--bg-main);
    transform: translateY(-50%) scale(1.1);
}

.gallery-nav.prev {
    left: -20px;
}

.gallery-nav.next {
    right: -20px;
}

.main-image {
    background: var(--bg-secondary);
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 1rem;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.main-image:hover {
    border-color: var(--primary-gold);
}

.main-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.thumbnail-images {
    display: flex;
    gap: 0.75rem;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 0.5rem 0;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
}

.thumbnail-images::-webkit-scrollbar {
    height: 6px;
}

.thumbnail-images::-webkit-scrollbar-track {
    background: var(--bg-secondary);
    border-radius: 3px;
}

.thumbnail-images::-webkit-scrollbar-thumb {
    background: var(--primary-gold);
    border-radius: 3px;
}

.thumbnail {
    flex: 0 0 120px;
    height: 90px;
    background: var(--bg-secondary);
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    position: relative;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.thumbnail::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border: 3px solid transparent;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.thumbnail:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(221, 174, 67, 0.3);
}

.thumbnail.active::after {
    border-color: var(--primary-gold);
}

.thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.thumbnail:hover img {
    transform: scale(1.05);
}

.product-info {
    padding: 2rem;
}

.product-badge-detail {
    display: inline-block;
    background: var(--primary-gold);
    color: var(--bg-main);
    padding: 0.25rem 1rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.product-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.spec-table {
    background: var(--bg-secondary);
    border-radius: 10px;
    overflow: hidden;
    margin-top: 3rem;
}

.spec-table th {
    background: var(--bg-main);
    color: var(--primary-gold);
    padding: 1rem;
    border-bottom: 1px solid var(--border-color);
}

.spec-table td {
    padding: 1rem;
    border-bottom: 1px solid var(--border-color);
    color: var(--text-secondary);
	background: var(--bg-main);
}

.spec-table tr:last-child td {
    border-bottom: none;
}

.tab-content {
    background: var(--bg-secondary);
    padding: 2rem;
    border-radius: 0 10px 10px 10px;
    margin-top: -1px;
}

.nav-tabs {
    border-bottom: 1px solid var(--border-color);
}

.nav-tabs .nav-link {
    background: transparent;
    border: none;
    color: var(--text-secondary);
    padding: 1rem 2rem;
    border-radius: 10px 10px 0 0;
    transition: all 0.3s ease;
}

.nav-tabs .nav-link:hover {
    color: var(--primary-gold);
    background: rgba(221, 174, 67, 0.1);
}

.nav-tabs .nav-link.active {
    background: var(--bg-secondary);
    color: var(--primary-gold);
    border: 1px solid var(--border-color);
    border-bottom: 1px solid var(--bg-secondary);
}

.related-products {
    margin-top: 5rem;
}

.feature-list {
    list-style: none;
    padding: 0;
}

.feature-list li {
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    gap: 1rem;
}

.feature-list li:last-child {
    border-bottom: none;
}

.feature-list i {
    color: var(--primary-gold);
    font-size: 1.25rem;
}
.filter-section {
    background: var(--bg-secondary);
    padding: 2rem;
    border-radius: 10px;
    margin-bottom: 3rem;
    border: 1px solid var(--border-color);
}

.filter-btn {
    background: transparent;
    border: 1px solid var(--border-color);
    color: var(--text-secondary);
    padding: 0.5rem 1.5rem;
    margin: 0.25rem;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--primary-gold);
    border-color: var(--primary-gold);
    color: var(--bg-main);
    transform: translateY(-2px);
}

.product-card-full {
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    height: 100%;
}

.product-card-full:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: var(--primary-gold);
    box-shadow: 0 20px 40px rgba(221, 174, 67, 0.3);
}

.product-image-container {
    position: relative;
    overflow: hidden;
    height: 250px;
}

.product-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product-card-full:hover .product-image-container img {
    transform: scale(1.1);
}

.product-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--primary-gold);
    color: var(--bg-main);
    padding: 0.25rem 1rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
}

.product-info {
    padding: 1.5rem;
}

.product-category {
    color: var(--primary-gold);
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.product-name {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.product-specs {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.spec-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.spec-item i {
    color: var(--primary-gold);
}


.product-price small {
    font-size: 0.875rem;
    color: var(--text-secondary);
    font-weight: 400;
}

.search-box {
    background: var(--bg-main);
    border: 1px solid var(--border-color);
    border-radius: 50px;
    padding: 1rem 2rem;
    color: var(--text-primary);
    width: 100%;
    max-width: 500px;
    margin: 0 auto 2rem;
    transition: all 0.3s ease;
}

.search-box:focus {
    border-color: var(--primary-gold);
    box-shadow: 0 0 0 0.2rem rgba(221, 174, 67, 0.25);
    outline: none;
}

.sort-dropdown {
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    color: var(--text-primary);
    padding: 0.5rem 1rem;
    border-radius: 5px;
}

.sort-dropdown:focus {
    border-color: var(--primary-gold);
    box-shadow: 0 0 0 0.2rem rgba(221, 174, 67, 0.25);
}
.story-section {
    background: var(--bg-secondary);
    border-radius: 30px;
    padding: 4rem;
    margin: 3rem 0;
    position: relative;
    overflow: hidden;
}

.story-section::after {
    content: '"';
    position: absolute;
    top: -50px;
    right: 50px;
    font-size: 200px;
    color: rgba(221, 174, 67, 0.1);
    font-family: serif;
}

.milestone-card {
    background: var(--bg-main);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 2rem;
    height: 100%;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.milestone-card::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-gold) 0%, transparent 100%);
    transform: translateX(-100%);
    transition: transform 0.4s ease;
}

.milestone-card:hover::before {
    transform: translateX(0);
}

.milestone-card:hover {
    transform: translateY(-10px) rotate(-1deg);
    border-color: var(--primary-gold);
    box-shadow: 0 20px 40px rgba(221, 174, 67, 0.2);
}

.milestone-year {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-gold);
    margin-bottom: 1rem;
}

.value-card {
    background: linear-gradient(135deg, var(--bg-secondary) 0%, var(--bg-main) 100%);
    border-radius: 20px;
    padding: 3rem 2rem;
    text-align: center;
    height: 100%;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.value-card:hover {
    border-color: var(--primary-gold);
    transform: scale(1.05);
}

.value-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 2rem;
    background: rgba(221, 174, 67, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.value-card:hover .value-icon {
    background: var(--primary-gold);
    animation: pulse 1s infinite;
}

.value-icon i {
    font-size: 3rem;
    color: var(--primary-gold);
}

.value-card:hover .value-icon i {
    color: var(--bg-main);
}

.team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.team-card:hover .team-image img {
    transform: scale(1.1);
}

.team-socials a {
    width: 40px;
    height: 40px;
    background: var(--bg-main);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    transition: all 0.3s ease;
}

.team-socials a:hover {
    background: var(--primary-gold);
    color: var(--bg-main);
    transform: translateY(-3px);
}

.facility-showcase {
    background: var(--bg-main);
    border-radius: 30px;
    overflow: hidden;
    margin: 3rem 0;
}

.facility-image {
    height: 400px;
    background: var(--bg-secondary);
    position: relative;
    overflow: hidden;
}

.facility-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.facility-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(0deg, rgba(13, 13, 13, 0.9) 0%, transparent 100%);
    padding: 3rem;
    color: white;
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .story-section {
        padding: 2rem;
    }

    .milestone-year {
        font-size: 2rem;
    }
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.safety-card {
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 3rem;
    height: 100%;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.safety-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--primary-gold);
    transform: translateX(-100%);
    transition: transform 0.4s ease;
}

.safety-card:hover::before {
    transform: translateX(0);
}

.safety-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-gold);
    box-shadow: 0 20px 40px rgba(221, 174, 67, 0.2);
}

.safety-icon {
    width: 80px;
    height: 80px;
    background: rgba(221, 174, 67, 0.1);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.safety-card:hover .safety-icon {
    background: var(--primary-gold);
    transform: scale(1.1) rotate(5deg);
}

.safety-icon i {
    font-size: 2.5rem;
    color: var(--primary-gold);
    transition: all 0.3s ease;
}

.safety-card:hover .safety-icon i {
    color: var(--bg-main);
}

.rule-number {
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    font-size: 3rem;
    font-weight: 700;
    color: rgba(221, 174, 67, 0.1);
}

.emergency-section {
    background: linear-gradient(135deg, rgba(221, 174, 67, 0.1) 0%, transparent 100%);
    border: 2px solid var(--primary-gold);
    border-radius: 20px;
    padding: 3rem;
    margin: 3rem 0;
}


.play-button i {
    font-size: 2rem;
    color: var(--bg-main);
    margin-left: 5px;
}

.checklist-item i {
    color: var(--primary-gold);
    font-size: 1.5rem;
}

.image-slider {
     position: relative;
     width: 100%;
     height: 100%;
 }

.slider-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.slider-image.active {
    opacity: 1;
    position: relative;
}

.slider-indicators {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.indicator.active {
    background-color: #fff;
}

.indicator:hover {
    background-color: rgba(255, 255, 255, 0.8);
}