/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-red: #E31E24;
    --dark-gray: #2C2C2C;
    --light-gray: #F5F5F5;
    --white: #FFFFFF;
    --black: #000000;
    --text-gray: #666666;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: var(--dark-gray);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    background-color: var(--primary-red);
    padding: 15px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo h2 {
    color: var(--white);
    font-size: 24px;
    font-weight: bold;
    letter-spacing: 1px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-links li a {
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.5px;
    transition: opacity 0.3s ease;
}

.nav-links li a:hover {
    opacity: 0.8;
}

/* Login Buttons in Navigation */
.login-btn,
.admin-login-btn {
    padding: 8px 20px !important;
    border-radius: 4px !important;
    background-color: rgba(255, 255, 255, 0.1) !important;
    transition: all 0.3s ease !important;
}

.login-btn:hover,
.admin-login-btn:hover {
    background-color: var(--white) !important;
    color: var(--primary-red) !important;
    opacity: 1 !important;
}

.admin-login-btn {
    background-color: rgba(255, 255, 255, 0.2) !important;
}

/* Burger Menu */
.burger-menu {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.burger-menu span {
    width: 28px;
    height: 3px;
    background-color: var(--white);
    transition: all 0.3s ease;
    border-radius: 3px;
}

.burger-menu.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.burger-menu.active span:nth-child(2) {
    opacity: 0;
}

.burger-menu.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Buttons */
.btn {
    padding: 12px 30px;
    border: none;
    cursor: pointer;
    font-weight: bold;
    font-size: 14px;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border-radius: 3px;
}

.btn-primary {
    background-color: var(--primary-red);
    color: var(--white);
}

.btn-primary:hover {
    background-color: #C31A1F;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(227, 30, 36, 0.3);
}

.btn-secondary {
    background-color: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-secondary:hover {
    background-color: var(--white);
    color: var(--primary-red);
}

/* Hero Section */
.hero {
    background: url('truck-highway-sunny-sky.jpg') center/cover no-repeat;
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    margin-top: 60px;
    text-align: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}

.hero-content {
    position: relative;
    z-index: 2;
    color: var(--white);
    max-width: 800px;
    padding: 20px;
}

.hero-content h1 {
    font-size: 56px;
    font-weight: bold;
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.hero-content p {
    font-size: 18px;
    margin-bottom: 30px;
    line-height: 1.8;
}

/* Commitment Section */
.commitment {
    padding: 80px 0;
    background-color: var(--light-gray);
}

.commitment-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.commitment-content h2 {
    font-size: 36px;
    color: var(--primary-red);
    margin-bottom: 20px;
    font-weight: bold;
}

.commitment-content p {
    margin-bottom: 20px;
    color: var(--text-gray);
    line-height: 1.8;
}

.commitment-image img {
    width: 100%;
    border-radius: 5px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* Info Section */
.info-section {
    padding: 80px 0;
    background: linear-gradient(to bottom, var(--dark-gray) 50%, var(--light-gray) 50%);
}

.info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.info-box {
    padding: 50px;
    border-radius: 5px;
}

.dark-box {
    background-color: var(--dark-gray);
    color: var(--white);
}

.light-box {
    background-color: var(--white);
    color: var(--dark-gray);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.info-box h2 {
    font-size: 32px;
    margin-bottom: 30px;
    line-height: 1.2;
}

.info-box ul {
    list-style: none;
    margin-bottom: 30px;
}

.info-box ul li {
    padding: 10px 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.light-box ul li {
    border-bottom: 1px solid rgba(0,0,0,0.1);
}

/* Transportation Section */
.transportation {
    background: url('3d-trucks.jpg') center/cover no-repeat;
    padding: 100px 0;
    position: relative;
    color: var(--white);
}

.transportation-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
}

.transportation-content h2 {
    font-size: 48px;
    font-weight: bold;
    margin-bottom: 20px;
    line-height: 1.2;
}

.transportation-content p {
    font-size: 18px;
    line-height: 1.8;
}

/* About Section */
.about-section {
    padding: 80px 0;
    background-color: var(--white);
}

.section-title {
    font-size: 36px;
    color: var(--dark-gray);
    margin-bottom: 30px;
    text-align: center;
}

.section-subtitle {
    text-align: center;
    color: var(--text-gray);
    margin-bottom: 40px;
    font-size: 18px;
}

.about-content {
    margin-bottom: 40px;
}

.about-content h3,
.about-section h3 {
    font-size: 28px;
    color: var(--primary-red);
    margin: 30px 0 20px 0;
}

.about-content p,
.about-section p {
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 20px;
}

/* Performance Table */
.performance-table {
    margin: 40px 0;
    overflow-x: auto;
}

table {
    width: 100%;
    border-collapse: collapse;
    background-color: var(--white);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

thead {
    background-color: var(--primary-red);
    color: var(--white);
}

th, td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid #ddd;
}

tbody tr:hover {
    background-color: var(--light-gray);
}

.benefits {
    font-size: 16px;
    margin-top: 30px;
}

/* Services Section */
.services-section {
    padding: 80px 0;
    background-color: var(--light-gray);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.service-card {
    background-color: var(--white);
    padding: 40px;
    border-radius: 5px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.2);
}

.service-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 22px;
    color: var(--dark-gray);
    margin-bottom: 15px;
}

.service-card p {
    color: var(--text-gray);
    line-height: 1.6;
}

/* Fleet Types */
.fleet-types {
    margin-top: 60px;
}

.fleet-types h3 {
    font-size: 28px;
    color: var(--primary-red);
    margin-bottom: 30px;
    text-align: center;
}

.fleet-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.fleet-item {
    background-color: var(--white);
    padding: 30px;
    border-radius: 5px;
    border-left: 4px solid var(--primary-red);
}

.fleet-item h4 {
    color: var(--dark-gray);
    margin-bottom: 10px;
    font-size: 18px;
}

.fleet-item p {
    color: var(--text-gray);
    font-size: 14px;
}

/* Operational Section */
.operational-section {
    padding: 80px 0;
    background-color: var(--white);
}

.operational-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.operational-card {
    background-color: var(--light-gray);
    padding: 40px;
    border-radius: 5px;
}

.operational-card.full-width {
    grid-column: 1 / -1;
}

.operational-card h3 {
    font-size: 24px;
    color: var(--primary-red);
    margin-bottom: 20px;
}

.operational-card p {
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 15px;
}

.response-times {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 20px;
}

.response-item {
    background-color: var(--white);
    padding: 20px;
    border-radius: 5px;
    display: flex;
    flex-direction: column;
}

.response-item .time {
    font-size: 20px;
    font-weight: bold;
    color: var(--primary-red);
    margin-bottom: 10px;
}

.response-item .description {
    color: var(--text-gray);
}

.workflow-steps {
    margin-top: 20px;
    padding-left: 20px;
}

.workflow-steps li {
    padding: 10px 0;
    color: var(--text-gray);
    font-size: 16px;
}

/* Affiliate Section */
.affiliate-section {
    padding: 80px 0;
    background-color: var(--light-gray);
}

.affiliate-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.affiliate-card {
    background-color: var(--white);
    padding: 40px;
    border-radius: 5px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.affiliate-card h3 {
    font-size: 24px;
    color: var(--dark-gray);
    margin-bottom: 20px;
}

.affiliate-card p {
    color: var(--text-gray);
    line-height: 1.8;
}

/* Three Column Section */
.three-column-section {
    padding: 80px 0;
    background-color: var(--white);
}

.three-column-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.column-card {
    padding: 40px;
    text-align: center;
    background-color: var(--light-gray);
    border-radius: 5px;
}

.column-card h3 {
    font-size: 28px;
    color: var(--dark-gray);
    margin-bottom: 20px;
    line-height: 1.2;
}

.column-card p {
    color: var(--text-gray);
    line-height: 1.8;
}

/* Contact Section */
.contact-section {
    padding: 80px 0;
    background-color: var(--dark-gray);
    color: var(--white);
}

.contact-section .section-title {
    color: var(--white);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-top: 40px;
}

.contact-info h3,
.contact-form h3 {
    font-size: 24px;
    margin-bottom: 30px;
    color: var(--primary-red);
}

.contact-item {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
}

.contact-item .icon {
    font-size: 24px;
}

.contact-item strong {
    display: block;
    margin-bottom: 5px;
}

.contact-item p {
    color: #CCCCCC;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.social-icon {
    width: 40px;
    height: 40px;
    background-color: var(--primary-red);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.social-icon:hover {
    background-color: #C31A1F;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 15px;
    margin-bottom: 20px;
    border: 1px solid #555;
    background-color: #333;
    color: var(--white);
    border-radius: 3px;
    font-family: 'Arial', sans-serif;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary-red);
}

/* Footer */
.footer {
    background-color: var(--black);
    color: var(--white);
    padding: 30px 0;
    text-align: center;
}

.footer-content p {
    margin: 5px 0;
    color: #CCCCCC;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .burger-menu {
        display: flex;
    }

    .nav-links {
        position: fixed;
        right: -100%;
        top: 60px;
        flex-direction: column;
        background-color: var(--primary-red);
        width: 100%;
        text-align: center;
        transition: right 0.3s ease;
        padding: 20px 0;
        box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links li {
        margin: 15px 0;
    }

    .hero-content h1 {
        font-size: 36px;
    }

    .hero-content p {
        font-size: 16px;
    }

    .commitment-grid {
        grid-template-columns: 1fr;
    }

    .info-grid {
        grid-template-columns: 1fr;
    }

    .info-section {
        background: var(--dark-gray);
    }

    .transportation-content h2 {
        font-size: 32px;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .three-column-grid {
        grid-template-columns: 1fr;
    }

    .response-times {
        grid-template-columns: 1fr;
    }

    .section-title {
        font-size: 28px;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 28px;
    }

    .logo h2 {
        font-size: 18px;
    }

    .btn {
        padding: 10px 20px;
        font-size: 12px;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.service-card,
.fleet-item,
.operational-card {
    animation: fadeInUp 0.6s ease;
}

.service-icon img{
    width:60px;
    height:50px;
}

/* WhatsApp Sticky Button */
.whatsapp-sticky {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.whatsapp-sticky:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}

.whatsapp-sticky svg {
    width: 35px;
    height: 35px;
}

/* WhatsApp Modal */
.whatsapp-modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.whatsapp-modal-content {
    background-color: #fff;
    margin: 10% auto;
    padding: 0;
    border-radius: 15px;
    width: 90%;
    max-width: 450px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    animation: slideIn 0.3s ease;
    overflow: hidden;
}

@keyframes slideIn {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.whatsapp-header {
    background: linear-gradient(135deg, #25D366 0%, #20BA5A 100%);
    color: white;
    padding: 25px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.whatsapp-header h3 {
    margin: 0;
    font-size: 1.5rem;
    font-weight: 600;
}

.whatsapp-body {
    padding: 30px 25px;
    text-align: center;
}

.whatsapp-body p {
    color: #333;
    margin-bottom: 15px;
    line-height: 1.6;
}

.whatsapp-number {
    font-size: 1.3rem;
    font-weight: 600;
    color: #25D366;
    margin: 20px 0;
}

.whatsapp-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #25D366;
    color: white;
    padding: 15px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.whatsapp-button:hover {
    background: #20BA5A;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.4);
}

.whatsapp-close {
    color: white;
    position: absolute;
    right: 20px;
    top: 20px;
    font-size: 35px;
    font-weight: bold;
    cursor: pointer;
    transition: transform 0.2s ease;
    z-index: 1;
}

.whatsapp-close:hover {
    transform: scale(1.2);
}

/* Updated Contact Section */
.contact-info-centered {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.contact-info-centered h3 {
    font-size: 2rem;
    margin-bottom: 40px;
    color: #1a1a1a;
}

.contact-items {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    text-align: left;
}

.contact-item .icon {
    font-size: 2rem;
    margin-top: 5px;
}

.contact-item strong {
    display: block;
    font-size: 1.1rem;
    margin-bottom: 5px;
    color: #1a1a1a;
}

.contact-item p {
    margin: 0;
    color: #666;
    line-height: 1.6;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
}

.social-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #333;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: #25D366;
    transform: translateY(-3px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .whatsapp-sticky {
        width: 55px;
        height: 55px;
        bottom: 20px;
        right: 20px;
    }
    
    .whatsapp-sticky svg {
        width: 30px;
        height: 30px;
    }
    
    .whatsapp-modal-content {
        width: 95%;
        margin: 20% auto;
    }
    
    .whatsapp-header h3 {
        font-size: 1.3rem;
    }
    
    .whatsapp-body {
        padding: 25px 20px;
    }
    
    .whatsapp-number {
        font-size: 1.1rem;
    }
    
    .whatsapp-button {
        padding: 12px 25px;
        font-size: 1rem;
    }
    
    .contact-items {
        flex-direction: column;
        gap: 30px;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .whatsapp-close {
        right: 15px;
        top: 15px;
        font-size: 28px;
    }
}

/* Legal Pages Styles */
.legal-section {
    padding: 100px 0 80px;
    background: #f8f9fa;
    min-height: 100vh;
}

.legal-header {
    text-align: center;
    margin-bottom: 50px;
    padding-bottom: 30px;
    border-bottom: 3px solid #333;
}

.legal-header h1 {
    font-size: 3rem;
    color: #1a1a1a;
    margin-bottom: 15px;
    font-weight: 700;
}

.last-updated {
    color: #666;
    font-size: 1rem;
    font-style: italic;
}

.legal-content {
    background: white;
    padding: 50px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    max-width: 1000px;
    margin: 0 auto;
}

.legal-intro {
    margin-bottom: 40px;
    padding: 25px;
    background: #f0f7ff;
    
    border-radius: 5px;
}

.legal-intro p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #333;
    margin: 0;
}

.legal-section-block {
    margin-bottom: 40px;
}

.legal-section-block h2 {
    font-size: 1.8rem;
    color: #1a1a1a;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #e0e0e0;
    font-weight: 600;
}

.legal-section-block h3 {
    font-size: 1.3rem;
    color: #333;
    margin: 25px 0 15px;
    font-weight: 600;
}

.legal-section-block p {
    font-size: 1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 15px;
}

.legal-section-block ul {
    margin: 15px 0 15px 25px;
    list-style-type: disc;
}

.legal-section-block ul li {
    font-size: 1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 10px;
}

.legal-section-block ol {
    margin: 15px 0 15px 25px;
    list-style-type: decimal;
}

.legal-section-block ol li {
    font-size: 1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 10px;
}

.legal-section-block strong {
    color: #1a1a1a;
    font-weight: 600;
}

.contact-details {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 5px;

    margin-top: 15px;
    line-height: 1.8;
}

.contact-details strong {
    display: block;
    margin-bottom: 10px;
    font-size: 1.1rem;
}

/* Footer for legal pages */
.footer {
    background: #1a1a1a;
    color: white;
    padding: 30px 0;
    text-align: center;
}

.footer-content {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
}

.footer-links {
    display: flex;
    gap: 15px;
    align-items: center;
}

.footer-links a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #25D366;
}

.footer-links span {
    color: #666;
}

/* Responsive Design */
@media (max-width: 768px) {
    .legal-section {
        padding: 80px 0 60px;
    }

    .legal-header h1 {
        font-size: 2rem;
    }

    .legal-content {
        padding: 30px 20px;
    }

    .legal-intro {
        padding: 20px;
    }

    .legal-intro p {
        font-size: 1rem;
    }

    .legal-section-block h2 {
        font-size: 1.5rem;
    }

    .legal-section-block h3 {
        font-size: 1.2rem;
    }

    .legal-section-block p,
    .legal-section-block ul li,
    .legal-section-block ol li {
        font-size: 0.95rem;
    }

    .footer-links {
        flex-direction: column;
        gap: 10px;
    }

    .footer-links span {
        display: none;
    }
}

@media (max-width: 480px) {
    .legal-header h1 {
        font-size: 1.75rem;
    }

    .legal-content {
        padding: 25px 15px;
    }

    .legal-section-block h2 {
        font-size: 1.3rem;
    }

    .legal-section-block ul,
    .legal-section-block ol {
        margin-left: 20px;
    }
}

/* Print Styles */
@media print {
    .navbar,
    .whatsapp-sticky,
    .whatsapp-modal,
    .footer {
        display: none !important;
    }

    .legal-section {
        padding: 20px 0;
    }

    .legal-content {
        box-shadow: none;
        padding: 0;
    }

    .legal-section-block {
        page-break-inside: avoid;
    }
}