:root {
    --primary-color: #FF6B00;
    --secondary-color: #212529;
    --accent-color: #FFA559;
    --text-light: #ffffff;
    --text-dark: #212529;
}

/* Logo Styles */
.logo-img {
    height: 40px;
    width: auto;
    transition: transform 0.3s ease;
}

.logo-img:hover {
    transform: scale(1.05);
}

.hero-logo {
    height: 120px;
    width: auto;
    margin-bottom: 2rem;
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.3));
    animation: float 3s ease-in-out infinite;
}

.footer-logo {
    height: 50px;
    width: auto;
    filter: brightness(0) invert(1);
    opacity: 0.9;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
    100% {
        transform: translateY(0px);
    }
}

/* General Styles */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
}

.section-title {
    color: var(--secondary-color);
    position: relative;
    padding-bottom: 15px;
    margin-bottom: 30px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background-color: var(--primary-color);
}

/* Navigation */
.navbar {
    background-color: rgba(0, 0, 0, 0.9);
    padding: 1rem 0;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background-color: rgba(0, 0, 0, 0.95);
    padding: 0.5rem 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar-brand {
    padding: 0;
}

.logo-img {
    height: 40px;
    transition: all 0.3s ease;
}

.navbar.scrolled .logo-img {
    height: 35px;
}

.nav-link {
    color: #fff !important;
    font-weight: 500;
    padding: 0.5rem 1rem !important;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color) !important;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 50%;
    background-color: var(--primary-color);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 80%;
}

