/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Main Hero Section */
.hero-main {
    min-height: 100vh;
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 50%, #4a90e2 100%);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    padding: 40px 20px;
}

.hero-center {
    animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Logo Main */
.logo-main {
    margin-bottom: 3rem;
}

.logo-main i {
    font-size: 4rem;
    color: #FFD700;
    margin-bottom: 1rem;
    display: block;
}

.logo-main h1 {
    font-size: 3.5rem;
    font-weight: 800;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.tagline {
    font-size: 1.2rem;
    font-weight: 300;
    color: #FFD700;
    letter-spacing: 1px;
}

/* Driver Info */
.driver-info {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin: 3rem 0;
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 20px;
    backdrop-filter: blur(10px);
}

.driver-photo {
    position: relative;
}

.driver-photo img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #FFD700;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.experience-badge {
    position: absolute;
    bottom: -5px;
    right: -5px;
    background: #FFD700;
    color: #1e3c72;
    padding: 5px 10px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 700;
}

.driver-details h2 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    color: #FFD700;
}

.driver-details p {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    opacity: 0.9;
}

.credentials {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

.credentials span {
    background: rgba(255, 215, 0, 0.2);
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 5px;
}

.credentials i {
    color: #FFD700;
}

/* Main CTA */
.main-cta {
    margin-top: 3rem;
}

.main-cta h3 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    font-weight: 600;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.cta-primary {
    background: #FFD700;
    color: #1e3c72;
    padding: 1.5rem 2rem;
    border-radius: 15px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 1rem;
    font-weight: 700;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3);
    min-width: 250px;
    justify-content: center;
}

.cta-primary:hover {
    background: #FFC107;
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.5);
    color: #1e3c72;
}

.cta-primary i {
    font-size: 1.5rem;
}

.cta-text {
    font-size: 1.1rem;
    display: block;
}

.phone-number {
    font-size: 1.3rem;
    font-weight: 800;
    display: block;
}

.cta-secondary {
    background: #25D366;
    color: white;
    padding: 1.5rem 2rem;
    border-radius: 15px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.3);
}

.cta-secondary:hover {
    background: #128C7E;
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(37, 211, 102, 0.5);
    color: white;
}

.cta-secondary i {
    font-size: 1.5rem;
}

.response-time {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 1rem;
    color: #FFD700;
    font-weight: 500;
}

.response-time i {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

/* Quick Services */
.quick-services {
    padding: 4rem 0;
    background: white;
}

.quick-services h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #1e3c72;
    margin-bottom: 1rem;
    font-weight: 700;
}

