/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #e0e0e0;
    background-color: #1a1a1a;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Top Bar */
.top-bar {
    
    padding: 8px 0;
    border-bottom: 1px solid #404040;
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.contact-info {
    display: flex;
    gap: 20px;
    font-size: 12px;
    color: #b0b0b0;
}

.contact-info span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.contact-info i {
    color: #b0b0b0;
    font-size: 11px;
}

.top-bar-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.social-icons, .utility-icons {
    display: flex;
    gap: 12px;
}

.social-icons a, .utility-icons a {
    color: #d4af37;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.social-icons a:hover, .utility-icons a:hover {
    color: #ffd700;
}

/* Main Navigation */
.main-nav {
    background-color: #2d2d2d;
    padding: 15px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.3);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.main-nav .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 24px;
    font-weight: 700;
    color: #e0e0e0;
}

.logo i {
    color: #d4af37;
    font-size: 28px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-menu a {
    text-decoration: none;
    color: #e0e0e0;
    font-weight: 500;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: color 0.3s ease;
    padding: 10px 0;
}

.nav-menu a:hover, .nav-menu a.active {
    color: #d4af37;
}

.nav-menu i {
    font-size: 10px;
    margin-top: 2px;
}

.quote-btn {
    background-color: transparent;
    border: 2px solid #d4af37;
    color: #e0e0e0;
    padding: 12px 24px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.quote-btn:hover {
    background-color: #d4af37;
    color: #1a1a1a;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    background-size: cover;
    background-position: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url(./assets/bg-limo.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-color: rgba(0, 0, 0, 0.6);
    background-blend-mode: multiply;
}

.hero-content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    width: 100%;
}

.booking-form-container {
    display: flex;
    justify-content: flex-start;
    margin-top: 2rem;
    margin-bottom: 2rem;
}

.booking-form {
    background: #2d2d2d;
    border-radius: 15px 15px 0 0;
    box-shadow: 0 10px 30px rgba(0,0,0,0.4);
    width: 100%;
    max-width: 450px;
    border: 1px solid #404040;
}

.form-tabs {
    display: flex;
    background-color: #404040;
    border-radius: 15px 15px 0 0;
    overflow: hidden;
}

.tab {
    flex: 1;
    padding: 15px 10px;
    border: none;
    background-color: #404040;
    color: #b0b0b0;
    font-weight: 600;
    font-size: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.tab.active {
    background-color: #d4af37;
    color: #1a1a1a;
}

.tab:hover:not(.active) {
    background-color: #505050;
}

.booking-form-content {
    padding: 30px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 12px;
    font-weight: 600;
    color: #d4af37;
}

.form-group label i {
    margin-left: 5px;
    color: #b0b0b0;
}

.form-input {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #404040;
    border-radius: 8px;
    font-size: 14px;
    color: #e0e0e0;
    background-color: #1a1a1a;
    transition: border-color 0.3s ease;
    height: 48px;
    box-sizing: border-box;
}

.form-input:focus {
    outline: none;
    border-color: #d4af37;
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.2);
}

/* Add more padding to select dropdown arrow */
select.form-input {
    padding-right: 40px;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%23d4af37' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 8 4 4 4-4'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 16px;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
}

/* Custom select dropdown styling */
select.form-input option {
    background-color: #2d2d2d;
    color: #e0e0e0;
    padding: 12px 15px;
    border: none;
    font-size: 14px;
    font-family: 'Inter', sans-serif;
    transition: all 0.2s ease;
}

select.form-input option:hover {
    background-color: #d4af37;
    color: #1a1a1a;
    transform: translateX(5px);
    padding-left: 20px;
}

select.form-input option:checked {
    background-color: #d4af37;
    color: #1a1a1a;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(212, 175, 55, 0.3);
}

/* First and last option styling */
select.form-input option:first-child {
    border-radius: 8px 8px 0 0;
}

select.form-input option:last-child {
    border-radius: 0 0 8px 8px;
}

/* Firefox specific styling */
select.form-input:-moz-focusring {
    color: transparent;
    text-shadow: 0 0 0 #e0e0e0;
}

/* Webkit browsers (Chrome, Safari, Edge) */
select.form-input::-webkit-select-placeholder {
    color: #808080;
}

/* Custom dropdown arrow animation */
select.form-input:focus {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%23ffd700' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m6 8 4 4 4-4'/%3e%3c/svg%3e");
    transform: scale(1.02);
    transition: all 0.2s ease;
}

.form-input::placeholder {
    color: #808080;
}

.book-now-btn {
    width: 100%;
    background-color: #d4af37;
    color: #1a1a1a;
    border: none;
    padding: 15px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.book-now-btn:hover {
    background-color: #ffd700;
}

/* Hero Text */
.hero-text {
    text-align: right;
    color: #e0e0e0;
    /*background: rgba(0, 0, 0, 0.4);*/
    padding: 30px;
    border-radius: 15px;
}

.hero-subtitle {
    font-size: 14px;
    font-weight: 600;
    color: #d4af37;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
    /*text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.7);*/
}

    .hero-title {
        font-size: 42px;
        font-weight: 700;
        line-height: 1.2;
        margin: 0;
        /*text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8);*/
    }

    /* What We Do Section */
    .what-we-do {
        padding: 80px 0;
        background-color: #1a1a1a;
    }

    .section-header {
        text-align: center;
        margin-bottom: 60px;
    }

    .section-title {
        font-size: 14px;
        font-weight: 600;
        color: #d4af37;
        text-transform: uppercase;
        letter-spacing: 2px;
        margin-bottom: 15px;
    }

    .section-heading {
        font-size: 36px;
        font-weight: 700;
        color: #e0e0e0;
        margin: 0;
    }

    .services-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
    }

    .service-card {
        background: #2d2d2d;
        border-radius: 15px;
        overflow: hidden;
        box-shadow: 0 10px 30px rgba(0,0,0,0.3);
        border: 1px solid #404040;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .service-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 20px 40px rgba(0,0,0,0.4);
    }

    .service-image {
        position: relative;
        height: 250px;
        overflow: hidden;
    }

    .service-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.3s ease;
    }

    .service-card:hover .service-image img {
        transform: scale(1.1);
    }

    .service-overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(26, 26, 26, 0.7);
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .service-icon {
        display: flex;
        align-items: center;
        gap: 15px;
        color: #d4af37;
        font-size: 24px;
    }

    .service-icon i {
        background: rgba(212, 175, 55, 0.1);
        padding: 15px;
        border-radius: 50%;
        border: 2px solid #d4af37;
        transition: all 0.3s ease;
    }

    .service-card:hover .service-icon i {
        background: #d4af37;
        color: #1a1a1a;
        transform: scale(1.1);
    }

    .service-content {
        padding: 30px;
    }

    .service-title {
        font-size: 16px;
        font-weight: 700;
        color: #d4af37;
        text-transform: uppercase;
        letter-spacing: 1px;
        margin-bottom: 15px;
    }

        .service-description {
        font-size: 14px;
        line-height: 1.6;
        color: #b0b0b0;
        margin: 0;
    }

    /* Why Choose Us Section */
    .why-choose-us {
        padding: 80px 0;
        background-color: #2d2d2d;
    }

    .why-choose-content {
        align-items: center;
        text-align: justify;
    }

    .why-choose-header{
        text-align: center;
    }

    .about-us-content {
        padding: 40px;
        background: #1a1a1a;
        border-radius: 15px;
        border: 1px solid #404040;
        box-shadow: 0 15px 35px rgba(0,0,0,0.3);
    }

    .about-us-header {
        margin-bottom: 30px;
        text-align: center;
    }

    .about-us-subtitle {
        font-size: 14px;
        font-weight: 600;
        color: #d4af37;
        text-transform: uppercase;
        letter-spacing: 2px;
        margin-bottom: 15px;
    }

    .about-us-title {
        font-size: 28px;
        font-weight: 700;
        color: #e0e0e0;
        line-height: 1.2;
        margin: 0;
    }

    .about-us-description {
        font-size: 16px;
        line-height: 1.7;
        color: #b0b0b0;
        margin-bottom: 40px;
        text-align: center;
    }

    .values-list {
        display: flex;
        flex-direction: column;
        gap: 25px;
    }

    .value-item {
        display: flex;
        align-items: flex-start;
        gap: 20px;
        padding: 20px;
        background: #2d2d2d;
        border-radius: 12px;
        border: 1px solid #404040;
        transition: all 0.3s ease;
    }

    .value-item:hover {
        border-color: #d4af37;
        box-shadow: 0 10px 25px rgba(212, 175, 55, 0.2);
        transform: translateX(5px);
    }

    .value-icon {
        width: 50px;
        height: 50px;
        background: rgba(212, 175, 55, 0.1);
        border: 2px solid #d4af37;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 20px;
        color: #d4af37;
        flex-shrink: 0;
        transition: all 0.3s ease;
    }

    .value-item:hover .value-icon {
        background: #d4af37;
        color: #1a1a1a;
        transform: scale(1.1);
    }

    .value-content h4 {
        font-size: 16px;
        font-weight: 700;
        color: #e0e0e0;
        margin-bottom: 8px;
    }

    .value-content p {
        font-size: 14px;
        line-height: 1.6;
        color: #b0b0b0;
        margin: 0;
    }

    .why-choose-text {
        padding-left: 20px;
    }

    .why-choose-header {
        margin-bottom: 25px;
    }

    .why-choose-subtitle {
        font-size: 14px;
        font-weight: 600;
        color: #d4af37;
        text-transform: uppercase;
        letter-spacing: 2px;
        margin-bottom: 15px;
    }

    .why-choose-title {
        font-size: 36px;
        font-weight: 700;
        color: #e0e0e0;
        line-height: 1.2;
        margin: 0;
    }

    .why-choose-description {
        font-size: 16px;
        line-height: 1.7;
        color: #b0b0b0;
        margin-bottom: 40px;
    }

    .features-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }

    .feature-item {
        text-align: center;
        padding: 20px 15px;
        background: #1a1a1a;
        border-radius: 12px;
        border: 1px solid #404040;
        transition: all 0.3s ease;
    }

    .feature-item:hover {
        transform: translateY(-5px);
        border-color: #d4af37;
        box-shadow: 0 10px 25px rgba(212, 175, 55, 0.2);
    }

    .feature-icon {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        margin-bottom: 15px;
        color: #d4af37;
        font-size: 20px;
    }

    .feature-icon i {
        background: rgba(212, 175, 55, 0.1);
        padding: 12px;
        border-radius: 50%;
        border: 2px solid #d4af37;
        transition: all 0.3s ease;
    }

    .feature-item:hover .feature-icon i {
        background: #d4af37;
        color: #1a1a1a;
        transform: scale(1.1);
    }

    .feature-text {
        font-size: 14px;
        font-weight: 600;
        color: #e0e0e0;
        text-transform: uppercase;
        letter-spacing: 1px;
    }

    /* Responsive Design */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .booking-form-container {
        justify-content: center;
    }
    
    .hero-text {
        text-align: center;
    }
    
    .hero-title {
        font-size: 36px;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    .section-heading {
        font-size: 32px;
    }

    .why-choose-content {
        gap: 40px;
    }

    .about-us-content {
        padding: 30px;
    }

    .about-us-title {
        font-size: 24px;
    }

    .why-choose-title {
        font-size: 32px;
    }

    .features-grid {
        gap: 15px;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    .contact-info {
        flex-direction: column;
        gap: 5px;
    }
    
    .nav-menu {
        display: none;
    }
    
    .hero-title {
        font-size: 28px;
    }
    
    .booking-form {
        max-width: 100%;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .what-we-do {
        padding: 60px 0;
    }

    .section-heading {
        font-size: 28px;
    }

    .service-image {
        height: 200px;
    }

    .why-choose-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .why-choose-text {
        padding-left: 0;
    }

    .why-choose-title {
        font-size: 28px;
    }

    .why-choose-us {
        padding: 60px 0;
    }

    .features-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
    }
    
    .contact-us {
        padding: 60px 0;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-info-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .contact-form-container {
        padding: 30px;
    }
    
    .footer {
        padding: 40px 0 20px;
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media (max-width: 480px) {
    .top-bar .container {
        flex-direction: column;
        gap: 10px;
    }
    
    .hero-title {
        font-size: 24px;
    }
    
    .booking-form-content {
        padding: 20px;
    }

    .what-we-do {
        padding: 40px 0;
    }

    .section-heading {
        font-size: 24px;
    }

    .service-content {
        padding: 20px;
    }

    .service-icon {
        font-size: 20px;
    }

    .service-icon i {
        padding: 12px;
    }

    .why-choose-us {
        padding: 40px 0;
    }

    .why-choose-title {
        font-size: 24px;
    }

    .about-us-content {
        padding: 25px;
    }

    .about-us-title {
        font-size: 22px;
    }

    .value-item {
        padding: 15px;
        gap: 15px;
    }

    .value-icon {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .feature-item {
        padding: 15px 10px;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-info-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }
}

/* Contact Us Section */
.contact-us {
    padding: 80px 0;
    background-color: #1a1a1a;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.contact-card {
    background: #2d2d2d;
    padding: 30px 25px;
    border-radius: 15px;
    border: 1px solid #404040;
    text-align: center;
    transition: all 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-5px);
    border-color: #d4af37;
    box-shadow: 0 15px 35px rgba(212, 175, 55, 0.2);
}

.contact-icon {
    width: 70px;
    height: 70px;
    background: rgba(212, 175, 55, 0.1);
    border: 2px solid #d4af37;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 28px;
    color: #d4af37;
    transition: all 0.3s ease;
}

.contact-card:hover .contact-icon {
    background: #d4af37;
    color: #1a1a1a;
    transform: scale(1.1);
}

.contact-card h4 {
    font-size: 18px;
    font-weight: 700;
    color: #e0e0e0;
    margin-bottom: 15px;
}

.contact-card p {
    font-size: 14px;
    line-height: 1.6;
    color: #b0b0b0;
    margin: 0;
}

.contact-form-container {
    background: #2d2d2d;
    padding: 40px;
    border-radius: 15px;
    border: 1px solid #404040;
}

.contact-form-container h4 {
    font-size: 24px;
    font-weight: 700;
    color: #d4af37;
    margin-bottom: 30px;
    text-align: center;
}

.contact-form .form-row {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.contact-form .form-group {
    margin-bottom: 20px;
}

.contact-form .form-input {
    height: auto;
    min-height: 48px;
}

.contact-form textarea.form-input {
    resize: vertical;
    min-height: 120px;
    font-family: 'Inter', sans-serif;
}

.contact-submit-btn {
    width: 100%;
    background-color: #d4af37;
    color: #1a1a1a;
    border: none;
    padding: 15px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.contact-submit-btn:hover {
    background-color: #ffd700;
    transform: translateY(-2px);
}

/* Footer */
.footer {
    background-color: #0f0f0f;
    color: #e0e0e0;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h4 {
    font-size: 18px;
    font-weight: 700;
    color: #d4af37;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.footer-logo span {
    font-size: 20px;
    font-weight: 700;
    color: #e0e0e0;
}

.footer-description {
    font-size: 14px;
    line-height: 1.7;
    color: #b0b0b0;
    margin-bottom: 25px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 45px;
    height: 45px;
    background: rgba(212, 175, 55, 0.1);
    border: 2px solid #d4af37;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #d4af37;
    text-decoration: none;
    font-size: 18px;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: #d4af37;
    color: #1a1a1a;
    transform: translateY(-3px);
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #b0b0b0;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #d4af37;
}

.footer-contact p {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    font-size: 14px;
    color: #b0b0b0;
}

.footer-contact i {
    color: #d4af37;
    font-size: 16px;
    width: 20px;
}

.footer-bottom {
    border-top: 1px solid #404040;
    padding-top: 20px;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-bottom p {
    font-size: 14px;
    color: #808080;
    margin: 0;
}

.footer-bottom-links {
    display: flex;
    gap: 20px;
}

.footer-bottom-links a {
    color: #808080;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
    color: #d4af37;
}

/* Responsive Design */
