/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
}

.container {
    max-width: 1200px !important;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header-left {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.logo h1 {
    font-size: 1.8rem;
    font-weight: 700;
    background: linear-gradient(135deg, #3B82F6, #F59E0B);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.contact-info {
    display: flex;
    gap: 1.5rem;
}

.contact-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    color: #64748B;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.contact-link:hover {
    color: #3B82F6;
}

.contact-link i {
    color: #3B82F6;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.social-links {
    display: flex;
    gap: 0.75rem;
}

.social-link {
    color: #9CA3AF;
    font-size: 1.1rem;
    transition: color 0.3s ease;
    text-decoration: none;
}

.social-link:hover {
    color: #3B82F6;
}

.whatsapp-btn {
    background: #10B981;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: background 0.3s ease;
}

.whatsapp-btn:hover {
    background: #059669;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 90vh;
    /* background: linear-gradient(135deg, #3B82F6, #1E40AF, #1E3A8A), url('https://images.unsplash.com/photo-1469474968028-56623f02e42e?ixlib=rb-4.0.3&ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&auto=format&fit=crop&w=1920&h=1080'); */
    background: linear-gradient(135deg, #111111, #00000062, #00000026), url(../assets/img/hero_bg.webp);
    display: flex;
    background-size: cover;
    background-position: center ;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-text {
    color: white;
}

.hero-text h1 {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.hero-text .highlight {
    color: #FCD34D;
}

.hero-text p {
    font-size: 1.2rem;
    color: #DBEAFE;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
}

@media only screen and (max-width: 600px) {
    .hero {
        height: 460px;
        min-height: 460px;
    }
    
}

.btn {
    padding: 0.875rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: #F59E0B;
    color: #1F2937;
}

.btn-primary:hover {
    background: #D97706;
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background: white;
    color: #3B82F6;
}

.btn-sm {
    padding: 0.5rem 1.5rem;
    font-size: 0.9rem;
}

.btn-full {
    width: 100%;
    justify-content: center;
}

/* Booking Form */
.booking-form {
    margin-left: auto;
    margin-right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 1.5rem;
    padding: 2rem;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.form-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.form-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1F2937;
    margin-bottom: 0.5rem;
}

.form-header p {
    color: #6B7280;
}

.service-toggle {
    display: flex;
    background: #F3F4F6;
    border-radius: 0.75rem;
    padding: 0.25rem;
    margin-bottom: 1.5rem;
}

.toggle-btn {
    flex: 1;
    padding: 0.75rem 1rem;
    border: none;
    background: transparent;
    border-radius: 0.5rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #6B7280;
}

.toggle-btn.active {
    background: #3B82F6;
    color: white;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 500;
    color: #374151;
    margin-bottom: 2px;
    font-size: 0.9rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 10px 15px;
    border: 1px solid #D1D5DB;
    border-radius: 0.5rem;
    font-size: 0.9rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.form-group select{
    padding: 13px 15px;
}

.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);
}

/* Section Styles */
section {
    padding: 3rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1F2937;
}

.section-header p {
    font-size: 1.1rem;
    color: #6B7280;
    max-width: 600px;
    margin: 0 auto;
}

/* How It Works */
.how-it-works {
    background: white;
}


.step-card {
    text-align: center;
    padding: 1rem;
}

.step-icon {
    width: 5rem;
    height: 5rem;
    background: #DBEAFE;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: #3B82F6;
    transition: all 0.3s ease;
}

.step-card:hover .step-icon {
    background: #3B82F6;
    color: white;
    transform: scale(1.1);
}

.step-card h3 {
    font-size: 22px;
    font-weight: 600;
    color: #1F2937;
    margin-bottom: 5px;
}

.step-card p {
    color: #6B7280;
    line-height: 1.6;
    font-size: 15px;
}

/* Cars Section */
.cars-section {
    background: #F8FAFC;
}

.cars-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.car-card {
    background: white;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.car-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.car-image {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
}

.car-image img {
    width: 100%;
    height: 230px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.car-card:hover .car-image img {
    transform: scale(1.1);
}

.car-badge {
    font-size: 12px !important;
    position: absolute;
    top: 1rem;
    left: 1rem;
    padding: 6px 15px;
    letter-spacing: 1px;
    border-radius: 50px;
    font-weight: 600;
}

.car-badge.popular {
    background: #3B82F6;
    color: white;
}

.car-badge.economy {
    background: #F59E0B;
    color: #1F2937;
}

.car-badge.family {
    background: #10B981;
    color: white;
}

.car-badge.premium {
    background: #8B5CF6;
    color: white;
}

.car-badge.group {
    background: #EF4444;
    color: white;
}

.car-badge.luxury {
    background: #F59E0B;
    color: #1F2937;
}

.car-info {
    padding: 1.5rem;
}

.car-info h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1F2937;
    margin-bottom: 0.5rem;
}

.car-info p {
    color: #6B7280;
    margin-bottom: 5px;
    font-size: 13px;
}

.car-features {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
    color: #6B7280;
}

.car-features span {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    font-size: 13px;
}

.car-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.car-price .price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #3B82F6;
}

.price-label {
    color: #6B7280;
    margin-left: 0.25rem;
}

/* Tours Section */
.tours-section {
    background: white;
}

.tours-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.tour-card {
    position: relative;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.tour-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.tour-image {
    position: relative;
}

.tour-image img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.tour-card:hover .tour-image img {
    transform: scale(1.1);
}

.tour-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    display: flex;
    align-items: end;
}

.tour-content {
    padding: 1.5rem;
    color: white;
    width: 100%;
}

.tour-content h3 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 0px;
}

.tour-content p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 5px;
    font-size: 14px;
}

.tour-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.tour-price {
    font-size: 15px;
    font-weight: 600;
}

/* Services Section */
.services-section {
    background: #F8FAFC;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.service-card {
    text-align: center;
}

.service-icon {
    width: 4rem;
    height: 4rem;
    background: #DBEAFE;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.5rem;
    color: #3B82F6;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    background: #3B82F6;
    color: white;
    transform: scale(1.1);
}

.service-card h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1F2937;
    margin-bottom: 5px;
}

.service-card p {
    color: #6B7280;
    line-height: 1.6;
    font-size: 15px;
}

.tours-section .btn{
    padding: 8px 20px;
    font-size: 14px;
}

/* Testimonials */
.testimonials-section {
    background: white;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background: #F8FAFC;
    padding: 2rem;
    border-radius: 1rem;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.testimonial-header {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
}

.testimonial-header img {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 1rem;
}

.testimonial-info h4 {
    font-weight: 600;
    color: #1F2937;
    margin-bottom: 0.25rem;
}

.stars {
    color: #F59E0B;
    font-size: 14px;
}

.testimonial-card p {
    color: #6B7280;
    font-style: italic;
    line-height: 1.6;
}

/* About Section */
.about-section {
    background: #F8FAFC;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.about-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1F2937;
    margin-bottom: 1.5rem;
}

.about-text p {
    color: #6B7280;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 14px;
}


.stat-card {
    text-align: center;
}

.stat-number {
    font-size: 25px;
    font-weight: 700;
    color: #3B82F6;
    margin-bottom:5px;
}

.stat-label {
    color: #6B7280;
    font-size: 14px;
}

.about-image {
    position: relative;
}

.about-image img {
    width: 100%;
}

/* Contact Section */
.contact-section {
    background: white;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.contact-icon {
    width: 3rem;
    height: 3rem;
    background: #DBEAFE;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: #3B82F6;
    flex-shrink: 0;
}

.contact-details h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1F2937;
    margin-bottom: 5px;
}

.contact-details p,
.contact-details a {
    color: #6B7280;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 14px;
}

.contact-details a:hover {
    color: #3B82F6;
}

.contact-form-wrapper {
    background: #F8FAFC;
    padding: 2rem;
    border-radius: 1rem;
}

.contact-form-wrapper h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1F2937;
    margin-bottom: 1.5rem;
}

.contact-form .form-grid {
    grid-template-columns: 1fr 1fr;
}
.error-msg{
    font-size: 12px !important;
}
/* Footer */
.footer {
    background: #1f2937f5;
    color: white;
    padding: 3rem 0 1.5rem;
}

.footer-content {
    padding: 0 1rem 2rem;
}

.footer-section h3 {
    font-size: 1.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #3B82F6, #F59E0B);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

.footer-section h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.footer-section p {
    color: #D1D5DB;
    line-height: 1.6;
    margin-bottom: 1rem;
    font-size: 14px;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
    font-size: 14px;
    color: #D1D5DB;
    line-height: 1.5rem;
}

.footer-section ul li a {
    color: #D1D5DB;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 14px;
}

.footer-section ul li a:hover {
    color: white;
}

.footer-section ul li i {
    margin-right: 0.5rem;
    width: 1rem;
}

.footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 2rem;
    text-align: center;
    color: #9CA3AF;
}

/* Fixed Action Buttons */
.fixed-actions {
    position: fixed;
    bottom: 1.5rem;
    left: 1.5rem;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.fixed-btn {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    animation: float 3s ease-in-out infinite;
}

.fixed-btn:hover {
    transform: translateY(-2px) scale(1.1);
}

.fixed-btn.whatsapp {
    background: #25D366;
    color: white;
}

.fixed-btn.phone {
    background: #3B82F6;
    color: white;
    animation-delay: 1.5s;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    animation: fadeIn 0.3s ease;
}

.modal-content {
    background-color: white;
    margin: 15% auto;
    padding: 2rem;
    border-radius: 1rem;
    width: 90%;
    max-width: 500px;
    text-align: center;
    position: relative;
    animation: slideIn 0.3s ease;
}

.close {
    color: #aaa;
    float: right;
    font-size: 2rem;
    font-weight: bold;
    position: absolute;
    right: 1rem;
    top: 1rem;
    cursor: pointer;
}

.close:hover {
    color: #000;
}

.modal-icon {
    font-size: 4rem;
    color: #10B981;
    margin-bottom: 1rem;
}

.modal-content h3 {
    font-size: 1.5rem;
    color: #1F2937;
    margin-bottom: 1rem;
}

.modal-content p {
    color: #6B7280;
}

/* Animations */
@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 1050px)  {
    .container{
        width: 95% !important;
        margin: auto;
    }
    .hero-text h1{
        font-size: 3rem;
    }
    .hero-text p{
        font-size: 15px;
    }
    .btn{
        padding: 10px 18px;
        font-size: 14px;
    }
    .section-header h2{
        font-size: 2rem;
    }
    .section-header p{
        font-size: 15px;
    }
    
}



/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    .header-content {
        gap: 1rem;
        text-align: center;
    }
    
    .header-content .contact-info {
        display: none;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .hero-text h1 {
        font-size: 2.5rem;
    }
    
    .hero-buttons .btn{
        padding: 10px 20px;
        font-size: 14px;
    }
    
    .booking-form {
        margin-top: 0rem;
    }
    
    .form-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-form .form-grid {
        grid-template-columns: 1fr;
    }
    
    .steps-grid,
    .cars-grid,
    .tours-grid,
    .services-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .about-content,
    .contact-content {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    
    .section-header h2 {
        font-size: 2rem;
        margin-bottom: 0;
    }
    
    .about-text h2 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    section {
        padding: 3rem 0;
    }
    
    .hero-text h1 {
        font-size: 2.2rem;
        margin-bottom: 10px;
    }
    .hero-text p{
        font-size: 15px;
        margin-bottom: 15px;
    }
    
    .booking-form {
        padding: 1.5rem;
    }
    
    .car-card,
    .tour-card {
        margin: 0 10px;
    }
    
    .fixed-actions {
        bottom: 1rem;
        right: 1rem;
    }
    
    .fixed-btn {
        width: 3rem;
        height: 3rem;
        font-size: 1.1rem;
    }
    
    .modal-content {
        margin: 20% auto;
        padding: 1.5rem;
    }
    .how-it-works{
        margin-top: 415px;
        
    }
    .section-header p{
        font-size: 15px;
    }
    .step-icon{
        margin-bottom: 0.5rem;
    }
    .section-header h2{
        line-height: 1.4em;
    }
    .car-image img{
        height: 200px;
    }
    .about-image img{
        margin-top: -50px;
        margin-left: -20px;
    } 
}
#form-response,
#contact_form_response{
    font-size: 13px !important;
}

.policy_pages{
    margin: 50px auto !important;
}
.policy_pages p{
    color: #6B7280;
    font-size: 14px;
    line-height: 1.4em;
    margin-bottom: 7px;
}
.policy_pages ul{
    color: #6B7280;
    font-size: 14px;
    line-height: 1.4em;
    margin-left: 25px;
    list-style: disc;
    font-weight: 400;
}
.policy_pages ul li strong{
    color: #1a1919;
}
.policy_pages h3{
    font-size: 20px;
    margin: 20px 0 10px;
    font-weight: 600;
}