:root {
    --primary-orange: #F05133;
    --dark-blue: #1a3a52;
    --deep-blue: #0d2c45;
}

body {
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    overflow-x: hidden;
}

.active {
     color: var(--primary-orange) !important;
}

/* Navbar */
.navbar {
    background-color: #FAFAFA;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    padding: 0.8rem 0;
}

.navbar-brand img {
    height: 50px;
}

.navbar-nav .nav-link {
    color: #333;
    font-weight: 600;
    margin: 0 1.2rem;
    font-size: 0.95rem;
    transition: color 0.3s;
}

.navbar-nav .nav-link:hover {
    color: var(--primary-orange);
}

.btn-contact-header {
    background-color: var(--primary-orange);
    color: #FAFAFA;
    border-radius: 20px;
    padding: 0.5rem 1.8rem;
    border: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s;
}

.btn-contact-header:hover {
    color: #FAFAFA;
    background-color: var(--primary-orange);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(255, 87, 34, 0.3);
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, var(--primary-orange) 0%, #ff6f43 100%);
    padding: 5rem 0;
    color: #FAFAFA;
}

.hero-content h1 {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.hero-content p {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.btn-hero {
    background-color: var(--dark-blue);
    color: #FAFAFA;
    border-radius: 8px;
    padding: 0.8rem 2.5rem;
    border: none;
    font-weight: 700;
    font-size: 0.95rem;
    transition: all 0.3s;
}

.btn-hero:hover {
    background-color: var(--deep-blue);
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

.hero-image {
    width: 100%;
    max-width: 450px;
}

/* About Section */
.about-section {
    padding: 5rem 0;
    background-color: #f8f9fa;
}

.about-section h2 {
    color: var(--dark-blue);
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.about-section p {
    color: #555;
    line-height: 1.9;
    font-size: 1.05rem;
}

.about-image {
    background-color: var(--dark-blue);
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.about-image img {
    width: 100%;
    height: auto;
}

/* Why Choose Section */
.why-choose-section {
    background-color: var(--primary-orange);
    padding: 4rem 0;
    color: #FAFAFA;
}

.why-choose-section h2 {
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 3rem;
}

.feature-card {
    background-color: var(--dark-blue);
    padding: 2.5rem 2rem;
    border-radius: 12px;
    height: 100%;
    transition: transform 0.3s, box-shadow 0.3s;
    border: 3px solid #FAFAFA;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.feature-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.feature-card p {
    font-size: 0.95rem;
    line-height: 1.7;
    margin: 0;
}

/* CTA Section */
.cta-section {
    background-color: var(--dark-blue);
    padding: 2.5rem 0;
    text-align: center;
}

.cta-section h2 {
    color: #FAFAFA;
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0;
    display: inline-block;
    margin-right: 2rem;
}

.btn-cta {
    background-color: var(--primary-orange);
    color: #FAFAFA;
    border-radius: 25px;
    padding: 0.7rem 2.5rem;
    border: none;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-cta:hover {
    background-color: var(--primary-orange);
    color: #FAFAFA;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(255, 87, 34, 0.4);
}

/* Product Section */
.product-section {
    padding: 5rem 0;
    background-color: #FAFAFA;
}

.product-section h2 {
    text-align: center;
    color: var(--dark-blue);
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 3rem;
}

.product-card {
    background-color: var(--primary-orange);
    border-radius: 15px;
    padding: 1.5rem;
    margin-bottom: 2rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
}

.product-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 1.5rem;
}

.product-card h3 {
    color: #FAFAFA;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.product-card p {
    color: #FAFAFA;
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}

.btn-product {
    background-color: var(--dark-blue);
    color: #FAFAFA;
    border-radius: 8px;
    padding: 0.7rem 2rem;
    border: none;
    font-weight: 600;
    width: 100%;
    transition: all 0.3s;
}

.btn-product:hover {
    background-color: var(--dark-blue);
    color: #FAFAFA;
    transform: translateY(-2px);
}

.btn-see-more {
    background-color: var(--dark-blue);
    color: #FAFAFA;
    border-radius: 8px;
    padding: 0.7rem 2rem;
    border: none;
    font-weight: 600;
    width: 100%;
    transition: all 0.3s;
    text-transform: uppercase;
}

.btn-see-more:hover {
    background-color: var(--dark-blue);
    color: #FAFAFA;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

/* Gallery Section */
.gallery-section {
    background-color: var(--primary-orange);
    padding: 4rem 0;
}

.gallery-section h2 {
    text-align: center;
    color: #FAFAFA;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 3rem;
}

.gallery-item {
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 2rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s;
}

.gallery-item:hover {
    transform: scale(1.05);
}

.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.btn-gallery {
    background-color: var(--dark-blue);
    color: #FAFAFA;
    border-radius: 25px;
    padding: 0.8rem 3rem;
    border: none;
    font-weight: 700;
    transition: all 0.3s;
    display: block;
    margin: 3rem auto 0;
}

.btn-gallery:hover {
    background-color: var(--dark-blue);
    color: #FAFAFA;
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

/* Footer */
.footer {
    background-color: #FAFAFA;
    padding: 4rem 0 0 0;
}

.footer-logo img {
    height: 80px;
    margin-bottom: 1.5rem;
}

.footer h5 {
    color: var(--dark-blue);
    font-weight: 700;
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

.footer p {
    color: #666;
    line-height: 1.8;
}

.footer a {
    color: #666;
    text-decoration: none;
}

.footer a:hover {
    color: var(--primary-orange);
}

.copyright {
    background-color: var(--primary-orange);
    color: #FAFAFA;
    text-align: center;
    padding: 1.5rem 0;
    margin-top: 2rem;
    font-size: 0.95rem;
}

.btn-contact-nav {
    background-color: var(--primary-orange);
    color: #FAFAFA;
    border-radius: 25px;
    padding: 0.5rem 2rem;
    border: none;
    font-weight: 500;
    transition: all 0.3s;
}

.btn-contact-nav:hover {
    background-color: var(--primary-orange);
    color: #FAFAFA;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(255, 87, 34, 0.3);
}

/* Responsive */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-section {
        padding: 3rem 0;
    }

    .cta-section h2 {
        display: block;
        margin-bottom: 1.5rem;
        margin-right: 0;
        font-size: 1.4rem;
    }

    .navbar-nav .nav-link {
        margin: 0.5rem 0;
    }

    .feature-card {
        margin-bottom: 1.5rem;
    }
}
