/* Google Fonts */
/* @import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Squada+One&display=swap'); */
@import url('https://fonts.googleapis.com/css2?family=Questrial&display=swap');


* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
    font-family: var(--font-family-2);
}

/* Variables */
:root {
    --main-color: #fa7104;
    --second-color: #e05404;
    --text-color: #060414;
    --container-color: #efe8e0;
    --bg-color: #f7f7f7;
    --text-alter-color: #818181;
    --poppins-font: "Questrial", sans-serif;
    --font-family-2: "Questrial", sans-serif;
}

body {
    color: var(--text-color);
    background: var(--bg-color);
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    width: 100%;
    display: block;
}

section {
    padding: 3rem 0 2rem;
}

/* ========================================
Container
======================================== */
.container {
    max-width: 1300px;
    width: 100%;
    margin: 0 auto;
    padding: 0 16px;
}

/* ========================================
Header & Navbar
======================================== */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
}

.nav {
    width: 100%;
    background: linear-gradient(90deg, #0f172a 0%, #1e293b 100%);
    border-bottom: 2px solid #c9a227;
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 40px;
}


.nav-logo img {
    width: 4rem;
    height: auto;
}

.navbar {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 1.6rem;
    position: static;
    transform: none;
}

.nav-link {
    font-size: 0.88rem;
    color: var(--text-alter-color);
    font-family: var(--poppins-font);
    transition: 0.3s ease;
}

.nav-link:hover {
    color: var(--bg-color);
}

.menu-title {
    color: #fff;
    justify-content: center;
    text-align: center;
    font-size: 0.88rem;
    padding: 0 70px;
}

.menu-toggle {
    display: none;
    font-size: 26px;
    color: #fff;
    cursor: pointer;
}

/* ========================================
   Introduction Section
======================================== */
.intro {
    background-color: #f8f9fb;
    padding: 6rem 10px;
    position: relative;
    overflow: hidden;

    background: url("../images/Background/Intro_Bg2.png") no-repeat;
    background-size: 65%;
    background-position: 90% center;
}

.intro-card.container {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    height: 100%;
}

.intro-text {
    flex: 1;
    position: relative;
    max-width: 550px;
    background: rgba(255, 255, 255, 0.8);
    padding: 20px 30px;
    border-radius: 16px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    color: #fff;
}

.intro-text h1 span {
    color: #ff7a00;
}

.intro-text h1 {
    margin: 1rem 0;
    font-size: 3rem;
    line-height: 1.1;
    color: #0b1d3a;
}

.intro-desc {
    margin: 2rem 0;
    font-size: 1.1rem;
    line-height: 1.5;
    color: #444;
    max-width: 500px;
}

.intro-features {
    list-style: none;
    margin: 2rem 0;
    padding: 0;
}

.intro-features li {
    font-size: 1rem;
    margin-bottom: 10px;
    color: #222;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: transform 0.3s ease, color 0.3s ease;
}

.intro-features li:hover {
    color: #ff7a00;
    transform: translateX(5px);
}

.intro-features i {
    background: linear-gradient(45deg, #25d366, #0a7330);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Buttons */
.cta-btn {
    padding: 13px 2rem;
    font-size: 1rem;
    border-radius: 8px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    font-weight: 600;
    background: #0a7330;
    color: #fff;
    gap: 10px;
    transition: all 0.3s ease;
    backdrop-filter: blur(8px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.cta-btn:hover {
    background: linear-gradient(90deg, #0a7330, #25d366);
    transform: scale(1.05);
}

.cta-btn i {
    transition: transform 0.3s ease;
}

.cta-btn:hover i {
    transform: translateX(5px);
}

.cta-btn.blink {
    animation: blinkPulse 1.2s infinite;
}

.btn-blue {
    background: #0b1d3a;
    /* dark blue */
}

.btn-blue:hover {
    background: linear-gradient(90deg, #0b1d3a, #1e3a8a);
    box-shadow: 0 8px 20px rgba(11, 29, 58, 0.4);
}

.intro-image {
    flex: 1;
}

.intro-image img {
    width: 100%;
    border-radius: 20px;
    padding: 0;
}

/* Flex for forms */
.form-introductions {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 20px;
    width: 60%;
}

/* ========================================
   Animations
======================================== */
@keyframes blinkPulse {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.6;
        transform: scale(1.03);
    }
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

/* Fade-in effect for text */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 1s forwards;
}

.fade-in.delay-1 {
    animation-delay: 0.3s;
}

.fade-in.delay-2 {
    animation-delay: 0.6s;
}

.fade-in.delay-3 {
    animation-delay: 0.9s;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ========================================
   Booking Process Section
======================================== */
.booking-process {
    padding: 2rem 1rem;
    background-color: #f8f9fb;
}

.booking-process .container {
    max-width: 900px;
    margin: 0 auto;
}

.booking-process h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #222;
}

.process-steps {
    list-style: none;
    padding: 0;
    margin: 0;
}

.process-steps li {
    background: #ffffff;
    padding: 1.2rem 1.5rem;
    margin-bottom: 1rem;
    border-radius: 12px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
    position: relative;
    padding-left: 3.5rem;
    font-size: 1rem;
    color: #333;
}

.process-steps li::before {
    content: counter(step);
    counter-increment: step;
    position: absolute;
    left: 1.2rem;
    top: 50%;
    transform: translateY(-50%);
    background: #25D366;
    color: #fff;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
}

.process-steps {
    counter-reset: step;
}

.process-note {
    margin-top: 2rem;
    padding: 1.2rem 1.5rem;
    background: #eef2f7;
    border-left: 5px solid #25D366;
    border-radius: 10px;
    font-size: 0.95rem;
    color: #444;
}

/* ========================================
   Car Selection
======================================== */
.car-category {
    padding: 4rem 1rem;
    background-color: #f8f9fb;
    text-align: center;
}

.car-category h2 {
    font-size: 2rem;
    margin-bottom: 2.5rem;
    color: #0b1d3a;
}

.category-buttons {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 600px;
    margin: 0 auto;
}

.category-buttons a {
    font-size: 1.1rem;
}

.category-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;

    padding: 16px;
    border-radius: 16px;
    font-weight: 600;
    text-decoration: none;

    background: transparent;
    border: 1px solid #fa7104;
    color: #fa7104;

    transition: all 0.3s ease;
}

.category-btn i {
    font-size: 1.1rem;
    opacity: 0.8;
}

.category-btn:hover {
    background: #fa7104;
    color: #fff;
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(11, 29, 58, 0.25);
}

.category-btn:hover i {
    opacity: 1;
}

/* ========================================
   Customer Feedback Section
======================================== */
.customer-feedback {
    position: relative;
    background-size: cover;
    color: #fff;
    padding: 4rem 1rem;
    overflow: hidden;
}

.customer-feedback::before {
    content: "";
    position: absolute;
    inset: 0;
    background: url('../images/Background/Review_bg.jpeg') center/cover no-repeat;
    background-size: cover;
    filter: blur(2px) brightness(0.5);
    z-index: 0;
}

.customer-feedback .feedback-box {
    position: relative;
    z-index: 1;
}

.feedback-box {
    max-width: 900px;
    text-align: center;
}

.feedback-box h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.feedback-box p {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #fff;
    line-height: 1.6;
}

.feedback-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin: 2rem 0;
    flex-wrap: wrap;
}

.feedback-links a {
    padding: 12px 20px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s ease;
    color: #fff;
}

.fb-review {
    background: #1877f2;
}

.fb-review:hover {
    background: #145dbf;
}

.google-review {
    background: #ea4335;
}

.google-review:hover {
    background: #c5221f;
}

.feedback-sign {
    margin-top: 2rem;
    font-size: 0.95rem;
}

/* ========================================
   Social Icons
======================================== */
/* Contact Section Layout */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    /* padding: 2rem; */
}

.contact-info {
    border-right: 1px solid #eee;
    padding-right: 2rem;
}

.contact-info h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.contact-info p {
    margin-bottom: 1rem;
    color: #e5e5e5;
}

.mobile-break {
    display: inline;
}

.contact-details p {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
    color: #e5e5e5;
}

.contact-social {
    text-align: center;
}

.contact-social h3 {
    margin-bottom: 1rem;
}

.contact-btn {
    margin-top: 1.5rem;
    display: inline-block;
}

.information .heading {
    text-align: center;
}

.information .heading h2 {
    font-size: 1.5rem;
}

.information {
    background: linear-gradient(135deg,
            #0f172a 0%,
            #1e3a8a 50%,
            #0b1d3a 100%);
    color: #fff;
    padding: 40px 0;

    position: relative;
    /* overflow: visible; */
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 1.5rem;
}

.social-icons a {
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 55px;
    height: 55px;
    background: #fff;
    border-radius: 50%;
    color: #1877f2;
    font-size: 28px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* Hover animation */
.social-icons a::before {
    content: "";
    position: absolute;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.4s ease, height 0.4s ease;
    z-index: 0;
}

.social-icons a:hover::before {
    width: 120%;
    height: 120%;
}

.social-icons a i {
    position: relative;
    /* to be above the hover effect */
    z-index: 1;
}

/* Specific icon colors */
.fb-icon {
    color: #1877f2;
}

.fb-icon:hover {
    color: #fff;
    background: #145dbf;
}

.tiktok-icon {
    color: #000;
}

.tiktok-icon:hover {
    color: #fff;
    background: #69C9D0;
}

.whatsapp-icon {
    color: #25d366;
}

.whatsapp-icon:hover {
    color: #fff;
    background: #008000;
}

/* Optional: scale up on hover */
.social-icons a:hover {
    transform: scale(1.15);
}

/* ========================================
   More Cars Button
======================================== */
.more-car-btn {
    display: flex;
    justify-content: center;
    margin-top: 50px;
    margin-bottom: 2rem;
}

.others-car-btn {
    background: var(--text-color);
    color: var(--bg-color);
    padding: 12px 24px;
    font-size: 1rem;
    border-radius: 8px;
    transition: 0.3s ease;
}

.others-car-btn:hover {
    background: var(--main-color);
}

/* ========================================
   Reviews Section
======================================== */
.reviews {
    padding: 4rem 0;
    background: #f7f7f7;
    text-align: center;
}

/* Adjust the Elfsight widget inside reviews */
.reviews .elfsight-app-b5a8756a-9d3d-4de1-a82d-8066d04a44d8 {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

/* ========================================
   Footer Bottom
======================================== */

.footer-bottom {
    border-top: 1px solid #222;
    text-align: center;
    padding: 1rem 0;
    font-size: 0.85rem;
    color: #888;
}

/* ========================================
   Booking Form
======================================== */
.booking h2 {
    text-align: center;
    margin-bottom: 2rem;
    color: #fff;
}

.booking h1 {
    text-align: left;
    font-size: 16px;
    margin-bottom: 2rem;
    color: #fff;
}

.booking p {
    text-align: left;
    font-size: 16px;
    margin-bottom: 2rem;
    line-height: 1.5;
    color: #fff;
}

.booking-bg {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;

    background-image: url("../images/Background/Book_Bg.jpeg");
    background-size: cover;
    background-position: center;
}

/* Blur section */
/* .booking-bg::before {
    content: "";
    position: absolute;
    inset: 0;

    backdrop-filter: blur(12px);
    background: rgba(0, 0, 0, 0.55);
    z-index: 1;
} */

.booking.container {
    position: relative;
    z-index: 2;
    max-width: 500px;
    width: 100%;
    padding: 2rem;
}

.booking-card {
    background: rgba(167, 55, 55, 0.12);
    backdrop-filter: blur(14px);
    border-radius: 20px;
    padding: 2rem;

    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.35);
    color: #fff;
}

.booking-card input,
.booking-card select {
    width: 100%;
    padding: 14px;
    border-radius: 10px;
    border: none;
    margin-bottom: 14px;
    font-size: 14px;
}

.booking-card label {
    font-size: 13px;
    margin-bottom: 6px;
    display: block;
}

.booking-card h2 {
    text-align: center;
    margin-bottom: 1.5rem;
}

.booking-card {
    width: 100%;
    margin-top: 1rem;
}

.form-row {
    display: flex;
    gap: 1rem;
}

.form-group {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.form-group input {
    width: 100%;
}

.radio-group {
    display: flex;
    gap: 20px;
    margin-bottom: 2rem;
}

.radio-option {
    display: flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
}

.form-actions .submit-btn,
.form-actions .cancel-btn {
    width: 100%;
    border-radius: 10px;
}

.form-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
    /* margin-top: 0.5rem; */
}

.submit-btn {
    flex: 1;
    text-align: center;
    margin-top: 2rem;
    padding: 14px;
    background: #1da10b;
    color: #fff;
    font-size: 17px;
    transition: 0.3s ease;
}

.cancel-btn {
    flex: 1;
    text-align: center;
    padding: 14px;
    background: #e74c3c;
    color: #fff;
    font-size: 17px;
    transition: 0.3s ease;
}

.cancel-btn:hover {
    background: #c0392b;
}

.booking-note {
    margin-top: 2rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.25);
    font-size: 13px;
}

.booking-note h2 {
    text-align: left;
    font-size: 15px;
    margin-bottom: 18px;
}

.booking-note ul {
    padding-left: 18px;
}

.booking-note li {
    margin-bottom: 6px;
    line-height: 1.1;
}

/* ========================================
   Mobile Size
======================================== */

/* Mobile: up to 768px */
@media (max-width: 768px) {
    .navbar {
        position: absolute;
        top: 60px;
        right: 0;
        width: 100%;
        background: linear-gradient(90deg, #0f172a 0%, #1e293b 100%);
        border-bottom: 2px solid #c9a227;
        flex-direction: column;
        align-items: center;
        gap: 1.2rem;
        padding: 18px 0;

        transform: translateY(-20px);
        opacity: 0;
        pointer-events: none;
        transition: all 0.3s ease;
    }

    .navbar.active {
        transform: translateY(0);
        opacity: 1;
        pointer-events: auto;
    }

    .nav-link {
        font-size: 15px;
        color: #fff;
    }

    .nav {
        align-items: center;
        padding: 8px 16px;
    }

    .nav-logo img {
        width: 3rem;
    }

    .menu-title {
        padding: 0;
    }

    .menu-toggle {
        display: block;
    }

    /* Intro */
    .intro {
        padding: 8rem 10px 8rem;
        background-size: 180%;
        background-position: center;
    }

    .intro-card.container {
        justify-content: center;
    }

    .intro-desc {
        line-height: 1.3;
        margin: 20px 0;
    }

    .intro-text {
        max-width: 90%;
    }

    .intro-text h1 {
        font-size: 1.5rem;
        margin: 2px 0;
    }

    .intro-text p {
        font-size: 1.2rem;
    }

    .intro-features li {
        font-size: 1rem;
    }

    .cta-btn {
        max-width: 300px;
        font-size: 1rem;
        justify-content: center;
    }

    .form-introductions {
        width: 80%;
    }

    /* Booking Process */
    .booking-process {
        padding: 6px 2rem 1rem;
    }

    .booking-process h2 {
        font-size: 1.5rem;
    }

    .process-steps li {
        font-size: 1rem;
        padding: 1rem 1.2rem 1rem 3.5rem;
    }

    .process-note p {
        font-size: 0.80rem;
    }

    /* Car Selection */
    .car-category {
        padding: 3rem 2rem 4rem;
    }

    .car-category h2 {
        font-size: 1.5rem;
    }

    .category-buttons a {
        font-size: 1rem;
    }

    /* Customer Feedback */
    .customer-feedback {
        padding: 3rem 2rem 2rem;
    }

    .customer-feedback h2 {
        font-size: 1.5rem;
    }

    .customer-feedback p {
        font-size: 1rem;
    }

    .feedback-links a {
        font-size: 1rem;
    }

    /* Contact */
    .contact-info h2 {
        font-size: 1.5rem;
    }

    .contact-info p {
        font-size: 1rem;
    }

    .contact-wrapper { 
        grid-template-columns: 1fr; 
        text-align: center; 
    }

    .contact-info { 
        border-right: none; 
        padding-right: 0;
    }

    .contact-social h3 {
        font-size: 1.5rem;
    }

    .contact-details p { 
        justify-content: center; 
    }

    .social-icons a{
        width: 50px; 
        height: 50px;
    }

    .social-icons {
        gap: 15px;
    }

    .mobile-break {
        display: block;
        margin-top: 5px;
    }
}

/* Mobile Phones: up to 430px */
@media (max-width: 430px) {
    .navbar a {
        font-size: 0.7rem;
    }

    .reviews {
        padding: 1.5rem 0.5rem;
    }

    .nav {
        padding: 8px 12px;
    }

    .nav-link {
        font-size: 0.75rem;
    }

    .nav-icons .bx {
        font-size: 18px;
    }

    /* Intro */
    .intro {
        padding: 6rem 9px 5rem;
        background-size: 160%;
    }

    .intro-desc {
        line-height: 1.3;
        margin: 20px 0;
    }

    .intro-text {
        max-width: 90%;
    }

    .intro-text h1 {
        font-size: 1.2rem;
        margin: 2px 0;
    }

    .intro-text p {
        font-size: 1rem;
    }

    .intro-features li {
        font-size: 0.85rem;
    }

    .cta-btn {
        max-width: 300px;
        font-size: 13px;
        justify-content: center;
    }

    .form-introductions {
        width: 90%;
    }

    /* Booking Process */
    .booking-process {
        padding: 1rem 2rem 2rem;
    }

    .booking-process h2 {
        font-size: 1.2rem;
    }

    .process-steps li {
        font-size: 0.90rem;
        padding: 1rem 1.2rem 1rem 3.5rem;
    }

    .process-note p {
        font-size: 0.80rem;
    }

    /* Car Selection */
    .car-category {
        padding: 1rem 2rem 2rem;
    }

    .car-category h2 {
        font-size: 1.2rem;
    }

    .category-buttons a {
        font-size: 0.90rem;
    }

    /* Customer Feedback */
    .customer-feedback {
        padding: 3rem 2rem 2rem;
    }

    .customer-feedback h2 {
        font-size: 1.2rem;
    }

    .customer-feedback p {
        font-size: 0.90rem;
    }

    .feedback-links a {
        font-size: 0.90rem;
    }

    /* Contact */
    .contact-info h2 {
        font-size: 1.2rem;
    }

    .contact-info p {
        font-size: 0.90rem;
    }

    .contact-social h3 {
        font-size: 1.2rem;
    }

    .mobile-break {
        display: block;
        margin-top: 5px;
    }

}