/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* General Image Styles */
img {
    max-width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

/* Responsive Image Containers */
.image-container {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    border: 2px solid #e0e0e0;
}

.image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.image-container:hover img {
    transform: scale(1.05);
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
.header {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo img {
    height: 65px;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.phone-number {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #e30613;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
}

.phone-number:hover {
    color: #b30000;
}

.menu-btn {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    color: #333;
    padding: 8px;
    width: 30px;
    height: 30px;
    justify-content: center;
    align-items: center;
}

.menu-btn span {
    width: 25px;
    height: 3px;
    background: #333;
    transition: 0.3s;
}

.main-nav {
    border-top: 1px solid #eee;
}

.main-nav ul {
    display: flex;
    list-style: none;
    justify-content: center;
    flex-wrap: wrap;
}

.main-nav li {
    position: relative;
}

.main-nav a {
    display: block;
    padding: 15px 20px;
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s;
}

.main-nav a:hover {
    color: #e30613;
}

/* Hero Section - Redesigned */
.hero {
    position: relative;
    min-height: 600px;
    background: linear-gradient(135deg, #e30613 0%, #b30000 100%);
    overflow: hidden;
    display: flex;
    align-items: center;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.hero-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(227, 6, 19, 0.9) 0%, rgba(179, 0, 0, 0.8) 100%);
    z-index: 2;
}

.hero-container {
    position: relative;
    z-index: 3;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-content {
    color: white;
    text-align: center;
    max-width: 800px;
}

.hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 25px;
    padding: 8px 20px;
    margin-bottom: 20px;
}

.hero-badge span {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-title {
    font-size: 56px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 20px;
    line-height: 1.6;
    margin-bottom: 30px;
    opacity: 0.95;
    font-weight: 400;
}

.hero-features {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 500;
    opacity: 0.9;
}

.feature-item i {
    font-size: 16px;
    color: #ffd700;
}

.hero-actions {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.hero-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hero-btn-primary {
    background: white;
    color: #e30613;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.hero-btn-primary:hover {
    background: #f8f9fa;
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

.hero-btn-secondary {
    background: transparent;
    color: white;
    border-color: white;
}

.hero-btn-secondary:hover {
    background: white;
    color: #e30613;
    transform: translateY(-2px);
}

.hero-phone {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 18px;
    font-weight: 600;
    opacity: 0.9;
}

.hero-phone i {
    font-size: 20px;
    color: #ffd700;
}



/* Button Styles */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s;
    border: 2px solid transparent;
    cursor: pointer;
    font-size: 10px;
}

.btn-primary {
    background: #e30613;
    color: white;
}

.btn-primary:hover {
    background: #b30000;
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: white;
    border-color: white;
}

.btn-secondary:hover {
    background: white;
    color: #333;
}

.btn-outline {
    background: transparent;
    color: #e30613;
    border-color: #e30613;
}

.btn-outline:hover {
    background: #e30613;
    color: white;
}

/* Quick Actions */
.quick-actions {
    padding: 60px 0;
    background: #f8f9fa;
}

.action-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.action-card {
    background: white;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.action-card:hover {
    transform: translateY(-5px);
}

.action-card i {
    font-size: 48px;
    color: #e30613;
    margin-bottom: 20px;
}

.action-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #333;
}

.action-card p {
    color: #666;
    margin-bottom: 20px;
}

/* Featured Models */
.featured-models {
    padding: 60px 0;
}

.featured-models h2 {
    text-align: center;
    font-size: 18px;
    margin-bottom: 40px;
    color: #333;
}

.models-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.model-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s;
    border: 2px solid #e0e0e0;
}

.model-card:hover {
    transform: translateY(-5px);
    border-color: #e30613;
}

.model-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
    border-bottom: 1px solid #e0e0e0;
}

.model-info {
    padding: 25px;
}

.model-info h3 {
    font-size: 24px;
    margin-bottom: 10px;
    color: #333;
}

.price {
    font-size: 18px;
    color: #e30613;
    font-weight: 600;
    margin-bottom: 15px;
}

.model-features {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.model-features span {
    background: #f8f9fa;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 14px;
    color: #666;
}

.model-buttons {
    display: flex;
    gap: 15px;
}

/* Campaigns */
.campaigns {
    padding: 60px 0;
    background: #f8f9fa;
}

.campaigns h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 40px;
    color: #333;
}

.campaigns-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 30px;
}

.campaign-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    border: 2px solid #e0e0e0;
}

.campaign-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
    border-bottom: 1px solid #e0e0e0;
}

.campaign-content {
    padding: 25px;
}

.campaign-content h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #333;
}

.campaign-content p {
    color: #666;
    margin-bottom: 20px;
}

.campaign-content ul {
    list-style: none;
    margin-bottom: 20px;
}

.campaign-content li {
    padding: 5px 0;
    color: #666;
    position: relative;
    padding-left: 20px;
}

.campaign-content li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #e30613;
    font-weight: bold;
}

/* Services */
.services {
    padding: 60px 0;
}

.services h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 40px;
    color: #333;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.service-card {
    text-align: center;
    padding: 30px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-card i {
    font-size: 48px;
    color: #e30613;
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #333;
}

.service-card p {
    color: #666;
    margin-bottom: 20px;
}

/* Footer */
.footer {
    background: #1a1a1a;
    color: white;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h4 {
    font-size: 20px;
    margin-bottom: 20px;
    color: #e30613;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section ul li a:hover {
    color: #e30613;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: #333;
    color: white;
    border-radius: 50%;
    text-decoration: none;
    transition: background 0.3s;
}

.social-links a:hover {
    background: #e30613;
}

.contact-info p {
    margin-bottom: 10px;
    color: #ccc;
}

.contact-info i {
    color: #e30613;
    margin-right: 10px;
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 20px;
    text-align: center;
    color: #ccc;
}

/* Floating Call Button */
.floating-call {
    position: fixed;
    bottom: 30px;
    left: 30px;
    z-index: 1000;
}

.call-button {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #e30613;
    color: white;
    padding: 15px 20px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    box-shadow: 0 4px 20px rgba(227, 6, 19, 0.3);
    transition: all 0.3s;
    animation: pulse 2s infinite;
}

.call-button:hover {
    background: #b30000;
    transform: scale(1.05);
}

@keyframes pulse {
    0% {
        box-shadow: 0 4px 20px rgba(227, 6, 19, 0.3);
    }
    50% {
        box-shadow: 0 4px 30px rgba(227, 6, 19, 0.5);
    }
    100% {
        box-shadow: 0 4px 20px rgba(227, 6, 19, 0.3);
    }
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, #e30613, #b30000);
    color: white;
    padding: 80px 0;
    text-align: center;
}

.page-header h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
}

.page-header p {
    font-size: 20px;
    opacity: 0.9;
}

/* Model Categories */
.model-categories {
    padding: 40px 0;
    background: #f8f9fa;
}

