/* Global Styles */
:root {
    --primary-color: #0047AB; /* Zylet blue */
    --secondary-color: #f8f9fa; /* Light gray/white */
    --accent-color: #0056b3; /* Darker blue for hover effects */
    --text-color: #333;
    --light-text: #fff;
    --border-color: #e1e1e1;
    --box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: #fff;
    padding-bottom: 60px;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: var(--transition);
}

a:hover {
    color: var(--accent-color);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

.btn {
    display: inline-block;
    padding: 10px 25px;
    background-color: var(--primary-color);
    color: var(--light-text);
    border-radius: 4px;
    font-weight: 500;
    transition: var(--transition);
}

.btn:hover {
    background-color: var(--accent-color);
    color: var(--light-text);
    transform: translateY(-2px);
}

.section-header {
    text-align: center;
    margin-bottom: 40px;
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    position: relative;
    display: inline-block;
    padding-bottom: 10px;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--primary-color);
}

.learn-more {
    display: inline-flex;
    align-items: center;
    font-weight: 500;
}

.learn-more i {
    margin-left: 5px;
    transition: var(--transition);
}

.learn-more:hover i {
    transform: translateX(5px);
}

/* Logo Styles */
.logo {
    display: flex;
    align-items: center;
    flex: 0 0 auto;
}

.logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo img {
    max-height: 50px;
    width: auto;
    margin-right: 10px;
}

.company-name {
    font-size: 20px;
    font-weight: 600;
    color: #0066cc;
    margin-left: 10px;
}

/* Header Styles */
header {
    background-color: #fff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 10px 0;
}

.header-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0;
}

.logo {
    margin-right: 20px;
}

.logo img {
    max-height: 40px;
    width: auto;
}

.company-name {
    font-size: 18px;
    font-weight: 600;
    color: var(--primary-color);
}

nav {
    flex: 1;
    display: flex;
    justify-content: center;
}

.search-wrapper {
    position: relative;
    width: 200px;
    margin-right: 15px;
}

.search-input {
    width: 100%;
    padding: 8px 12px;
    border: 1px solid #ddd;
    border-radius: 4px 0 0 4px;
    font-size: 14px;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.search-input:focus {
    border-color: var(--primary-color);
    outline: none;
    box-shadow: 0 0 5px rgba(0, 71, 171, 0.2);
}

.search-button {
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    background-color: var(--primary-color);
    color: #fff;
    border: none;
    padding: 0 12px;
    border-radius: 0 4px 4px 0;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.search-button:hover {
    background-color: var(--accent-color);
}

.contact-button {
    padding: 8px 15px;
    background-color: var(--primary-color);
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 500;
    transition: background-color 0.3s ease;
    display: inline-block;
    font-size: 14px;
    white-space: nowrap;
}

.contact-button:hover {
    background-color: var(--accent-color);
}

/* Main Menu Styles */
.main-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.main-menu li {
    margin: 0 10px;
    position: relative;
}

.main-menu a {
    color: #333;
    text-decoration: none;
    font-weight: 500;
    padding: 5px 0;
    position: relative;
    transition: color 0.3s ease;
    font-size: 15px;
}

.main-menu a:hover {
    color: var(--primary-color);
}

.main-menu a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
}

.main-menu a:hover::after {
    width: 100%;
}

.has-dropdown {
    position: relative;
}

.dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #fff;
    min-width: 200px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border-radius: 4px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 100;
    padding: 5px 0;
    margin-top: 5px;
}

.has-dropdown:hover .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown li {
    margin: 0;
}

.dropdown a {
    display: block;
    padding: 8px 15px;
    border-bottom: 1px solid #f0f0f0;
    font-size: 14px;
}

.dropdown a:hover {
    background-color: #f8f8f8;
}

.dropdown li:last-child a {
    border-bottom: none;
}