.services-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.services-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.service-item {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.service-item:hover {
    background: white;
    border-color: #FFD700;
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.service-item i {
    font-size: 3rem;
    color: #1e3c72;
    margin-bottom: 1rem;
}

.service-item h3 {
    font-size: 1.5rem;
    color: #1e3c72;
    margin-bottom: 1rem;
    font-weight: 600;
}

.service-item p {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

.service-call {
    background: #FFD700;
    color: #1e3c72;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.service-call:hover {
    background: #FFC107;
    transform: scale(1.05);
    color: #1e3c72;
}

/* Service Locations */
.service-locations {
    margin: 1rem 0;
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.service-locations span {
    font-size: 0.9rem;
    color: #666;
    padding: 0.2rem 0;
}

/* Service Coverage */
.service-coverage {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 3rem;
    border-radius: 20px;
    margin-top: 2rem;
}

.service-coverage h3 {
    text-align: center;
    font-size: 2rem;
    color: #1e3c72;
    margin-bottom: 2rem;
    font-weight: 700;
}

.coverage-areas {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.area-group {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.area-group h4 {
    color: #1e3c72;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 600;
    text-align: center;
}

.area-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.area-list span {
    background: #FFD700;
    color: #1e3c72;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    text-align: center;
}

.coverage-note {
    background: #1e3c72;
    color: white;
    padding: 1.5rem;
    border-radius: 15px;
    display: flex;
    align-items: center;
    gap: 1rem;
    text-align: center;
    justify-content: center;
}

.coverage-note i {
    color: #FFD700;
    font-size: 1.2rem;
}

.coverage-note p {
    margin: 0;
    font-size: 1.1rem;
}

.coverage-note strong {
    color: #FFD700;
}

/* Why Choose */
.why-choose {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.why-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: start;
}

.why-text h2 {
    font-size: 2.5rem;
    color: #1e3c72;
    margin-bottom: 2rem;
    font-weight: 700;
}

.reasons {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.reason {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background: white;
    padding: 1.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.reason i {
    font-size: 2rem;
    color: #FFD700;
    margin-top: 0.5rem;
}

.reason h4 {
    color: #1e3c72;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.reason p {
    color: #666;
    line-height: 1.5;
}

/* Testimonial Box */
.testimonial-box {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.testimonial-content {
    background: white;
    padding: 1.5rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    position: relative;
}

.testimonial-content::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 20px;
    font-size: 4rem;
    color: #FFD700;
    line-height: 1;
}

.stars {
    display: flex;
    gap: 3px;
    margin-bottom: 1rem;
}

.stars i {
    color: #FFD700;
    font-size: 1.1rem;
}

.testimonial-content blockquote {
    font-style: italic;
    color: #444;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.testimonial-content cite {
    color: #1e3c72;
    font-weight: 600;
    font-style: normal;
}

/* Final CTA */
.final-cta {
    padding: 4rem 0;
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    color: white;
    text-align: center;
}

.final-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.final-cta p {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    opacity: 0.9;
}

.contact-options {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.contact-option {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 1.5rem 2rem;
    border-radius: 15px;
    text-decoration: none;
    color: white;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    min-width: 250px;
}

.contact-option:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-5px);
    color: white;
}

.contact-option.primary {
    background: #FFD700;
    color: #1e3c72;
}

.contact-option.primary:hover {
    background: #FFC107;
    color: #1e3c72;
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.contact-option.primary .contact-icon {
    background: #1e3c72;
    color: #FFD700;
}

.contact-icon.whatsapp {
    background: #25D366;
    color: white;
}

.contact-info {
    text-align: left;
}

.contact-label {
    display: block;
    font-size: 0.9rem;
    opacity: 0.8;
}

.contact-value {
    display: block;
    font-size: 1.2rem;
    font-weight: 700;
}

.availability {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 1.1rem;
    color: #FFD700;
    font-weight: 500;
}

/* Footer */
.footer {
    background: #1e3c72;
    color: white;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-main h3 {
    color: #FFD700;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.footer-main p {
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-contact a {
    color: #FFD700;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-contact span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    opacity: 0.9;
}

.footer-services h4 {
    color: #FFD700;
    margin-bottom: 1rem;
}

.footer-services ul {
    list-style: none;
}

.footer-services li {
    padding: 0.3rem 0;
    opacity: 0.9;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0.8;
}

/* Floating Call Button */
.floating-call {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
}

.floating-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: #FFD700;
    color: #1e3c72;
    padding: 1rem 1.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.4);
    transition: all 0.3s ease;
    animation: bounce 2s infinite;
}

.floating-btn:hover {
    background: #FFC107;
    transform: scale(1.1);
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.6);
    color: #1e3c72;
}

.floating-btn i {
    font-size: 1.2rem;
}

.floating-text {
    font-size: 0.9rem;
    letter-spacing: 1px;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }

    .logo-main h1 {
        font-size: 2.5rem;
    }

    .logo-main i {
        font-size: 3rem;
    }

    .driver-info {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .driver-photo img {
        width: 100px;
        height: 100px;
    }

    .driver-details h2 {
        font-size: 1.5rem;
    }

    .credentials {
        justify-content: center;
    }

    .main-cta h3 {
        font-size: 1.4rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .cta-primary,
    .cta-secondary {
        min-width: 280px;
    }

    .quick-services h2 {
        font-size: 2rem;
    }

    .services-row {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .service-coverage {
        padding: 2rem 1.5rem;
    }

    .service-coverage h3 {
        font-size: 1.8rem;
    }

    .coverage-areas {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .area-group {
        padding: 1.5rem;
    }

    .coverage-note {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }

    .coverage-note p {
        font-size: 1rem;
    }

    .why-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .why-text h2 {
        font-size: 2rem;
    }

    .testimonial-box {
        order: -1;
    }

    .final-cta h2 {
        font-size: 2rem;
    }

    .final-cta p {
        font-size: 1rem;
    }

    .contact-options {
        flex-direction: column;
        align-items: center;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .floating-btn {
        padding: 0.8rem 1.2rem;
    }

    .floating-text {
        display: none;
    }
}

@media (max-width: 480px) {
    .hero-content {
        padding: 20px 10px;
    }

    .logo-main h1 {
        font-size: 2rem;
        letter-spacing: 1px;
    }

    .tagline {
        font-size: 1rem;
    }

    .driver-info {
        padding: 1.5rem;
    }

    .main-cta h3 {
        font-size: 1.2rem;
    }

    .cta-primary,
    .cta-secondary {
        min-width: 100%;
        padding: 1.2rem;
    }

    .phone-number {
        font-size: 1.1rem;
    }

    .service-item {
        padding: 1.5rem;
    }

    .reason {
        padding: 1rem;
    }

    .reason i {
        font-size: 1.5rem;
    }

    .testimonial-content {
        padding: 1rem;
    }

    .contact-option {
        min-width: 100%;
        padding: 1.2rem;
    }
}