.category-tabs {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.tab-btn {
    padding: 12px 24px;
    border: 2px solid #e30613;
    background: transparent;
    color: #e30613;
    border-radius: 30px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.tab-btn:hover,
.tab-btn.active {
    background: #e30613;
    color: white;
}

/* Models Section */
.models-section {
    padding: 60px 0;
}

.model-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 80px;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.model-gallery {
    position: relative;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 20px;
}

.model-gallery > img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
}

.gallery-thumbs {
    display: flex;
    gap: 10px;
    padding: 20px;
    background: #f8f9fa;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    margin: 0 20px 20px 20px;
}

.gallery-thumbs img {
    width: 80px;
    height: 60px;
    object-fit: cover;
    border-radius: 6px;
    border: 2px solid #e0e0e0;
    cursor: pointer;
    transition: opacity 0.3s;
    display: block;
}

.gallery-thumbs img:hover {
    opacity: 0.8;
}

.model-details {
    padding: 40px;
}

.model-details h2 {
    font-size: 16px;
    margin-bottom: 10px;
    color: #333;
}

.model-tagline {
    font-size: 9px;
    color: #666;
    margin-bottom: 30px;
}

.price-info {
    margin-bottom: 30px;
}

.price {
    display: block;
    font-size: 12px;
    color: #e30613;
    font-weight: 700;
    margin-bottom: 5px;
}

.monthly {
    font-size: 8px;
    color: #666;
}

.specs-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}

.spec-item {
    text-align: center;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 8px;
}

.spec-item i {
    font-size: 12px;
    color: #e30613;
    margin-bottom: 10px;
}

.spec-item span {
    display: block;
    font-weight: 600;
    color: #333;
    margin-bottom: 5px;
    font-size: 10px;
}

.spec-item small {
    color: #666;
    font-size: 7px;
}

.features-list {
    margin-bottom: 30px;
}

.features-list h3 {
    font-size: 10px;
    margin-bottom: 15px;
    color: #333;
}

.features-list ul {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.features-list li {
    padding: 8px 0;
    color: #666;
    position: relative;
    padding-left: 20px;
    font-size: 8px;
}

.features-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #e30613;
    font-weight: bold;
}

.model-actions {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

/* Responsive Design */
@media (max-width: 768px) {
    .header-actions {
        gap: 10px;
    }
    
    .phone-number {
        font-size: 14px;
    }
    
    .menu-btn {
        display: flex;
    }
    
    .main-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        box-shadow: 0 4px 20px rgba(0,0,0,0.1);
        z-index: 1000;
    }
    
    .main-nav.active {
        display: block;
    }
    
    .menu-btn.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .menu-btn.active span:nth-child(2) {
        opacity: 0;
    }
    
    .menu-btn.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
    
    .main-nav ul {
        flex-direction: column;
    }
    
    .main-nav a {
        padding: 12px 20px;
    }
    
    .hero {
        min-height: 400px;
        padding: 40px 0;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .hero-title {
        font-size: 36px;
    }
    
    .hero-subtitle {
        font-size: 16px;
    }
    
    .hero-features {
        justify-content: center;
        gap: 20px;
    }
    
    .hero-actions {
        justify-content: center;
        flex-direction: column;
        align-items: center;
    }
    
    .hero-btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
    
    .hero-phone {
        justify-content: center;
    }
    

    
    .action-grid,
    .models-grid,
    .campaigns-grid,
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .model-buttons {
        flex-direction: column;
    }
    
    .floating-call {
        bottom: 40px;
        left: 20px;
        right: 20px;
    }
    
    .call-button {
        justify-content: center;
    }
    
    .model-item {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .model-details {
        padding: 20px;
    }
    
    .specs-grid {
        grid-template-columns: 1fr;
    }
    
    .features-list ul {
        grid-template-columns: 1fr;
    }
    
    .model-actions {
        flex-direction: column;
    }
    
    .category-tabs {
        gap: 10px;
    }
    
    .tab-btn {
        padding: 10px 20px;
        font-size: 14px;
    }
}

/* Price Calculator */
.price-calculator {
    padding: 60px 0;
    background: #f8f9fa;
}

.calculator-card {
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    max-width: 800px;
    margin: 0 auto;
}

.calculator-card h2 {
    text-align: center;
    font-size: 32px;
    margin-bottom: 10px;
    color: #333;
}

.calculator-card > p {
    text-align: center;
    color: #666;
    margin-bottom: 30px;
}

.calculator-form {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 600;
    margin-bottom: 8px;
    color: #333;
}

.form-group select,
.form-group input {
    padding: 12px;
    border: 2px solid #eee;
    border-radius: 6px;
    font-size: 16px;
    transition: border-color 0.3s;
}

.form-group select:focus,
.form-group input:focus {
    outline: none;
    border-color: #e30613;
}

.calculator-form .btn {
    grid-column: 1 / -1;
    justify-content: center;
    font-size: 18px;
    padding: 15px;
}

.price-result {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 8px;
    margin-top: 30px;
}

.price-result h3 {
    text-align: center;
    margin-bottom: 20px;
    color: #333;
}

.price-breakdown {
    display: grid;
    gap: 15px;
    margin-bottom: 20px;
}

.price-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    background: white;
    border-radius: 6px;
    font-weight: 600;
}

.price-item:last-child {
    background: #e30613;
    color: white;
    font-size: 18px;
}

/* Price Tables */
.price-tables {
    padding: 60px 0;
}

.price-tables > h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 40px;
    color: #333;
}

.price-table {
    margin-bottom: 60px;
}

.price-table h3 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #333;
    text-align: center;
}

.table-container {
    overflow-x: auto;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

table {
    width: 100%;
    border-collapse: collapse;
}

th, td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid #eee;
}

th {
    background: #f8f9fa;
    font-weight: 600;
    color: #333;
}

td {
    color: #666;
}

tr:hover {
    background: #f8f9fa;
}

.btn-sm {
    padding: 8px 16px;
    font-size: 14px;
}

/* Legal Disclaimer */
.legal-disclaimer {
    padding: 40px 0;
    background: #fff;
    border-top: 1px solid #e9ecef;
}

.disclaimer-content {
    max-width: 1200px;
    margin: 0 auto;
}

.disclaimer-content p {
    font-size: 14px;
    line-height: 1.6;
    color: #6c757d;
    text-align: justify;
    margin: 0;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 8px;
    border-left: 4px solid #e31837;
}

@media (max-width: 768px) {
    .disclaimer-content p {
        font-size: 13px;
        padding: 15px;
        text-align: left;
    }
}

/* Financing Options */
.financing-options {
    padding: 60px 0;
    background: #f8f9fa;
}

.financing-options h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 40px;
    color: #333;
}

.financing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.financing-card {
    background: white;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.financing-card:hover {
    transform: translateY(-5px);
}

.financing-card i {
    font-size: 48px;
    color: #e30613;
    margin-bottom: 20px;
}

.financing-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #333;
}

.financing-card p {
    color: #666;
    margin-bottom: 20px;
}

.financing-card ul {
    list-style: none;
    margin-bottom: 25px;
}

.financing-card li {
    padding: 5px 0;
    color: #666;
    position: relative;
    padding-left: 20px;
}

.financing-card li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #e30613;
    font-weight: bold;
}

/* Featured Campaign */
.featured-campaign {
    padding: 60px 0;
    background: #f8f9fa;
}

.campaign-hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.campaign-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.campaign-content {
    padding: 40px;
    position: relative;
}

.campaign-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #e30613;
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
}

.campaign-content h2 {
    font-size: 32px;
    margin-bottom: 10px;
    color: #333;
}

.campaign-subtitle {
    font-size: 18px;
    color: #666;
    margin-bottom: 30px;
}

