/* ================================
   AJ Chauffeur - Main Styles
   ================================ */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}

body, html {
    height: 100%;
    overflow-x: hidden;
    scroll-behavior: smooth;
    background: #0a0a0a;
    color: white;
}

/* ================================
   Navigation
   ================================ */
.top-nav-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    background-color: rgba(0, 0, 0, 0.95);
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    display: flex;
    justify-content: center;
}

.top-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 1400px;
    padding: 15px 40px;
}

.logo-link {
    text-decoration: none;
}

.logo {
    display: flex;
    align-items: center;
    margin-right: auto;
}

.logo-circle {
    width: 40px;
    height: 40px;
    background-color: #FFCC00;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: bold;
    font-size: 20px;
    color: black;
    margin-right: 10px;
    transition: transform 0.3s ease;
}

.logo:hover .logo-circle {
    transform: rotate(10deg);
}

.logo-text {
    color: white;
    font-weight: bold;
    font-size: 20px;
    letter-spacing: 0.5px;
}

.nav-buttons {
    display: flex;
    gap: 20px;
}

.sign-in {
    color: white;
    text-decoration: none;
    font-weight: bold;
    padding: 8px 16px;
    transition: opacity 0.3s, background-color 0.3s;
    border-radius: 4px;
}

.sign-in:hover {
    opacity: 0.8;
    background-color: rgba(255, 255, 255, 0.1);
}

.book-now-btn {
    background-color: #FFCC00;
    color: black;
    padding: 10px 20px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s, transform 0.2s;
    animation: blink 2s infinite;
    position: relative;
}

.book-now-btn.active {
    box-shadow: 0 0 0 3px rgba(255, 204, 0, 0.5);
}

.book-now-btn:hover {
    background-color: #FFD700;
    animation: none;
    transform: translateY(-2px);
}

@keyframes blink {
    0% { box-shadow: 0 0 0 0 rgba(255, 204, 0, 0.7); }
    70% { box-shadow: 0 0 0 10px rgba(255, 204, 0, 0); }
    100% { box-shadow: 0 0 0 0 rgba(255, 204, 0, 0); }
}

/* ================================
   Hero Section
   ================================ */
.aj-chauffeur-container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
}

.header-container {
    position: relative;
    z-index: 2;
    color: white;
    padding: 100px 0 40px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    overflow: hidden;
}

.video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
    filter: brightness(1.2);
}

.hero-backgrounds {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    z-index: 0;
}

.hero-bg-slide {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 1.2s ease-in-out;
}

.hero-bg-slide.active {
    opacity: 1;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(20, 20, 20, 0.6) 0%, rgba(10, 10, 10, 0.7) 100%);
    z-index: 1;
}

.main-content {
    text-align: center;
    max-width: 800px;
    margin: auto;
    padding: 40px 20px;
    width: 100%;
    position: relative;
    z-index: 2;
}

.headline {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    min-height: 130px;
}

.sliding-text-container {
    position: relative;
    height: 60px;
    overflow: hidden;
    margin-bottom: 10px;
}

.sliding-text {
    position: absolute;
    width: 100%;
    text-align: center;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease, transform 0.8s ease;
    color: white;
}

.sliding-text.active {
    opacity: 1;
    transform: translateY(0);
}

.headline span {
    color: #FFCC00;
    display: block;
    font-size: 56px;
    margin-top: 10px;
}

.description {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.9;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.sliding-desc-container {
    position: relative;
    display: block;
    min-height: 55px;
}

.sliding-desc {
    position: absolute;
    width: 100%;
    left: 0;
    opacity: 0;
    transition: opacity 0.8s ease;
}

.sliding-desc.active {
    opacity: 1;
}

.quote-btn {
    background-color: #FFCC00;
    color: black;
    padding: 15px 30px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: bold;
    display: inline-block;
    font-size: 18px;
    transition: transform 0.2s, background-color 0.2s;
    margin-top: 25px;
    margin-bottom: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    animation: blink 2s infinite;
}

.quote-btn:hover {
    transform: translateY(-2px);
    background-color: #FFD700;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.4);
    animation: none;
}

.pattern-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        radial-gradient(circle at 25% 25%, rgba(255, 204, 0, 0.03) 0%, transparent 20%),
        radial-gradient(circle at 75% 75%, rgba(255, 204, 0, 0.03) 0%, transparent 20%);
    z-index: -1;
    pointer-events: none;
}

.scroll-down {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    font-size: 14px;
    animation: bounce 2s infinite;
    opacity: 0.8;
    z-index: 3;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0) translateX(-50%); }
    40% { transform: translateY(-20px) translateX(-50%); }
    60% { transform: translateY(-10px) translateX(-50%); }
}

.video-loading {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #FFCC00;
    font-size: 18px;
    z-index: -1;
}

/* ================================
   Airport Transfer Section
   ================================ */
.airport-transfer-section {
    padding: 80px 20px;
    background: linear-gradient(rgba(20, 20, 20, 0.88), rgba(20, 20, 20, 0.88)), url('../images/TravelPartnership.jpg') center/cover no-repeat;
    color: white;
    text-align: center;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
}