/* Dropdown Menu Styles */
.dropdown-menu {
    background-color: rgba(0, 0, 0, 0.95);
    border: none;
    border-radius: 10px;
    padding: 0.5rem;
    margin-top: 0.5rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.dropdown-item {
    color: #fff;
    padding: 0.75rem 1rem;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.dropdown-item:hover,
.dropdown-item:focus {
    background-color: rgba(255, 123, 0, 0.1);
    color: var(--primary-color);
}

.dropdown-item.active {
    background-color: var(--primary-color);
    color: #fff;
}

.navbar-toggler {
    border: none;
    padding: 0.5rem;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255, 255, 255, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

@media (max-width: 991.98px) {
    .navbar-collapse {
        background-color: rgba(0, 0, 0, 0.95);
        padding: 1rem;
        border-radius: 10px;
        margin-top: 1rem;
    }

    .nav-link {
        padding: 0.75rem 1rem !important;
    }

    .nav-link::after {
        display: none;
    }

    .nav-link:hover,
    .nav-link.active {
        background-color: rgba(255, 123, 0, 0.1);
        border-radius: 5px;
    }

    .dropdown-menu {
        background-color: transparent;
        box-shadow: none;
        padding: 0;
        margin: 0;
    }

    .dropdown-item {
        padding-left: 2rem;
    }
}

/* Hero Section */
.hero-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #333 100%);
    color: #fff;
}

.hero-section h1 {
    color: #fff;
}

.hero-section .btn-outline-light:hover {
    background-color: #fff;
    color: #1a1a1a;
}

/* Featured Categories */
.category-card {
    text-decoration: none;
    color: inherit;
    display: block;
    transition: transform 0.3s ease;
}

.category-card:hover {
    transform: translateY(-5px);
    color: inherit;
}

.category-card .card {
    border: none;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.category-card:hover .card {
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.category-card .card-img-top {
    height: 200px;
    object-fit: cover;
}

/* Feature Cards */
.feature-card {
    padding: 2rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.feature-card i {
    color: var(--primary-color);
}

/* Product Cards */
.product-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.product-image {
    height: 250px;
    overflow: hidden;
}

.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-info {
    padding: 1.5rem;
    text-align: center;
}

.product-info h5 {
    margin-bottom: 0.5rem;
    color: var(--dark-color);
}

.price {
    color: var(--primary-color);
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

/* Call to Action Section */
.cta-section {
    background: linear-gradient(135deg, #ff6b00 0%, #ff8533 100%) !important;
}

.cta-section .btn {
    padding: 1rem 2.5rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Responsive Adjustments */
@media (max-width: 991.98px) {
    .hero-section {
        padding: 120px 0 80px;
        text-align: center;
    }

    .hero-section img {
        margin-top: 2rem;
    }

    .feature-card {
        margin-bottom: 1.5rem;
    }
}

@media (max-width: 767.98px) {
    .hero-section {
        padding: 100px 0 60px;
    }

    .hero-buttons .btn {
        display: block;
        width: 100%;
        margin-bottom: 1rem;
    }

    .product-card {
        margin-bottom: 1.5rem;
    }
}

/* About Section */
.address-box {
    background-color: #f8f9fa;
    padding: 20px;
    border-radius: 5px;
    border-left: 4px solid var(--primary-color);
    transition: transform 0.3s ease;
}

.address-box:hover {
    transform: translateX(10px);
}

/* Brands Section */
.brands-section {
    background-color: #fff;
}

.brand-card {
    background: #fff;
    border-radius: 15px;
    padding: 30px;
    height: 100%;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.brand-card:hover {
    transform: translateY(-5px);
}

.brand-icon {
    width: 80px;
    height: 80px;
    background: #f8f9fa;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: #ff6b00;
}

.brand-info h3 {
    color: #1a1a1a;
    margin-bottom: 15px;
    font-weight: 600;
}

.brand-info p {
    color: #666;
    margin-bottom: 20px;
}

.brand-features {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 20px;
}

.brand-features span {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #666;
    font-size: 0.9rem;
}

.brand-features i {
    color: #ff6b00;
}

/* Contact Section */
.contact-info {
    height: 100%;
}

.info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.info-item i {
    font-size: 1.2rem;
    margin-top: 0.25rem;
}

.info-item h5 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.info-item p {
    color: var(--text-color);
    line-height: 1.6;
}

.info-item a {
    color: var(--text-color);
    transition: color 0.3s ease;
}

.info-item a:hover {
    color: var(--primary-color);
}

.contact-form .form-group {
    margin-bottom: 1rem;
}

.contact-form .form-label {
    font-weight: 500;
    color: var(--text-color);
}

.contact-form .form-control {
    border: 1px solid #dee2e6;
    padding: 0.75rem;
    transition: all 0.3s ease;
}

.contact-form .form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(255, 165, 0, 0.25);
}

.contact-form textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

.map-container {
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.map-container iframe {
    border: none;
    width: 100%;
    height: 450px;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .contact-info {
        margin-bottom: 2rem;
    }
    
    .info-item {
        margin-bottom: 1rem;
    }
    
    .map-container iframe {
        height: 300px;
    }
}

/* Footer Styles */
.footer {
    background-color: #1a1a1a;
    color: #fff;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
}

.footer-logo {
    height: 40px;
    filter: brightness(0) invert(1);
    transition: all 0.3s ease;
}

.footer-brand p {
    font-size: 0.95rem;
    line-height: 1.6;
}

.footer-heading {
    color: #fff;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-heading::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 2px;
    background-color: var(--primary-color);
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
}

.footer-links a i {
    font-size: 0.9rem;
    width: 20px;
    transition: transform 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary-color);
    transform: translateX(5px);
}

.footer-links a:hover i {
    transform: scale(1.2);
}

.footer-links i {
    font-size: 0.8rem;
    color: var(--primary-color);
}

.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1rem;
    color: #b3b3b3;
}

.footer-contact i {
    color: var(--primary-color);
    margin-right: 1rem;
    margin-top: 0.25rem;
}

.footer-contact span {
    font-size: 0.95rem;
    line-height: 1.6;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background-color: var(--primary-color);
    color: #fff;
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1.5rem;
}

.footer-bottom p {
    color: #b3b3b3;
    font-size: 0.9rem;
}

.footer-bottom-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: flex-end;
    gap: 1.5rem;
}

.footer-bottom-links a {
    color: #b3b3b3;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
    color: var(--primary-color);
}

@media (max-width: 991.98px) {
    .footer-heading {
        margin-top: 2rem;
    }

    .footer-bottom-links {
        justify-content: center;
        margin-top: 1rem;
    }

    .footer-bottom p {
        text-align: center;
    }
}

@media (max-width: 767.98px) {
    .footer-bottom-links {
        flex-direction: column;
        align-items: center;
        gap: 0.5rem;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-section h1 {
        font-size: 2.5rem;
    }
    
    .section-title {
        text-align: center;
    }
    
    .section-title::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .product-card .card-img-top {
        height: 180px;
    }

    .logo-img {
        height: 30px;
    }

    .hero-logo {
        height: 80px;
    }

    .footer-logo {
        height: 40px;
    }

    .category-box {
        padding: 1.5rem;
    }
    
    .category-box i {
        font-size: 1.5rem;
    }

    .footer-links li {
        margin-bottom: 0.5rem;
    }
    
    .footer-links a {
        font-size: 0.9rem;
    }
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeIn 1s ease-out;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--accent-color);
}

/* Category Boxes */
.category-box {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.category-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.category-box i {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.category-box h5 {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.category-box p {
    color: var(--text-color);
    margin-bottom: 0;
    font-size: 0.9rem;
}

/* Page Hero Section */
.page-hero {
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('https://images.unsplash.com/photo-1607082348824-0a96f2a4b9da?ixlib=rb-1.2.1&auto=format&fit=crop&w=1950&q=80');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 120px 0 60px;
    text-align: center;
    margin-bottom: 2rem;
}

.page-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.page-hero p {
    font-size: 1.2rem;
    opacity: 0.9;
}

/* Category Filters */
.category-filters {
    margin-bottom: 2rem;
}

.category-filters .btn {
    margin: 0.5rem;
    border-radius: 25px;
    padding: 0.5rem 1.5rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.category-filters .btn:hover,
.category-filters .btn.active {
    background-color: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

/* About Page Styles */
.about-section {
    background-color: #fff;
}

.about-image {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
}

.about-image img {
    transition: transform 0.3s ease;
}

.about-image:hover img {
    transform: scale(1.05);
}

/* Values Section */
.value-card {
    background: #fff;
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    height: 100%;
}

.value-card:hover {
    transform: translateY(-5px);
}

.value-icon {
    width: 70px;
    height: 70px;
    background: #f8f9fa;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.value-icon i {
    font-size: 1.8rem;
    color: #ff6b00;
}

.value-card h4 {
    margin-bottom: 15px;
    color: #1a1a1a;
}

.value-card p {
    color: #666;
    margin-bottom: 0;
}

/* Team Section */
.team-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.team-card:hover {
    transform: translateY(-5px);
}

.team-image {
    position: relative;
    overflow: hidden;
}

.team-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.team-card:hover .team-image img {
    transform: scale(1.05);
}

.team-info {
    padding: 20px;
    text-align: center;
}

.team-info h4 {
    margin-bottom: 5px;
    color: #1a1a1a;
}

.team-info .position {
    color: #ff6b00;
    font-weight: 500;
    margin-bottom: 10px;
}

.team-info .description {
    color: #666;
    margin-bottom: 0;
}

/* Brands Page Styles */
.platform-card {
    display: flex;
    align-items: center;
    padding: 2rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

.platform-card:hover {
    transform: translateY(-5px);
}

.platform-icon {
    flex: 0 0 100px;
    text-align: center;
}

.platform-icon i {
    color: var(--primary-color);
}

.platform-content {
    flex: 1;
    padding-left: 2rem;
}

.trademark-card {
    padding: 2rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

.trademark-card:hover {
    transform: translateY(-5px);
}

.trademark-icon {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.trademark-card ul li {
    margin-bottom: 0.5rem;
}

.trademark-card ul li i {
    color: var(--primary-color);
}

.seller-card {
    padding: 2rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

/* Contact Page Styles */
.contact-section {
    background-color: #f8f9fa;
}

.contact-info {
    background: white;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0,0,0,0.1);
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.info-item i {
    font-size: 1.2rem;
    color: var(--primary-color);
}

.info-item h5 {
    margin-bottom: 5px;
    color: var(--dark-color);
}

.info-item p {
    margin: 0;
    color: var(--text-color);
}

.contact-form {
    background: white;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0,0,0,0.1);
}

.form-control {
    border: 1px solid #dee2e6;
    padding: 0.75rem;
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(255, 123, 0, 0.25);
}

.alert {
    border: none;
    border-radius: 8px;
    padding: 1rem;
    margin-bottom: 1.5rem;
}

.alert-success {
    background-color: #d4edda;
    color: #155724;
}

.alert-danger {
    background-color: #f8d7da;
    color: #721c24;
}

.alert i {
    margin-right: 0.5rem;
}

.map-section {
    margin-top: 3rem;
}

.map-section iframe {
    filter: grayscale(100%);
    transition: filter 0.3s ease;
}

.map-section iframe:hover {
    filter: grayscale(0%);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .platform-card {
        flex-direction: column;
        text-align: center;
    }

    .platform-icon {
        margin-bottom: 1rem;
    }

    .platform-content {
        padding-left: 0;
    }

    .contact-info,
    .contact-form {
        margin-bottom: 2rem;
    }
    
    .info-item {
        margin-bottom: 1.5rem;
    }
}

/* Brand Cards */
.brand-category {
    margin-bottom: 3rem;
}

.brand-card {
    background: #fff;
    border-radius: 15px;
    padding: 30px;
    height: 100%;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.brand-card:hover {
    transform: translateY(-5px);
}

.brand-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.brand-header h3 {
    margin: 0;
    color: var(--primary-color);
    font-weight: 600;
}

.brand-content {
    color: #666;
}

.brand-products {
    margin: 1.5rem 0;
}

.brand-products h4 {
    color: #333;
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.brand-products ul {
    list-style: none;
    padding-left: 0;
}

.brand-products ul li {
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.brand-products ul li:before {
    content: "•";
    color: var(--primary-color);
    position: absolute;
    left: 0;
}

.category-card {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    padding: 2rem;
    text-align: center;
    height: 100%;
    transition: transform 0.3s ease;
}

.category-card:hover {
    transform: translateY(-5px);
}

.category-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.category-card h3 {
    color: #333;
    margin-bottom: 1.5rem;
}

.category-card ul {
    list-style: none;
    padding-left: 0;
    text-align: left;
}

.category-card ul li {
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.category-card ul li:before {
    content: "•";
    color: var(--primary-color);
    position: absolute;
    left: 0;
}

.product-card {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    height: 100%;
    transition: transform 0.3s ease;
}

.product-card:hover {
    transform: translateY(-5px);
}

.product-image {
    height: 250px;
    overflow: hidden;
}

.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-info {
    padding: 1.5rem;
}

.product-info h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: #333;
}

.product-info .brand {
    color: var(--primary-color);
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.product-info .price {
    font-size: 1.25rem;
    font-weight: 600;
    color: #333;
    margin: 1rem 0;
}

.cta-section {
    background: linear-gradient(135deg, #ff6b00 0%, #ff8533 100%);
    background-size: cover;
    background-position: center;
    padding: 5rem 0;
}

.cta-buttons .btn {
    padding: 0.75rem 2rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

@media (max-width: 768px) {
    .brand-card,
    .category-card,
    .product-card {
        margin-bottom: 2rem;
    }

    .product-image {
        height: 180px;
    }

    .cta-section {
        padding: 3rem 0;
    }

    .cta-buttons .btn {
        display: block;
        width: 100%;
        margin: 0.5rem 0;
    }
}

/* Section Titles with Icons */
.section-title i {
    color: var(--primary-color);
    margin-right: 0.5rem;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .brand-card {
        padding: 1.5rem;
    }
    
    .brand-icon {
        width: 50px;
        height: 50px;
        margin-bottom: 1rem;
    }
    
    .brand-info h3 {
        font-size: 1.3rem;
    }
    
    .brand-description {
        font-size: 0.9rem;
    }
    
    .brand-tags .badge {
        padding: 0.4rem 0.8rem;
        font-size: 0.7rem;
    }
}

/* Partner Section Styles */
.partners-section {
    background-color: #fff;
}

.partner-card {
    background: #fff;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    height: 100%;
}

.partner-card:hover {
    transform: translateY(-5px);
}

.partner-icon {
    width: 80px;
    height: 80px;
    background: #f8f9fa;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.partner-icon i {
    font-size: 2rem;
    color: #ff6b00;
}

.partner-info h3 {
    margin-bottom: 20px;
    color: #1a1a1a;
}

.partner-details {
    margin-bottom: 20px;
}

.partner-details p {
    margin-bottom: 10px;
    color: #666;
}

.brand-badges {
    margin: 10px 0;
}

.brand-badges .badge {
    background-color: #ff6b00 !important;
    padding: 8px 15px;
    margin-right: 10px;
    font-size: 0.9rem;
}

.requirement-icon {
    width: 50px;
    height: 50px;
    background: #f8f9fa;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.requirement-icon i {
    font-size: 1.2rem;
    color: #ff6b00;
}

/* Authorization Page Styles */
.authorization-card {
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    overflow: hidden;
}

.card-header {
    background: var(--primary-color);
    color: #fff;
    padding: 2rem;
}

.company-info {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.company-icon {
    width: 80px;
    height: 80px;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.company-details h2 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.registration {
    font-size: 0.9rem;
    opacity: 0.9;
}

.card-body {
    padding: 2rem;
}

.detail-section {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #eee;
}

.detail-section:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.detail-section h3 {
    color: var(--primary-color);
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.detail-content {
    color: var(--text-color);
}

.terms-list, .verification-list {
    list-style: none;
    padding-left: 0;
}

.terms-list li, .verification-list li {
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
}

.terms-list i, .verification-list i {
    color: var(--primary-color);
}

.card-footer {
    background: #f8f9fa;
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.status-badge {
    display: inline-flex;
    align-items: center;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
}

.status-badge.active {
    background: #e8f5e9;
    color: #2e7d32;
}

.status-badge i {
    font-size: 0.8rem;
}

/* Print Styles */
@media print {
    .navbar, .footer, .print-section {
        display: none !important;
    }
    
    .authorization-card {
        box-shadow: none;
    }
    
    .card-header {
        background: #fff !important;
        color: #000 !important;
    }
    
    .company-icon {
        background: #f8f9fa !important;
        color: #000 !important;
    }
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .company-info {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .card-header, .card-body, .card-footer {
        padding: 1.5rem;
    }
    
    .card-footer {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .company-details h2 {
        font-size: 1.5rem;
    }
}

.product-meta {
    margin: 1rem 0;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.rating {
    display: flex;
    align-items: center;
}

.rating i {
    margin-right: 0.25rem;
}

.reviews {
    color: #666;
    font-size: 0.9rem;
}

.product-info .description {
    color: #666;
    margin-bottom: 1rem;
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Section Titles */
.section-title {
    color: #1a1a1a;
    margin-bottom: 15px;
}

.section-subtitle {
    color: #666;
    margin-bottom: 40px;
}

/* Global Button Styles */
.btn-primary {
    background-color: #ff6b00 !important;
    border-color: #ff6b00 !important;
    color: #fff !important;
}

.btn-primary:hover {
    background-color: #e65c00 !important;
    border-color: #e65c00 !important;
}

.btn-outline-primary {
    color: #ff6b00 !important;
    border-color: #ff6b00 !important;
}

.btn-outline-primary:hover {
    background-color: #ff6b00 !important;
    border-color: #ff6b00 !important;
    color: #fff !important;
}

/* Icon Colors */
.fa-check-circle,
.fa-check,
.fa-store,
.fa-car,
.fa-handshake,
.fa-truck,
.fa-chart-line,
.fa-percentage,
.fa-box,
.fa-tags,
.fa-headset {
    color: #ff6b00 !important;
}

/* Text Colors */
.text-primary {
    color: #ff6b00 !important;
}

/* Link Colors */
a {
    color: #ff6b00;
}

a:hover {
    color: #e65c00;
}

/* Brand Features */
.brand-features i {
    color: #ff6b00 !important;
}

/* Feature Icons */
.feature-icon i {
    color: #ff6b00 !important;
}

/* Benefit Icons */
.benefit-icon i {
    color: #ff6b00 !important;
}

.hero-icon {
    color: #ff6b00;
    margin-bottom: 20px;
    animation: float 3s ease-in-out infinite;
}

.about-icon-container {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.about-icon {
    width: 120px;
    height: 120px;
    background: #f8f9fa;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ff6b00;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.about-icon:hover {
    transform: translateY(-10px);
    background: #ff6b00;
    color: #fff;
}

.value-icon {
    width: 70px;
    height: 70px;
    background: #f8f9fa;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.value-icon i {
    font-size: 1.8rem;
    color: #ff6b00;
}

.team-icon {
    width: 120px;
    height: 120px;
    background: #f8f9fa;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: #ff6b00;
    transition: all 0.3s ease;
}

.team-card:hover .team-icon {
    background: #ff6b00;
    color: #fff;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
    100% {
        transform: translateY(0px);
    }
}

.brand-categories {
    margin: 20px 0;
}

.brand-categories h5 {
    color: #1a1a1a;
    font-weight: 600;
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    margin-bottom: 20px;
}

.category-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px;
    background: #f8f9fa;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.category-item:hover {
    background: #ff6b00;
    color: #fff;
}

.category-item:hover i {
    color: #fff;
}

.category-item i {
    color: #ff6b00;
    font-size: 1.2rem;
    width: 24px;
    text-align: center;
}

.category-item span {
    font-size: 0.9rem;
    font-weight: 500;
}

@media (max-width: 768px) {
    .category-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    }
}

.content-card {
    background: #fff;
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.policy-section h2 {
    color: #1a1a1a;
    font-size: 1.8rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.policy-section h3 {
    color: #1a1a1a;
    font-size: 1.4rem;
    margin: 1.5rem 0 1rem;
    font-weight: 500;
}

.policy-section p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.policy-section ul {
    color: #666;
    padding-left: 1.5rem;
    margin-bottom: 1rem;
}

.policy-section ul li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.policy-section a {
    color: #ff6b00;
    text-decoration: none;
    transition: color 0.3s ease;
}

.policy-section a:hover {
    color: #e05e00;
    text-decoration: underline;
}

@media (max-width: 768px) {
    .content-card {
        padding: 20px;
    }
    
    .policy-section h2 {
        font-size: 1.5rem;
    }
    
    .policy-section h3 {
        font-size: 1.2rem;
    }
} 