.campaign-highlights {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #f8f9fa;
    padding: 10px 15px;
    border-radius: 20px;
    font-weight: 600;
    color: #333;
}

.highlight-item i {
    color: #e30613;
}

.campaign-details h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #333;
}

.campaign-details ul {
    list-style: none;
    margin-bottom: 30px;
}

.campaign-details li {
    padding: 5px 0;
    color: #666;
    position: relative;
    padding-left: 20px;
}

.campaign-details li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #e30613;
    font-weight: bold;
}

.campaign-actions {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.campaign-timer {
    text-align: center;
}

.campaign-timer p {
    font-weight: 600;
    margin-bottom: 15px;
    color: #333;
}

.countdown {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.countdown-item {
    text-align: center;
    background: #e30613;
    color: white;
    padding: 15px;
    border-radius: 8px;
    min-width: 60px;
}

.countdown-item .number {
    display: block;
    font-size: 24px;
    font-weight: 700;
}

.countdown-item .label {
    font-size: 12px;
    opacity: 0.9;
}

/* Campaign Categories */
.campaign-categories {
    padding: 40px 0;
    background: white;
}

/* Campaigns Grid */
.campaigns-grid-section {
    padding: 60px 0;
    background: #f8f9fa;
}

.campaigns-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
}

.campaign-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.campaign-card:hover {
    transform: translateY(-5px);
}

.campaign-card .campaign-image {
    position: relative;
    height: 250px;
}

.campaign-card .campaign-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.campaign-overlay {
    position: absolute;
    top: 15px;
    left: 15px;
}

.campaign-tag {
    background: #e30613;
    color: white;
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 600;
}

.campaign-card .campaign-content {
    padding: 25px;
}

.campaign-card h3 {
    font-size: 24px;
    margin-bottom: 10px;
    color: #333;
}

.campaign-description {
    color: #666;
    margin-bottom: 20px;
}

.campaign-benefits {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 5px;
    background: #f8f9fa;
    padding: 8px 12px;
    border-radius: 15px;
    font-size: 14px;
    font-weight: 600;
    color: #333;
}

.benefit-item i {
    color: #e30613;
}

.campaign-offers h4 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #333;
}

.campaign-offers ul {
    list-style: none;
    margin-bottom: 20px;
}

.campaign-offers li {
    padding: 3px 0;
    color: #666;
    position: relative;
    padding-left: 15px;
}

.campaign-offers li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #e30613;
    font-weight: bold;
}

.campaign-card .campaign-actions {
    margin-bottom: 0;
}

/* Campaign Newsletter */
.campaign-newsletter {
    padding: 60px 0;
    background: white;
}

.newsletter-card {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.newsletter-card h2 {
    font-size: 32px;
    margin-bottom: 15px;
    color: #333;
}

.newsletter-card > p {
    color: #666;
    margin-bottom: 30px;
}

.newsletter-form {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

.newsletter-form input {
    flex: 1;
    padding: 12px;
    border: 2px solid #eee;
    border-radius: 6px;
    font-size: 16px;
}

.newsletter-form input:focus {
    outline: none;
    border-color: #e30613;
}

.newsletter-form .btn {
    white-space: nowrap;
}

.newsletter-note {
    font-size: 14px;
    color: #999;
}

/* Financing Options Main */
.financing-options-main {
    padding: 60px 0;
    background: #f8f9fa;
}

.financing-options-main h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 40px;
    color: #333;
}

.financing-grid-main {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.financing-option-card {
    background: white;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.financing-option-card:hover {
    transform: translateY(-5px);
}

.option-icon {
    width: 80px;
    height: 80px;
    background: #e30613;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.option-icon i {
    font-size: 32px;
    color: white;
}

.financing-option-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #333;
}

.financing-option-card p {
    color: #666;
    margin-bottom: 25px;
}

.option-features {
    margin-bottom: 25px;
}

.feature {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    justify-content: flex-start;
}

.feature i {
    color: #e30613;
    font-size: 14px;
}

.feature span {
    color: #333;
    font-weight: 500;
}

/* Loan Calculator */
.loan-calculator {
    padding: 60px 0;
    background: white;
}

.calculator-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.calculator-form-section h2 {
    font-size: 32px;
    margin-bottom: 10px;
    color: #333;
}

.calculator-form-section > p {
    color: #666;
    margin-bottom: 30px;
}

.loan-calculator-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.loan-calculator-form .form-group {
    display: flex;
    flex-direction: column;
}

.loan-calculator-form label {
    font-weight: 600;
    margin-bottom: 8px;
    color: #333;
}

.loan-calculator-form input,
.loan-calculator-form select {
    padding: 12px;
    border: 2px solid #eee;
    border-radius: 6px;
    font-size: 16px;
}

.loan-calculator-form input:focus,
.loan-calculator-form select:focus {
    outline: none;
    border-color: #e30613;
}

.loan-calculator-form .btn {
    margin-top: 10px;
    justify-content: center;
    font-size: 18px;
    padding: 15px;
}

.calculator-result {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 12px;
    height: fit-content;
}

.calculator-result h3 {
    text-align: center;
    font-size: 24px;
    margin-bottom: 25px;
    color: #333;
}

.result-grid {
    display: grid;
    gap: 15px;
    margin-bottom: 25px;
}

.result-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    background: white;
    border-radius: 8px;
    font-weight: 600;
}

.result-item .label {
    color: #666;
}

.result-item .value {
    color: #e30613;
    font-size: 18px;
}

.result-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* Interest Rates */
.interest-rates {
    padding: 60px 0;
    background: #f8f9fa;
}

.interest-rates h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 40px;
    color: #333;
}

.rates-table {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

/* Requirements */
.requirements {
    padding: 60px 0;
    background: white;
}

.requirements h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 40px;
    color: #333;
}

.requirements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.requirement-card {
    text-align: center;
    padding: 30px;
    background: #f8f9fa;
    border-radius: 12px;
    transition: transform 0.3s;
}

.requirement-card:hover {
    transform: translateY(-5px);
}

.requirement-card i {
    font-size: 48px;
    color: #e30613;
    margin-bottom: 20px;
}

.requirement-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #333;
}

.requirement-card p {
    color: #666;
}

/* Application Process */
.application-process {
    padding: 60px 0;
    background: #f8f9fa;
}

.application-process h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 40px;
    color: #333;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.step {
    text-align: center;
    padding: 30px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    position: relative;
}

.step-number {
    width: 60px;
    height: 60px;
    background: #e30613;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    margin: 0 auto 20px;
}

.step h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #333;
}

.step p {
    color: #666;
}

/* Service Overview */
.service-overview {
    padding: 60px 0;
    background: #f8f9fa;
}

.service-hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.service-content h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #333;
}

.service-content p {
    color: #666;
    margin-bottom: 30px;
    line-height: 1.8;
}

.service-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}

.service-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    background: white;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.service-feature i {
    color: #e30613;
    font-size: 20px;
}

.service-feature span {
    font-weight: 600;
    color: #333;
}

.service-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 12px;
}

/* Service Types */
.service-types {
    padding: 60px 0;
    background: white;
}

.service-types h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 40px;
    color: #333;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.service-type-card {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    transition: transform 0.3s;
}

.service-type-card:hover {
    transform: translateY(-5px);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: #e30613;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.service-icon i {
    font-size: 32px;
    color: white;
}

