/* Reset and Variables */
:root {
    --primary-color: #000000;
    --secondary-color: #FFCC05;
    --yellow: #FFCC05;
    --text-color: #333333;
    --background-color: #F2F2F2;
}

body {
    font-family: 'Satoshi', sans-serif;
    background-color: var(--background-color);
    margin: 0;
    padding: 0;
}

/* Grid Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
.header {
    position: absolute;
    width: 100%;
    top: 0;
    background: var(--background-color);
    z-index: 1000;
    padding: 1.2rem 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 4rem;
    position: relative;
}

.logo img {
    height: 30px;
    width: auto;
}

/* For larger screens, we can make it even bigger */
@media screen and (min-width: 1024px) {
    .logo img {
        height: 40px;
    }
}

/* Hamburger Menu Styles */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    padding: 4px;
    z-index: 2000; /* Increased z-index */
}

.hamburger span {
    display: block;
    width: 25px;
    height: 2px;
    background-color: var(--primary-color);
    transition: all 0.3s ease;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

/* Mobile Menu Active State */
.nav-links.active {
    transform: translateX(0) !important;
    opacity: 1 !important;
    visibility: visible !important;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Additional style for body when menu is open */
body.no-scroll {
    overflow: hidden;
}

.nav-links a {
    color: var(--primary-color);
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
}

.register-btn {
    font-family: 'Satoshi', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    background: var(--yellow);
    color: var(--primary-color);
    border: none;
    padding: 1rem 2rem;
    border-radius: 100px;
    cursor: pointer;
    text-decoration: none;
    
    transition: all 0.3s ease;
}

.register-btn.secondary {
    background: transparent;
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
    text-decoration: none;
}

.register-btn.secondary:hover {
    background: var(--yellow);
    color: var(--primary-color);
    text-decoration: none;
}
/* Hero Section */
.hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    height: 75vh; /* Significantly reduced from 85vh */
    min-height: 450px; /* Reduced minimum height */
    padding-top: 120px;
    padding: 8rem 4rem 4rem;
    background-color: var(--background-color);
    max-width: 1400px;
    margin: 0 auto;
    align-items: center;
    position: relative;
}

.hero-content {
    padding-right: 2rem;
}

.hero-content h1 {
    font-family: 'Satoshi', sans-serif;
    font-size: 4rem;
    font-weight: 700;
    margin-top: -70px;
    line-height: 0.9;
    margin-bottom: 0rem;
    color: var(--primary-color);
    letter-spacing: -0.05em;
    max-width: 650px;
}

.hero-content p {
    font-family: 'Satoshi', sans-serif;
    font-size: 1.4rem;
    font-weight: 400;
    color: #3e3e3e;
    margin-bottom: 2.5rem;
    line-height: 1;
    letter-spacing: -0.01em;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    
}

.hero-image {
    position: relative;
    width: 110%;
    height: 110%;
    display: flex;
    align-items: center;

    justify-content: center;
}

.hero-image img {
    width: 110%;
    height: auto;
    object-fit: contain;
}

/* Services Section Styles */
.services-section {
    background-color: #000;
    color: white;
    padding: 2rem 4rem 4rem;
}

.services-header {
    max-width: 1400px;
    margin: 0 auto 3rem;
    padding: 0;
}

.brand-tag {
    display: inline-block;
    padding: 0.5rem 1rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 100px;
    font-size: 0.9rem;
    margin-bottom: 0rem;
}

.services-header h2 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    margin-top: 1rem;
    line-height: 0.9;
    letter-spacing: -0.05em;
    max-width: 500px;
}

.services-header p {
    line-height: 1.1;
    font-size: 1.2rem;
    font-weight: 400;
    color: #999;
    max-width: 600px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0;
}

.service-card {
    position: relative;
    border-radius: 1rem;
    overflow: hidden;
    aspect-ratio: 16/9;
    text-decoration: none;
    color: white;
}

.service-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.service-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    z-index: 1;
}

.service-card h3 {
    font-size: 2.3rem;
    line-height: 0.9;
    letter-spacing: -0.05em;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: white;
    text-decoration: none;
}

.service-card p {
    color: #ccc;
    font-size: 1rem;
    text-decoration: none;
}

.service-card:hover img {
    transform: scale(1.05);
}

.service-card:hover {
    text-decoration: none;
}

.service-card h3,
.service-card p {
    color: white;
    text-decoration: none;
}

/* Fleet Section Styles */
.fleet-section {
    background-color: var(--background-color);
    padding: 8rem 4rem 4rem;
}

