.hero-section {
    padding: 3rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.hero-visual {
    background: white;
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
}

.hero-icon-wrapper {
    width: 120px;
    height: 120px;
    margin: 0 auto;
    background: linear-gradient(135deg, #1a1a1a 0%, #333 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-icon {
    font-size: 3.5rem;
    color: white;
}

.hero-features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 10px;
}

.hero-feature i, .hero-feature svg {
    font-size: 1.5rem;
    color: #333;
}

.hero-feature span {
    font-weight: 500;
    color: #333;
}

.service-card {
    text-align: center;
    padding: 2rem;
    border-radius: 12px;
    background: white;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-icon {
    font-size: 2.5rem;
    color: var(--custom-primary);
    margin-bottom: 1.5rem;
}

.stat-card {
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.stat-number {
    font-size: 24px;
    font-weight: bold;
    color: #333;
}

.stat-label {
    font-size: 14px;
    color: #666;
}

.fleet-card {
    text-align: center;
    padding: 1.5rem;
    border-radius: 12px;
    background: white;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    height: 100%;
    overflow: hidden;
}

.fleet-card:hover {
    transform: translateY(-5px);
}

.fleet-image-container {
    width: 100%;
    height: 200px;
    overflow: hidden;
    border-radius: 8px;
    margin-bottom: 1rem;
}

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

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

.fleet-card h4 {
    margin: 1rem 0 0.5rem;
    font-size: 1.25rem;
    font-weight: 600;
}

.fleet-card.luxury {
    border: 1px solid #e0e0e0;
}

.later-booking-section {
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 1px solid #e0e0e0;
}

.fleet-note {
    font-style: italic;
    color: #666;
    margin-top: 2rem;
}

@media (max-width: 768px) {
    .fleet-card {
        padding: 1.5rem;
    }
    .fleet-card img {
        max-height: 120px;
    }
    .fleet-image-container {
        height: 160px;
    }
}

.step-card {
    text-align: center;
    padding: 20px;
    border: 1px solid #ccc;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.step-number {
    display: inline-block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    border-radius: 50%;
    background-color: var(--custom-primary);
    color: white;
    font-weight: bold;
    margin-bottom: 10px;
}

.step-icon {
    font-size: 2rem;
    color: var(--custom-primary);
    margin-bottom: 10px;
}

.b2b-section {
    background-color: #f8f9fa;
}

.b2b-section h2 {
    color: #333;
    font-weight: 600;
}

.b2b-content h3 {
    color: #333;
}

.b2b-features i, .b2b-features svg {
    font-size: 1.5rem;
    width: 30px;
}

.b2b-benefits {
    border-radius: 12px;
}

.b2b-benefits h4 {
    color: #333;
    font-weight: 600;
}

.b2b-benefits li i, .b2b-benefits li svg {
    font-size: 1.2rem;
}

.testimonials-section {
    background-color: #fff;
}

.testimonials-section h2 {
    color: #333;
    font-weight: 600;
}

.testimonial-card {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 1.5rem;
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.testimonial-card .stars {
    color: #ffc107;
}

.testimonial-card .stars i, .testimonial-card .stars svg {
    font-size: 1.1rem;
}

.testimonial-text {
    color: #555;
    font-style: italic;
    line-height: 1.6;
    margin: 0;
}

.instagram-section {
    background-color: #f8f9fa;
}

.instagram-section h2 {
    color: #333;
    font-weight: 600;
}

.instagram-post-card {
    display: flex;
    justify-content: center;
    align-items: center;
}

.instagram-post-card a {
    text-decoration: none;
    display: block;
    width: 100%;
}

.instagram-post-img {
    width: 100%;
    aspect-ratio: 1 / 1;
    max-width: 400px;
    margin: 0 auto;
    border-radius: 12px;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.instagram-post-img:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.tiktok-section {
    background-color: #fff;
}

.tiktok-section h2 {
    color: #333;
    font-weight: 600;
}

.tiktok-video-card {
    display: block;
    text-decoration: none;
}

.tiktok-placeholder {
    position: relative;
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
    border-radius: 12px;
    overflow: hidden;
    background: #000;
    aspect-ratio: 9 / 16;
}

.tiktok-thumbnail {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.tiktok-placeholder:hover .tiktok-thumbnail {
    transform: scale(1.05);
    opacity: 0.8;
}

.tiktok-play-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70px;
    height: 70px;
    background: rgba(0, 0, 0, 0.7);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease, background 0.3s ease;
}

.tiktok-play-overlay i, .tiktok-play-overlay svg {
    color: #fff;
    font-size: 28px;
}

.tiktok-placeholder:hover .tiktok-play-overlay {
    transform: translate(-50%, -50%) scale(1.1);
    background: #fe2c55;
}

@media (max-width: 768px) {
    .hero-section {
        padding: 2rem 0;
    }
    .hero-section h1 {
        font-size: 2rem;
    }
}

.feature-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    opacity: 0;
    z-index: -1;
    transition: opacity 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    color: white;
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1);
    color: white;
}

.about-section {
    position: relative;
    overflow: hidden;
}

.about-image-container {
    position: relative;
    padding: 1rem;
}

.experience-badge {
    position: absolute;
    bottom: 2rem;
    right: 2rem;
    background: white;
    padding: 1rem;
    border-radius: 50%;
    width: 120px;
    height: 120px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    animation: float 3s ease-in-out infinite;
}

.experience-badge .number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1;
}

.experience-badge .text {
    font-size: 0.875rem;
    color: #666;
    text-align: center;
    margin-top: 0.25rem;
}

@keyframes float {
    0% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0); }
}

