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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

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

/* Toast Notification */
.toast {
    position: fixed;
    top: 20px;
    right: 20px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    border: 1px solid #e5e7eb;
    padding: 16px;
    z-index: 1000;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    max-width: 400px;
}

.toast.show {
    transform: translateX(0);
}

.toast-content {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.toast-icon {
    color: #10b981;
    font-size: 20px;
}

.toast-icon.error {
    color: #ef4444;
}

.toast-text {
    flex: 1;
}

.toast-title {
    font-weight: 600;
    margin-bottom: 4px;
}

.toast-description {
    font-size: 14px;
    color: #6b7280;
}

.toast-close {
    background: none;
    border: none;
    color: #9ca3af;
    cursor: pointer;
    font-size: 16px;
    padding: 0;
}

.toast-close:hover {
    color: #6b7280;
}

/* Header */
.header {
    background-color: #1e3a8a;
    color: white;
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo i {
    font-size: 2rem;
}

.logo h1 {
    font-size: 1.5rem;
    font-weight: bold;
}

.nav {
    display: flex;
    gap: 1.5rem;
}

.nav button {
    background: none;
    border: none;
    color: white;
    cursor: pointer;
    padding: 0.5rem 0;
    transition: color 0.3s ease;
}

.nav button:hover {
    color: #93c5fd;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #2563eb, #1e40af);
    color: white;
    padding: 5rem 0;
    text-align: center;
}

.hero-content h2 {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
}

.hero-content p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Buttons */
.btn {
    padding: 12px 24px;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-primary {
    background-color: white;
    color: #1e40af;
}

.btn-primary:hover {
    background-color: #f3f4f6;
}

.btn-full {
    width: 100%;
}

/* About Section */
.about {
    padding: 4rem 0;
    background-color: #f9fafb;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h3 {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.125rem;
    color: #6b7280;
    max-width: 800px;
    margin: 0 auto;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.feature-icon .fa-check-circle {
    color: #10b981;
}

.feature-icon .fa-clock {
    color: #2563eb;
}

.feature-icon .fa-shield-alt {
    color: #8b5cf6;
}

.feature-card h4 {
    font-size: 1.25rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

/* Services Section */
.services {
    padding: 4rem 0;
}

.services h3 {
    font-size: 2rem;
    font-weight: bold;
    text-align: center;
    margin-bottom: 3rem;
}

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

.service-card {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    text-align: center;
    border: 1px solid #e5e7eb;
}

.service-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.service-icon .fa-box {
    color: #2563eb;
}

.service-icon .fa-truck {
    color: #10b981;
}

.service-icon .fa-tachometer-alt {
    color: #f59e0b;
}

.service-icon .fa-shield-alt {
    color: #8b5cf6;
}

.service-card h4 {
    font-size: 1.25rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

/* Tracking Section */
.tracking {
    padding: 4rem 0;
    background-color: #eff6ff;
}

.tracking-form {
    max-width: 600px;
    margin: 0 auto;
}

.tracking-form h3 {
    font-size: 2rem;
    font-weight: bold;
    text-align: center;
    margin-bottom: 2rem;
}

.form-card {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.form-card h4 {
    text-align: center;
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

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

.form-group input {
    width: 100%;
    padding: 12px;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    font-size: 16px;
}

.form-group input:focus {
    outline: none;
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

/* Information and Terms Sections */
.info, .terms {
    padding: 4rem 0;
}

.terms {
    background-color: #f9fafb;
}

.info h3, .terms h3 {
    font-size: 2rem;
    font-weight: bold;
    text-align: center;
    margin-bottom: 3rem;
}

.accordion {
    max-width: 1000px;
    margin: 0 auto;
}

.accordion-item {
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    margin-bottom: 1rem;
    overflow: hidden;
}

.accordion-trigger {
    width: 100%;
    padding: 1.5rem;
    background: none;
    border: none;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.125rem;
    font-weight: 600;
}

.accordion-trigger:hover {
    background-color: #f9fafb;
}

.accordion-title {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.accordion-title i {
    color: #f59e0b;
}

.accordion-icon {
    transition: transform 0.3s ease;
}

.accordion-trigger[aria-expanded="true"] .accordion-icon {
    transform: rotate(180deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.accordion-content.open {
    max-height: 1000px;
}

.accordion-text {
    padding: 0 1.5rem 1.5rem;
    font-size: 0.875rem;
}

.accordion-text h4 {
    font-weight: 600;
    margin: 1rem 0 0.5rem;
}

.accordion-text ul, .accordion-text ol {
    margin: 0.5rem 0;
    padding-left: 1.5rem;
}

.accordion-text li {
    margin-bottom: 0.25rem;
}

.tip {
    background-color: #eff6ff;
    padding: 0.75rem;
    border-radius: 6px;
    margin-top: 1rem;
}

.what-to-do {
    background-color: #fef3c7;
    padding: 1rem;
    border-radius: 6px;
    margin-top: 1rem;
}

.guarantee-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1rem;
    margin: 1rem 0;
}

.guarantee-col h4 {
    color: #10b981;
    margin-bottom: 0.5rem;
}

.coverage-info {
    background-color: #f0fdf4;
    padding: 0.75rem;
    border-radius: 6px;
    margin-top: 1rem;
    font-size: 0.875rem;
}

.note {
    font-size: 0.875rem;
    color: #6b7280;
    margin-top: 1rem;
}

/* Footer */
.footer {
    background-color: #111827;
    color: white;
    padding: 3rem 0;
}

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

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.footer-logo i {
    font-size: 2rem;
}

.footer-logo h4 {
    font-size: 1.25rem;
    font-weight: bold;
}

.footer-col p {
    color: #d1d5db;
    margin-bottom: 1rem;
}

.footer-col h5 {
    font-weight: 600;
    margin-bottom: 1rem;
}

.contact-info, .schedule, .certifications {
    color: #d1d5db;
}

.contact-item, .cert-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.contact-item i {
    width: 16px;
}

.schedule p {
    margin-bottom: 0.25rem;
}

.schedule .online {
    font-size: 0.875rem;
    margin-top: 0.5rem;
}

.cert-item i {
    width: 16px;
}

.cert-item .fa-star {
    color: #fbbf24;
}

.cert-item .fa-shield-alt {
    color: #10b981;
}

.cert-item .fa-check-circle {
    color: #3b82f6;
}

.footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 2rem;
    text-align: center;
    color: #9ca3af;
}

.footer-bottom p {
    margin-bottom: 0.5rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav {
        display: none;
    }
    
    .hero-content h2 {
        font-size: 2rem;
    }
    
    .hero-content p {
        font-size: 1rem;
    }
    
    .features-grid,
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .guarantee-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .accordion-trigger {
        font-size: 1rem;
        padding: 1rem;
    }
    
    .accordion-text {
        padding: 0 1rem 1rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero {
        padding: 3rem 0;
    }
    
    .hero-content h2 {
        font-size: 1.75rem;
    }
    
    .about,
    .services,
    .tracking,
    .info,
    .terms {
        padding: 3rem 0;
    }
    
    .toast {
        right: 10px;
        left: 10px;
        max-width: none;
    }
}