.fleet-header {
    text-align: center;
    max-width: 1400px;
    margin: 0 auto 3rem;
}

.fleet-header h2 {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 0.9;
    letter-spacing: -0.05em;
    margin-bottom: 1rem;
    margin-top: -3rem;
    color: var(--primary-color);
}

.fleet-header p {
    font-size: 1.2rem;
    font-weight: 400;
    color: #3e3e3e;
   
}

.fleet-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    max-width: 1400px;
    margin: 0 auto;
}

.car-card {
    background: #000;
    border-radius: 1rem;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    transition: transform 0.3s ease;
    text-decoration: none;
    color: white;
}

.car-card img {
    width: 100%;
    height: auto;
    margin: 1rem 0;
    margin-left: 0%;
    transform: scale(1.1);
    transition: transform 0.3s ease;
}

.car-card:hover img {
    transform: scale(1.15);
}

.car-card h3 {
    color: white;
    font-size: 2rem;
    font-weight: 500;
    margin-top: 0rem;
    margin-bottom: 0rem;
    z-index: 1;
}

.car-card p {
    color: #999;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    margin-top: 0rem;
    z-index: 1;
}

.car-card .book-now {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 100px;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.car-card:hover {
    transform: translateY(-5px);
    text-decoration: none;
}

.car-card:hover .book-now {
    background: var(--yellow);
    border-color: var(--yellow);
    color: var(--primary-color);
}

/* Commitment Section Styles */
.commitment-section {
    background-color: #F2F2F2; /* Lighter gray background */
    padding: 4rem 4rem 4rem;
    position: relative;
}

.commitment-content {
    max-width: 1400px;
    margin: 0 auto;
    background: #e7e7e7; /* Even lighter gray for content area */
    padding: 4rem;
    border-radius: 2rem;
}

.commitment-content h2 {
    font-size: 3.5rem;
    font-weight: 700;
    letter-spacing: -0.05em;
    margin-bottom: 1rem;
    margin-top: 0rem;
    color: var(--primary-color);
}

.commitment-content > p {
    font-size: 1.2rem;
    font-weight: 400;
    color: #3e3e3e;
    max-width: 800px;
    line-height: 1.3;
    margin-bottom: 4rem;
    opacity: 0.9;
}

/* Stats Grid */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
    margin-top: -3rem;
}

.stat-item h3 {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    letter-spacing: -0.02em;
}