.about-features {
    margin-top: 2rem;
}

.about-features i, .about-features svg {
    font-size: 1.25rem;
}

@media (max-width: 768px) {
    .experience-badge {
        width: 100px;
        height: 100px;
        bottom: 1rem;
        right: 1rem;
    }
    .experience-badge .number {
        font-size: 1.75rem;
    }
    .experience-badge .text {
        font-size: 0.75rem;
    }
}

/* ============================================
   HOME PAGE RESPONSIVE IMPROVEMENTS
   ============================================ */

/* Hero section mobile */
@media (max-width: 767px) {
    .hero-section {
        padding: 1.5rem 0;
    }
    
    .hero-section .row {
        flex-direction: column-reverse;
    }
    
    .hero-section .col-lg-6:first-child {
        margin-top: 1.5rem;
    }
    
    .hero-visual {
        padding: 1.25rem;
        margin: 0 -0.5rem;
    }
    
    .hero-section h1 {
        font-size: 1.75rem;
        margin-bottom: 1rem;
    }
    
    .hero-section .lead {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .hero-section .btn {
        width: 100%;
        margin-bottom: 0.75rem;
    }
    
    .hero-section .d-flex {
        flex-direction: column;
    }
}

/* Services section mobile */
@media (max-width: 575px) {
    .service-card {
        padding: 1.25rem;
        margin-bottom: 1rem;
    }
    
    .service-icon {
        font-size: 2rem;
        margin-bottom: 1rem;
    }
}

/* B2B section mobile */
@media (max-width: 767px) {
    .b2b-section .row {
        flex-direction: column;
    }
    
    .b2b-content {
        margin-bottom: 2rem;
    }
    
    .b2b-benefits {
        margin-top: 1.5rem;
    }
}

/* TikTok section mobile */
@media (max-width: 767px) {
    .tiktok-section .row > div {
        margin-bottom: 1rem;
    }
    
    .tiktok-placeholder {
        max-width: 280px;
        margin: 0 auto;
    }
}

/* About section mobile */
@media (max-width: 767px) {
    .about-section .row {
        flex-direction: column-reverse;
    }
    
    .about-image-container {
        margin-bottom: 2rem;
        padding: 0.5rem;
    }
    
    .about-image-container img {
        border-radius: 12px;
    }
}

/* CTA section mobile */
@media (max-width: 575px) {
    .cta-section {
        padding: 2rem 1rem;
    }
    
    .cta-section h2 {
        font-size: 1.5rem;
    }
    
    .cta-section .btn {
        width: 100%;
    }
}

/* Feature cards responsive */
@media (max-width: 575px) {
    .feature-card {
        padding: 1.25rem;
        margin-bottom: 1rem;
    }
    
    .feature-icon {
        font-size: 2rem;
        margin-bottom: 1rem;
    }
}

@media (min-width: 576px) and (max-width: 767px) {
    .feature-section .col-lg-3,
    .feature-section .col-md-6 {
        flex: 0 0 50%;
        max-width: 50%;
    }
}

/* Destination cards mobile */
@media (max-width: 575px) {
    .destination-card {
        margin-bottom: 1rem;
    }
    
    .destination-card img {
        height: 140px;
    }
}