.has-dropdown > a i {
    margin-left: 5px;
    font-size: 0.8rem;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: #333;
    font-size: 24px;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-toggle:focus {
    outline: none;
}

/* Responsive Header */
@media screen and (max-width: 992px) {
    .header-row {
        flex-direction: column;
    }
    
    .logo {
        margin-bottom: 20px;
    }
    
    .header-right {
        margin-top: 20px;
    }
}

@media screen and (max-width: 768px) {
    .header-row {
        padding: 10px 0;
    }
    
    .logo img {
        max-height: 35px;
    }
    
    .search-input {
        padding: 8px 10px;
        font-size: 13px;
    }
    
    .search-button {
        padding: 8px 10px;
    }
    
    .contact-button {
        padding: 8px 15px;
        font-size: 14px;
    }
}

/* Mobile-specific styles */
.mobile-header-actions {
    display: none;
}

.mobile-nav-bar {
    display: none;
}

.desktop-contact-btn {
    display: inline-block;
}

@media screen and (max-width: 768px) {
    .header-row {
        padding: 15px 0;
        align-items: center;
        position: relative;
    }
    
    .logo {
        text-align: center;
        margin: 0 auto 15px;
    }
    
    .logo img {
        max-height: 45px;
    }
    
    .company-name {
        font-size: 16px;
    }
    
    /* Hide the desktop navigation and contact button */
    nav {
        display: none;
    }
    
    .search-wrapper {
        display: none;
    }
    
    .contact-button {
        display: none;
    }
    
    /* Show the mobile header actions */
    .mobile-header-actions {
        display: block;
        width: 100%;
        padding: 0 15px;
    }
    
    .mobile-search-container {
        width: 100%;
        margin-bottom: 10px;
    }
    
    #mobile-search-form {
        display: flex;
        width: 100%;
    }
    
    #mobile-search-input {
        flex: 1;
        height: 40px;
        padding: 0 15px;
        border: 1px solid #ddd;
        border-radius: 4px 0 0 4px;
        font-size: 14px;
    }
    
    #mobile-search-button {
        width: 40px;
        height: 40px;
        background-color: #0066cc;
        color: white;
        border: none;
        border-radius: 0 4px 4px 0;
        cursor: pointer;
    }
    
    .mobile-contact-btn {
        display: block;
        width: 100%;
        padding: 10px 0;
        text-align: center;
        background-color: #0066cc;
        color: white;
        border: none;
        border-radius: 4px;
        font-size: 14px;
        font-weight: 600;
        text-decoration: none;
        margin-bottom: 15px;
    }
    
    /* Show the mobile navigation bar */
    .mobile-nav-bar {
        display: flex;
        justify-content: space-around;
        align-items: center;
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        background-color: white;
        box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
        z-index: 1000;
        padding: 8px 0;
    }
    
    .mobile-nav-item {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-decoration: none;
        color: #555;
        font-size: 12px;
        padding: 5px 0;
    }
    
    .mobile-nav-item i {
        font-size: 18px;
        margin-bottom: 4px;
    }
    
    .mobile-nav-item.active {
        color: #0066cc;
    }
    
    .mobile-nav-item:hover {
        color: #0066cc;
    }
    
    /* Add padding to the bottom of the page to account for the fixed nav bar */
    body {
        padding-bottom: 60px;
    }
}

/* Mobile dropdown styles */
.mobile-dropdown {
    position: fixed;
    bottom: 60px;
    left: 0;
    width: 100%;
    background-color: white;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    padding: 20px;
    z-index: 999;
    transform: translateY(100%);
    transition: transform 0.3s ease;
    display: none;
}

.mobile-dropdown.active {
    transform: translateY(0);
}

.mobile-dropdown h3 {
    color: #0066cc;
    margin-top: 0;
    margin-bottom: 15px;
    text-align: center;
}

.mobile-dropdown ul {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
}

.mobile-dropdown li {
    margin-bottom: 10px;
}

.mobile-dropdown li a {
    color: #333;
    text-decoration: none;
    display: block;
    padding: 8px 15px;
    border-radius: 4px;
}

.mobile-dropdown li a:hover {
    background-color: rgba(0, 102, 204, 0.1);
}