.stat-item p {
    font-size: 1rem;
    font-weight: 600;
    color: #3e3e3e;
    opacity: 0.8;
    margin-top: -0.5rem;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

.feature-item {
    background: #0000000d; /* Light gray background for normal state */
    border-radius: 100px;
    padding: 1rem 1.5rem;
    display: flex;
    border: 1.5px solid #00000085;
    align-items: center;
    gap: 0.75rem;
    transition: all 0.3s ease;
    cursor: pointer;
}

.feature-item p {
    font-size: 1rem;
    font-weight: 500;
    color: var(--primary-color);
}
.feature-icon {
    font-size: 1rem;
}

/* Hover effect */
.feature-item:hover {
    background: var(--yellow);
    transform: translateY(-2px);
}

/* Remove hover effect from first item since it's already yellow */
.feature-item:first-child:hover {
    transform: none;
}

/* Testimonials Section Styles */
.testimonials-section {
    background-color: #000;
    padding: 4rem 4rem;
    color: white;
    text-align: center;
    border-radius: 2rem;
    margin: 4rem;
}

.testimonials-header {
    margin-bottom: 1rem;
}

.testimonials-header h2 {
    font-size: 3.5rem;
    font-weight: 700;
    letter-spacing: -0.05em;
    text-align: center;
    margin-top: 0rem;
    margin-bottom: 1rem;
}

.testimonials-header p {
    font-size: 1.2rem;
    font-weight: 400;
    margin-top: -1rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
}

.testimonials-slider {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.testimonials-track {
    display: flex;
    transition: transform 0.5s ease;
}

.testimonial-card {
    min-width: 100%;
    padding: 0 0rem;
    opacity: 0;
    transition: opacity 0.3s ease;
    display: none;
}

.testimonial-card.active {
    opacity: 1;
    display: block;
}

.testimonial-content {
    max-width: 800px;
    margin: 0 auto;
    min-height: 300px;
    display: flex;
    flex-direction: column;
    justify-content: center;
   
}

.testimonial-text {
    font-size: 1.5rem;
    line-height: 1.4;
    margin: 2rem auto;
    color: white;
    padding: 0 6rem;
}

.testimonial-author h4 {
    font-size: 1.2rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.testimonial-author p {
    font-size: 1rem;
    margin-top: 0;
    color: rgba(255, 255, 255, 0.6);
}

.testimonial-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1rem;
}

.dot {
    width: 2rem;
    height: 3px;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    cursor: pointer;
    padding: 0;
}

.dot.active {
    background: var(--yellow);
}

/* FAQ Section Styles */
.faq-section {
    padding: 8rem 4rem 4rem;
    background-color: EBEBEB;
}

.faq-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.faq-header h2 {
    font-size: 3.5rem;
    font-weight: 600;
    margin-top: -3rem;

    letter-spacing: -0.05em;
    color: var(--primary-color);
    margin-bottom: 0rem;
}

.faq-header p {
    font-size: 1.2rem;
    color: #5b5b5b;
    font-weight: 500;
    margin-top: 0.5rem;
}

.faq-container {
    max-width: 1000px;
    margin: 0 auto;
}

.faq-item {
    border-radius: 1rem;
    margin-bottom: 1rem;
    background: #e0e0e0;
    border: 1px solid #1f1f1f32;
    transition: all 0.3s ease;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    cursor: pointer;
}

.faq-question h3 {
    font-size: 1.4rem;
    font-weight: 500;
    color: var(--primary-color);
}

.faq-icon {
    color: var(--primary-color);
    font-size: 1.7rem;
    font-weight: 300;
    transition: all 0.3s ease;
}

.faq-answer {
    max-height: 0;
    font-size: 1.4rem;
    font-weight: 500;
    overflow: hidden;
    
    transition: all 0.3s ease;
    opacity: 0;
}

.faq-answer p {
    color: #666;
    padding: 0 2rem 1.5rem;
    line-height: 1.6;
    font-size: 1rem;
}

/* Active State */
.faq-item.active {
    background: var(--yellow);
}

.faq-item.active .faq-question h3 {
    color: var(--primary-color);
    font-weight: 500;
}

.faq-item.active .faq-icon {
    color: var(--primary-color);
}

.faq-item.active .faq-answer {
    
    max-height: 300px;
    opacity: 1;
}

.faq-item.active .faq-answer p {
    color: var(--primary-color);
}

/* Hover State for inactive items */
.faq-item:not(.active):hover {
    background: #F0F0F0;
}

/* Booking Section Styles */
.booking-section {
    padding: 6rem 4rem;
}

.booking-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0; /* Remove gap between form and image */
    max-width: 1400px;
    margin: 0 auto;
}

.booking-form {
    background: #000;
    border-radius: 2rem;
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    height: 600px; /* Reduced from 600px */
}

.booking-form h2 {
    font-size: 3rem;
    color: white;
    margin-bottom: 2.5rem;
    font-weight: 600;
    letter-spacing: -0.05em;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.form-group {
    position: relative;
}

.form-group label {
    display: block;
    color: white;
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.form-group input {
    width: 100%;
    padding: 0.5rem 0;
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

/* Modern Select Styling */
.custom-select {
    position: relative;
    width: 100%;
}

select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    width: 100%;
    padding: 0.8rem;
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 1rem;
    cursor: pointer;
}

.select-arrow {
    position: absolute;
    right: 0;
    bottom: 0.8rem;
    color: var(--yellow);
    font-size: 0.7rem;
    pointer-events: none;
    transition: transform 0.3s ease;
}

.select-group select:focus + .select-arrow {
    transform: rotate(180deg);
}

/* Date Input Styling */
.date-group {
    position: relative;
}

.date-input {
    width: 100%;
    padding: 0.5rem 0;
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 0.9rem;
    cursor: pointer;
}

.date-input::-webkit-calendar-picker-indicator {
    opacity: 0;
    position: absolute;
    width: 100%;
    height: 100%;
    cursor: pointer;
}

.date-icon {
    position: absolute;
    right: 0;
    bottom: 0.8rem;
    color: var(--yellow);
    font-size: 0.9rem;
    pointer-events: none;
}

/* Focus States */
.form-group input:focus,
.select-group select:focus,
.date-input:focus {
    border-color: var(--yellow);
    outline: none;
}

/* Hover States */
.custom-select:hover select,
.date-group:hover .date-input {
    border-color: rgba(255, 255, 255, 0.3);
}

/* Select Options Styling */
.select-group select option {
    background: #000;
    color: white;
    padding: 1rem;
}

select option:hover {
    background: var(--yellow);
    color: black;
}

/* Style for the placeholder option */
select option:first-child {
    color: rgba(255, 255, 255, 0.5);
}

/* Remove default date input styling */
input[type="date"]::-webkit-datetime-edit-text,
input[type="date"]::-webkit-datetime-edit-month-field,
input[type="date"]::-webkit-datetime-edit-day-field,
input[type="date"]::-webkit-datetime-edit-year-field {
    color: white;
}

input[type="date"]::-webkit-calendar-picker-indicator {
    background: transparent;
    cursor: pointer;
    position: absolute;
    right: 0;
    top: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
}

/* Placeholder styling for date inputs when empty */
input[type="date"]:invalid {
    color: rgba(255, 255, 255, 0.3);
}

.request-booking {
    font-family: 'Satoshi-Bold', sans-serif;
    font-weight: 700;
    width: 100%;
    padding: 1rem;
    background: var(--yellow);
    border: none;
    border-radius: 1rem;
    color: var(--primary-color);
    font-size: 1rem;
    cursor: pointer;
    margin-top: auto; /* Push button to bottom */
    margin-bottom: 0; /* Remove bottom margin */
}

.request-booking:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 204, 0, 0.3);
}

.booking-image {
    height: 695px; /* Match form height */
    border-radius: 2rem;
    overflow: hidden;
}

.booking-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Footer Styles */
.footer {
    background: #000;
    color: white;
    padding: 0;
}

.footer-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    max-width: 1400px;
    margin: 0 auto;
    gap: 2rem;
    padding: 2rem;
}

