body {
    margin: 0;
    padding: 0
}

.navbar {
    background-color: #513a31;
    box-shadow: 0 2px 4px rgba(0, 0, 0, .05);
    font-family: 'Segoe UI', sans-serif
}

.navbar-nav .nav-link {
    color: #cbcbcb;
    font-weight: 600;
    margin: 0 10px
}

.navbar-nav .nav-link.active,
.navbar-nav .nav-link:hover {
    color: #ec8200
}

.franchise-btn {
    background-color: #a2321e;
    color: #fff;
    border-radius: 10px;
    padding: 6px 18px;
    font-weight: 600;
    border: 2px solid #ec8200
}

.franchise-btn:hover {
    background-color: #c34128;
    color: #fff
}

.navbar-brand img {
    height: 70px
}

@media (max-width:991.98px) {
    .navbar-nav {
        text-align: center
    }
}

.hero {
    position: relative;
    height: 80vh;
    background: url('images/banner.jpg') no-repeat center center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #000000
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(118, 118, 118, 0);
    z-index: 1
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 20px
}

.hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
    font-family: 'Segoe UI', sans-serif
}

.hero p {
    font-size: 20px;
    margin-bottom: 30px;
    font-weight: 400
}

.hero-btn {
    display: inline-block;
    padding: 12px 30px;
    background: #a2321e;
    color: #fff;
    font-size: 16px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: .3s;
    border: 2px solid #fff
}

.hero-btn:hover {
    background: #ec8200;
    color: #fff
}

.about-section {
    padding: 60px 20px;
    background: #fff
}

.about-container {
    display: flex;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: auto;
    align-items: center;
    justify-content: space-between
}

.about-text {
    flex: 1 1 55%;
    padding: 20px
}

.about-text small {
    color: #a2321e;
    font-weight: bold;
    text-transform: uppercase
}

.about-text h2 {
    color: #801c1c;
    font-size: 32px;
    margin: 10px 0
}

.underline {
    width: 60px;
    height: 3px;
    background-color: #d6871a;
    margin-bottom: 20px
}

.about-text p {
    font-size: 16px;
    color: #333;
    margin-bottom: 15px
}

.read-more-btn {
    display: inline-block;
    background: #801c1c;
    color: #fff;
    padding: 10px 20px;
    border-radius: 6px;
    text-decoration: none;
    transition: .3s ease
}

.read-more-btn:hover {
    background: #d6871a;
    color: #fff
}

.about-image {
    flex: 1 1 40%;
    text-align: center;
    padding: 20px
}

.about-image img {
    max-width: 300px;
    height: auto
}

.stats-section {
    background-color: #801c1c;
    color: #fff;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2px;
    padding: 30px 20px
}

.stat-box {
    background-color: #5d0f0f;
    padding: 20px;
    border: 1px solid #d6871a;
    text-align: center
}

.stat-box .label {
    font-size: 14px;
    color: #fff9
}

.stat-box h3 {
    font-size: 28px;
    margin: 10px 0;
    color: #ffd700
}

.stat-box .unit {
    font-size: 14px;
    color: #fff
}

.products-section {
    background-color: #7a1f1f;
    padding: 60px 20px;
    color: #fff
}

.products-section .container {
    max-width: 1200px;
    margin: auto;
    text-align: center
}

.section-title {
    font-size: 36px;
    font-weight: 700;
    color: #fff
}

.underline {
    width: 60px;
    height: 3px;
    background-color: #f3b230;
    margin: 10px auto 40px
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 20px;
    justify-content: center
}

.product-card {
    background-color: #fff;
    border: 2px solid #f3b230;
    border-radius: 12px;
    overflow: hidden;
    transition: transform .3s ease, box-shadow .3s ease
}

.product-card img {
    width: 100%;
    height: 220px;
    object-fit: cover
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, .2)
}

.view-all-btn {
    margin-top: 40px
}

.view-all-btn a {
    background-color: #fff;
    color: #7a1f1f;
    padding: 10px 25px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 500;
    transition: .3s ease
}

.view-all-btn a:hover {
    background-color: #f3b230;
    color: #fff
}

.franchise-section {
    background-color: #000;
    color: #fff;
    padding: 60px 20px;
    text-align: center
}

.section-subtitle {
    color: #ffb02e;
    font-weight: 500;
    font-size: 18px
}

.section-title {
    font-size: 38px;
    font-weight: bold;
    margin: 10px 0
}

.underline {
    width: 60px;
    height: 3px;
    background-color: #f3b230;
    margin: 15px auto 40px
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    justify-content: center
}

.video-card {
    border: 2px solid #f3b230;
    border-radius: 10px;
    overflow: hidden;
    background-color: #111;
    padding: 5px
}

.video-card iframe {
    width: 100%;
    height: 200px;
    border-radius: 8px
}

.view-all-btn {
    margin-top: 40px
}

.view-all-btn a {
    background-color: #fff;
    color: #000;
    padding: 10px 25px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 500;
    transition: .3s ease
}

.view-all-btn a:hover {
    background-color: #f3b230;
    color: #fff
}

.testimonial-section {
    background: #801c1c;
    padding: 60px 20px;
    text-align: center
}

.testimonials {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center
}

.testimonial-card {
    background: #fff;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, .1);
    max-width: 300px
}

.testimonial-card p {
    font-style: italic;
    margin-bottom: 10px
}

.testimonial-card h4 {
    color: #7a1f1f;
    font-weight: bold
}

.contact-section {
    padding: 60px 20px;
    background: #fff7f0;
    text-align: center
}

.contact-form {
    max-width: 600px;
    margin: auto
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    margin: 10px 0;
    padding: 12px 15px;
    border: 1px solid #ccc;
    border-radius: 5px
}

.contact-form button {
    padding: 12px 25px;
    border: none;
    background: #7a1f1f;
    color: #fff;
    font-size: 16px;
    border-radius: 5px;
    cursor: pointer;
    transition: .3s ease
}

.contact-form button:hover {
    background: #a52a2a
}

.site-footer {
    background-color: #240000;
    color: #fff;
    padding: 30px 20px;
    text-align: center
}

.site-footer a {
    color: #f3b230;
    text-decoration: none
}

.site-footer a:hover {
    text-decoration: underline
}