.service-type-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #333;
}

.service-type-card p {
    color: #666;
    margin-bottom: 20px;
}

.service-type-card ul {
    list-style: none;
    margin-bottom: 25px;
    text-align: left;
}

.service-type-card li {
    padding: 5px 0;
    color: #666;
    position: relative;
    padding-left: 20px;
}

.service-type-card li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #e30613;
    font-weight: bold;
}

/* Service Packages */
.service-packages {
    padding: 60px 0;
    background: #f8f9fa;
}

.service-packages h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 40px;
    color: #333;
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.package-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    position: relative;
    transition: transform 0.3s;
}

.package-card:hover {
    transform: translateY(-5px);
}

.package-card.featured {
    border: 3px solid #e30613;
}

.package-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #e30613;
    color: white;
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 600;
}

.package-header {
    background: #e30613;
    color: white;
    padding: 25px;
    text-align: center;
}

.package-header h3 {
    font-size: 24px;
    margin-bottom: 10px;
}

.package-price {
    font-size: 32px;
    font-weight: 700;
}

.package-content {
    padding: 25px;
}

.package-content ul {
    list-style: none;
    margin-bottom: 25px;
}

.package-content li {
    padding: 8px 0;
    color: #666;
    position: relative;
    padding-left: 20px;
}

.package-content li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #e30613;
    font-weight: bold;
}

.package-card .btn {
    margin: 0 25px 25px;
    width: calc(100% - 50px);
    justify-content: center;
}

/* Service Locations */
.service-locations {
    padding: 60px 0;
    background: white;
}

.service-locations h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 40px;
    color: #333;
}

.locations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.location-card {
    background: #f8f9fa;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.location-card:hover {
    transform: translateY(-5px);
}

.location-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.location-content {
    padding: 25px;
}

.location-content h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #333;
}

.location-content p {
    color: #666;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.location-content i {
    color: #e30613;
    width: 16px;
}

.location-content .btn {
    margin-top: 15px;
    width: 100%;
    justify-content: center;
}

/* Appointment Booking */
.appointment-booking {
    padding: 60px 0;
    background: #f8f9fa;
}

.booking-card {
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    max-width: 800px;
    margin: 0 auto;
}

.booking-card h2 {
    text-align: center;
    font-size: 32px;
    margin-bottom: 10px;
    color: #333;
}

.booking-card > p {
    text-align: center;
    color: #666;
    margin-bottom: 30px;
}

.booking-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.booking-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.booking-form .form-group {
    display: flex;
    flex-direction: column;
}

.booking-form label {
    font-weight: 600;
    margin-bottom: 8px;
    color: #333;
}

.booking-form input,
.booking-form select,
.booking-form textarea {
    padding: 12px;
    border: 2px solid #eee;
    border-radius: 6px;
    font-size: 16px;
    font-family: inherit;
}

.booking-form input:focus,
.booking-form select:focus,
.booking-form textarea:focus {
    outline: none;
    border-color: #e30613;
}

.booking-form .btn {
    margin-top: 10px;
    justify-content: center;
    font-size: 18px;
    padding: 15px;
}

/* Contact Info Main */
.contact-info-main {
    padding: 60px 0;
    background: #f8f9fa;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.contact-card {
    background: white;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.contact-card:hover {
    transform: translateY(-5px);
}

.contact-icon {
    width: 80px;
    height: 80px;
    background: #e30613;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.contact-icon i {
    font-size: 32px;
    color: white;
}

.contact-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #333;
}

.contact-card p {
    color: #666;
    margin-bottom: 10px;
}

.contact-card .btn {
    margin-top: 20px;
    width: 100%;
    justify-content: center;
}

/* Contact Form Section */
.contact-form-section {
    padding: 60px 0;
    background: white;
}

.contact-form-wrapper {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.form-content h2 {
    font-size: 32px;
    margin-bottom: 15px;
    color: #333;
}

.form-content > p {
    color: #666;
    margin-bottom: 30px;
    line-height: 1.6;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.contact-form .form-group {
    display: flex;
    flex-direction: column;
}

.contact-form label {
    font-weight: 600;
    margin-bottom: 8px;
    color: #333;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    padding: 12px;
    border: 2px solid #eee;
    border-radius: 6px;
    font-size: 16px;
    font-family: inherit;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #e30613;
}

.contact-form .btn {
    margin-top: 10px;
    justify-content: center;
    font-size: 18px;
    padding: 15px;
}

/* Checkbox styling */
.checkbox-label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    font-size: 14px;
    color: #666;
}

.checkbox-label input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: #e30613;
}

/* Contact Sidebar */
.contact-sidebar {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.sidebar-card {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 12px;
}

.sidebar-card h3 {
    font-size: 20px;
    margin-bottom: 20px;
    color: #333;
}

.quick-contact {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.quick-contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: white;
    border-radius: 8px;
}

.quick-contact-item i {
    color: #e30613;
    font-size: 20px;
    width: 20px;
}

.quick-contact-item strong {
    color: #333;
    font-size: 14px;
}

.quick-contact-item p {
    color: #666;
    margin: 0;
    font-size: 16px;
}

.social-links-main {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px;
    background: white;
    border-radius: 8px;
    text-decoration: none;
    color: #333;
    transition: all 0.3s;
}

.social-link:hover {
    background: #e30613;
    color: white;
}

.social-link i {
    font-size: 18px;
    width: 20px;
}

/* Map Section */
.map-section {
    padding: 60px 0;
    background: #f8f9fa;
}

.map-section h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 40px;
    color: #333;
}

.map-container {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    height: 400px;
}

.map-placeholder {
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #f8f9fa;
    color: #666;
}

.map-placeholder i {
    font-size: 64px;
    color: #e30613;
    margin-bottom: 20px;
}

.map-placeholder h3 {
    font-size: 24px;
    margin-bottom: 10px;
    color: #333;
}

/* FAQ Section */
.faq-section {
    padding: 60px 0;
    background: white;
}

.faq-section h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 40px;
    color: #333;
}

.faq-grid {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: #f8f9fa;
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    cursor: pointer;
    transition: background 0.3s;
}

.faq-question:hover {
    background: #e9ecef;
}

.faq-question h3 {
    font-size: 18px;
    color: #333;
    margin: 0;
}

.faq-question i {
    color: #e30613;
    transition: transform 0.3s;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: white;
}

.faq-answer p {
    padding: 20px;
    margin: 0;
    color: #666;
    line-height: 1.6;
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero {
        height: 500px;
    }
    
    .hero-content h1 {
        font-size: 24px;
    }
    
    .hero-content p {
        font-size: 16px;
    }
    
    .featured-models h2,
    .campaigns h2,
    .services h2 {
        font-size: 28px;
    }
    
    .action-card,
    .service-card {
        padding: 20px;
    }
    
    .model-info,
    .campaign-content {
        padding: 20px;
    }
}

/* About Us Page Styles */
.about-hero {
    padding: 60px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: #333;
}

.about-subtitle {
    font-size: 1.2rem;
    color: #e30613;
    margin-bottom: 20px;
    font-weight: 500;
}

.about-text p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 30px;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 30px;
}

.stat-item {
    text-align: center;
    padding: 20px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: #e30613;
    margin-bottom: 5px;
}

.stat-label {
    color: #666;
    font-size: 0.9rem;
}

.about-image img {
    width: 100%;
}