.footer-content {
    padding: 3rem 2rem;
}

.footer-content h2 {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1rem;
    letter-spacing: -0.05em;
}

.footer-content > p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 1rem;
    max-width: 400px;
    margin-bottom: 2rem;
}

.footer-info {
    display: grid;
    grid-template-columns: auto auto;
    gap: 3rem;
    margin-bottom: 2rem;
}

.info-block h3 {
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 0.8rem;
    color: white;
}

.info-block p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    line-height: 0.6rem;
    margin-bottom: 0.2rem;
}

.book-spot {
    padding: 0.7rem 1.8rem;
    font-size: 0.85rem;
}

/* Footer Map Styles */
.footer-map {
    position: relative;
    height: 470px;
    margin-top: 2.5rem;
    border-radius: 2rem;
    overflow: hidden;
}

.footer-map iframe {
    width: 100%;
    height: 100%;
    border: none;
    filter: grayscale(100%) contrast(100%);
    pointer-events: none;
}

/* Modern Pin Design with Pulse */
.map-pin {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 1000;
    pointer-events: none;
}

.pin-icon {
    width: 28px; /* Increased from 24px */
    height: 28px; /* Increased from 24px */
    background: var(--yellow);
    border-radius: 8px; /* Increased from 6px to maintain proportion */
    position: relative;
    z-index: 2;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6px; /* Increased from 4px */
}

.pin-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: brightness(0);
}

/* Multiple pulse waves */
.pulse:before,
.pulse:after {
    content: '';
    position: absolute;
    width: 70px;
    height: 70px;
    background: rgba(0, 0, 0, 0.4);
    border-radius: 50%;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.pulse:before {
    animation: pulse 2s infinite;
}

.pulse:after {
    animation: pulse 2s infinite 0.5s;
}

@keyframes pulse {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 1;
    }
    100% {
        transform: translate(-50%, -50%) scale(5);
        opacity: 0;
    }
}

/* Footer Bottom Styles */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.8rem;
}

.custom-message textarea {
    width: 100%;
    padding: 0.8rem;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0.5rem;
    color: white;
    font-size: 1rem;
    resize: none;
}

.custom-message textarea::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

textarea {
    width: 100%;
    padding: 0.8rem;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0.5rem;
    color: white;
    font-size: 1rem;
    resize: none;
}

textarea::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.custom-pin {
    position: relative;
}

.custom-pin .pin-circle {
    width: 40px;
    height: 40px;
    background: #FFD700; /* Bright yellow color */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #fff;
}

.custom-pin .pin-icon {
    width: 24px;
    height: 24px;
}

.custom-pin .pin-pulse {
    background: #FFD700; /* Matching yellow color */
    opacity: 0.4;
}

@keyframes pulse {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.4;
    }
    70% {
        transform: translate(-50%, -50%) scale(2);
        opacity: 0;
    }
    100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0;
    }
}

#map {
    filter: grayscale(1);
}

.footer-content .register-btn {
    display: inline-block;
    margin-bottom: 2rem;
    font-size: 1rem;
    padding: 0.8rem 2rem;
} 