:root {
    --bg-color: #0B0B0D;
    --card-bg: #16181D;
    --text-color: #F5F5F2;
    --text-muted: #B8BDC7;
    --accent-color: #C9A227;
    --accent-hover: #E0BE4A;
    --border-color: #2A2E36;
    --white: #FFFFFF;
    
    --font-serif: 'Josefin Sans', sans-serif;
    --font-sans: 'Josefin Sans', sans-serif;
    
    --container-width: 1200px;
    --section-padding: 100px 0;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: var(--font-sans);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: var(--section-padding);
    position: relative;
    overflow: hidden;
}

.bg-alt {
    background-color: var(--card-bg);
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%232A2E36' fill-opacity='0.1'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    position: relative;
    overflow: hidden;
}

.bg-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 15rem;
    font-family: var(--font-serif);
    font-weight: 900;
    color: var(--white);
    opacity: 0.02;
    pointer-events: none;
    white-space: nowrap;
    z-index: 1;
}

h1, h2, h3, h4 {
    font-family: var(--font-serif);
    font-weight: 700;
    letter-spacing: 0.02em;
}

.section-title {
    text-align: center;
    font-size: clamp(2rem, 8vw, 3.5rem);
    margin-bottom: 20px;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    line-height: 1.2;
}

.section-subtitle {
    text-align: center;
    color: var(--text-muted);
    font-size: 1.2rem;
    margin-bottom: 50px;
}

.text-accent {
    color: var(--accent-color);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px 30px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
    font-family: var(--font-sans);
    text-align: center;
}

.btn-primary {
    background-color: var(--accent-color);
    color: var(--bg-color);
}

.btn-primary:hover {
    background-color: var(--accent-hover);
}

.btn-secondary {
    background-color: transparent;
    border: 2px solid var(--accent-color);
    color: var(--accent-color);
}

.btn-secondary:hover {
    background-color: var(--accent-color);
    color: var(--bg-color);
}

.btn-whatsapp {
    background-color: #25D366;
    color: var(--white);
}

.btn-whatsapp:hover {
    background-color: #128C7E;
}

.w-full {
    width: 100%;
}

#services {
    background: linear-gradient(rgba(22, 24, 29, 0.95), rgba(22, 24, 29, 0.95)), url('interior.png') center/cover no-repeat;
}

#why-choose-us {
    background: linear-gradient(rgba(11, 11, 13, 0.9), rgba(11, 11, 13, 0.9)), url('hero.png') center/fixed no-repeat;
}
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(11, 11, 13, 0.95);
    border-bottom: 1px solid var(--border-color);
    padding: 20px 0;
    transition: padding 0.3s ease;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    text-decoration: none;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-muted);
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--accent-color);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-menu-toggle span {
    display: block;
    width: 25px;
    height: 2px;
    background-color: var(--white);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(rgba(11, 11, 13, 0.7), rgba(11, 11, 13, 0.7)), url('hero.png') center/cover no-repeat;
    background-attachment: fixed;
    padding-top: 100px;
    padding-bottom: 50px;
    position: relative;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(11, 11, 13, 0.95) 0%, rgba(11, 11, 13, 0.7) 50%, rgba(11, 11, 13, 0.4) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
}

.hero-text {
    text-align: left;
    position: relative;
    z-index: 2;
}

.hero-skyline {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 150px;
    background: url('skyline.svg') repeat-x bottom;
    background-size: contain;
    opacity: 0.1;
    pointer-events: none;
}

.hero-title {
    font-size: clamp(2.5rem, 10vw, 4.5rem);
    line-height: 1.1;
    margin-bottom: 20px;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-muted);
    max-width: 600px;
    margin-bottom: 40px;
}

.hero-ctas {
    display: flex;
    gap: 20px;
    justify-content: flex-start;
    margin-bottom: 40px;
}

@media (max-width: 992px) {
    .hero-content {
        max-width: 100%;
    }
    
    .hero-text {
        text-align: center;
    }
    
    .hero-subtitle {
        margin: 0 auto 40px;
    }
    
    .hero-ctas {
        justify-content: center;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-overlay {
        background: rgba(11, 11, 13, 0.8);
    }
}

.trust-line {
    font-size: 1rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.phone-display {
    font-size: 1.5rem;
    font-weight: 700;
    margin-top: 20px;
    color: var(--accent-color);
}

/* Trust Bar */
.trust-bar {
    background-color: var(--bg-color);
    border-bottom: 1px solid var(--border-color);
    padding: 30px 0;
}

.trust-bar .container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 20px;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-muted);
    font-weight: 600;
}

.trust-icon {
    color: var(--accent-color);
    font-size: 1.2rem;
}

/* Benefits Grid */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.benefit-card {
    padding: 40px;
    background-color: var(--card-bg);
    border-radius: 8px;
    border: 1px solid var(--border-color);
    transition: transform 0.3s ease;
    position: relative;
    overflow: hidden;
}

.benefit-card::after {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 100px;
    height: 100px;
    background: var(--accent-color);
    opacity: 0.03;
    border-radius: 50%;
}

.benefit-icon {
    font-size: 2.5rem;
    color: var(--accent-color);
    margin-bottom: 20px;
}