.company-values {
    padding: 60px 0;
    background: white;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.value-card {
    text-align: center;
    padding: 40px 20px;
    background: #f8f9fa;
    border-radius: 10px;
    transition: transform 0.3s;
}

.value-card:hover {
    transform: translateY(-5px);
}

.value-icon {
    width: 80px;
    height: 80px;
    background: #e30613;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.value-icon i {
    font-size: 2rem;
    color: white;
}

.value-card h3 {
    margin-bottom: 15px;
    color: #333;
}

.value-card p {
    color: #666;
    line-height: 1.6;
}

.history-timeline {
    padding: 60px 0;
    background: #f8f9fa;
}

.timeline {
    position: relative;
    margin-top: 40px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: #e30613;
    transform: translateX(-50%);
}

.timeline-item {
    display: flex;
    align-items: center;
    margin-bottom: 40px;
    position: relative;
}

.timeline-item:nth-child(odd) {
    flex-direction: row;
}

.timeline-item:nth-child(even) {
    flex-direction: row-reverse;
}

.timeline-year {
    background: #e30613;
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 600;
    min-width: 100px;
    text-align: center;
    position: relative;
    z-index: 2;
}

.timeline-content {
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    margin: 0 30px;
    flex: 1;
}

.timeline-content h3 {
    margin-bottom: 10px;
    color: #333;
}

.timeline-content p {
    color: #666;
    line-height: 1.6;
}

.team-section {
    padding: 60px 0;
    background: white;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.team-member {
    background: #f8f9fa;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.team-member:hover {
    transform: translateY(-5px);
}

.member-photo {
    height: 250px;
    overflow: hidden;
}

.member-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.member-info {
    padding: 20px;
}

.member-info h3 {
    margin-bottom: 5px;
    color: #333;
}

.member-title {
    color: #e30613;
    font-weight: 500;
    margin-bottom: 10px;
}

.member-bio {
    color: #666;
    line-height: 1.6;
}

.awards-section {
    padding: 60px 0;
    background: #f8f9fa;
}

.awards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.award-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.award-card:hover {
    transform: translateY(-5px);
}

.award-icon {
    width: 60px;
    height: 60px;
    background: #e30613;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.award-icon i {
    font-size: 1.5rem;
    color: white;
}

.award-card h3 {
    margin-bottom: 10px;
    color: #333;
}

.award-card p {
    color: #666;
    line-height: 1.6;
}

.csr-section {
    padding: 60px 0;
    background: white;
}

.csr-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-top: 40px;
}

.csr-text h3 {
    margin-bottom: 20px;
    color: #333;
}

.csr-text p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 30px;
}

.csr-initiatives {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.initiative {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 5px;
}

.initiative i {
    color: #e30613;
    font-size: 1.2rem;
}

.csr-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

/* About Us Responsive */
@media (max-width: 768px) {
    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-stats {
        grid-template-columns: 1fr;
    }
    
    .timeline::before {
        left: 20px;
    }
    
    .timeline-item {
        flex-direction: column !important;
        align-items: flex-start;
        padding-left: 50px;
    }
    
    .timeline-year {
        position: absolute;
        left: 0;
        top: 0;
    }
    
    .timeline-content {
        margin: 20px 0 0 0;
    }
    
    .csr-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

/* Gallery Page Styles */
.gallery-categories {
    padding: 40px 0;
    background: #f8f9fa;
}

.category-tabs {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.tab-btn {
    padding: 12px 24px;
    background: white;
    border: 2px solid #e30613;
    color: #e30613;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s;
}

.tab-btn:hover,
.tab-btn.active {
    background: #e30613;
    color: white;
}

.gallery-grid {
    padding: 60px 0;
    background: white;
}

.gallery-items {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.gallery-item {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.gallery-item:hover {
    transform: translateY(-5px);
}

.gallery-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.gallery-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.gallery-item:hover .gallery-image img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(227, 6, 19, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-info {
    text-align: center;
    color: white;
}

.gallery-info h3 {
    margin-bottom: 5px;
    font-size: 1.2rem;
}

.gallery-info p {
    margin-bottom: 15px;
    opacity: 0.9;
}

.view-btn {
    background: white;
    color: #e30613;
    border: none;
    padding: 10px 15px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s;
}

.view-btn:hover {
    background: #f8f9fa;
    transform: scale(1.1);
}

/* Video Gallery */
.video-gallery {
    padding: 60px 0;
    background: #f8f9fa;
}

.video-gallery h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 40px;
    color: #333;
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.video-item {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.video-item:hover {
    transform: translateY(-5px);
}

.video-thumbnail {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.video-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.5);
    display: flex;
    align-items: center;
    justify-content: center;
}

.play-btn {
    background: #e30613;
    color: white;
    border: none;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.5rem;
    transition: all 0.3s;
}

.play-btn:hover {
    background: #c10510;
    transform: scale(1.1);
}

.video-info {
    padding: 20px;
}

.video-info h3 {
    margin-bottom: 10px;
    color: #333;
}

.video-info p {
    color: #666;
    line-height: 1.6;
}

/* 360° View Section */
.view360-section {
    padding: 60px 0;
    background: white;
}

.view360-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 40px;
    color: #333;
}

.view360-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.view360-item {
    background: #f8f9fa;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.view360-item:hover {
    transform: translateY(-5px);
}

.view360-container {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.view360-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.view360-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(227, 6, 19, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s;
}

.view360-item:hover .view360-overlay {
    opacity: 1;
}

.view360-btn {
    background: white;
    color: #e30613;
    border: none;
    padding: 15px 25px;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s;
}

.view360-btn:hover {
    background: #f8f9fa;
    transform: scale(1.05);
}

.view360-info {
    padding: 20px;
    text-align: center;
}

.view360-info h3 {
    margin-bottom: 5px;
    color: #333;
}

.view360-info p {
    color: #666;
}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.9);
    align-items: center;
    justify-content: center;
}

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
}

.close-lightbox {
    position: absolute;
    top: -40px;
    right: 0;
    color: white;
    font-size: 35px;
    font-weight: bold;
    cursor: pointer;
    z-index: 10000;
}

.close-lightbox:hover {
    color: #e30613;
}

#lightbox-image {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

.lightbox-info {
    background: white;
    padding: 20px;
    border-radius: 0 0 10px 10px;
    margin-top: -10px;
}

.lightbox-info h3 {
    margin-bottom: 10px;
    color: #333;
}

.lightbox-info p {
    color: #666;
}

/* Gallery Responsive */
@media (max-width: 768px) {
    .category-tabs {
        gap: 10px;
    }
    
    .tab-btn {
        padding: 10px 20px;
        font-size: 14px;
    }
    
    .gallery-items {
        grid-template-columns: 1fr;
    }
    
    .video-grid {
        grid-template-columns: 1fr;
    }
    
    .view360-grid {
        grid-template-columns: 1fr;
    }
    
    .lightbox-content {
        max-width: 95%;
    }
}

/* News Page Styles */
.featured-news {
    padding: 60px 0;
    background: #f8f9fa;
}

.featured-news-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
}

.featured-news-main .news-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.news-card.featured .news-image {
    height: 300px;
    position: relative;
}

.news-card.featured .news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.news-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: #e30613;
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
}

.news-content {
    padding: 30px;
}

.news-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
    font-size: 14px;
    color: #666;
}

