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

body {
    font-family: 'Inter', sans-serif;
    color: #1a1a2e;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    z-index: 1000;
    backdrop-filter: blur(5px);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

/* Logo Wrapper - contains logo and language button side by side */
.logo-wrapper {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 1;
    min-width: 0;
    overflow: visible;
}

.logo a {
    font-size: 1.5rem;
    font-weight: 800;
    color: #e67e22;
    text-decoration: none;
    white-space: nowrap;
}

/* Language Button - right beside the logo */
.lang-btn {
    background: transparent;
    color: #e67e22;
    border: 2px solid #e67e22;
    padding: 0.3rem 0.7rem;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 4px;
    transition: all 0.3s ease;
    flex-shrink: 0;
    white-space: nowrap;
}

.lang-btn:hover {
    background: #e67e22;
    color: white;
    transform: scale(1.05);
}

.lang-btn i {
    font-size: 12px;
}

.lang-btn span {
    display: inline-block;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-menu a {
    text-decoration: none;
    color: #1a1a2e;
    font-weight: 600;
    transition: color 0.3s;
}

.nav-menu a:hover {
    color: #e67e22;
}

.book-btn {
    background: #e67e22;
    color: white !important;
    padding: 0.5rem 1.2rem;
    border-radius: 50px;
}

.book-btn:hover {
    background: #d35400;
    transform: scale(1.05);
}

.nav-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #1a1a2e;
    padding: 0.25rem 0.5rem;
    z-index: 1001;
    flex-shrink: 0;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    background: linear-gradient(rgba(0,0,0,0.2), rgba(0,0,0,0.2)), url('images/hero.jpeg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 900px;
    padding: 0 20px;
    animation: fadeInUp 1s ease-out;
    overflow: hidden;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.5);
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

/* Features - 1x4 Grid */
.hero-features {
    margin-top: 2rem;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    justify-items: center;
}

.feature-item {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(5px);
    padding: 0.75rem 1.25rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.feature-item:hover {
    background: rgba(230, 126, 34, 0.8);
    transform: translateY(-3px);
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-primary {
    background: #e67e22;
    color: white;
    box-shadow: 0 5px 15px rgba(230,126,34,0.4);
}

.btn-primary:hover {
    background: #d35400;
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 30px rgba(230,126,34,0.5);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background: white;
    color: #e67e22;
    transform: translateY(-3px);
}

/* Section Styles */
.section-tag {
    display: inline-block;
    background: #fde6d2;
    color: #e67e22;
    padding: 0.3rem 1rem;
    border-radius: 50px;
    font-size: 0.8rem;
    margin-bottom: 1rem;
}

.about, .services, .locations, .booking {
    padding: 80px 0;
    text-align: center;
}

.about {
    background: #f9f9ff;
}

.about h2, .services h2, .locations h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.about p {
    max-width: 800px;
    margin: 0 auto;
    color: #555;
    line-height: 1.6;
}

.stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 2rem;
}

.stat h3 {
    font-size: 2rem;
    color: #e67e22;
}

/* Services / Fleet Cards */
.services {
    background: white;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 2rem;
    margin-left: 0;
    margin-right: 0;
    padding-left: 0;
    padding-right: 0;
    width: 100%;
}

.service-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
    width: 100%;
    margin: 0;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 40px rgba(0,0,0,0.15);
    border-color: #e67e22;
}

.service-card-image {
    width: 100%;
    height: 180px;
    overflow: hidden;
}

.service-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.service-card:hover .service-card-image img {
    transform: scale(1.08);
}

.service-card-content {
    padding: 1.5rem;
    text-align: center;
    position: relative;
}

.service-icon {
    position: absolute;
    top: -22px;
    left: 50%;
    transform: translateX(-50%);
    background: #e67e22;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    z-index: 2;
}

.service-card-content h3 {
    margin-top: 0.5rem;
    font-size: 1.3rem;
    color: #1a1a2e;
}

.service-card-content p {
    color: #666;
    font-size: 0.85rem;
    margin: 0.8rem 0;
    line-height: 1.5;
}

.vehicle-badge {
    display: inline-block;
    background: #fde6d2;
    color: #e67e22;
    padding: 0.3rem 0.8rem;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 600;
    margin: 0.5rem 0;
}

.vehicle-features {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 0.8rem;
    flex-wrap: wrap;
}

.vehicle-features span {
    background: #f8f9fa;
    padding: 0.3rem 0.7rem;
    border-radius: 20px;
    font-size: 0.7rem;
    color: #555;
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
}

.vehicle-features span i {
    color: #e67e22;
    font-size: 0.7rem;
}

/* Locations Section */
.locations {
    background: #f9f9ff;
}

.location-featured {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    background: white;
    border-radius: 30px;
    overflow: hidden;
    margin-bottom: 3rem;
    margin-left: 0;
    margin-right: 0;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    width: 100%;
}

.location-featured-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.location-featured-content {
    padding: 2rem;
    text-align: left;
}

.location-badge {
    display: inline-block;
    background: #e67e22;
    color: white;
    padding: 0.3rem 1rem;
    border-radius: 50px;
    font-size: 0.8rem;
    margin-bottom: 1rem;
}

.attraction-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin-top: 1.5rem;
}

.attraction-tags span {
    background: #fde6d2;
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
}

/* Location Cards Grid */
.locations-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
    margin-left: 0;
    margin-right: 0;
    padding-left: 0;
    padding-right: 0;
    width: 100%;
    justify-content: center;
}

.location-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    width: 100%;
    margin: 0;
}

.location-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.location-card-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    flex-shrink: 0;
}

.location-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.location-card:hover .location-card-image img {
    transform: scale(1.05);
}