.benefit-card:hover {
    transform: translateY(-10px);
}

.benefit-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--accent-color);
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    padding: 40px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.service-icon {
    font-size: 2rem;
    color: var(--accent-color);
    margin-bottom: 20px;
}

.service-card:hover {
    background-color: var(--card-bg);
    border-color: var(--accent-color);
}

.service-card h3 {
    font-size: 1.6rem;
    margin-bottom: 15px;
    color: var(--white);
}

/* Fleet Section */
.fleet-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.fleet-card {
    text-align: center;
    padding: 30px 20px;
    background: var(--card-bg);
    border-radius: 12px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.fleet-card:hover {
    border-color: var(--accent-color);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.fleet-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 25px;
    background-color: var(--bg-color);
    padding: 0;
}

.fleet-card h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.fleet-features {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 0.9rem;
    color: var(--accent-color);
}

.fleet-features i {
    margin-right: 5px;
}

.fleet-note {
    color: var(--text-muted);
}

/* Service Area */
.service-area-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.service-area-content {
    text-align: left;
}

.service-area-graphic {
    background: rgba(42, 46, 54, 0.2);
    border-radius: 12px;
    padding: 30px;
    border: 1px solid var(--border-color);
}

.service-area-graphic img {
    width: 100%;
    height: auto;
    display: block;
    max-height: 400px;
    object-fit: contain;
}

.area-tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 15px;
    margin-top: 30px;
}

.text-left { text-align: left; }

.tag {
    padding: 10px 20px;
    background-color: var(--bg-color);
    border: 1px solid var(--border-color);
    border-radius: 30px;
    color: var(--text-muted);
}

/* Use Cases */
.use-cases-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.use-case-box {
    padding: 60px;
    background-color: var(--card-bg);
    border-radius: 12px;
}

.use-case-box h3 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--accent-color);
}

.use-case-icon {
    font-size: 3rem;
    color: var(--accent-color);
    margin-bottom: 20px;
    display: block;
}

/* Steps */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    position: relative;
}

.step {
    text-align: center;
    position: relative;
    z-index: 2;
}

.step:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 30px;
    left: calc(50% + 40px);
    width: calc(100% - 80px);
    height: 1px;
    border-top: 2px dashed var(--border-color);
    z-index: -1;
}

.step-num {
    width: 60px;
    height: 60px;
    background-color: var(--accent-color);
    color: var(--bg-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 700;
    margin: 0 auto 20px;
}

.step h4 {
    font-size: 1.4rem;
    margin-bottom: 10px;
}

/* Pricing */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.price-card {
    background-color: var(--bg-color);
    padding: 40px 20px;
    text-align: center;
    border: 1px solid var(--border-color);
    border-radius: 8px;
}

.price-card h3 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: var(--text-muted);
}

.price {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-color);
}

.price-note {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-top: 10px;
}

.pricing-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
}

.pricing-disclaimer {
    text-align: center;
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* FAQ */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid var(--border-color);
}

.faq-question {
    width: 100%;
    padding: 25px 0;
    background: none;
    border: none;
    color: var(--white);
    font-family: var(--font-sans);
    font-size: 1.2rem;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question::after {
    content: '+';
    font-size: 1.5rem;
    color: var(--accent-color);
}

.faq-answer {
    padding-bottom: 25px;
    color: var(--text-muted);
    display: none;
}

.faq-item.active .faq-answer {
    display: block;
}

.faq-item.active .faq-question::after {
    content: '-';
}

/* Availability & Policy */
.availability-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.availability-card, .policy-card {
    padding: 40px;
    background-color: var(--bg-color);
    border-radius: 8px;
}

.availability-card h3, .policy-card h3 {
    margin-bottom: 20px;
    color: var(--accent-color);
}

.availability-card ul, .policy-card ul {
    list-style: none;
}

.availability-card li, .policy-card li {
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
}

.availability-card li::before, .policy-card li::before {
    content: '•';
    color: var(--accent-color);
    position: absolute;
    left: 0;
}

/* Contact Section */
.contact-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 50px;
}

.contact-form-container {
    background-color: var(--card-bg);
    padding: 50px;
    border-radius: 12px;
}

.form-group {
    margin-bottom: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--white);
}

::placeholder {
    color: #666;
    opacity: 1;
}

input, select, textarea {
    width: 100%;
    padding: 15px;
    background-color: var(--bg-color);
    border: 1px solid var(--border-color);
    border-radius: 4px;
    color: var(--white);
    font-family: var(--font-sans);
    font-size: 16px; /* Prevents auto-zoom on iOS */
}

input:focus, select:focus, textarea:focus {
    outline: none;
    border-color: var(--accent-color);
}