.news-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.news-meta i {
    color: #e30613;
}

.news-card.featured h2 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: #333;
    line-height: 1.3;
}

.news-card.featured p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.news-highlights {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #f8f9fa;
    padding: 8px 12px;
    border-radius: 15px;
    font-size: 14px;
    font-weight: 500;
    color: #333;
}

.highlight-item i {
    color: #e30613;
}

.read-more {
    color: #e30613;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s;
}

.read-more:hover {
    color: #c10510;
    gap: 12px;
}

.featured-news-sidebar {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.featured-news-sidebar .news-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.featured-news-sidebar .news-card:hover {
    transform: translateY(-5px);
}

.featured-news-sidebar .news-image {
    height: 150px;
}

.featured-news-sidebar .news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.featured-news-sidebar .news-content {
    padding: 20px;
}

.featured-news-sidebar h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: #333;
}

.featured-news-sidebar p {
    color: #666;
    line-height: 1.5;
    margin-bottom: 15px;
    font-size: 14px;
}

.news-categories {
    padding: 40px 0;
    background: white;
}

.news-grid {
    padding: 60px 0;
    background: #f8f9fa;
}

.news-items {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.news-item {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.news-item:hover {
    transform: translateY(-5px);
}

.news-item .news-image {
    height: 200px;
}

.news-item .news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.news-item .news-content {
    padding: 20px;
}

.news-item h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: #333;
}

.news-item p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 15px;
}

.newsletter-section {
    padding: 60px 0;
    background: linear-gradient(135deg, #e30613 0%, #c10510 100%);
    color: white;
}

.newsletter-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.newsletter-text h2 {
    font-size: 2rem;
    margin-bottom: 15px;
}

.newsletter-text p {
    font-size: 1.1rem;
    opacity: 0.9;
    line-height: 1.6;
}

.newsletter-form-inner {
    display: flex;
    gap: 15px;
}

.newsletter-form-inner input {
    flex: 1;
    padding: 15px;
    border: none;
    border-radius: 25px;
    font-size: 16px;
}

.newsletter-form-inner .btn {
    padding: 15px 30px;
    border-radius: 25px;
    font-weight: 600;
}

.press-releases {
    padding: 60px 0;
    background: white;
}

.press-releases h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 40px;
    color: #333;
}

.press-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.press-item {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s;
}

.press-item:hover {
    transform: translateY(-5px);
}

.press-icon {
    width: 60px;
    height: 60px;
    background: #e30613;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.press-icon i {
    font-size: 1.5rem;
    color: white;
}

.press-content h3 {
    margin-bottom: 10px;
    color: #333;
}

.press-content p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.download-btn {
    background: #e30613;
    color: white;
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 20px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
    transition: all 0.3s;
}

.download-btn:hover {
    background: #c10510;
    transform: translateY(-2px);
}

/* News Responsive */
@media (max-width: 768px) {
    .featured-news-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .news-items {
        grid-template-columns: 1fr;
    }
    
    .newsletter-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .newsletter-form-inner {
        flex-direction: column;
    }
    
    .press-grid {
        grid-template-columns: 1fr;
    }
}

/* Spare Parts Page Styles */
.parts-search {
    padding: 60px 0;
    background: #f8f9fa;
}

.search-container {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    text-align: center;
}

.search-container h2 {
    font-size: 2rem;
    margin-bottom: 10px;
    color: #333;
}

.search-container p {
    color: #666;
    margin-bottom: 30px;
}

.parts-search-form {
    max-width: 800px;
    margin: 0 auto;
}

.search-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 20px;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.parts-categories {
    padding: 60px 0;
    background: white;
}

.parts-categories h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 40px;
    color: #333;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.category-card {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s;
}

.category-card:hover {
    transform: translateY(-5px);
}

.category-icon {
    width: 80px;
    height: 80px;
    background: #e30613;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.category-icon i {
    font-size: 2rem;
    color: white;
}

.category-card h3 {
    margin-bottom: 10px;
    color: #333;
}

.category-card p {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}

.category-card ul {
    list-style: none;
    margin-bottom: 20px;
    text-align: left;
}

.category-card li {
    padding: 5px 0;
    color: #666;
    position: relative;
    padding-left: 20px;
}

.category-card li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #e30613;
    font-weight: bold;
}

.category-link {
    color: #e30613;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

.category-link:hover {
    color: #c10510;
}

.popular-parts {
    padding: 60px 0;
    background: #f8f9fa;
}

.popular-parts h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 40px;
    color: #333;
}

.parts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.part-item {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.part-item:hover {
    transform: translateY(-5px);
}

.part-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.part-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.part-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #e30613;
    color: white;
    padding: 5px 10px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 600;
}

.part-content {
    padding: 20px;
}

.part-content h3 {
    margin-bottom: 5px;
    color: #333;
}

.part-code {
    color: #e30613;
    font-size: 14px;
    margin-bottom: 10px;
}

.part-description {
    color: #666;
    line-height: 1.6;
    margin-bottom: 15px;
}

.part-price {
    margin-bottom: 15px;
}

.price {
    font-size: 1.2rem;
    font-weight: 700;
    color: #333;
}

.old-price {
    text-decoration: line-through;
    color: #999;
    margin-left: 10px;
}

.part-actions {
    display: flex;
    gap: 10px;
}

.part-actions .btn {
    flex: 1;
    padding: 10px;
    font-size: 14px;
}

.parts-services {
    padding: 60px 0;
    background: white;
}

.parts-services h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 40px;
    color: #333;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.service-card {
    text-align: center;
    padding: 30px 20px;
    background: #f8f9fa;
    border-radius: 10px;
    transition: transform 0.3s;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-icon {
    width: 60px;
    height: 60px;
    background: #e30613;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.service-icon i {
    font-size: 1.5rem;
    color: white;
}

.service-card h3 {
    margin-bottom: 10px;
    color: #333;
}

.service-card p {
    color: #666;
    line-height: 1.6;
}

.parts-order {
    padding: 60px 0;
    background: linear-gradient(135deg, #e30613 0%, #c10510 100%);
    color: white;
}

.order-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.order-text h2 {
    font-size: 2rem;
    margin-bottom: 15px;
}

.order-text p {
    font-size: 1.1rem;
    opacity: 0.9;
    line-height: 1.6;
    margin-bottom: 30px;
}

.order-benefits {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.benefit-item i {
    color: #fff;
    font-size: 1.2rem;
}

.order-form {
    background: white;
    padding: 30px;
    border-radius: 10px;
    color: #333;
}

.parts-order-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.parts-order-form .form-group {
    margin-bottom: 0;
}

.parts-order-form input,
.parts-order-form select,
.parts-order-form textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
}

.parts-order-form textarea {
    resize: vertical;
    min-height: 100px;
}

/* Spare Parts Responsive */
@media (max-width: 768px) {
    .search-row {
        grid-template-columns: 1fr;
    }
    
    .categories-grid {
        grid-template-columns: 1fr;
    }
    
    .parts-grid {
        grid-template-columns: 1fr;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .order-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
}

/* Warranty Page Styles */
.warranty-overview {
    padding: 60px 0;
    background: #f8f9fa;
}

.warranty-hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.warranty-content h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: #333;
}

.warranty-subtitle {
    font-size: 1.2rem;
    color: #e30613;
    margin-bottom: 20px;
    font-weight: 500;
}

.warranty-content p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 30px;
}