.airport-container {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.airport-heading {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
    text-transform: uppercase;
    color: #ffffff;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

.airport-heading span { color: #FFCC00; display: block; }

.airport-description {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 30px;
    max-width: 700px;
    opacity: 0.9;
}

.airport-features {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 40px;
}

.feature-card {
    background: rgba(20, 20, 20, 0.8);
    border-radius: 8px;
    padding: 25px;
    width: 200px;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: transform 0.3s ease, background 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    background: rgba(40, 40, 40, 0.9);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.feature-card i { font-size: 36px; color: #FFCC00; margin-bottom: 15px; }
.feature-card h3 { font-size: 18px; margin-bottom: 10px; }
.feature-card p { font-size: 14px; opacity: 0.9; }

.airport-btn {
    background-color: #FFCC00;
    color: #000;
    padding: 16px 35px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: bold;
    font-size: 18px;
    transition: transform 0.2s, background-color 0.2s, box-shadow 0.2s;
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 30px 0;
}

.airport-btn:hover {
    transform: translateY(-2px);
    background-color: #FFD700;
    box-shadow: 0 5px 15px rgba(255, 204, 0, 0.4);
}

.airport-icons {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin: 30px 0;
    flex-wrap: wrap;
    width: 100%;
}

.airport-icon {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    min-width: 120px;
}

.airport-icon i { font-size: 32px; color: #FFCC00; }
.airport-icon span { font-size: 14px; opacity: 0.95; font-weight: 500; white-space: nowrap; }

.aj-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 40px;
    color: #FFCC00;
    font-weight: bold;
    font-size: 20px;
}

/* ================================
   Services Section
   ================================ */
.services-section {
    padding: 100px 0;
    background-color: #000;
    color: white;
    position: relative;
    z-index: 2;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    width: 100%;
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
    padding: 0 20px;
}

.section-title {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 20px;
    letter-spacing: 1px;
    color: #FFCC00;
    text-transform: uppercase;
}

.section-subtitle {
    font-size: 18px;
    opacity: 0.8;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.service-card {
    background: linear-gradient(145deg, #1a1a1a, #2a2a2a);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 204, 0, 0.1);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(255, 204, 0, 0.2);
    border-color: rgba(255, 204, 0, 0.3);
}

.service-image { height: 220px; overflow: hidden; position: relative; }

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-card:hover .service-image img { transform: scale(1.05); }

.service-content {
    padding: 30px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.service-content h3 { font-size: 24px; margin-bottom: 15px; font-weight: 700; color: #FFCC00; }
.service-content p { color: rgba(255, 255, 255, 0.8); margin-bottom: 25px; line-height: 1.6; flex-grow: 1; }

.service-features { margin-bottom: 25px; list-style: none; }
.service-features li { display: flex; align-items: center; margin-bottom: 10px; color: rgba(255, 255, 255, 0.8); }
.service-features li i { color: #FFCC00; margin-right: 10px; font-size: 14px; }

.service-highlights { list-style: none; padding: 0; margin: 20px 0 25px; }
.service-highlights li { display: flex; align-items: center; margin-bottom: 12px; color: rgba(255, 255, 255, 0.85); font-size: 0.95rem; }
.service-highlights li i { color: #FFCC00; margin-right: 10px; font-size: 16px; flex-shrink: 0; }

.service-btn {
    display: inline-block;
    padding: 14px 30px;
    background: #FFCC00;
    color: #000;
    text-decoration: none;
    border-radius: 6px;
    font-weight: bold;
    transition: all 0.3s ease;
    font-size: 16px;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: auto;
    animation: blink 2s infinite;
}

.service-btn:hover {
    transform: translateY(-3px);
    background-color: #FFD700;
    box-shadow: 0 5px 15px rgba(255, 204, 0, 0.4);
    animation: none;
}

.service-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #FFCC00;
    color: #000;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ================================
   Stats Section
   ================================ */
.stats-section {
    background: linear-gradient(to right, #0a0a0a, #1a1a1a);
    padding: 80px 0;
    margin-top: 100px;
    border-top: 1px solid rgba(255, 204, 0, 0.2);
    border-bottom: 1px solid rgba(255, 204, 0, 0.2);
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    text-align: center;
}

.stat-item { padding: 20px; }
.stat-number { font-size: 48px; font-weight: 800; color: #FFCC00; margin-bottom: 10px; }
.stat-label { font-size: 16px; color: rgba(255, 255, 255, 0.8); text-transform: uppercase; letter-spacing: 1px; }

/* ================================
   CTA Section
   ================================ */
.cta-section {
    padding: 100px 0;
    text-align: center;
    background: linear-gradient(rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.9));
    background-size: cover;
    background-position: center;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
}

.cta-title { font-size: 36px; font-weight: 800; margin-bottom: 20px; color: #FFCC00; }
.cta-description { font-size: 18px; max-width: 700px; margin: 0 auto 40px; line-height: 1.6; color: rgba(255, 255, 255, 0.9); }
.cta-buttons { display: flex; justify-content: center; gap: 20px; flex-wrap: wrap; }

.cta-btn-primary {
    display: inline-block;
    padding: 16px 40px;
    background: #FFCC00;
    color: #000;
    text-decoration: none;
    border-radius: 6px;
    font-weight: bold;
    transition: all 0.3s ease;
    font-size: 18px;
    text-transform: uppercase;
    letter-spacing: 1px;
    animation: blink 2s infinite;
}

.cta-btn-primary:hover {
    transform: translateY(-3px);
    background-color: #FFD700;
    box-shadow: 0 5px 15px rgba(255, 204, 0, 0.4);
    animation: none;
}

.cta-btn-secondary {
    display: inline-block;
    padding: 16px 40px;
    background: transparent;
    color: #FFCC00;
    text-decoration: none;
    border-radius: 6px;
    font-weight: bold;
    transition: all 0.3s ease;
    font-size: 18px;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 2px solid #FFCC00;
}

.cta-btn-secondary:hover {
    transform: translateY(-3px);
    background: rgba(255, 204, 0, 0.1);
    box-shadow: 0 5px 15px rgba(255, 204, 0, 0.2);
}

/* ================================
   Advantages Section
   ================================ */
.advantages-section {
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    padding: 80px 20px;
    background: linear-gradient(rgba(10, 10, 10, 0.95), rgba(10, 10, 10, 0.95));
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.section-heading {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
    text-transform: uppercase;
    text-align: center;
}

.section-heading span { color: #FFCC00; }

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.advantage-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
    border: 1px solid rgba(255, 255, 255, 0.1);
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.advantage-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    background: rgba(255, 255, 255, 0.08);
}

.advantage-icon {
    width: 70px;
    height: 70px;
    background-color: #FFCC00;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 25px;
}

.advantage-icon i { color: #000; font-size: 28px; }
.advantage-title { font-size: 24px; font-weight: 700; margin-bottom: 15px; color: #FFCC00; }
.advantage-description { font-size: 16px; line-height: 1.6; opacity: 0.9; }

/* ================================
   Testimonials Section
   ================================ */
.testimonials-section {
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    padding: 80px 20px;
    background: linear-gradient(rgba(10, 10, 10, 0.95), rgba(10, 10, 10, 0.95));
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.section-tag {
    display: inline-block;
    color: #FFCC00;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 15px;
}

.section-subheading { font-size: 18px; max-width: 600px; margin: 0 auto; opacity: 0.9; }

.testimonials-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: 30px;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    background: rgba(255, 255, 255, 0.08);
}

.testimonial-content { margin-bottom: 20px; position: relative; }
.testimonial-content p { font-size: 16px; line-height: 1.6; font-style: italic; }
.quote-icon { color: #FFCC00; font-size: 24px; opacity: 0.3; position: absolute; top: -10px; left: -10px; }
.rating { color: #FFCC00; margin-bottom: 15px; }
.rating i { margin-right: 2px; }
.testimonial-author { display: flex; align-items: center; }
.author-image { width: 60px; height: 60px; border-radius: 50%; overflow: hidden; margin-right: 15px; border: 2px solid #FFCC00; }
.author-image img { width: 100%; height: 100%; object-fit: cover; }
.author-avatar { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; background: linear-gradient(135deg, #FFCC00, #e6b800); color: #000; font-size: 24px; font-weight: bold; }
.author-details { flex: 1; }
.author-name { font-weight: bold; font-size: 18px; margin-bottom: 5px; }
.author-title { font-size: 14px; opacity: 0.8; }

/* ================================
   About Section
   ================================ */
.about-section {
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    padding: 80px 20px;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.88) 50%, rgba(0, 0, 0, 0.7) 50%), url('../images/airport-transfer.jpg') center/cover no-repeat;
    color: white;
    display: flex;
    align-items: center;
    min-height: 100vh;
}

.about-container { max-width: 1200px; margin: 0 auto; display: flex; align-items: center; }
.about-content { flex: 1; padding-right: 50px; }

.about-heading { font-size: 42px; font-weight: 800; margin-bottom: 20px; line-height: 1.2; text-transform: uppercase; }
.about-heading span { color: #FFCC00; display: block; }
.about-description { font-size: 18px; line-height: 1.6; margin-bottom: 25px; opacity: 0.9; }
.about-features-list { margin-bottom: 30px; }
.about-feature { display: flex; align-items: center; margin-bottom: 15px; }
.about-feature i { font-size: 20px; color: #FFCC00; margin-right: 15px; width: 25px; }
.about-feature p { font-size: 16px; opacity: 0.9; margin: 0; }

.about-btn {
    background-color: #FFCC00;
    color: black;
    padding: 16px 35px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: bold;
    font-size: 18px;
    transition: transform 0.2s, background-color 0.2s;
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-btn:hover {
    transform: translateY(-2px);
    background-color: #FFD700;
    box-shadow: 0 5px 15px rgba(255, 204, 0, 0.3);
}

.about-image {
    flex: 1;
    position: relative;
    height: 500px;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    background: url('https://images.unsplash.com/photo-1551298379-05184ed4f453?ixlib=rb-4.0.3&auto=format&fit=crop&w=1064&q=80') no-repeat center center;
    background-size: cover;
}

/* ================================
   Book CTA Section
   ================================ */
.aj-cta-section {
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    padding: 80px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    background: linear-gradient(rgba(20, 20, 20, 0.75), rgba(20, 20, 20, 0.75)), url('../images/business-account.jpg') center/cover no-repeat;
}

.aj-cta-content { text-align: center; max-width: 1100px; width: 100%; margin: 0 auto; position: relative; z-index: 2; }
.aj-cta-heading { font-size: 42px; font-weight: 800; margin-bottom: 20px; line-height: 1.2; text-transform: uppercase; text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5); }
.aj-cta-heading span { color: #FFCC00; }
.aj-cta-subheading { font-size: 20px; margin-bottom: 40px; opacity: 0.9; max-width: 600px; margin-left: auto; margin-right: auto; }
.aj-cta-features { display: flex; justify-content: center; flex-wrap: wrap; gap: 25px; margin-bottom: 50px; }

.aj-cta-feature {
    display: flex;
    align-items: center;
    background: rgba(0, 0, 0, 0.5);
    padding: 15px 20px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease;
    backdrop-filter: blur(5px);
}

.aj-cta-feature:hover { transform: translateY(-3px); background: rgba(0, 0, 0, 0.6); }
.aj-cta-feature i { color: #FFCC00; font-size: 20px; margin-right: 12px; }
.aj-cta-feature span { font-size: 16px; font-weight: 600; }
.aj-cta-buttons { display: flex; justify-content: center; gap: 20px; flex-wrap: wrap; margin-bottom: 40px; }

.aj-cta-button {
    padding: 18px 35px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: bold;
    font-size: 18px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.aj-cta-button.primary { background-color: #FFCC00; color: black; animation: blink 2s infinite; }
.aj-cta-button.primary:hover { background-color: #FFD700; transform: translateY(-3px); animation: none; }
.aj-cta-button.secondary { background-color: rgba(0, 0, 0, 0.5); color: white; border: 2px solid #FFCC00; }
.aj-cta-button.secondary:hover { background-color: rgba(255, 204, 0, 0.1); transform: translateY(-3px); }
.aj-cta-button i { margin-left: 10px; }
.aj-cta-footer { display: flex; justify-content: center; align-items: center; margin-top: 30px; color: rgba(255, 255, 255, 0.9); font-size: 14px; }
.aj-cta-footer i { color: #FFCC00; margin: 0 8px; }
.aj-cta-logo { display: flex; align-items: center; justify-content: center; margin-top: 40px; color: #FFCC00; font-weight: bold; font-size: 20px; }
.aj-logo-circle { width: 36px; height: 36px; background-color: #FFCC00; border-radius: 50%; display: flex; justify-content: center; align-items: center; font-weight: bold; font-size: 16px; color: black; margin-right: 12px; }

/* ================================
   Payment Section
   ================================ */
.ajc-payment-section {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: #e0e0e0;
    padding: 80px 0;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.ajc-payment-container { max-width: 1200px; width: 100%; padding: 0 20px; }
.ajc-payment-header { text-align: center; margin-bottom: 50px; }
.ajc-payment-subtitle { font-size: 18px; color: #a0a0a0; text-transform: uppercase; letter-spacing: 2px; margin-bottom: 15px; }
.ajc-payment-title { font-size: 36px; font-weight: 700; color: #ffffff; margin-bottom: 20px; }
.kl-highlight { color: #FFCC00; }
.ajc-payment-subheading { font-size: 20px; color: #b0b0b0; max-width: 800px; margin: 0 auto; line-height: 1.5; }
.kl-location { display: flex; align-items: center; justify-content: center; gap: 10px; margin-top: 15px; color: #FFCC00; font-weight: 600; }

.ajc-payment-methods { display: flex; justify-content: center; gap: 40px; margin: 50px 0; flex-wrap: wrap; }

.ajc-payment-method {
    text-align: center;
    width: 120px;
    padding: 20px;
    background: #2a2a2a;
    border-radius: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.ajc-payment-method:hover { transform: translateY(-5px); box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4); background: #333; }
.ajc-payment-icon { font-size: 50px; color: #e0e0e0; margin-bottom: 15px; }
.ajc-payment-method span { font-weight: 600; color: #e0e0e0; }

.ajc-benefits-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; margin-top: 50px; }

.ajc-benefit-item {
    display: flex;
    flex-direction: column;
    gap: 15px;
    padding: 20px;
    background: #2a2a2a;
    border-radius: 8px;
    transition: background 0.3s ease;
    cursor: pointer;
    border-left: 4px solid #FFCC00;
}

.ajc-benefit-item:hover { background: #333; }
.ajc-benefit-header { display: flex; align-items: flex-start; gap: 15px; }
.ajc-benefit-icon { color: #FFCC00; font-size: 20px; margin-top: 3px; flex-shrink: 0; transition: transform 0.3s ease; }
.ajc-benefit-text { color: #d0d0d0; line-height: 1.6; font-weight: 600; flex: 1; }

.ajc-benefit-details {
    color: #b0b0b0;
    line-height: 1.6;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease, padding 0.3s ease;
    padding: 0 15px;
    border-left: 2px solid #FFCC00;
    margin-left: 23px;
}

.ajc-benefit-item.active .ajc-benefit-details { max-height: 200px; padding: 15px; }
.ajc-benefit-item.active .ajc-benefit-icon { transform: rotate(90deg); }

.book-now-container { text-align: center; margin-top: 60px; padding: 30px; background: rgba(42, 42, 42, 0.7); border-radius: 12px; border: 1px solid #FFCC00; }
.book-now-title { font-size: 24px; color: #ffffff; margin-bottom: 20px; }

.book-now-button {
    display: inline-block;
    background: linear-gradient(135deg, #FFCC00 0%, #FF9900 100%);
    color: #1a1a1a;
    font-size: 18px;
    font-weight: 700;
    padding: 16px 40px;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 204, 0, 0.3);
}

.book-now-button:hover { transform: translateY(-3px); box-shadow: 0 8px 25px rgba(255, 204, 0, 0.4); }
.contact-info { margin-top: 20px; font-size: 16px; color: #b0b0b0; }
.contact-info a { color: #FFCC00; text-decoration: none; }
.office-address { margin-top: 10px; font-size: 16px; color: #b0b0b0; line-height: 1.5; }

/* ================================
   WhatsApp Widget
   ================================ */
.whatsapp-widget { position: fixed; bottom: 25px; right: 25px; z-index: 10000; display: flex; flex-direction: column; align-items: flex-end; }

.whatsapp-button {
    width: 60px;
    height: 60px;
    background-color: #25D366;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-size: 32px;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

.whatsapp-button:hover { transform: scale(1.1); }

.whatsapp-tooltip {
    background-color: white;
    padding: 12px 16px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    margin-bottom: 15px;
    max-width: 250px;
    text-align: center;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
}

.whatsapp-tooltip.show { opacity: 1; visibility: visible; transform: translateY(0); }
.whatsapp-tooltip p { margin: 0; font-size: 14px; color: #333; }
.whatsapp-tooltip:after { content: ''; position: absolute; bottom: -8px; right: 20px; width: 0; height: 0; border-left: 8px solid transparent; border-right: 8px solid transparent; border-top: 8px solid white; }

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
    70% { box-shadow: 0 0 0 10px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* ================================
   Footer
   ================================ */
.site-footer {
    background: #0a0a0a;
    padding: 30px 0;
    text-align: center;
    border-top: 1px solid rgba(255, 204, 0, 0.1);
}

.site-footer p { color: rgba(255, 255, 255, 0.6); font-size: 14px; }

/* ================================
   Booking Page Styles
   ================================ */
.booking-body {
    font-family: 'Poppins', Arial, sans-serif;
    padding: 120px 20px 40px 20px;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 50%, #1a1a1a 100%);
    margin: 0;
    min-height: 100vh;
    color: #ffffff;
    line-height: 1.6;
}

.main-container { max-width: 1200px; margin: 0 auto; }

.header-section { text-align: center; margin-bottom: 40px; }

.header-section h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 10px;
    background: linear-gradient(45deg, #FFCC00, #FFD700);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.header-section p { font-size: 1.2rem; opacity: 0.8; font-weight: 300; color: #ccc; }

.section {
    background: rgba(40, 40, 40, 0.8);
    padding: 40px;
    border-radius: 20px;
    margin: 30px auto;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 204, 0, 0.1);
    transition: all 0.3s ease;
}

.section:hover { transform: translateY(-5px); box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4); border-color: rgba(255, 204, 0, 0.3); }

.booking-body .section-title {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 30px;
    text-align: center;
    color: #FFCC00;
    position: relative;
}

.booking-body .section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(45deg, #FFCC00, #FFD700);
    border-radius: 2px;
}

.vehicle-list { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 25px; margin-top: 30px; }

.vehicle-card {
    background: linear-gradient(145deg, #2a2a2a, #1f1f1f);
    border: 2px solid rgba(255, 204, 0, 0.1);
    border-radius: 15px;
    padding: 25px;
    text-align: center;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    position: relative;
    overflow: hidden;
}

.vehicle-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 204, 0, 0.1), transparent);
    transition: left 0.5s;
}

.vehicle-card:hover::before { left: 100%; }
.vehicle-card:hover { transform: translateY(-10px) scale(1.02); box-shadow: 0 20px 40px rgba(255, 204, 0, 0.2); border-color: #FFCC00; }

.vehicle-card.selected {
    border: 3px solid #FFCC00;
    background: linear-gradient(145deg, #2a2a2a, #1a1a1a);
    box-shadow: 0 0 30px rgba(255, 204, 0, 0.3);
    transform: translateY(-5px);
}

.vehicle-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 20px;
    transition: transform 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.vehicle-card:hover img { transform: scale(1.05); }
.vehicle-card h4 { margin: 15px 0 8px; font-size: 1.3rem; font-weight: 600; }
.vehicle-specs { color: #ccc; font-size: 0.9rem; font-weight: 400; margin-top: 5px; }
.vehicle-specs i { margin-right: 5px; color: #FFCC00; }

.form-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 25px; margin-top: 20px; }
.form-group { margin-bottom: 20px; }

.booking-body label { display: block; margin-bottom: 8px; font-weight: 500; color: #FFCC00; font-size: 0.95rem; }

.booking-body input,
.booking-body textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid rgba(255, 204, 0, 0.2);
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: rgba(30, 30, 30, 0.8);
    color: #fff;
}

.booking-body input::placeholder,
.booking-body textarea::placeholder { color: #888; }

.booking-body input:focus,
.booking-body textarea:focus {
    outline: none;
    border-color: #FFCC00;
    background: rgba(40, 40, 40, 0.9);
    box-shadow: 0 0 0 3px rgba(255, 204, 0, 0.2);
}

.booking-body textarea { resize: vertical; min-height: 100px; }

.btn {
    padding: 15px 30px;
    border: none;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(45deg, #FFCC00, #FFD700);
    color: #000;
    width: 100%;
    margin-top: 30px;
    font-weight: 700;
}

.btn-primary:hover { background: linear-gradient(45deg, #e6b800, #ffcc00); transform: translateY(-2px); box-shadow: 0 10px 20px rgba(255, 204, 0, 0.4); }

.btn-secondary {
    background: linear-gradient(45deg, #444, #333);
    color: #fff;
    padding: 12px 24px;
    font-size: 0.9rem;
    border: 1px solid rgba(255, 204, 0, 0.3);
}

.btn-secondary:hover { background: linear-gradient(45deg, #555, #444); transform: translateY(-2px); border-color: #FFCC00; }

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.btn:hover::before { left: 100%; }

.rate-section { margin-bottom: 30px; background: rgba(30, 30, 30, 0.6); padding: 25px; border-radius: 15px; border-left: 5px solid #FFCC00; }
.rate-section h4 { margin-bottom: 15px; color: #FFCC00; font-size: 1.3rem; font-weight: 600; }

.rate-table {
    width: 100%;
    border-collapse: collapse;
    background: rgba(40, 40, 40, 0.8);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.rate-table th, .rate-table td { padding: 15px; text-align: left; border-bottom: 1px solid rgba(255, 204, 0, 0.1); }
.rate-table th { background: linear-gradient(45deg, #FFCC00, #e6b800); color: #000; font-weight: 600; }
.rate-table tr:hover { background: rgba(255, 204, 0, 0.1); }

.thumbnail-container { text-align: center; margin: 25px 0; }

#selectedVehicleThumb {
    border: 4px solid #FFCC00;
    border-radius: 15px;
    box-shadow: 0 15px 30px rgba(255, 204, 0, 0.3);
    transition: all 0.3s ease;
    max-width: 250px;
    height: auto;
}

#selectedVehicleThumb:hover { transform: scale(1.08); }

.capacity-badge {
    background: linear-gradient(45deg, #FFCC00, #FFD700);
    color: #000;
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 600;
    display: inline-block;
    margin-top: 10px;
    font-size: 0.9rem;
}

.capacity-badge i { margin-right: 5px; }
.hidden { display: none; }
.text-center { text-align: center; }
.mt-4 { margin-top: 2rem; }

::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: #1a1a1a; }
::-webkit-scrollbar-thumb { background: #FFCC00; border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: #e6b800; }

/* ================================
   Blog Pages
   ================================ */
.blog-page-header {
    position: relative;
    background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
    padding: 140px 0 60px;
    text-align: center;
    overflow: hidden;
}

.blog-page-header .blog-header-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(255, 204, 0, 0.08) 0%, transparent 60%);
    pointer-events: none;
}

.blog-page-header .container { position: relative; z-index: 2; }

.blog-page-header h1 {
    font-size: 48px;
    font-weight: 800;
    color: #fff;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.blog-page-header h1 span { color: #FFCC00; }

.blog-page-header p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.7);
    max-width: 600px;
    margin: 0 auto;
}

.blog-post-header { padding-bottom: 50px; }

.back-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #FFCC00;
    text-decoration: none;
    margin-bottom: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.back-link:hover { color: #FFD700; transform: translateX(-3px); }

.post-meta {
    display: flex;
    justify-content: center;
    gap: 15px;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 10px;
}

.post-meta i { margin-right: 5px; color: #FFCC00; }

/* Blog Breadcrumbs */
.blog-breadcrumbs {
    background: rgba(20, 20, 20, 0.95);
    padding: 15px 0;
    font-size: 0.85rem;
    border-bottom: 1px solid rgba(255, 204, 0, 0.1);
}

.blog-breadcrumbs .container {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.blog-breadcrumbs a {
    color: #FFCC00;
    text-decoration: none;
    transition: color 0.3s;
}

.blog-breadcrumbs a:hover { color: #FFD700; }
.blog-breadcrumbs span { color: rgba(255, 255, 255, 0.4); font-size: 0.75rem; }
.blog-breadcrumbs .current { color: rgba(255, 255, 255, 0.7); }

/* Blog Listing */
.blog-listing {
    padding: 80px 0;
    background: #0a0a0a;
}

.blog-listing .container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 30px;
}

.blog-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.blog-card {
    background: rgba(25, 25, 25, 0.9);
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.06);
    transition: all 0.4s ease;
}

.blog-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 204, 0, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5), 0 0 30px rgba(255, 204, 0, 0.05);
}

.blog-card-image {
    position: relative;
    overflow: hidden;
    height: 220px;
}

.blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-card:hover .blog-card-image img { transform: scale(1.08); }

.blog-card-date {
    position: absolute;
    top: 15px;
    left: 15px;
    background: rgba(0, 0, 0, 0.85);
    border: 1px solid rgba(255, 204, 0, 0.3);
    border-radius: 8px;
    padding: 8px 12px;
    text-align: center;
    line-height: 1.2;
}

.blog-day {
    display: block;
    font-size: 1.3rem;
    font-weight: 700;
    color: #FFCC00;
}

.blog-month {
    display: block;
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.blog-card-body { padding: 25px; }

.blog-card-body h3 {
    color: #fff;
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 12px;
    line-height: 1.4;
    transition: color 0.3s;
}

.blog-card:hover .blog-card-body h3 { color: #FFCC00; }

.blog-card-body p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 20px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.blog-author {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
}

.blog-author i { margin-right: 5px; color: #FFCC00; }

.blog-read-more {
    font-size: 0.85rem;
    color: #FFCC00;
    font-weight: 600;
    transition: all 0.3s ease;
}

.blog-read-more i { margin-left: 5px; transition: transform 0.3s; }
.blog-card:hover .blog-read-more i { transform: translateX(4px); }

.no-posts {
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
    font-size: 1.1rem;
    padding: 80px 0;
}

/* Blog Pagination */
.blog-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-top: 60px;
    flex-wrap: wrap;
}

.pagination-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 44px;
    height: 44px;
    padding: 0 15px;
    background: rgba(25, 25, 25, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.pagination-link:hover {
    background: rgba(255, 204, 0, 0.1);
    border-color: rgba(255, 204, 0, 0.4);
    color: #FFCC00;
}

.pagination-link.active {
    background: linear-gradient(45deg, #FFCC00, #FFD700);
    border-color: #FFCC00;
    color: #000;
    font-weight: 700;
}

/* Blog Post Page */
.blog-post {
    padding: 60px 0 80px;
    background: #0a0a0a;
}

.blog-post .container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

.blog-post-layout {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 40px;
}

.blog-post-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 30px;
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.blog-post-body {
    font-size: 1.05rem;
    line-height: 1.9;
    color: rgba(255, 255, 255, 0.8);
}

.blog-post-body h2, .blog-post-body h3, .blog-post-body h4 { color: #fff; margin: 1.5em 0 0.8em; }
.blog-post-body h2 { font-size: 1.6rem; border-bottom: 2px solid rgba(255, 204, 0, 0.2); padding-bottom: 10px; }
.blog-post-body h3 { font-size: 1.3rem; }
.blog-post-body a { color: #FFCC00; text-decoration: underline; }
.blog-post-body a:hover { color: #FFD700; }
.blog-post-body img { max-width: 100%; border-radius: 8px; margin: 1.5em 0; }
.blog-post-body blockquote {
    border-left: 4px solid #FFCC00;
    padding: 15px 20px;
    margin: 1.5em 0;
    background: rgba(255, 204, 0, 0.05);
    border-radius: 0 8px 8px 0;
    color: rgba(255, 255, 255, 0.7);
    font-style: italic;
}

.blog-post-body ul, .blog-post-body ol { margin: 1em 0; padding-left: 1.5em; }
.blog-post-body li { margin-bottom: 0.5em; }
.blog-post-body p { margin-bottom: 1.2em; }

/* Blog Sidebar */
.blog-sidebar {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.sidebar-widget {
    background: rgba(25, 25, 25, 0.9);
    padding: 25px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.sidebar-widget h3 {
    font-size: 1.1rem;
    color: #fff;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid #FFCC00;
    font-weight: 600;
}

.sidebar-widget h3 i { margin-right: 8px; color: #FFCC00; }

.sidebar-widget p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 15px;
}

.sidebar-post {
    display: block;
    text-decoration: none;
    padding: 12px 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 6px;
    transition: all 0.3s ease;
}

.sidebar-post:last-child { border-bottom: none; }

.sidebar-post:hover {
    background: rgba(255, 204, 0, 0.05);
    padding-left: 15px;
}

.sidebar-post.active {
    border-left: 3px solid #FFCC00;
    padding-left: 15px;
    background: rgba(255, 204, 0, 0.05);
}

.sidebar-post-date {
    display: block;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.4);
}

.sidebar-post-date i { margin-right: 4px; }

.sidebar-post-title {
    display: block;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
    margin-top: 4px;
    transition: color 0.3s;
}

.sidebar-post:hover .sidebar-post-title { color: #FFCC00; }

.sidebar-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(45deg, #FFCC00, #FFD700);
    color: #000;
    padding: 12px 25px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 700;
    transition: all 0.3s ease;
}

.sidebar-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(255, 204, 0, 0.3);
}

/* ================================
   Responsive
   ================================ */
@media (max-width: 1100px) {
    .advantages-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 1024px) {
    .headline { font-size: 42px; }
    .headline span { font-size: 48px; }
    .sliding-text-container { height: 55px; }
    .section-title { font-size: 36px; }
    .stat-number { font-size: 42px; }
}

@media (max-width: 992px) {
    .about-container { flex-direction: column; }
    .about-content { padding-right: 0; margin-bottom: 40px; text-align: center; }
    .about-feature { justify-content: center; }
    .about-image { width: 100%; }
    .testimonials-container { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }
}

@media (max-width: 768px) {
    .top-nav { flex-wrap: wrap; padding: 12px 15px; }
    .logo { margin: 0; width: auto; }
    .nav-buttons { margin-left: 0; }
    .header-container { padding: 90px 15px 40px; }
    .headline { font-size: 32px; min-height: 110px; }
    .headline span { font-size: 40px; }
    .sliding-text-container { height: 45px; }
    .description { font-size: 16px; padding: 0 10px; }
    .sliding-desc-container { position: relative; min-height: auto; }
    .sliding-desc { position: relative; display: none; }
    .sliding-desc.active { display: block; opacity: 1; }
    .airport-heading { font-size: 32px; }
    .airport-description { font-size: 16px; padding: 0 10px; }
    .feature-card { width: 100%; max-width: 300px; }
    .services-section { padding: 80px 0; }
    .section-header { margin-bottom: 60px; }
    .section-title { font-size: 32px; }
    .services-grid { grid-template-columns: 1fr; }
    .service-content { padding: 25px; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .stat-number { font-size: 36px; }
    .cta-title { font-size: 32px; }
    .cta-buttons { flex-direction: column; align-items: center; }
    .advantages-section { padding: 60px 20px; }
    .section-heading { font-size: 32px; }
    .testimonials-section { padding: 60px 20px; }
    .testimonials-container { grid-template-columns: 1fr; }
    .about-section { padding: 60px 20px; }
    .about-heading { font-size: 32px; }
    .aj-cta-section { padding: 60px 20px; }
    .aj-cta-heading { font-size: 32px; }
    .aj-cta-buttons { flex-direction: column; align-items: center; }
    .aj-cta-button { width: 100%; max-width: 300px; text-align: center; justify-content: center; }
    .aj-cta-features { flex-direction: column; align-items: center; }
    .aj-cta-feature { width: 100%; max-width: 300px; }
    .blog-page-header h1 { font-size: 32px; }
    .blog-page-header { padding: 120px 0 40px; }
    .blog-grid { grid-template-columns: 1fr; }
    .blog-post-layout { grid-template-columns: 1fr; }
    .blog-post-image { height: 280px; }
    .blog-listing { padding: 50px 0; }
    .ajc-payment-methods { gap: 30px; }
    .ajc-payment-method { width: 100px; }
    .ajc-benefits-grid { grid-template-columns: 1fr; }
    .whatsapp-button { width: 55px; height: 55px; font-size: 28px; }
    .booking-body { padding: 100px 15px 30px; }
    .header-section h1 { font-size: 2.2rem; }
    .section { padding: 25px; margin: 20px auto; }
    .vehicle-list { grid-template-columns: 1fr; }
    .form-grid { grid-template-columns: 1fr; }
}

@media (max-width: 576px) {
    .advantages-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
    .top-nav { padding: 10px 15px; }
    .nav-buttons { gap: 8px; }
    .sign-in, .book-now-btn { padding: 6px 10px; font-size: 13px; }
    .logo-text { font-size: 16px; }
    .logo-circle { width: 30px; height: 30px; font-size: 16px; margin-right: 8px; }
    .header-container { padding: 80px 10px 30px; }
    .headline { font-size: 28px; min-height: 90px; }
    .headline span { font-size: 32px; }
    .sliding-text-container { height: 40px; }
    .quote-btn { padding: 12px 25px; font-size: 16px; }
    .sliding-desc-container { position: relative; min-height: auto; }
    .sliding-desc { position: relative; display: none; }
    .sliding-desc.active { display: block; opacity: 1; }
    .airport-transfer-section { padding: 60px 15px; }
    .airport-heading { font-size: 28px; }
    .airport-btn { padding: 14px 25px; font-size: 16px; }
    .services-section { padding: 60px 0; }
    .section-title { font-size: 28px; }
    .stats-grid { grid-template-columns: 1fr; }
    .stat-number { font-size: 32px; }
    .cta-section { padding: 80px 0; }
    .cta-title { font-size: 28px; }
    .cta-btn-primary, .cta-btn-secondary { padding: 14px 30px; font-size: 16px; width: 100%; max-width: 300px; }
    .testimonials-section { padding: 50px 15px; }
    .about-section { padding: 50px 15px; }
    .about-heading { font-size: 28px; }
    .about-image { height: 300px; }
    .aj-cta-heading { font-size: 28px; }
    .ajc-payment-title { font-size: 28px; }
    .ajc-payment-methods { gap: 20px; }
    .ajc-payment-method { width: 80px; padding: 15px; }
    .ajc-payment-icon { font-size: 40px; }
    .ajc-payment-section { padding: 40px 0; }
    .blog-page-header h1 { font-size: 28px; }
    .blog-page-header { padding: 100px 0 30px; }
    .blog-card-image { height: 180px; }
    .blog-post-image { height: 220px; }
    .book-now-title { font-size: 20px; }
    .header-section h1 { font-size: 1.8rem; }
    .section { padding: 20px; }
    .vehicle-card { padding: 20px; }
    .btn { padding: 12px 24px; font-size: 0.9rem; }
}
