/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #fff;
    background-color: #000;
}

.top-bar {
    background-color: #1a1a1a;
    color: #fff;
    padding: 0.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 2px solid #ff0000;
}

.phone-number {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #ff0000;
}

.social-icons {
    display: flex;
    gap: 1rem;
}

.social-icon {
    color: #fff;
    text-decoration: none;
    font-size: 1.2rem;
    transition: color 0.3s ease;
}
.social-icon:hover {
    color: #ff0000;
}

.navbar {
    background-color: #000;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 2px solid #ff0000;
}
.logo img {
    width: 150px;
}
.search-bar {
    display: flex;
    align-items: center;
    background: #1a1a1a;
    border: 1px solid #ff0000;
    border-radius: 4px;
    padding: 0.5rem;
    width: 40%;
}
.search-bar input {
    border: none;
    outline: none;
    width: 100%;
    padding: 0.5rem;
    background: #1a1a1a;
    color: #fff;
}
.search-bar input::placeholder {
    color: #666;
}
.search-bar button {
    background: none;
    border: none;
    color: #ff0000;
    cursor: pointer;
    padding: 0.5rem;
}
.cart-icon {
    color: #ff0000;
    font-size: 1.5rem;
    position: relative;
    cursor: pointer;
}
.cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background: #ff0000;
    color: white;
    font-size: 0.8rem;
    padding: 0.2rem 0.5rem;
    border-radius: 50%;
}

.category-nav {
    background-color: #1a1a1a;
    padding: 0.5rem 2rem;
    border-bottom: 2px solid #ff0000;
}
.category-links {
    display: flex;
    list-style: none;
    justify-content: center;
    gap: 2rem;
}
.category-links a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.category-links a:hover,
.category-links a.active {
    color: #ff0000;
}
.dropdown {
    position: relative;
}
.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #1a1a1a;
    min-width: 200px;
    box-shadow: 0 2px 5px rgba(255,0,0,0.2);
    border-radius: 4px;
    padding: 0.5rem 0;
    z-index: 1000;
    border: 1px solid #ff0000;
}
.dropdown:hover .dropdown-menu {
    display: block;
}
.dropdown-menu li {
    list-style: none;
}
.dropdown-menu a {
    color: #fff;
    padding: 0.5rem 1rem;
    display: block;
}
.dropdown-menu a:hover {
    background-color: #ff0000;
    color: #fff;
}