.warranty-highlights {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.warranty-highlights .highlight-item {
    display: flex;
    align-items: center;
    gap: 10px;
    background: white;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.warranty-highlights .highlight-item i {
    color: #e30613;
    font-size: 1.2rem;
}

.warranty-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.warranty-types {
    padding: 60px 0;
    background: white;
}

.warranty-types h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 40px;
    color: #333;
}

.warranty-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.warranty-card {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    transition: transform 0.3s;
}

.warranty-card:hover {
    transform: translateY(-5px);
}

.warranty-icon {
    width: 80px;
    height: 80px;
    background: #e30613;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.warranty-icon i {
    font-size: 2rem;
    color: white;
}

.warranty-card h3 {
    margin-bottom: 20px;
    color: #333;
    font-size: 1.5rem;
}

.warranty-details {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 20px;
}

.detail-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    background: white;
    border-radius: 5px;
}

.detail-item .label {
    font-weight: 500;
    color: #666;
}

.detail-item .value {
    font-weight: 600;
    color: #e30613;
}

.warranty-card p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.warranty-card ul {
    list-style: none;
    text-align: left;
}

.warranty-card li {
    padding: 5px 0;
    color: #666;
    position: relative;
    padding-left: 20px;
}

.warranty-card li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #e30613;
    font-weight: bold;
}

.warranty-terms {
    padding: 60px 0;
    background: #f8f9fa;
}

.warranty-terms h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 40px;
    color: #333;
}

.terms-content {
    max-width: 1200px;
    margin: 0 auto;
}

.terms-section {
    margin-bottom: 60px;
}

.terms-section h3 {
    font-size: 2rem;
    margin-bottom: 30px;
    color: #333;
    text-align: center;
}

.terms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.term-item {
    display: flex;
    gap: 15px;
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.term-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.term-icon i {
    font-size: 1.2rem;
}

.term-item:nth-child(1) .term-icon,
.term-item:nth-child(2) .term-icon,
.term-item:nth-child(3) .term-icon {
    background: #28a745;
    color: white;
}

.term-item:nth-child(4) .term-icon,
.term-item:nth-child(5) .term-icon,
.term-item:nth-child(6) .term-icon {
    background: #dc3545;
    color: white;
}

.term-content h4 {
    margin-bottom: 5px;
    color: #333;
}

.term-content p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.step {
    display: flex;
    gap: 20px;
    background: white;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.step-number {
    width: 50px;
    height: 50px;
    background: #e30613;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    flex-shrink: 0;
}

.step-content h4 {
    margin-bottom: 10px;
    color: #333;
}

.step-content p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

.extended-warranty {
    padding: 60px 0;
    background: linear-gradient(135deg, #e30613 0%, #c10510 100%);
    color: white;
}

.extended-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.extended-text h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.extended-text p {
    font-size: 1.1rem;
    opacity: 0.9;
    line-height: 1.6;
    margin-bottom: 30px;
}

.extended-benefits {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-bottom: 30px;
}

.extended-benefits .benefit-item {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255,255,255,0.1);
    padding: 15px;
    border-radius: 10px;
}

.extended-benefits .benefit-item i {
    color: #fff;
    font-size: 1.2rem;
}

.extended-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}

.warranty-faq {
    padding: 60px 0;
    background: white;
}

.warranty-faq h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 40px;
    color: #333;
}

.faq-grid {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: #f8f9fa;
    border-radius: 10px;
    margin-bottom: 15px;
    overflow: hidden;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    cursor: pointer;
    transition: background 0.3s;
}

.faq-question:hover {
    background: #e9ecef;
}

.faq-question h3 {
    font-size: 1.1rem;
    color: #333;
    margin: 0;
}

.faq-question i {
    color: #e30613;
    transition: transform 0.3s;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: white;
}

.faq-answer p {
    padding: 20px;
    margin: 0;
    color: #666;
    line-height: 1.6;
}

/* Warranty Responsive */
@media (max-width: 768px) {
    .warranty-hero {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .warranty-highlights {
        grid-template-columns: 1fr;
    }
    
    .warranty-grid {
        grid-template-columns: 1fr;
    }
    
    .terms-grid {
        grid-template-columns: 1fr;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
    }
    
    .extended-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .extended-benefits {
        grid-template-columns: 1fr;
    }
}

/* Privacy Policy Page Styles */
.privacy-content {
    padding: 60px 0;
    background: #f8f9fa;
}

.privacy-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
}

.privacy-main {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.privacy-section {
    margin-bottom: 40px;
}

.privacy-section:last-child {
    margin-bottom: 0;
}

.privacy-section h2 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: #333;
    border-bottom: 2px solid #e30613;
    padding-bottom: 10px;
}

.privacy-section h3 {
    font-size: 1.3rem;
    margin: 25px 0 15px 0;
    color: #333;
}

.privacy-section p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 15px;
}

.privacy-section ul {
    margin: 15px 0;
    padding-left: 20px;
}

.privacy-section li {
    color: #666;
    line-height: 1.6;
    margin-bottom: 8px;
}

.usage-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 20px 0;
}

.usage-item {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s;
}

.usage-item:hover {
    transform: translateY(-5px);
}

.usage-icon {
    width: 60px;
    height: 60px;
    background: #e30613;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
}

.usage-icon i {
    font-size: 1.5rem;
    color: white;
}

.usage-item h4 {
    margin-bottom: 10px;
    color: #333;
}

.usage-item p {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}

.security-measures {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    margin: 20px 0;
}

.security-item {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #f8f9fa;
    padding: 15px;
    border-radius: 8px;
}

.security-item i {
    color: #e30613;
    font-size: 1.2rem;
}

.security-item span {
    color: #666;
    font-size: 14px;
}

.rights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 20px 0;
}

.right-item {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 10px;
    border-left: 4px solid #e30613;
}

.right-item h4 {
    margin-bottom: 10px;
    color: #333;
}

.right-item p {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}

.contact-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin: 20px 0;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 15px;
    background: #f8f9fa;
    padding: 20px;
    border-radius: 10px;
}

.contact-method i {
    color: #e30613;
    font-size: 1.5rem;
}

.contact-method h4 {
    margin-bottom: 5px;
    color: #333;
}

.contact-method p {
    color: #666;
    margin: 0;
    font-size: 14px;
}

