/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
.header {
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
    color: white;
    padding: 2rem 0;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.logo-section {
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-emblem {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 140px;
    height: 140px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    backdrop-filter: blur(10px);
}

/* Main Content */
.main {
    padding: 2rem 0 4rem 0;
}

/* Top Banner */
.top-banner {
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
    color: white;
    padding: 3rem 2rem;
    margin-bottom: 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.banner-content h1 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #ec4899;
    margin-bottom: 0.5rem;
    letter-spacing: 2px;
}

.banner-content h2 {
    font-size: 2.8rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.banner-content h3 {
    font-size: 1.4rem;
    font-weight: 500;
    color: #fbbf24;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.banner-content p {
    font-size: 1.2rem;
    color: #e5e7eb;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Advantages Section */
.advantages {
    margin-bottom: 4rem;
    padding: 3rem 2rem;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.advantages h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #1e3a8a;
    margin-bottom: 3rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.advantage-item {
    text-align: center;
    padding: 2.5rem 2rem;
    background: #f8f9fa;
    border-radius: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 2px solid transparent;
}

.advantage-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border-color: #3b82f6;
}

.advantage-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    display: block;
}

.advantage-item h3 {
    font-size: 1.4rem;
    color: #1e3a8a;
    margin-bottom: 1rem;
    font-weight: 600;
}

.advantage-item p {
    color: #6b7280;
    line-height: 1.7;
    font-size: 1rem;
}

/* Pricing Section */
.pricing-section {
    margin-bottom: 4rem;
    padding: 3rem 2rem;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.pricing-section h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #1e3a8a;
    margin-bottom: 3rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.pricing-table-container {
    overflow-x: auto;
    margin-bottom: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.pricing-table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: 15px;
    overflow: hidden;
}

.pricing-table thead {
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
    color: white;
}

.pricing-table th {
    padding: 1.5rem 1rem;
    text-align: center;
    font-weight: 600;
    font-size: 1.1rem;
    letter-spacing: 0.5px;
}

.pricing-table tbody tr {
    border-bottom: 1px solid #e5e7eb;
    transition: background-color 0.3s ease;
}

.pricing-table tbody tr:hover {
    background-color: #f8f9fa;
}

.pricing-table tbody tr:last-child {
    border-bottom: none;
}

.pricing-table td {
    padding: 1.5rem 1rem;
    text-align: center;
    font-size: 1rem;
}

.vehicle-type {
    font-weight: 600;
    color: #1e3a8a;
    background-color: #f1f5f9;
    text-align: left !important;
    padding-left: 2rem !important;
}

.price {
    font-weight: 600;
    color: #059669;
    font-size: 1.1rem;
}

.pricing-note {
    text-align: center;
    padding: 1.5rem;
    background: #f0f9ff;
    border-radius: 10px;
    border-left: 4px solid #3b82f6;
}

.pricing-note p {
    color: #1e40af;
    font-weight: 500;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.pricing-note i {
    color: #3b82f6;
}

.hero {
    text-align: center;
    margin-bottom: 4rem;
    padding: 3rem 2rem;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.hero h2 {
    font-size: 2.5rem;
    color: #1e3a8a;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.hero p {
    font-size: 1.2rem;
    color: #6b7280;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

/* Services Section */
.services {
    margin-bottom: 4rem;
}

.services h3 {
    text-align: center;
    font-size: 2rem;
    color: #1e3a8a;
    margin-bottom: 3rem;
    font-weight: 600;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.service-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #e5e7eb;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.service-card i {
    font-size: 3rem;
    color: #3b82f6;
    margin-bottom: 1rem;
}

.service-card h3,
.service-card h4 {
    font-size: 1.3rem;
    color: #1e3a8a;
    margin-bottom: 1rem;
    font-weight: 600;
}

.service-card p {
    color: #6b7280;
    line-height: 1.6;
}

/* Why Choose Section */
.why-choose {
    margin-bottom: 4rem;
    padding: 3rem 2rem;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.why-choose h2 {
    text-align: center;
    font-size: 2rem;
    color: #1e3a8a;
    margin-bottom: 3rem;
    font-weight: 600;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.why-item {
    text-align: center;
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 15px;
    transition: transform 0.3s ease;
}

.why-item:hover {
    transform: translateY(-5px);
}

.why-item i {
    font-size: 3rem;
    color: #10b981;
    margin-bottom: 1rem;
}

.why-item h3 {
    font-size: 1.3rem;
    color: #1e3a8a;
    margin-bottom: 1rem;
    font-weight: 600;
}

.why-item p {
    color: #6b7280;
    line-height: 1.6;
}

/* Contact Form Section */
.contact-form-section {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin-bottom: 3rem;
}

.contact-form-section h3 {
    text-align: center;
    font-size: 2rem;
    color: #1e3a8a;
    margin-bottom: 1rem;
    font-weight: 600;
}

.contact-form-section > p {
    text-align: center;
    color: #6b7280;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #374151;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e5e7eb;
    border-radius: 10px;
    font-size: 1rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.submit-btn {
    width: 100%;
    background: linear-gradient(135deg, #3b82f6 0%, #1e3a8a 100%);
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(59, 130, 246, 0.3);
}

.submit-btn:active {
    transform: translateY(0);
}

/* Footer */
.footer {
    background: #1e3a8a;
    color: white;
    padding: 2rem 0;
    margin-top: 4rem;
}

.footer-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3rem;
    text-align: center;
    flex-wrap: wrap;
}

.footer-logo {
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-contact h4 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #ffffff;
}

.footer-contact p {
    color: #e5e7eb;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.footer-contact i {
    color: #3b82f6;
}

/* WhatsApp Float Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25d366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    z-index: 1000;
    animation: pulse 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
    color: white;
}

@keyframes pulse {
    0% {
        box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    }
    50% {
        box-shadow: 0 4px 12px rgba(37, 211, 102, 0.8);
    }
    100% {
        box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .logo-emblem {
        width: 100px;
        height: 100px;
    }
    
    .banner-content h1 {
        font-size: 1.2rem;
    }
    
    .banner-content h2 {
        font-size: 2.2rem;
    }
    
    .banner-content h3 {
        font-size: 1.2rem;
    }
    
    .banner-content p {
        font-size: 1rem;
    }
    
    .hero h1,
    .hero h2 {
        font-size: 2rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .advantages {
        padding: 2rem 1rem;
    }
    
    .advantages h2 {
        font-size: 2rem;
    }
    
    .advantages-grid {
        grid-template-columns: 1fr;
    }
    
    .advantage-item {
        padding: 2rem 1.5rem;
    }
    
    .advantage-icon {
        font-size: 3rem;
    }
    
    .pricing-section {
        padding: 2rem 1rem;
    }
    
    .pricing-section h2 {
        font-size: 2rem;
    }
    
    .pricing-table th,
    .pricing-table td {
        padding: 1rem 0.5rem;
        font-size: 0.9rem;
    }
    
    .vehicle-type {
        padding-left: 1rem !important;
    }
    
    .contact-form-section {
        padding: 2rem 1rem;
    }
    
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .header {
        padding: 1.5rem 0;
    }
    
    .logo-emblem {
        width: 80px;
        height: 80px;
    }
    
    .top-banner {
        padding: 2rem 1rem;
    }
    
    .banner-content h1 {
        font-size: 1rem;
    }
    
    .banner-content h2 {
        font-size: 1.8rem;
    }
    
    .banner-content h3 {
        font-size: 1rem;
    }
    
    .banner-content p {
        font-size: 0.9rem;
    }
    
    .advantages {
        padding: 1.5rem 1rem;
    }
    
    .advantages h2 {
        font-size: 1.8rem;
    }
    
    .advantage-item {
        padding: 1.5rem 1rem;
    }
    
    .advantage-icon {
        font-size: 2.5rem;
    }
    
    .advantage-item h3 {
        font-size: 1.2rem;
    }
    
    .advantage-item p {
        font-size: 0.9rem;
    }
    
    .pricing-section {
        padding: 1.5rem 1rem;
    }
    
    .pricing-section h2 {
        font-size: 1.8rem;
    }
    
    .pricing-table th,
    .pricing-table td {
        padding: 0.8rem 0.3rem;
        font-size: 0.8rem;
    }
    
    .vehicle-type {
        padding-left: 0.8rem !important;
        font-size: 0.8rem;
    }
    
    .price {
        font-size: 0.9rem;
    }
    
    .pricing-note {
        padding: 1rem;
    }
    
    .pricing-note p {
        font-size: 0.9rem;
    }
    
    .contact-form-section {
        padding: 1.5rem 1rem;
    }
}

/* Loading and Success States */
.loading {
    opacity: 0.7;
    pointer-events: none;
}

.success-message {
    background: #10b981;
    color: white;
    padding: 1rem;
    border-radius: 10px;
    margin-bottom: 1rem;
    text-align: center;
    display: none;
}

.error-message {
    background: #ef4444;
    color: white;
    padding: 1rem;
    border-radius: 10px;
    margin-bottom: 1rem;
    text-align: center;
    display: none;
}