.contact-info h3 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.contact-detail {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-detail i {
    color: var(--accent-color);
    width: 20px;
}

.contact-detail a {
    color: var(--accent-color);
    text-decoration: none;
}

.footer {
    padding: 80px 0 120px;
    border-top: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
}

.footer-skyline {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background: url('skyline.svg') repeat-x top;
    background-size: contain;
    opacity: 0.1;
    pointer-events: none;
    transform: rotate(180deg);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 50px;
    margin-bottom: 50px;
}

.footer-brand h2 {
    margin-bottom: 20px;
}

.footer-brand p {
    color: var(--text-muted);
}

.footer h4 {
    margin-bottom: 20px;
    color: var(--white);
}

.footer ul {
    list-style: none;
}

.footer li {
    margin-bottom: 10px;
}

.footer a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer a:hover {
    color: var(--accent-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid var(--border-color);
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Mobile CTA */
.sticky-mobile-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    display: none;
    grid-template-columns: 1fr 1fr;
    background-color: var(--bg-color);
    border-top: 1px solid var(--border-color);
    z-index: 999;
    padding: 10px;
    gap: 10px;
    box-shadow: 0 -5px 20px rgba(0,0,0,0.5);
}

.sticky-mobile-cta .btn {
    border-radius: 8px;
    padding: 15px;
    font-size: 1rem;
}

/* Responsive */
@media (max-width: 992px) {
    .hero-title {
        font-size: 3.5rem;
    }
    
    .use-cases-grid, .availability-grid, .contact-grid, .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .steps-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .navbar .container {
        position: relative;
    }
    
    .navbar {
        padding: 15px 0;
    }

    .nav-links {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background-color: var(--bg-color);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding: 40px;
        gap: 30px;
        z-index: 1001;
    }
    
    .nav-links.active {
        display: flex;
    }

    .nav-links a {
        font-size: 1.5rem;
        color: var(--white);
    }
    
    .nav-cta {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
        z-index: 1002;
        padding: 10px;
    }

    .mobile-menu-toggle span {
        transition: all 0.3s ease;
    }

    .mobile-menu-toggle.open span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .mobile-menu-toggle.open span:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu-toggle.open span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
    
    .hero {
        background-attachment: scroll;
    }
    
    #why-choose-us {
        background-attachment: scroll;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .sticky-mobile-cta {
        display: grid;
    }
    
    .section {
        padding: 60px 0;
    }

    .fleet-grid, .services-grid {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        gap: 20px;
        padding-bottom: 20px;
        margin-left: -20px;
        margin-right: -20px;
        padding-left: 20px;
        padding-right: 20px;
        scrollbar-width: none; /* Hide scrollbar Firefox */
    }

    .fleet-grid::-webkit-scrollbar, .services-grid::-webkit-scrollbar {
        display: none; /* Hide scrollbar Chrome/Safari */
    }

    .fleet-card, .service-card {
        min-width: 85%;
        scroll-snap-align: center;
    }
}

/* Form Success/Error Notifications */
.form-notification {
    position: fixed;
    top: 30px;
    right: 30px;
    padding: 15px 25px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 12px;
    color: white;
    z-index: 2000;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    transform: translateX(120%);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.form-notification.show {
    transform: translateX(0);
}

.form-notification.success {
    background-color: #10B981; /* Success Green */
}

.form-notification.error {
    background-color: #EF4444; /* Error Red */
}

.form-notification i {
    font-size: 1.2rem;
}

@media (max-width: 768px) {
    .form-notification {
        top: auto;
        bottom: 100px;
        right: 20px;
        left: 20px;
        transform: translateY(200%);
    }
    
    .form-notification.show {
        transform: translateY(0);
    }
}

#corporate {
    background: linear-gradient(rgba(11, 11, 13, 0.9), rgba(11, 11, 13, 0.9)), url('corporate.png') center/cover no-repeat;
}

#pricing {
    background: linear-gradient(rgba(22, 24, 29, 0.95), rgba(22, 24, 29, 0.95)), url('pricing.png') center/cover no-repeat;
}

.corporate-features {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 30px;
}

.corp-feature {
    text-align: center;
}

.corp-feature i {
    font-size: 2.5rem;
    color: var(--accent-color);
    margin-bottom: 10px;
}

.corp-feature h4 {
    font-size: 1.1rem;
    color: var(--white);
}

@media (max-width: 768px) {
    .corporate-features {
        flex-direction: column;
        gap: 20px;
    }
}

.max-w-600 { max-width: 600px; }
.mt-2 { margin-top: 20px; }

/* Improved Input with Icon */
.input-with-icon {
    position: relative;
    display: flex;
    align-items: center;
}

.input-with-icon i {
    position: absolute;
    left: 15px;
    color: var(--accent-color);
    pointer-events: none;
    z-index: 1;
}

.input-with-icon input {
    padding-left: 45px !important;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

/* Flatpickr Customization */
.flatpickr-calendar {
    background: #16181D !important;
    border: 1px solid #2A2E36 !important;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5) !important;
    color: #F5F5F2 !important;
}

.flatpickr-day.selected, .flatpickr-day.selected:hover {
    background: #C9A227 !important;
    border-color: #C9A227 !important;
    color: #0B0B0D !important;
}

.flatpickr-time input {
    color: #F5F5F2 !important;
}

.flatpickr-months .flatpickr-month, .flatpickr-current-month .flatpickr-monthDropdown-months, .flatpickr-weekday {
    color: #F5F5F2 !important;
    fill: #F5F5F2 !important;
}