.privacy-sidebar {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.sidebar-card {
    background: white;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.sidebar-card h3 {
    margin-bottom: 20px;
    color: #333;
    font-size: 1.3rem;
}

.quick-links {
    list-style: none;
    padding: 0;
}

.quick-links li {
    margin-bottom: 10px;
}

.quick-links a {
    color: #666;
    text-decoration: none;
    display: block;
    padding: 10px;
    border-radius: 5px;
    transition: all 0.3s;
}

.quick-links a:hover {
    background: #f8f9fa;
    color: #e30613;
}

.important-notes {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.note-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 8px;
}

.note-item i {
    color: #e30613;
    font-size: 1.2rem;
    margin-top: 2px;
}

.note-item p {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}

.document-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.document-link {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #e30613;
    text-decoration: none;
    padding: 10px;
    border-radius: 5px;
    transition: all 0.3s;
}

.document-link:hover {
    background: #f8f9fa;
}

.document-link i {
    font-size: 1.2rem;
}

/* Privacy Policy Responsive */
@media (max-width: 768px) {
    .privacy-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .usage-grid {
        grid-template-columns: 1fr;
    }
    
    .security-measures {
        grid-template-columns: 1fr;
    }
    
    .rights-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-methods {
        grid-template-columns: 1fr;
    }
}

/* Terms of Service Page Styles */
.terms-content {
    padding: 60px 0;
    background: #f8f9fa;
}

.terms-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
}

.terms-main {
    background: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.terms-section {
    margin-bottom: 40px;
}

.terms-section h2 {
    color: #333;
    font-size: 1.8rem;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #e30613;
}

.terms-section h3 {
    color: #333;
    font-size: 1.3rem;
    margin: 25px 0 15px 0;
}

.terms-section p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 15px;
}

.terms-section ul {
    color: #666;
    line-height: 1.8;
    margin-left: 20px;
}

.terms-section li {
    margin-bottom: 8px;
}

.services-overview {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.service-overview-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 8px;
}

.service-icon {
    width: 50px;
    height: 50px;
    background: #e30613;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.service-icon i {
    color: white;
    font-size: 1.2rem;
}

.service-details h4 {
    color: #333;
    margin-bottom: 8px;
    font-size: 1.1rem;
}

.service-details p {
    color: #666;
    font-size: 0.9rem;
    margin: 0;
}

.intellectual-property {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 15px;
    margin-top: 20px;
}

.ip-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 8px;
    text-align: center;
}

.ip-item i {
    color: #e30613;
    font-size: 1.5rem;
}

.ip-item span {
    color: #333;
    font-weight: 500;
}

.liability-limits {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 20px;
}

.liability-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 8px;
}

.liability-icon {
    width: 50px;
    height: 50px;
    background: #e30613;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.liability-icon i {
    color: white;
    font-size: 1.2rem;
}

.liability-content h4 {
    color: #333;
    margin-bottom: 8px;
    font-size: 1.1rem;
}

.liability-content p {
    color: #666;
    font-size: 0.9rem;
    margin: 0;
}

.payment-terms {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.payment-term {
    padding: 20px;
    background: #f8f9fa;
    border-radius: 8px;
    text-align: center;
}

.payment-term h4 {
    color: #333;
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.payment-term p {
    color: #666;
    font-size: 0.9rem;
    margin: 0;
}

.warranty-return {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 20px;
}

.warranty-return-item {
    padding: 20px;
    background: #f8f9fa;
    border-radius: 8px;
}

.warranty-return-item h4 {
    color: #333;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.warranty-return-item ul {
    color: #666;
    font-size: 0.9rem;
    margin: 0;
}

.warranty-return-item li {
    margin-bottom: 5px;
}

.dispute-resolution {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 20px;
}

.resolution-step {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 8px;
}

.step-number {
    width: 40px;
    height: 40px;
    background: #e30613;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.step-content h4 {
    color: #333;
    margin-bottom: 5px;
    font-size: 1.1rem;
}

.step-content p {
    color: #666;
    font-size: 0.9rem;
    margin: 0;
}

.contact-info-terms {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 20px;
}

.contact-info-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 8px;
}

.contact-info-item i {
    color: #e30613;
    font-size: 1.5rem;
    width: 30px;
    text-align: center;
}

.contact-info-item h4 {
    color: #333;
    margin-bottom: 5px;
    font-size: 1rem;
}

.contact-info-item p {
    color: #666;
    font-size: 0.9rem;
    margin: 0;
}

.terms-sidebar {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.sidebar-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.sidebar-card h3 {
    color: #333;
    margin-bottom: 20px;
    font-size: 1.3rem;
}

/* Terms of Service Responsive */
@media (max-width: 768px) {
    .terms-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .services-overview {
        grid-template-columns: 1fr;
    }
    
    .intellectual-property {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .payment-terms {
        grid-template-columns: 1fr;
    }
    
    .warranty-return {
        grid-template-columns: 1fr;
    }
    
    .resolution-step {
        flex-direction: column;
        text-align: center;
    }
}

/* FAQ Page Styles */
.faq-search {
    padding: 40px 0;
    background: #f8f9fa;
}

.search-box {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    background: white;
    border-radius: 50px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    overflow: hidden;
}

.search-box input {
    flex: 1;
    padding: 20px 30px;
    border: none;
    outline: none;
    font-size: 1.1rem;
    color: #333;
}

.search-box button {
    padding: 20px 30px;
    background: #e30613;
    border: none;
    color: white;
    cursor: pointer;
    transition: background 0.3s;
}

.search-box button:hover {
    background: #c10510;
}

.faq-categories {
    padding: 40px 0;
    background: white;
}

.category-tabs {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.category-tab {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px 25px;
    background: #f8f9fa;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 1rem;
    color: #666;
}

.category-tab.active,
.category-tab:hover {
    background: #e30613;
    color: white;
}

.category-tab i {
    font-size: 1.2rem;
}

.faq-content {
    padding: 60px 0;
    background: #f8f9fa;
}

.faq-grid {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.faq-item {
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    overflow: hidden;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 30px;
    cursor: pointer;
    transition: background 0.3s;
}

.faq-question:hover {
    background: #f8f9fa;
}

.faq-question h3 {
    color: #333;
    font-size: 1.2rem;
    margin: 0;
    font-weight: 500;
}

.faq-question i {
    color: #e30613;
    font-size: 1.2rem;
    transition: transform 0.3s;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-answer p {
    padding: 0 30px 25px 30px;
    color: #666;
    line-height: 1.8;
    margin: 0;
}

.faq-answer a {
    color: #e30613;
    text-decoration: none;
}

.faq-answer a:hover {
    text-decoration: underline;
}

.contact-faq {
    padding: 60px 0;
    background: white;
}

.contact-faq-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.contact-faq-content h2 {
    color: #333;
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.contact-faq-content > p {
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 40px;
}

.contact-methods-faq {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.contact-method {
    text-align: center;
    padding: 30px 20px;
    background: #f8f9fa;
    border-radius: 10px;
    transition: transform 0.3s;
}

.contact-method:hover {
    transform: translateY(-5px);
}

.contact-icon {
    width: 80px;
    height: 80px;
    background: #e30613;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.contact-icon i {
    color: white;
    font-size: 2rem;
}

.contact-details h4 {
    color: #333;
    margin-bottom: 10px;
    font-size: 1.3rem;
}

.contact-details p {
    color: #666;
    margin-bottom: 20px;
}

.contact-details .btn {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s;
}

.btn-secondary {
    background: #666;
    color: white;
}

.btn-secondary:hover {
    background: #555;
}

.btn-outline {
    background: transparent;
    color: #e30613;
    border: 2px solid #e30613;
}

.btn-outline:hover {
    background: #e30613;
    color: white;
}

/* FAQ Responsive */
@media (max-width: 768px) {
    .category-tabs {
        gap: 10px;
    }
    
    .category-tab {
        padding: 12px 20px;
        font-size: 0.9rem;
    }
    
    .faq-question {
        padding: 20px;
    }
    
    .faq-question h3 {
        font-size: 1.1rem;
    }
    
    .faq-answer p {
        padding: 0 20px 20px 20px;
    }
    
    .contact-methods-faq {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .contact-faq-content h2 {
        font-size: 2rem;
    }
}