/* Banner Section */
.about-banner {
    position: relative;
    height: 700px;
    background: url('IMAGES/banner/9.png') no-repeat center center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 40px;
}
.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    
    display: flex;
    align-items: center;
    justify-content: center;
}
.about-banner h1 {
    color: #fff;
    font-size: 3.5em;
    font-weight: bold;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.about-section {
    padding: 60px 20px 40px 20px;
    background: #000;
    color: #fff;
}
.about-section.black-bg {
    background: #111;
}
.about-container {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}
.about-title {
    color: #ff0000;
    font-size: 2.2em;
    font-weight: bold;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

/* Contact Form Styles */
.contact-form {
    background: #181818;
    border-radius: 12px;
    padding: 32px 24px 24px 24px;
    box-shadow: 0 2px 12px rgba(255,0,0,0.08);
    color: #fff;
    text-align: left;
    margin: 0 auto;
    max-width: 500px;
}
.form-row {
    display: flex;
    gap: 16px;
    margin-bottom: 18px;
    flex-wrap: wrap;
}
.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid #ff0000;
    border-radius: 6px;
    background: #111;
    color: #fff;
    font-size: 1em;
    transition: border 0.3s;
    resize: none;
}
.contact-form input:focus,
.contact-form textarea:focus {
    border: 1.5px solid #ff0000;
    outline: none;
}
.contact-form input[type="text"],
.contact-form input[type="email"] {
    flex: 1 1 45%;
}
.contact-form textarea {
    min-height: 100px;
    max-height: 200px;
}
.btn.red {
    background: #ff0000;
    color: #fff;
    border: none;
    padding: 12px 28px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1.1em;
    font-weight: bold;
    transition: background 0.3s;
    margin-top: 10px;
    width: 100%;
}
.btn.red:hover {
    background: #b30000;
}

/* Map Section */
.contact-map-section .about-container {
    max-width: 900px;
}
.map-responsive {
    overflow: hidden;
    padding-bottom: 40%;
    position: relative;
    height: 0;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(255,0,0,0.08);
    margin-top: 20px;
}
.map-responsive iframe {
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    position: absolute;
    border: 0;
    border-radius: 12px;
}

.site-footer {
    background: #000;
    color: white;
    padding: 50px 20px 20px;
    font-size: 14px;
}
.footer-top {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 30px;
}
.footer-left {
    flex: 1 1 250px;
}
.footer-logo {
    width: 150px;
    margin-bottom: 10px;
}
.footer-left p {
    margin-bottom: 10px;
    color: #ddd;
}
.social-icons span {
    margin-right: 10px;
    font-size: 20px;
    cursor: pointer;
}
.footer-col {
    flex: 1 1 200px;
}
.footer-col h4 {
    margin-bottom: 15px;
    color: white;
}
.footer-col ul {
    list-style: none;
    padding: 0;
}
.footer-col ul li {
    margin-bottom: 8px;
    color: #ccc;
}
.footer-col ul li a {
    color: #ccc;
    text-decoration: none;
}
.footer-col ul li a:hover {
    color: red;
}
.footer-bottom {
    text-align: center;
    margin-top: 30px;
    font-size: 13px;
    color: #999;
    border-top: 1px solid #222;
    padding-top: 15px;
}

@media (max-width: 900px) {
    .about-banner {
        height: 200px;
    }
    .about-banner h1 {
        font-size: 2.2em;
    }
    .about-container {
        max-width: 95%;
    }
    .contact-form {
        max-width: 95%;
        padding: 18px 8px 14px 8px;
    }
}
@media (max-width: 600px) {
    .about-banner {
        height: 120px;
    }
    .about-banner h1 {
        font-size: 1.2em;
    }
    .about-section {
        padding: 20px 5px 10px 5px;
    }
    .about-title {
        font-size: 1.1em;
    }
    .form-row {
        flex-direction: column;
        gap: 8px;
    }
    .contact-form input[type="text"],
    .contact-form input[type="email"] {
        flex: 1 1 100%;
    }
    .map-responsive {
        padding-bottom: 60%;
    }
}

/* Contact Section Two-Column Layout */
.contact-flex {
    display: flex;
    gap: 100px;
    justify-content: center;
    align-items: flex-start;
    max-width: 1200px;
}
.contact-form-col {
    flex: 1 1 340px;
}
.contact-info-col {
    flex: 1 1 260px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.contact-info-box {
    background: #181818;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(255,0,0,0.08);
    padding: 32px 24px;
    color: #fff;
    min-width: 220px;
    width: 100%;
    text-align: left;
    margin-top: 100px;
}
.contact-info-box h3 {
    color: #ff0000;
    font-size: 1.3em;
    margin-bottom: 18px;
    font-weight: bold;
    letter-spacing: 1px;
}
.contact-info-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.08em;
    margin-bottom: 18px;
    color: #fff;
    word-break: break-word;
}
.contact-info-item i {
    color: #ff0000;
    font-size: 1.2em;
}
.contact-info-item:last-child {
    margin-bottom: 0;
}

@media (max-width: 900px) {
    .contact-flex {
        flex-direction: column;
        gap: 24px;
        max-width: 98%;
    }
    .contact-info-col, .contact-form-col {
        width: 100%;
        min-width: 0;
    }
    .contact-info-box {
        padding: 20px 10px;
        min-width: 0;
    }
} 