* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
body {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    color: #333;
    font-family:
        Inter,
        -apple-system,
        BlinkMacSystemFont,
        Segoe UI,
        Roboto,
        Oxygen,
        Ubuntu,
        Cantarell,
        Fira Sans,
        Droid Sans,
        Helvetica Neue,
        sans-serif;
    line-height: 1.6;
}
code {
    font-family:
        source-code-pro,
        Menlo,
        Monaco,
        Consolas,
        Courier New,
        monospace;
}
.container {
    margin: 0 auto;
    max-width: 1200px;
    padding: 0 20px;
}
.btn {
    border: none;
    border-radius: 8px;
    cursor: pointer;
    display: inline-block;
    font-size: 16px;
    font-weight: 600;
    padding: 12px 24px;
    text-decoration: none;
    transition: all 0.3s ease;
}
.btn-primary {
    background: #a47d37;
    color: #fff;
}
.btn-primary:hover {
    box-shadow: 0 8px 25px #0891b24d;
    transform: translateY(-2px);
}
.btn-secondary {
    background: #f8f9fa;
    border: 2px solid #e9ecef;
    color: #333;
}
.btn-secondary:hover {
    background: #e9ecef;
    border-color: #dee2e6;
}
.section {
    padding: 80px 0;
}
.section-title {
    color: #2d3748;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    text-align: center;
}
.section-subtitle {
    color: #718096;
    font-size: 1.2rem;
    margin-bottom: 4rem;
    margin-left: auto;
    margin-right: auto;
    max-width: 600px;
    text-align: center;
}
.grid {
    grid-gap: 2rem;
    display: grid;
    gap: 2rem;
}
.grid-3 {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}
.grid-4 {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}
.card {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    box-shadow: 0 4px 6px #0000000d;
    padding: 2rem;
    transition: all 0.3s ease;
}
.card:hover {
    box-shadow: 0 20px 40px #0000001a;
    transform: translateY(-5px);
}
@media (max-width: 768px) {
    .section {
        padding: 60px 0;
    }
    .section-title {
        font-size: 2rem;
    }
    .container {
        padding: 0 15px;
    }
}
.header {
    background: #fff;
    box-shadow: 0 2px 10px #0000001a;
    left: 0;
    position: fixed;
    right: 0;
    top: 0;
    z-index: 1000;
}
.top-bar {
    background: #a47d37;
    color: #fff;
    font-size: 13px;
    padding: 4px 0;
}
.top-bar-content {
    align-items: center;
    display: flex;
    gap: 20px;
    justify-content: space-between;
}
.contact-item {
    align-items: center;
    gap: 5px;
    white-space: nowrap;
}
.top-bar-text {
    font-weight: 500;
    white-space: nowrap;
}
.navbar {
    background: #fff;
    padding: 5px 0;
}
.nav-content {
    justify-content: space-between;
}
.logo,
.nav-content {
    align-items: center;
    display: flex;
}
.logo {
    gap: 10px;
}
.logo-image {
    height: 100px;
    width: auto;
}
.logo h2 {
    color: #2d3748;
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0;
}
.nav-menu {
    align-items: center;
    display: flex;
    gap: 30px;
}
.nav-menu a {
    color: #000;
    font-weight: 500;
    position: relative;
    text-decoration: none;
    transition: color 0.3s ease;
}
.nav-menu a:hover {
    color: #a47d37;
}
.nav-menu a.btn {
    color: #fff !important;
}
.nav-menu a:not(.btn):after {
    background: #0891b2;
    bottom: -5px;
    content: "";
    height: 2px;
    left: 0;
    position: absolute;
    transition: width 0.3s ease;
    width: 0;
}
.nav-menu a:not(.btn):hover:after {
    width: 100%;
}
.hamburger {
    color: #4a5568;
    cursor: pointer;
    display: none;
}
@media (max-width: 768px) {
    .top-bar {
        font-size: 9px;
        padding: 1px 0;
    }
    .top-bar-content {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 8px;
        justify-content: center;
    }
    .contact-item {
        margin: 0 3px;
    }
    .top-bar-text {
        display: none;
    }
    .navbar {
        padding: 5px 0;
    }
    .logo h2 {
        font-size: 1.1rem;
    }
    .logo-image {
        height: 25px;
    }
    .nav-menu {
        background: #fff;
        box-shadow: 0 5px 15px #0000001a;
        flex-direction: column;
        left: 0;
        opacity: 0;
        padding: 20px;
        position: fixed;
        right: 0;
        top: 100%;
        transform: translateY(-100%);
        transition: all 0.3s ease;
        visibility: hidden;
    }
    .nav-menu.active {
        opacity: 1;
        transform: translateY(0);
        visibility: visible;
    }
    .nav-menu a {
        border-bottom: 1px solid #e2e8f0;
        padding: 10px 0;
        text-align: center;
        width: 100%;
    }
    .nav-menu a:last-child {
        border-bottom: none;
    }
    .hamburger {
        display: block;
    }
}
@media (max-width: 480px) {
    .top-bar {
        display: none;
    }
    .navbar {
        padding: 8px 0;
    }
}
.hero {
    align-items: center;
    background: #a47d37;
    display: flex;
    min-height: 100vh;
    overflow: hidden;
    padding-bottom: 80px;
    padding-top: 120px;
    position: relative;
}
.hero-background {
    background: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1000 1000'%3E%3Cpath fill='%23ffffff08' d='m0 1000 1000-200v200z'/%3E%3Cpath fill='%23ffffff12' d='m0 800 1000-200v200L0 1000z'/%3E%3C/svg%3E");
    background-size: cover;
}
.hero-background,
.hero-overlay {
    bottom: 0;
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
}
.hero-overlay {
    background: #0000004d;
}
.hero-content {
    grid-gap: 60px;
    align-items: center;
    display: grid;
    gap: 60px;
    grid-template-columns: 1fr 500px;
    position: relative;
    z-index: 2;
}
.hero-logo {
    display: flex;
    justify-content: flex-start;
    margin-bottom: 30px;
}
.hero-logo-image {
    height: 80px;
    width: auto;
}
.hero-badge {
    align-items: center;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    background: #fff3;
    border-radius: 25px;
    display: inline-flex;
    font-size: 14px;
    font-weight: 500;
    gap: 8px;
    padding: 8px 16px;
}
.hero-badge,
.hero-title {
    color: #fff;
    margin-bottom: 20px;
}
.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
}
.highlight {
    -webkit-text-fill-color: #0000;
    background: linear-gradient(45deg, gold, #ffed4e);
    -webkit-background-clip: text;
    background-clip: text;
}
.hero-subtitle {
    color: #ffffffe6;
    font-size: 1.3rem;
    line-height: 1.6;
    margin-bottom: 40px;
}
.hero-features {
    grid-gap: 20px;
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(2, 1fr);
}
.feature {
    color: #fff;
    font-weight: 500;
    gap: 12px;
}
.feature,
.feature-icon {
    align-items: center;
    display: flex;
}
.feature-icon {
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    background: #fff3;
    border-radius: 50%;
    font-size: 24px;
    height: 40px;
    justify-content: center;
    width: 40px;
}
.hero-form-container {
    max-width: 100%;
    overflow: hidden;
    position: relative;
}
.form-card {
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 20px 60px #0003;
    box-sizing: border-box;
    max-width: 100%;
    padding: 40px;
    width: 100%;
}
.form-card h3 {
    color: #2d3748;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 10px;
    text-align: center;
}
.form-card p {
    color: #718096;
    font-size: 14px;
    margin-bottom: 30px;
    text-align: center;
}
.quote-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.form-group input,
.form-group select {
    background: #fff;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    box-sizing: border-box;
    font-size: 16px;
    padding: 12px 16px;
    transition: all 0.3s ease;
    width: 100%;
}
.form-group input:focus,
.form-group select:focus {
    border-color: #0891b2;
    box-shadow: 0 0 0 3px #0891b21a;
    outline: none;
}
.form-row {
    grid-gap: 15px;
    gap: 15px;
}
@media (max-width: 480px) {
    .form-row {
        gap: 15px;
        grid-template-columns: 1fr;
    }
}
.form-note {
    margin-top: 10px;
}
@media (max-width: 1024px) {
    .hero-content {
        gap: 40px;
        grid-template-columns: 1fr;
        text-align: center;
    }
    .hero-logo {
        justify-content: center;
    }
    .hero-logo-image {
        height: 60px;
    }
    .hero-title {
        font-size: 2.8rem;
    }
    .hero-features {
        grid-template-columns: repeat(2, 1fr);
        justify-content: center;
    }
}
@media (max-width: 768px) {
    .hero {
        min-height: auto;
        padding-bottom: 20px;
        padding-top: 60px;
    }
    .hero-logo {
        margin-bottom: 15px;
    }
    .hero-logo-image {
        height: 35px;
    }
    .hero-badge {
        font-size: 12px;
        margin-bottom: 15px;
        padding: 6px 12px;
    }
    .hero-title {
        font-size: 1.8rem;
        line-height: 1.3;
        margin-bottom: 15px;
    }
    .hero-subtitle {
        font-size: 0.95rem;
        line-height: 1.4;
        margin-bottom: 20px;
    }
    .hero-features {
        gap: 10px;
        grid-template-columns: repeat(2, 1fr);
        margin-bottom: 20px;
    }
    .feature {
        font-size: 13px;
        gap: 6px;
    }
    .feature-icon {
        font-size: 16px;
        height: 30px;
        width: 30px;
    }
    .form-card {
        padding: 20px 15px;
    }
    .form-card h3 {
        font-size: 1.4rem;
        margin-bottom: 8px;
    }
    .form-card p {
        font-size: 12px;
        margin-bottom: 20px;
    }
    .form-row {
        grid-template-columns: 1fr;
    }
}
@media (max-width: 480px) {
    .hero {
        padding-bottom: 15px;
        padding-top: 50px;
    }
    .hero-logo {
        margin-bottom: 10px;
    }
    .hero-logo-image {
        height: 28px;
    }
    .hero-badge {
        font-size: 11px;
        margin-bottom: 10px;
        padding: 4px 8px;
    }
    .hero-title {
        font-size: 1.4rem;
        line-height: 1.2;
        margin-bottom: 10px;
    }
    .hero-subtitle {
        font-size: 0.85rem;
        line-height: 1.3;
        margin-bottom: 15px;
    }
    .hero-features {
        gap: 10px;
        grid-template-columns: repeat(2, 1fr);
        margin-bottom: 20px;
    }
    .feature {
        font-size: 12px;
        gap: 5px;
    }
    .feature-icon {
        font-size: 14px;
        height: 25px;
        width: 25px;
    }
    .form-card {
        padding: 15px 12px;
    }
    .form-card h3 {
        font-size: 1.2rem;
        margin-bottom: 6px;
    }
    .form-card p {
        font-size: 11px;
        margin-bottom: 15px;
    }
}
@media (max-width: 320px) {
    .hero {
        padding-bottom: 10px;
        padding-top: 45px;
    }
    .hero-logo {
        margin-bottom: 8px;
    }
    .hero-logo-image {
        height: 24px;
    }
    .hero-badge {
        font-size: 10px;
        margin-bottom: 8px;
        padding: 3px 6px;
    }
    .hero-title {
        font-size: 1.2rem;
        line-height: 1.1;
        margin-bottom: 8px;
    }
    .hero-subtitle {
        font-size: 0.75rem;
        line-height: 1.2;
        margin-bottom: 12px;
    }
    .hero-features {
        gap: 6px;
        margin-bottom: 12px;
    }
    .feature {
        font-size: 11px;
        gap: 4px;
    }
    .feature-icon {
        font-size: 12px;
        height: 22px;
        width: 22px;
    }
    .form-card {
        padding: 12px 8px;
    }
    .form-card h3 {
        font-size: 1.1rem;
        margin-bottom: 5px;
    }
    .form-card p {
        font-size: 10px;
        margin-bottom: 12px;
    }
}
.fleet {
    background: #f8fafc;
}
.section-header {
    margin-bottom: 60px;
    text-align: center;
}
.fleet-grid {
    grid-gap: 30px;
    display: grid;
    gap: 30px;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    margin-bottom: 60px;
}
.vehicle-card {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    box-shadow: 0 4px 6px #0000000d;
    overflow: hidden;
    transition: all 0.3s ease;
}
.vehicle-card:hover {
    box-shadow: 0 20px 40px #0000001a;
    transform: translateY(-8px);
}
.vehicle-header {
    background: #a47d37;
    color: #fff;
    padding: 20px;
    position: relative;
    text-align: center;
}
.vehicle-image {
    background: #ffffff1a;
    border-radius: 8px;
    height: 140px;
    margin-bottom: 10px;
    overflow: hidden;
    width: 100%;
}
.vehicle-image img {
    border-radius: 8px;
    height: 100%;
    object-fit: cover;
    width: 100%;
}
.vehicle-category {
    background: #fff3;
    border-radius: 20px;
    color: #fff;
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 10px;
    padding: 6px 12px;
    text-transform: uppercase;
}
.vehicle-rating {
    align-items: center;
    display: flex;
    font-size: 14px;
    font-weight: 600;
    gap: 5px;
    justify-content: center;
}
.vehicle-info {
    padding: 20px;
}
.vehicle-name {
    color: #2d3748;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 6px;
}
.vehicle-description {
    color: #718096;
    font-size: 13px;
    line-height: 1.4;
    margin-bottom: 15px;
}
.vehicle-details {
    background: #f7fafc;
    border-radius: 6px;
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    padding: 12px;
}
.detail-item {
    align-items: center;
    color: #4a5568;
    display: flex;
    font-size: 14px;
    font-weight: 500;
    gap: 8px;
}
.vehicle-features {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 18px;
}
.feature-tag {
    background: #e6fffa;
    border: 1px solid #b2f5ea;
    border-radius: 8px;
    color: #234e52;
    font-size: 11px;
    font-weight: 500;
    padding: 3px 6px;
}
.vehicle-footer {
    align-items: center;
    border-top: 1px solid #e2e8f0;
    display: flex;
    justify-content: space-between;
    padding-top: 15px;
}
.price {
    display: flex;
    flex-direction: column;
}
.price-amount {
    color: #2d3748;
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1;
}
.price-period {
    color: #718096;
    font-size: 12px;
    font-weight: 500;
}
.fleet-cta {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    box-shadow: 0 4px 6px #0000000d;
    padding: 40px;
    text-align: center;
}
.fleet-cta h3 {
    color: #2d3748;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 10px;
}
.fleet-cta p {
    color: #718096;
    font-size: 16px;
    margin-bottom: 25px;
}
@media (max-width: 768px) {
    .fleet-grid {
        gap: 20px;
        grid-template-columns: 1fr;
    }
    .vehicle-details {
        flex-direction: column;
        gap: 10px;
    }
    .vehicle-footer {
        align-items: stretch;
        flex-direction: column;
        gap: 15px;
    }
    .fleet-cta {
        padding: 30px 20px;
    }
}
@media (max-width: 480px) {
    .vehicle-info {
        padding: 20px;
    }
    .vehicle-header {
        padding: 25px 15px;
    }
    .vehicle-image {
        height: 120px;
    }
}
.booking-modal-overlay {
    align-items: center;
    background: #000000b3;
    bottom: 0;
    display: flex;
    justify-content: center;
    left: 0;
    padding: 20px;
    position: fixed;
    right: 0;
    top: 0;
    z-index: 2000;
}
.booking-modal {
    -ms-overflow-style: none;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 20px 60px #0000004d;
    max-height: 90vh;
    max-width: 500px;
    overflow-y: auto;
    scrollbar-width: none;
    width: 100%;
}
.booking-modal::-webkit-scrollbar {
    display: none;
}
.modal-header {
    align-items: center;
    border-bottom: 1px solid #e2e8f0;
    display: flex;
    justify-content: space-between;
    padding: 20px 25px;
}
.modal-header h3 {
    color: #2d3748;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0;
}
.close-btn {
    background: none;
    border: none;
    border-radius: 6px;
    color: #718096;
    cursor: pointer;
    padding: 5px;
    transition: all 0.2s ease;
}
.close-btn:hover {
    background: #f7fafc;
    color: #4a5568;
}
.selected-vehicle-info {
    align-items: center;
    background: #f8fafc;
    border-bottom: 1px solid #e2e8f0;
    display: flex;
    gap: 15px;
    padding: 20px 25px;
}
.selected-vehicle-info img {
    border-radius: 8px;
    height: 60px;
    object-fit: cover;
    width: 60px;
}
.selected-vehicle-info h4 {
    color: #2d3748;
    font-size: 1.2rem;
    font-weight: 600;
    margin: 0 0 5px;
}
.selected-vehicle-info p {
    color: #718096;
    font-size: 14px;
    margin: 0;
}
.vehicle-price {
    color: #0891b2 !important;
    font-weight: 600;
}
.booking-form {
    padding: 25px;
}
.booking-form .form-group {
    margin-bottom: 20px;
}
.booking-form .form-row {
    grid-gap: 15px;
    display: grid;
    gap: 15px;
    grid-template-columns: 1fr 1fr;
}
.booking-form .form-group label {
    color: #4a5568;
    display: block;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 8px;
}
.booking-form .form-group input,
.booking-form .form-group select {
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    box-sizing: border-box;
    font-size: 16px;
    padding: 12px 16px;
    transition: all 0.3s ease;
    width: 100%;
}
.booking-form .form-group input:focus,
.booking-form .form-group select:focus {
    border-color: #0891b2;
    box-shadow: 0 0 0 3px #667eea1a;
    outline: none;
}
.modal-footer {
    background: #f8fafc;
    border-top: 1px solid #e2e8f0;
    display: flex;
    gap: 15px;
    padding: 20px 25px;
}
.modal-footer .btn {
    flex: 1 1;
    font-weight: 600;
    padding: 12px 20px;
}
@media (max-width: 480px) {
    .booking-modal-overlay {
        padding: 10px;
    }
    .booking-form .form-row {
        grid-template-columns: 1fr;
    }
    .modal-footer {
        flex-direction: column;
    }
}
.services {
    background: #fff;
}
.services-grid {
    grid-gap: 30px;
    display: grid;
    gap: 30px;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    margin-bottom: 80px;
}
.service-card {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    box-shadow: 0 4px 6px #0000000d;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
}
.service-card:hover {
    box-shadow: 0 20px 40px #0000001a;
    transform: translateY(-5px);
}
.service-icon {
    align-items: center;
    background: #a47d37;
    border-radius: 50%;
    color: #fff;
    display: flex;
    height: 80px;
    justify-content: center;
    margin: 0 auto 20px;
    transition: all 0.3s ease;
    width: 80px;
}
.service-card:hover .service-icon {
    transform: scale(1.1);
}
.service-title {
    color: #2d3748;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 15px;
}
.service-description {
    color: #718096;
    line-height: 1.6;
    margin-bottom: 20px;
}
.service-features {
    list-style: none;
    text-align: left;
}
.service-features li {
    color: #4a5568;
    font-size: 14px;
    margin-bottom: 8px;
    padding-left: 20px;
    position: relative;
}
.service-features li:before {
    color: #48bb78;
    content: "✓";
    font-weight: 700;
    left: 0;
    position: absolute;
}
.destinations-section {
    background: #f8fafc;
    border-radius: 20px;
    margin-bottom: 60px;
    padding: 60px 40px;
    text-align: center;
}
.destinations-title {
    color: #2d3748;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 10px;
}
.destinations-subtitle {
    color: #718096;
    font-size: 1.1rem;
    margin-bottom: 40px;
}
.destinations-grid {
    grid-gap: 25px;
    display: grid;
    gap: 25px;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}
.destination-card {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    box-shadow: 0 2px 4px #0000000d;
    padding: 25px;
    text-align: center;
    transition: all 0.3s ease;
}
.destination-card:hover {
    box-shadow: 0 8px 25px #0000001a;
    transform: translateY(-3px);
}
.destination-image {
    background: #f7fafc;
    border-radius: 8px;
    height: 120px;
    margin-bottom: 15px;
    overflow: hidden;
    width: 100%;
}
.destination-image img {
    border-radius: 8px;
    height: 100%;
    object-fit: cover;
    width: 100%;
}
.destination-name {
    color: #2d3748;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 5px;
}
.destination-description {
    color: #718096;
    font-size: 14px;
}
.service-stats {
    background: #a47d37;
    border-radius: 20px;
    padding: 60px 40px;
    text-align: center;
}
.stats-grid {
    grid-gap: 40px;
    display: grid;
    gap: 40px;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
}
.stat-item {
    color: #fff;
}
.stat-number {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 10px;
}
.stat-label {
    font-size: 1rem;
    font-weight: 500;
    opacity: 0.9;
}
@media (max-width: 768px) {
    .services-grid {
        gap: 20px;
        grid-template-columns: 1fr;
    }
    .destinations-section {
        padding: 40px 20px;
    }
    .destinations-grid {
        gap: 20px;
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    }
    .service-stats {
        padding: 40px 20px;
    }
    .stats-grid {
        gap: 30px;
        grid-template-columns: repeat(2, 1fr);
    }
    .stat-number {
        font-size: 2.5rem;
    }
}
@media (max-width: 480px) {
    .service-card {
        padding: 25px 20px;
    }
    .destination-card {
        padding: 20px 15px;
    }
    .stats-grid {
        gap: 25px;
        grid-template-columns: 1fr;
    }
}
.testimonials {
    background: #f8fafc;
}
.testimonials-grid {
    grid-gap: 30px;
    display: grid;
    gap: 30px;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    margin-bottom: 60px;
}
.testimonial-card {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    box-shadow: 0 4px 6px #0000000d;
    padding: 30px;
    position: relative;
    transition: all 0.3s ease;
}
.testimonial-card:hover {
    box-shadow: 0 20px 40px #0000001a;
    transform: translateY(-5px);
}
.quote-icon {
    color: #0891b2;
    opacity: 0.3;
    position: absolute;
    right: 20px;
    top: 20px;
}
.rating {
    display: flex;
    gap: 2px;
    margin-bottom: 20px;
}
.review-text {
    color: #4a5568;
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 25px;
    padding-left: 20px;
    position: relative;
}
.review-text:before {
    color: #0891b2;
    content: '"';
    font-size: 3rem;
    left: 0;
    line-height: 1;
    opacity: 0.3;
    position: absolute;
    top: -10px;
}
.customer-info {
    align-items: center;
    border-top: 1px solid #e2e8f0;
    display: flex;
    gap: 15px;
    padding-top: 20px;
}
.customer-avatar {
    align-items: center;
    background: #a47d37;
    border-radius: 50%;
    display: flex;
    flex-shrink: 0;
    font-size: 24px;
    height: 50px;
    justify-content: center;
    width: 50px;
}
.customer-details {
    flex: 1 1;
}
.customer-name {
    color: #2d3748;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 2px;
}
.customer-location {
    color: #718096;
    font-size: 14px;
    margin-bottom: 5px;
}
.trip-type {
    background: #a47d37;
    border: 1px solid #a47d37;
    border-radius: 12px;
    color: #fff;
    font-size: 12px;
    font-weight: 500;
    padding: 2px 8px;
}
.testimonials-cta {
    background: #a47d37;
    border-radius: 20px;
    color: #fff;
    padding: 60px 40px;
    text-align: center;
}
.cta-content h3 {
    margin-bottom: 15px;
}
.cta-content p {
    margin-bottom: 30px;
}
@media (max-width: 768px) {
    .testimonials-grid {
        -webkit-overflow-scrolling: touch;
        display: flex;
        gap: 20px;
        margin: 0 -20px 40px;
        overflow-x: auto;
        padding: 0 20px;
        scroll-behavior: smooth;
    }
    .testimonials-grid::-webkit-scrollbar {
        height: 6px;
    }
    .testimonials-grid::-webkit-scrollbar-track {
        background: #f1f1f1;
        border-radius: 3px;
    }
    .testimonials-grid::-webkit-scrollbar-thumb {
        background: #0891b2;
        border-radius: 3px;
    }
    .testimonials-grid::-webkit-scrollbar-thumb:hover {
        background: #0e7490;
    }
    .testimonial-card {
        flex: 0 0 280px;
        margin-bottom: 10px;
        min-width: 280px;
        padding: 25px 20px;
    }
    .customer-info {
        flex-direction: column;
        gap: 10px;
    }
    .customer-details,
    .customer-info {
        text-align: center;
    }
    .testimonials-cta {
        padding: 40px 20px;
    }
    .cta-content h3 {
        font-size: 1.6rem;
    }
}
@media (max-width: 480px) {
    .testimonials-grid {
        gap: 15px;
        margin: 0 -15px 40px;
        padding: 0 15px;
    }
    .testimonial-card {
        flex: 0 0 260px;
        min-width: 260px;
        padding: 20px 15px;
    }
    .review-text {
        padding-left: 15px;
    }
    .review-text:before {
        font-size: 2rem;
        top: -5px;
    }
    .quote-icon {
        right: 15px;
        top: 15px;
    }
}
.contact {
    background: #f8fafc;
}
.contact-content {
    grid-gap: 60px;
    align-items: start;
    display: grid;
    gap: 60px;
    grid-template-columns: 1fr 1fr;
}
.contact-info-section h3 {
    color: #2d3748;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 15px;
}
.contact-info-section > p {
    color: #718096;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 40px;
}
.contact-info-grid {
    grid-gap: 25px;
    display: grid;
    gap: 25px;
    grid-template-columns: 1fr 1fr;
}
.contact-info-card {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    box-shadow: 0 4px 6px #0000000d;
    padding: 25px;
    transition: all 0.3s ease;
}
.contact-info-card:hover {
    box-shadow: 0 8px 25px #0000001a;
    transform: translateY(-3px);
}
.contact-icon {
    align-items: center;
    background: #a47d37;
    border-radius: 12px;
    color: #fff;
    display: flex;
    height: 60px;
    justify-content: center;
    margin-bottom: 20px;
    width: 60px;
}
.contact-info-card h4 {
    color: #2d3748;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 15px;
}
.contact-details p {
    color: #4a5568;
    font-weight: 500;
    margin-bottom: 8px;
}
.contact-action {
    background: #f6e3a9;
    border: 2px solid #a47d37;
    border-radius: 6px;
    color: #a47d37;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    margin-top: 15px;
    padding: 8px 16px;
    transition: all 0.3s ease;
}
.contact-action:hover {
    background: #a47d37;
    border-color: #a47d37;
    color: #fff;
}
.form-container {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    box-shadow: 0 4px 6px #0000000d;
    padding: 40px;
}
.form-container h3 {
    color: #2d3748;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 10px;
}
.form-container > p {
    color: #718096;
    font-size: 16px;
    margin-bottom: 30px;
}
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.form-row {
    grid-gap: 20px;
    display: grid;
    gap: 20px;
    grid-template-columns: 1fr 1fr;
}
.form-group {
    display: flex;
    flex-direction: column;
}
.form-group label {
    color: #4a5568;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 8px;
}
.form-group input,
.form-group select,
.form-group textarea {
    background: #fff;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-family: inherit;
    font-size: 16px;
    padding: 12px 16px;
    transition: all 0.3s ease;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #0891b2;
    box-shadow: 0 0 0 3px #667eea1a;
    outline: none;
}
.form-group textarea {
    min-height: 100px;
    resize: vertical;
}
.btn-full {
    align-items: center;
    display: flex;
    font-size: 18px;
    font-weight: 600;
    gap: 10px;
    justify-content: center;
    margin-top: 10px;
    padding: 16px;
    width: 100%;
}
.form-note {
    color: #fff;
    font-size: 12px;
    line-height: 1.4;
    margin-top: 15px;
    text-align: center;
}
.success-message {
    background: #f0fff4;
    border: 2px solid #9ae6b4;
    border-radius: 12px;
    padding: 40px 20px;
    text-align: center;
}
.success-message h4 {
    color: #22543d;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 20px 0 10px;
}
.success-message p {
    color: #2f855a;
    font-size: 16px;
    line-height: 1.5;
}
@media (max-width: 1024px) {
    .contact-content {
        gap: 40px;
        grid-template-columns: 1fr;
    }
}
@media (max-width: 768px) {
    .form-row {
        grid-template-columns: 1fr;
    }
    .form-container {
        padding: 30px 20px;
    }
    .contact-info-grid {
        grid-template-columns: 1fr 1fr;
    }
}
@media (max-width: 480px) {
    .contact-info-grid {
        grid-template-columns: 1fr;
    }
    .form-container {
        padding: 25px 15px;
    }
    .contact-info-section h3 {
        font-size: 1.6rem;
    }
    .form-container h3 {
        font-size: 1.5rem;
    }
}
.footer {
    background: #a47d37;
    color: #fff;
    padding: 60px 0 0;
}
.footer-content {
    grid-gap: 40px;
    display: grid;
    gap: 40px;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    margin-bottom: 40px;
}
.footer-section h3 {
    color: #fff;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 15px;
}
.footer-section h4 {
    color: #fff;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 20px;
}
.footer-logo-content {
    align-items: center;
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
}
.footer-logo-icon {
    height: 40px;
    width: auto;
}
.footer-logo p {
    color: #fff;
    line-height: 1.6;
    margin-bottom: 25px;
}
.footer-social h4 {
    margin-bottom: 15px;
}
.social-links {
    display: flex;
    gap: 15px;
}
.social-links a {
    align-items: center;
    background: #8f5c00;
    border-radius: 8px;
    color: #fff;
    display: flex;
    height: 40px;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    width: 40px;
}
.social-links a:hover {
    background: #667eea;
    transform: translateY(-2px);
}
.footer-links {
    list-style: none;
}
.footer-links li {
    margin-bottom: 10px;
}
.footer-links a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
}
.footer-links a:hover {
    color: #0891b2;
}
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.contact-item {
    align-items: flex-start;
    display: flex;
    gap: 12px;
}
.contact-item svg {
    color: #fff;
    flex-shrink: 0;
    margin-top: 2px;
}
.contact-item p {
    color: #fff;
    line-height: 1.4;
    margin: 0;
}
.footer-bottom {
    border-top: 1px solid #4a5568;
    padding: 30px 0;
}
.footer-bottom-content {
    align-items: center;
    display: flex;
    justify-content: space-between;
}
.footer-copyright p {
    color: #fff;
    margin: 0;
}
.footer-legal {
    display: flex;
    gap: 30px;
}
.footer-legal a {
    color: #fff;
    font-size: 14px;
    text-decoration: none;
    transition: color 0.3s ease;
}
.footer-legal a:hover {
    color: #0891b2;
}
.footer-cta {
    background: linear-gradient(135deg, #0891b2, #0e7490);
    border-radius: 16px 16px 0 0;
    margin: 40px -20px 0;
    padding: 40px 20px;
}
.cta-content {
    text-align: center;
}
.cta-content h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 10px;
}
.cta-content p {
    font-size: 1.1rem;
    margin-bottom: 25px;
    opacity: 0.9;
}
.cta-content .btn {
    background: #fff;
    color: #a47d37;
    font-size: 16px;
    font-weight: 600;
    padding: 15px 30px;
}
.cta-content .btn:hover {
    background: #f8f9fa;
    box-shadow: 0 8px 25px #0003;
    transform: translateY(-2px);
}
@media (max-width: 1024px) {
    .footer-content {
        gap: 30px;
        grid-template-columns: 1fr 1fr;
    }
}
@media (max-width: 768px) {
    .footer {
        padding: 40px 0 0;
    }
    .footer-content {
        gap: 30px;
        grid-template-columns: 1fr;
    }
    .footer-bottom-content {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    .footer-legal {
        flex-direction: column;
        gap: 15px;
    }
    .footer-cta {
        margin: 30px -15px 0;
        padding: 30px 15px;
    }
    .cta-content h3 {
        font-size: 1.6rem;
    }
}
@media (max-width: 480px) {
    .social-links {
        gap: 10px;
    }
    .social-links a {
        height: 35px;
        width: 35px;
    }
    .contact-item {
        flex-direction: column;
        gap: 8px;
    }
}
@media (max-width: 768px) {
    #tawk-widget-container,
    .tawk-widget,
    [class*="tawk"],
    [id*="tawk"],
    iframe[title*="tawk"] {
        bottom: 25px !important;
    }
}
.tawk-trigger-button {
    background: #667eea;
    border: none;
    border-radius: 50px;
    bottom: 20px;
    box-shadow: 0 4px 12px #667eea66;
    color: #fff;
    cursor: pointer;
    font-family: Inter, sans-serif;
    font-weight: 500;
    padding: 15px 20px;
    position: fixed;
    right: 20px;
    transition: all 0.3s ease;
    z-index: 1000;
}
.tawk-trigger-button:hover {
    background: #5a67d8;
    box-shadow: 0 6px 16px #667eea80;
    transform: translateY(-2px);
}
.tawk-trigger-button:active {
    transform: translateY(0);
}
@media (max-width: 768px) {
    .tawk-trigger-button {
        bottom: 25px;
        font-size: 14px;
        padding: 12px 16px;
        right: 15px;
    }
}
.App {
    text-align: left;
}
html {
    scroll-behavior: smooth;
}
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: #f1f1f1;
}
::-webkit-scrollbar-thumb {
    background: #667eea;
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: #5a67d8;
}
/*# sourceMappingURL=main.3371c0a4.css.map*/