.mobile-dropdown button {
    display: block;
    width: 100%;
    padding: 10px;
    background-color: #f5f5f5;
    border: none;
    border-radius: 4px;
    color: #333;
    font-weight: 600;
    cursor: pointer;
}

.mobile-dropdown button:hover {
    background-color: #e5e5e5;
}

/* Hero Section Styles */
.hero-section {
    position: relative;
    height: 600px;
    overflow: hidden;
}

.hero-slider {
    position: relative;
    height: 100%;
    width: 100%;
}

.slide {
    position: relative;
    width: 100%;
    height: 100%;
    display: none;
}

.slide.active {
    display: flex;
}

.slide-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 50px;
    background-color: rgba(255, 255, 255, 0.9);
    z-index: 1;
}

.slide-content h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.slide-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    max-width: 600px;
}

.slide-image {
    flex: 1;
    background-size: cover;
    background-position: center;
}

.controls {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    z-index: 10;
}

.prev, .next {
    background-color: rgba(255, 255, 255, 0.7);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: var(--transition);
}

.prev:hover, .next:hover {
    background-color: var(--primary-color);
    color: var(--light-text);
}

.indicators {
    display: flex;
    margin: 0 15px;
}

.indicator {
    width: 12px;
    height: 12px;
    background-color: rgba(255, 255, 255, 0.7);
    border-radius: 50%;
    margin: 0 5px;
    cursor: pointer;
    transition: var(--transition);
}

.indicator.active {
    background-color: var(--primary-color);
}

/* News Section Styles */
.news-section {
    padding: 80px 0;
    background-color: var(--secondary-color);
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 30px;
}

.news-item {
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--box-shadow);
    display: flex;
    flex-direction: column;
}

.news-date {
    background-color: var(--primary-color);
    color: var(--light-text);
    padding: 10px 20px;
    font-weight: 500;
}

.news-content {
    padding: 20px;
    flex: 1;
}

.news-content h3 {
    margin-bottom: 15px;
    color: var(--primary-color);
}

.news-content p {
    margin-bottom: 15px;
}

.news-image {
    height: 200px;
    overflow: hidden;
}

.news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.news-item:hover .news-image img {
    transform: scale(1.05);
}

/* Products Section Styles */
.products-section {
    padding: 80px 0;
}

.product-category {
    margin-bottom: 60px;
}

.category-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--primary-color);
}

.category-header h3 {
    font-size: 1.8rem;
    color: var(--primary-color);
    position: relative;
    padding-left: 15px;
}

.category-header h3::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 5px;
    background-color: var(--primary-color);
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.product-item {
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.product-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.product-image {
    height: 200px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    background-color: var(--secondary-color);
}

.product-image img {
    max-height: 100%;
    transition: transform 0.5s ease;
}

.product-item:hover .product-image img {
    transform: scale(1.05);
}

.product-info {
    padding: 20px;
}

.product-info h4 {
    margin-bottom: 10px;
    color: var(--primary-color);
}

/* Solutions Section Styles */
.solutions-section {
    padding: 80px 0;
    background-color: var(--secondary-color);
}

.solutions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 30px;
}

.solution-item {
    background-color: #fff;
    border-radius: 8px;
    padding: 30px 20px;
    text-align: center;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.solution-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.solution-icon {
    width: 70px;
    height: 70px;
    background-color: var(--primary-color);
    color: var(--light-text);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 20px;
    font-size: 1.8rem;
}

.solution-item h3 {
    margin-bottom: 15px;
    color: var(--primary-color);
}

.learn-more-btn {
    text-align: center;
    margin-top: 40px;
}

/* About Section Styles */
.about-section {
    padding: 80px 0;
}

.about-content {
    display: flex;
    align-items: center;
    gap: 50px;
}

.about-text {
    flex: 1;
}

.about-text p {
    margin-bottom: 20px;
}

.about-image {
    flex: 1;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--box-shadow);
}

/* Contact Info Section Styles */
.contact-info-section {
    padding: 80px 0;
    background-color: var(--secondary-color);
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.contact-item h3 {
    color: var(--primary-color);
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--primary-color);
}