.location-card-content {
    padding: 1.5rem;
    text-align: center;
    position: relative;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.location-icon {
    position: absolute;
    top: -22px;
    left: 50%;
    transform: translateX(-50%);
    background: #e67e22;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.location-card-content h3 {
    margin-top: 0.5rem;
    font-size: 1.4rem;
    color: #1a1a2e;
}

.location-card-content p {
    color: #666;
    font-size: 0.9rem;
    margin: 0.8rem 0;
    line-height: 1.5;
    flex-grow: 1;
}

.attraction-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1rem;
}

.attraction-list span {
    background: #fde6d2;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.7rem;
    color: #e67e22;
    font-weight: 500;
}

/* Booking Section */
.booking {
    background: white;
}

.booking-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    background: #fef9f2;
    border-radius: 30px;
    overflow: hidden;
    width: 100%;
    margin: 0;
}

.booking-text {
    padding: 3rem;
    text-align: left;
}

.booking-text h2 {
    font-size: 2rem;
}

.btn-primary-large {
    display: inline-block;
    background: #e67e22;
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    margin-top: 1.5rem;
    transition: all 0.3s;
}

.btn-primary-large:hover {
    background: #d35400;
    transform: scale(1.05);
}

.booking-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Footer */
.footer {
    background: #1a1a2e;
    color: #ccc;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.footer-logo h3 {
    color: #e67e22;
}

.footer-links ul {
    list-style: none;
}

.footer-links a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #e67e22;
}

.social-icons a {
    color: white;
    margin-right: 1rem;
    font-size: 1.5rem;
    transition: all 0.3s;
}

.social-icons a:hover {
    color: #e67e22;
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    margin-top: 2rem;
    padding-top: 1rem;
    border-top: 1px solid #333;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ============================================
   RESPONSIVE FIXES
   ============================================ */

/* Tablet (992px and below) */
@media (max-width: 992px) {
    .hero-features {
        grid-template-columns: repeat(2, 1fr);
    }
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    .locations-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

/* Mobile (768px and below) */
@media (max-width: 768px) {
    .nav-toggle {
        display: block;
        position: relative;
        margin-left: 10px;
    }
    
    .nav-container {
        flex-wrap: nowrap;
        justify-content: space-between;
        padding: 0.8rem 20px;
    }
    
    .logo-wrapper {
        display: flex;
        align-items: center;
        gap: 8px;
        flex: 0 1 auto;
        min-width: 0;
        overflow: visible;
    }
    
    .logo a {
        font-size: 1rem;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        max-width: 100px;
    }
    
    .lang-btn {
        padding: 0.2rem 0.5rem;
        font-size: 10px;
        gap: 3px;
        flex-shrink: 0;
        border-width: 1.5px;
    }
    
    .lang-btn i {
        font-size: 10px;
    }
    
    .lang-btn span {
        display: inline-block !important;
        font-size: 9px;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: white;
        width: 100%;
        transition: 0.3s;
        padding: 2rem;
        gap: 1rem;
        box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    }
    .nav-menu.active {
        left: 0;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    .hero-features {
        grid-template-columns: 1fr;
    }
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.2rem;
    }
    .locations-grid {
        grid-template-columns: 1fr;
        gap: 1.2rem;
    }
    .location-featured {
        grid-template-columns: 1fr;
    }
    .booking-wrapper {
        grid-template-columns: 1fr;
    }
    .stats {
        flex-direction: column;
        gap: 1rem;
    }
    .location-featured-content {
        text-align: center;
    }
    .attraction-tags {
        justify-content: center;
    }
}

/* Small Mobile (480px and below) */
@media (max-width: 480px) {
    .container {
        padding: 0 12px;
    }
    
    .hero-content {
        padding: 0 12px;
    }
    
    .hero-content h1 {
        font-size: 1.5rem;
    }
    
    .hero-content p {
        font-size: 0.85rem;
    }
    
    .logo a {
        font-size: 0.85rem;
        max-width: 80px;
    }
    
    .lang-btn {
        padding: 0.15rem 0.4rem;
        font-size: 8px;
        gap: 2px;
        border-width: 1.5px;
    }
    
    .lang-btn i {
        font-size: 8px;
    }
    
    .lang-btn span {
        font-size: 7px;
    }
    
    .hero-features {
        grid-template-columns: 1fr;
        gap: 0.6rem;
        width: 100%;
        padding: 0 10px;
    }
    
    .feature-item {
        font-size: 0.7rem;
        padding: 0.4rem 0.8rem;
        white-space: normal;
        word-break: break-word;
        justify-content: center;
        text-align: center;
        width: 100%;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 0.8rem;
        width: 100%;
        padding: 0 10px;
    }
    
    .btn {
        padding: 0.7rem 1.2rem;
        font-size: 0.85rem;
        width: 100%;
        max-width: 260px;
        text-align: center;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    
    .section-tag {
        font-size: 0.7rem;
        padding: 0.2rem 0.8rem;
    }
    
    .about h2, .services h2, .locations h2 {
        font-size: 1.6rem;
    }
    
    .about p {
        font-size: 0.9rem;
        padding: 0 10px;
    }
    
    .stat h3 {
        font-size: 1.5rem;
    }
    
    .service-card-content h3 {
        font-size: 1.1rem;
    }
    
    .service-card-content p {
        font-size: 0.8rem;
    }
    
    .booking-text {
        padding: 1.5rem;
    }
    
    .booking-text h2 {
        font-size: 1.5rem;
    }
    
    .btn-primary-large {
        padding: 0.8rem 1.2rem;
        font-size: 0.9rem;
    }
}
