:root {
    --primary-accent: #D4AF37;
    --primary-hover: #b5952f;
    --bg-body: #ffffff;
    --bg-secondary: #f8f9fa;
    --card-bg: #ffffff;
    --text-primary: #1e293b;
    --text-secondary: #64748b;
    --text-light: #f8fafc;
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-body);
    color: var(--text-secondary);
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6,
.navbar-brand {
    font-family: var(--font-heading);
    color: var(--text-primary);
}

.text-primary-accent {
    color: var(--primary-accent) !important;
}

.bg-primary-accent {
    background-color: var(--primary-accent) !important;
}

.bg-secondary-custom {
    background-color: var(--bg-secondary) !important;
}

.text-gray-400 {
    color: var(--text-secondary) !important;
}

.text-gray-500 {
    color: #94a3b8 !important;
}

.letter-spacing-2 {
    letter-spacing: 2px;
}

/* Navbar */
.navbar {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.navbar-brand {
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--text-primary) !important;
}

.nav-link {
    font-weight: 500;
    color: var(--text-primary) !important;
    transition: color 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-accent) !important;
}

.btn-primary-accent {
    background-color: var(--primary-accent);
    border-color: var(--primary-accent);
    color: #fff;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary-accent:hover {
    background-color: var(--primary-hover);
    border-color: var(--primary-hover);
    transform: translateY(-2px);
    color: #fff;
}

/* Hero Section */
.hero-section {
    position: relative;
    height: 100vh;
    min-height: 600px;
}

.hero-carousel .item {
    height: 100vh;
    min-height: 600px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.3));
}

/* Services & Products */
.service-card,
.product-card {
    background-color: var(--card-bg);
    border-radius: 1rem;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02);
}

.service-card:hover,
.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-accent);
}

.service-img-wrapper,
.product-img-wrapper {
    height: 250px;
    overflow: hidden;
}

.service-img-wrapper img,
.product-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-card:hover .service-img-wrapper img,
.product-card:hover .product-img-wrapper img {
    transform: scale(1.1);
}

.icon-box {
    width: 60px;
    height: 60px;
    background-color: rgba(212, 175, 55, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-accent);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.read-more {
    color: var(--primary-accent);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    transition: gap 0.3s ease;
}

.read-more i {
    margin-left: 0.5rem;
    transition: margin-left 0.3s ease;
}

.read-more:hover i {
    margin-left: 1rem;
}

/* Production Process */
.process-step {
    position: relative;
    padding: 2rem;
    text-align: center;
}

.process-icon {
    width: 80px;
    height: 80px;
    background: var(--bg-body);
    border: 2px solid var(--primary-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: var(--primary-accent);
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.process-step:hover .process-icon {
    background: var(--primary-accent);
    color: #fff;
}

.process-line {
    position: absolute;
    top: 60px;
    left: 50%;
    width: 100%;
    height: 2px;
    background-color: #e2e8f0;
    z-index: 1;
    display: none;
}

@media (min-width: 992px) {
    .process-line {
        display: block;
    }

    .col-lg-3:last-child .process-line {
        display: none;
    }
}

/* About Section */
.experience-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background-color: var(--primary-accent);
    color: #fff;
    padding: 2rem;
    border-radius: 1rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
}

.experience-badge span {
    display: block;
    line-height: 1.2;
}

/* Testimonials */
.testimonial-card {
    background-color: var(--card-bg);
    border-radius: 1rem;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02);
}

/* Footer */
.hover-white:hover {
    color: #fff !important;
}

.input-group .form-control:focus {
    box-shadow: none;
    background-color: #2d3748;
}

/* Owl Carousel Dots */
.owl-theme .owl-dots .owl-dot span {
    background: rgba(0, 0, 0, 0.2);
    width: 12px;
    height: 12px;
    margin: 5px 7px;
}

.owl-theme .owl-dots .owl-dot.active span,
.owl-theme .owl-dots .owl-dot:hover span {
    background: var(--primary-accent);
}

/* Product Info Section */
.product-info-img {
    border-radius: 1rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.nav-item {
    margin-left: 1rem;
}
.nav-item .active {
    font-weight: 700;
    border-bottom: 2px solid var(--primary-accent);
}
.navbar {
    padding: 0 !important;
}
.banner-content {
    position: relative;
    z-index: 2;
    color: #fff;
}