.contact-detail {
    display: flex;
    margin-bottom: 15px;
}

.contact-detail i {
    color: var(--primary-color);
    margin-right: 10px;
    margin-top: 5px;
}

.download-links li, .product-links li, .solution-links li {
    margin-bottom: 10px;
}

.download-links a, .product-links a, .solution-links a {
    display: inline-block;
    padding: 5px 0;
    transition: var(--transition);
}

.download-links a:hover, .product-links a:hover, .solution-links a:hover {
    color: var(--accent-color);
    transform: translateX(5px);
}

/* Featured Product Section */
.featured-product {
    padding: 60px 0;
    background-color: #f8f9fa;
}

.featured-product-content {
    display: flex;
    align-items: center;
    gap: 40px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    padding: 30px;
    overflow: hidden;
}

.featured-product-image {
    flex: 1;
    text-align: center;
}

.featured-product-image img {
    max-width: 100%;
    height: auto;
    max-height: 400px;
    object-fit: contain;
}

.featured-product-info {
    flex: 1;
    position: relative;
}

.featured-badge {
    position: absolute;
    top: -10px;
    right: 0;
    background-color: #e74c3c;
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: bold;
    font-size: 14px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.featured-product-info h2 {
    font-size: 32px;
    margin-bottom: 10px;
    color: #2c3e50;
}

.featured-subtitle {
    font-size: 18px;
    color: #7f8c8d;
    margin-bottom: 20px;
}

.featured-highlights {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.featured-highlights li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.featured-highlights i {
    color: #27ae60;
    margin-right: 10px;
    font-size: 16px;
}

@media (max-width: 768px) {
    .featured-product-content {
        flex-direction: column;
        padding: 20px;
    }
    
    .featured-product-image, 
    .featured-product-info {
        flex: none;
        width: 100%;
    }
    
    .featured-product-image {
        margin-bottom: 20px;
    }
    
    .featured-badge {
        position: relative;
        top: 0;
        right: 0;
        display: inline-block;
        margin-bottom: 15px;
    }
}

/* Special Offers Section */
.special-offers {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.special-offers .section-header {
    text-align: center;
    margin-bottom: 50px;
}

.special-offers .section-header h2 {
    color: var(--primary-color);
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.special-offers .section-header p {
    color: #666;
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto;
}

.offers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.offer-card {
    background-color: #fff;
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
}

.offer-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.offer-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background-color: rgba(0, 71, 171, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.offer-icon i {
    font-size: 30px;
    color: var(--primary-color);
}

.offer-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: #333;
}

.offer-card p {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}

.offer-card .btn {
    margin-top: 10px;
}

.cta-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

@media (max-width: 768px) {
    .offers-grid {
        grid-template-columns: 1fr;
    }
    
    .special-offers {
        padding: 60px 0;
    }
    
    .offer-card {
        padding: 25px;
    }
}

/* Dealers Page Styles */
.dealer-program {
    padding: 80px 0;
}

.dealer-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.benefit-card {
    background-color: #fff;
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: transform 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
}

.benefit-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background-color: rgba(0, 71, 171, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.benefit-icon i {
    font-size: 35px;
    color: var(--primary-color);
}

.benefit-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: #333;
}

.benefit-card p {
    color: #666;
    line-height: 1.6;
}

.dealer-tiers {
    margin-top: 50px;
}

.dealer-tiers h3 {
    text-align: center;
    margin-bottom: 30px;
    font-size: 1.8rem;
    color: #333;
}

.tiers-container {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.tier-card {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    width: 300px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.tier-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.tier-card.featured {
    border: 2px solid var(--primary-color);
    transform: scale(1.05);
}

.tier-card.featured:hover {
    transform: scale(1.05) translateY(-5px);
}

.tier-header {
    background-color: #f8f9fa;
    padding: 20px;
    text-align: center;
    position: relative;
}

.tier-card.featured .tier-header {
    background-color: var(--primary-color);
    color: white;
}

.tier-badge {
    position: absolute;
    top: -10px;
    right: -10px;
    background-color: #ff6b6b;
    color: white;
    font-size: 0.8rem;
    padding: 5px 10px;
    border-radius: 20px;
    font-weight: bold;
}

.tier-features {
    padding: 20px;
    list-style: none;
}

.tier-features li {
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
}

.tier-features i {
    color: var(--primary-color);
    margin-right: 10px;
    font-size: 1.1rem;
}

.african-market {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.africa-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 40px;
}

.africa-text {
    flex: 1;
    min-width: 300px;
}

.africa-image {
    flex: 1;
    min-width: 300px;
    text-align: center;
}

.africa-image img {
    max-width: 100%;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.africa-benefits {
    margin: 20px 0;
    padding-left: 0;
    list-style: none;
}

.africa-benefits li {
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
}

.africa-benefits i {
    color: #ff6b6b;
    margin-right: 10px;
    font-size: 1.1rem;
}

.cta-button {
    margin-top: 30px;
}

.volume-program {
    padding: 80px 0;
}

.volume-tiers {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    margin: 40px 0;
}

.volume-tier {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    padding: 30px;
    width: 220px;
    text-align: center;
    transition: transform 0.3s ease;
}

.volume-tier:hover {
    transform: translateY(-5px);
}

.tier-number {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.tier-details h4 {
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.tier-details p {
    color: #666;
    margin-bottom: 10px;
}

.volume-note {
    text-align: center;
    max-width: 700px;
    margin: 40px auto 0;
}

.volume-note p {
    margin-bottom: 20px;
}

.find-dealer {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.dealer-search {
    margin-top: 40px;
}

.region-selector {
    text-align: center;
    margin-bottom: 40px;
}

.region-selector h3 {
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.region-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}

.region-btn {
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 30px;
    padding: 10px 20px;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.region-btn:hover {
    background-color: #f0f0f0;
}

.region-btn.active {
    background-color: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.dealer-results {
    position: relative;
}

.region-dealers {
    display: none;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.region-dealers.active {
    display: grid;
}

.dealer-card {
    background-color: #fff;
    border-radius: 8px;
    padding: 25px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.dealer-card h4 {
    margin-bottom: 15px;
    font-size: 1.3rem;
    color: var(--primary-color);
}

.dealer-card p {
    margin-bottom: 10px;
    color: #666;
}

.dealer-card i {
    width: 20px;
    color: var(--primary-color);
    margin-right: 10px;
}

.dealer-card .btn {
    margin-top: 15px;
}

.btn-sm {
    padding: 8px 15px;
    font-size: 0.9rem;
}

.contact-section {
    padding: 80px 0;
}

.contact-container {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-top: 40px;
}

.contact-form {
    flex: 2;
    min-width: 300px;
}

.contact-info-box {
    flex: 1;
    min-width: 300px;
    background-color: #f8f9fa;
    padding: 30px;
    border-radius: 8px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
}

.form-group textarea {
    resize: vertical;
}

.btn-block {
    width: 100%;
}

.contact-info-box h3 {
    margin-bottom: 20px;
    font-size: 1.5rem;
    color: var(--primary-color);
}

.contact-info-box p {
    margin-bottom: 15px;
    color: #666;
}

.contact-info-box i {
    width: 20px;
    color: var(--primary-color);
    margin-right: 10px;
}

.contact-offices {
    margin-top: 30px;
}

.office {
    margin-bottom: 20px;
}

.office h4 {
    margin-bottom: 10px;
    color: #333;
}

.office p {
    margin-bottom: 5px;
}

@media (max-width: 768px) {
    .dealer-benefits,
    .tiers-container,
    .africa-content,
    .volume-tiers,
    .region-dealers,
    .contact-container {
        gap: 20px;
    }
    
    .tier-card.featured {
        transform: scale(1);
    }
    
    .tier-card.featured:hover {
        transform: translateY(-5px);
    }
    
    .region-btn {
        padding: 8px 15px;
        font-size: 0.9rem;
    }
}

/* Product Page Pricing & Offers */
.pricing-offers {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.offer-box {
    background-color: #fff;
    border-radius: 8px;
    padding: 25px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
    text-align: center;
}

.offer-box:hover {
    transform: translateY(-5px);
}

.offer-box .offer-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background-color: rgba(0, 71, 171, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.offer-box .offer-icon i {
    font-size: 30px;
    color: var(--primary-color);
}

.offer-box h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: #333;
}

.offer-box p {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}

.offer-box .btn {
    margin-top: 10px;
}

.section-divider {
    height: 1px;
    background-color: #eee;
    margin: 60px 0 40px;
}

@media (max-width: 768px) {
    .pricing-offers {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

/* Contact Options Styles */
.contact-options {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 30px;
}

.contact-option {
    flex: 1;
    min-width: 300px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    padding: 25px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-option:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.contact-option h3 {
    color: var(--primary-color);
    margin-top: 0;
    margin-bottom: 15px;
    font-size: 22px;
}

.contact-option p {
    margin-bottom: 20px;
    color: #555;
}

.contact-option .btn {
    margin-top: 10px;
}

@media screen and (max-width: 768px) {
    .contact-options {
        flex-direction: column;
    }
    
    .contact-option {
        width: 100%;
    }
}

/* CTA Button Styles */
.cta-button-container {
    text-align: center;
    margin: 30px 0;
}

.cta-button {
    display: inline-block;
    padding: 14px 28px;
    background-color: var(--primary-color);
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.cta-button:hover {
    background-color: var(--accent-color);
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

/* Footer Styles */
footer {
    background-color: var(--primary-color);
    color: var(--light-text);
    padding: 50px 0 20px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 40px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logo img {
    max-height: 50px;
    width: auto;
    margin-bottom: 10px;
}

.footer-logo h2 {
    color: #fff;
    font-size: 2rem;
    margin-bottom: 10px;
}

.footer-logo span {
    color: var(--secondary-color);
}

.footer-social a {
    color: var(--light-text);
    margin: 0 10px;
    font-size: 1.5rem;
    transition: var(--transition);
}

.footer-social a:hover {
    color: var(--secondary-color);
    transform: translateY(-5px);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Responsive Styles */
@media screen and (max-width: 992px) {
    .header-row {
        flex-direction: column;
    }
    
    .logo {
        margin-bottom: 20px;
    }
    
    .header-right {
        margin-top: 20px;
    }
    
    .slide {
        flex-direction: column;
    }
    
    .slide-content {
        padding: 50px;
    }
    
    .about-content {
        flex-direction: column;
    }
}

@media screen and (max-width: 768px) {
    .main-menu {
        flex-direction: column;
        align-items: center;
    }
    
    .main-menu li {
        margin: 10px 0;
    }
    
    .news-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-logo {
        margin-bottom: 20px;
    }
}

/* Affordability Banner */
.affordability-banner {
    background: linear-gradient(135deg, #0056b3, #003366);
    color: white;
    padding: 60px 0;
    text-align: center;
    margin: 30px 0;
}

.price-guarantee {
    max-width: 900px;
    margin: 0 auto;
}

.price-guarantee h2 {
    font-size: 2.5rem;
    margin-bottom: 10px;
    color: #ffcc00;
    letter-spacing: 2px;
}

.price-guarantee h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.price-guarantee p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 30px;
}

.price-badges {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin: 30px 0;
    flex-wrap: wrap;
}

.badge {
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    width: 120px;
    height: 120px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border: 2px solid #ffcc00;
}

.badge .value {
    font-size: 1.8rem;
    font-weight: bold;
    color: #ffcc00;
}

.badge .label {
    font-size: 0.8rem;
    margin-top: 5px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

@media (max-width: 768px) {
    .price-badges {
        gap: 15px;
    }
    
    .badge {
        width: 100px;
        height: 100px;
    }
    
    .badge .value {
        font-size: 1.5rem;
    }
    
    .badge .label {
        font-size: 0.7rem;
    }
    
    .price-guarantee h2 {
        font-size: 2rem;
    }
    
    .price-guarantee h3 {
        font-size: 1.5rem;
    }
}
