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

:root {
    --primary-color: #40b067;
    --secondary-color: #18632b;
    --accent-color: #7c5927;
    --header-bg-color: #3dae64;
    --about-bg-color: #183a2a;
    --hotels-bg-color: #dedede;
    --buses-bg-color: #36964e;
    --bus-gallery-bg-color: #1ea489;
    --hotel-gallery-bg-color: #ffffff;
    /* title colors */
    --about-title-color: #cc7a2e;
    --hotels-title-color: #ffffff;
    --buses-title-color: #ffffff;
    --bus-gallery-title-color: #ffffff;
    --hotel-gallery-title-color: var(--primary-color);
    --about-content-color: #ffffff;
}

body {
    font-family: 'Cairo', sans-serif;
    line-height: 1.6;
    color: #333;
    direction: rtl;
}

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

/* Fixed Contact Icons */
.fixed-contact {
    position: fixed;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1000;
    display: flex;
    flex-direction: row;
    gap: 15px;
}

.whatsapp-btn, .call-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    transition: transform 0.3s ease;
}

.whatsapp-btn {
    background: #25D366;
}

.call-btn {
    background: var(--accent-color);
}

.whatsapp-btn:hover, .call-btn:hover {
    transform: scale(1.1);
}

/* Header */
.header {
    background: transparent;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 999;
    transition: background 0.3s ease, box-shadow 0.3s ease, backdrop-filter 0.3s ease;
}

/* Header state when scrolled */
.header.scrolled {
    background: var(--header-bg-color);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

/* Header state when transparent (top of page) */
/* Desktop-only link color override to stay visible on hero */
@media (min-width: 769px) {
    .header.transparent .nav-menu a {
        color: #fff;
    }
    .header.transparent .nav-menu a:hover {
        color: var(--accent-color);
    }
    .header.transparent .nav-brand h2 {
        color: #fff !important;
    }
}

/* Hamburger color when header is transparent */
.header.transparent .hamburger span {
    background: #fff;
}

.navbar {
    padding: 1rem 0;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Brand: logo + title */
.nav-brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.nav-brand img {
    height: 50px;
    width: auto;
    display: block;
}

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

.nav-menu a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: var(--primary-color);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(44, 85, 48, 0.8);
    z-index: -1;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    font-weight: 900;
    animation: fadeInDown 2s ease-in-out infinite alternate;
    color: white;
    text-shadow: 
      -2px -2px 0 #040404, 2px -2px 0 #000000, -2px 2px 0 #237b44, 2px 2px 0 #25d366, 0 0 10px rgb(25 24 23 / 50%), 0 0 20px rgba(0, 0, 0, 0.3);
    letter-spacing: 2px;
    text-transform: uppercase;
}

.hero-content p {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    max-width: 800px;
}

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

.btn {
    padding: 15px 30px;
    border: none;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
}

.btn-primary {
    background: var(--accent-color);
    color: white;
}

.btn-primary:hover {
    background: var(--primary-color);
    transform: translateY(-2px);
}

.btn-secondary {
    background: #25D366;
    color: white;
}

.btn-secondary:hover {
    background: #1da851;
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-outline:hover {
    background: var(--primary-color);
    color: white;
}

/* Section Titles */
.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--primary-color);
    font-weight: 700;
}
/* Apply per-section title colors if available */
.about .section-title { color: var(--about-title-color, var(--primary-color)); }
.buses .section-title { color: var(--buses-title-color, var(--primary-color)); }
.hotels .section-title { color: var(--hotels-title-color, var(--primary-color)); }
.bus-gallery .section-title { color: var(--bus-gallery-title-color, var(--primary-color)); }
.hotel-gallery .section-title { color: var(--hotel-gallery-title-color, var(--primary-color)); }

/* Why Choose Us Section */
.why-choose-us {
    padding: 80px 0;
    background: var(--why-bg-color, #ffffff);
}

.why-choose-us .section-title {
    text-align: center;
    margin-bottom: 50px;
    color: var(--why-title-color, var(--primary-color));
    font-size: 2.5rem;
    position: relative;
    animation: titleFloat 4s ease-in-out infinite;
}

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

.why-choose-us .section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    border-radius: 2px;
    animation: titlePulse 3s ease-in-out infinite;
}

@keyframes titlePulse {
    0% {
        width: 80px;
    }
    50% {
        width: 120px;
    }
    100% {
        width: 80px;
    }
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.feature-card {
    background: white;
    border-radius: 15px;
    padding: 40px 25px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    border: 1px solid #eee;
    animation: float 6s ease-in-out infinite;
}

.feature-card:nth-child(2) {
    animation-delay: 1s;
}

.feature-card:nth-child(3) {
    animation-delay: 2s;
}

.feature-card:nth-child(4) {
    animation-delay: 3s;
}

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

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
 left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    transform: scaleX(1);
    transform-origin: left;
}

.feature-icon {
    width: 90px;
    height: 90px;
    background: var(--why-icon-bg-color, linear-gradient(135deg, var(--primary-color), var(--secondary-color)));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: var(--why-icon-color, white);
    font-size: 2.5rem;
    transition: all 0.4s ease;
    position: relative;
    box-shadow: 0 8px 25px rgba(44, 85, 48, 0.3);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 8px 25px rgba(44, 85, 48, 0.3);
    }
    50% {
        transform: scale(1.1);
        box-shadow: 0 12px 30px rgba(44, 85, 48, 0.5);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 8px 25px rgba(44, 85, 48, 0.3);
    }
}

.feature-icon::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: inherit;
    filter: blur(15px);
    opacity: 0.6;
    z-index: -1;
    animation: glow 3s ease-in-out infinite;
}

@keyframes glow {
    0% {
        transform: scale(1);
        opacity: 0.6;
    }
    50% {
        transform: scale(1.3);
        opacity: 0.8;
    }
    100% {
        transform: scale(1);
        opacity: 0.6;
    }
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--primary-color);
    font-weight: 700;
    transition: color 0.3s ease;
    animation: titleBounce 3s ease-in-out infinite;
}

@keyframes titleBounce {
    0%, 100% {
        transform: translateY(0);
    }
    25% {
        transform: translateY(-5px);
    }
    50% {
        transform: translateY(0);
    }
    75% {
        transform: translateY(-3px);
    }
}

.feature-card p {
    color: #666;
    line-height: 1.7;
    transition: color 0.3s ease;
}

/* About Section */
.about {
    padding: 80px 0;
    background: var(--about-bg-color, #ffffff);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    animation: sectionFloat 8s ease-in-out infinite;
}

@keyframes sectionFloat {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-15px);
    }
}

.about-image {
    position: relative;
    perspective: 1000px;
    transform-style: preserve-3d;
    animation: imageRotate 20s infinite linear;
}

@keyframes imageRotate {
    0% {
        transform: rotateY(0deg);
    }
    100% {
        transform: rotateY(360deg);
    }
}

.about-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    animation: imagePulse 4s ease-in-out infinite;
    transition: all 0.3s ease;
}

@keyframes imagePulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    }
    50% {
        transform: scale(1.02);
        box-shadow: 0 15px 40px rgba(0,0,0,0.3);
    }
}

.about-image::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    border: 2px solid var(--primary-color);
    border-radius: 20px;
    animation: borderPulse 3s ease-in-out infinite;
    z-index: -1;
    opacity: 0.3;
}

@keyframes borderPulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.3;
    }
    50% {
        transform: scale(1.05);
        opacity: 0.6;
    }
}

.about-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--about-title-color, var(--primary-color));
    animation: titleGlow 5s ease-in-out infinite;
}

@keyframes titleGlow {
    0%, 100% {
        text-shadow: 0 0 5px rgba(44, 85, 48, 0.2);
    }
    50% {
        text-shadow: 0 0 20px rgba(44, 85, 48, 0.5);
    }
}

.about-text p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    line-height: 1.8;
    color: var(--about-content-color, #333);
    animation: textFlow 6s ease-in-out infinite;
}

@keyframes textFlow {
    0%, 100% {
        transform: translateX(0);
    }
    25% {
        transform: translateX(-5px);
    }
    75% {
        transform: translateX(5px);
    }
}

.btn-primary {
    animation: buttonPulse 3s ease-in-out infinite;
}

@keyframes buttonPulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

/* Services Section */
.services {
    padding: 80px 0;
    background: #f8f9fa;
}

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

.service-card {
    background: white;
    padding: 3rem 2rem;
    border-radius: 25px;
    text-align: center;
    box-shadow: 0 15px 50px rgba(0,0,0,0.08);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(44, 85, 48, 0.08);
    transition: all 0.4s ease;
    animation: serviceCardFloat 6s ease-in-out infinite;
}

@keyframes serviceCardFloat {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-15px);
    }
}

.service-card:nth-child(2) {
    animation-delay: 1s;
}

.service-card:nth-child(3) {
    animation-delay: 2s;
}

.service-card:nth-child(4) {
    animation-delay: 3s;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color), var(--accent-color));
    border-radius: 25px 25px 0 0;
    transform: scaleX(1);
    transform-origin: left;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 70px rgba(44, 85, 48, 0.12);
}

.service-icon {
    width: 110px;
    height: 110px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 50%, var(--accent-color) 100%);
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    color: white;
    font-size: 3rem;
    position: relative;
    box-shadow: 
        0 10px 30px rgba(44, 85, 48, 0.25),
        inset 0 1px 0 rgba(255,255,255,0.2);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    animation: serviceIconRotate 8s linear infinite, serviceIconPulse 3s ease-in-out infinite;
}

@keyframes serviceIconRotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@keyframes serviceIconPulse {
    0%, 100% {
        transform: rotate(0deg) scale(1);
        box-shadow: 
            0 10px 30px rgba(44, 85, 48, 0.25),
            inset 0 1px 0 rgba(255,255,255,0.2);
    }
    50% {
        transform: rotate(0deg) scale(1.1);
        box-shadow: 
            0 15px 40px rgba(44, 85, 48, 0.35),
            inset 0 1px 0 rgba(255,255,255,0.3);
    }
}

.service-icon::before {
    content: '';
    position: absolute;
    top: 15%;
    left: 15%;
    width: 70%;
    height: 70%;
    background: linear-gradient(135deg, rgba(255,255,255,0.1), rgba(255,255,255,0.05));
    border-radius: 20px;
    pointer-events: none;
    animation: serviceIconGlow 4s ease-in-out infinite;
}

@keyframes serviceIconGlow {
    0%, 100% {
        opacity: 0.5;
        transform: scale(1);
    }
    50% {
        opacity: 0.8;
        transform: scale(1.1);
    }
}

.service-card:hover .service-icon {
    transform: scale(1.08) rotate(3deg);
    box-shadow: 
        0 15px 40px rgba(44, 85, 48, 0.35),
        inset 0 1px 0 rgba(255,255,255,0.3);
}

.service-card h3 {
    font-size: 1.9rem;
    margin-bottom: 1.2rem;
    color: var(--primary-color);
    font-weight: 700;
    line-height: 1.3;
    transition: all 0.3s ease;
    animation: serviceTitleBounce 4s ease-in-out infinite;
}

@keyframes serviceTitleBounce {
    0%, 100% {
        transform: translateY(0);
    }
    25% {
        transform: translateY(-5px);
    }
    75% {
        transform: translateY(-3px);
    }
}

.service-card:hover h3 {
    color: var(--secondary-color);
    transform: translateY(-2px);
}

.service-card p {
    color: #666;
    font-size: 1.1rem;
    line-height: 1.7;
    font-weight: 400;
    transition: color 0.3s ease;
    animation: serviceTextFlow 5s ease-in-out infinite;
}

@keyframes serviceTextFlow {
    0%, 100% {
        transform: translateX(0);
    }
    25% {
        transform: translateX(-3px);
    }
    75% {
        transform: translateX(3px);
    }
}

.service-card:hover p {
    color: #555;
}

/* Buses Section */
.buses {
    padding: 80px 0;
    background: var(--buses-bg-color, #ffffff);
}

.buses-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
}

.bus-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(0,0,0,0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    border: 1px solid rgba(44, 85, 48, 0.1);
    animation: cardFloat 6s ease-in-out infinite;
}

@keyframes cardFloat {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-15px);
    }
}

.bus-card:nth-child(2) {
    animation-delay: 1s;
}

.bus-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.4s ease;
}

.bus-card:hover::before {
    transform: scaleX(1);
    transform-origin: left;
}

.bus-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
    border-color: var(--primary-color);
}

.bus-image {
    position: relative;
    overflow: hidden;
}

.bus-image img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: all 0.5s ease;
}

.bus-card:hover .bus-image img {
    transform: scale(1.1);
}

.bus-image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(transparent, rgba(0,0,0,0.3));
    pointer-events: none;
}

.bus-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: linear-gradient(135deg, var(--accent-color), #f3c444);
    color: #333;
    padding: 8px 15px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 0.9rem;
    z-index: 2;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    animation: badgePulse 3s ease-in-out infinite;
}

@keyframes badgePulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 8px 20px rgba(0,0,0,0.3);
    }
}

.bus-content {
    padding: 2rem;
    position: relative;
}

.bus-content h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
    font-weight: 700;
    position: relative;
    padding-bottom: 15px;
}

.bus-content h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    border-radius: 2px;
}

.bus-features {
    margin: 20px 0;
}

.bus-feature {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    padding: 12px;
    background: #f9fbfd;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.bus-feature:hover {
    background: #f0f7ff;
    transform: translateX(5px);
}

.bus-feature-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    margin-left: 15px;
    flex-shrink: 0;
}

.bus-feature-text {
    flex: 1;
    color: #555;
    font-weight: 500;
}

.bus-content ul {
    margin-bottom: 1.5rem;
}

.bus-content li {
    margin-bottom: 0.5rem;
    padding-right: 1rem;
    position: relative;
    display: flex;
    align-items: center;
}

.bus-content li::before {
    content: "✓";
    position: absolute;
    right: 0;
    color: var(--primary-color);
    font-weight: bold;
    width: 20px;
    height: 20px;
    background: rgba(44, 85, 48, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
}

.btn-outline {
    display: inline-block;
    padding: 12px 30px;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    background: transparent;
    animation: buttonGlow 4s ease-in-out infinite;
}

@keyframes buttonGlow {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(44, 85, 48, 0.3);
    }
    50% {
        box-shadow: 0 0 0 10px rgba(44, 85, 48, 0);
    }
}

.btn-outline::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(44, 85, 48, 0.1), transparent);
    transition: left 0.5s ease;
}

.btn-outline:hover {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border-color: var(--primary-color);
    transform: translateY(-3px);
}

.btn-outline:hover::before {
    left: 100%;
}

/* Trips Section */
.trips {
    padding: 80px 0;
    background: #f8f9fa;
}

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

.trip-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.trip-card:hover {
    transform: translateY(-10px);
}

.trip-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 2rem;
}

.trip-card h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.trip-card p {
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.trip-card ul {
    text-align: right;
    margin-bottom: 2rem;
}

.trip-card li {
    margin-bottom: 0.5rem;
    padding-right: 1rem;
    position: relative;
}

.trip-card li::before {
    content: "✓";
    position: absolute;
    right: 0;
    color: var(--primary-color);
    font-weight: bold;
}

/* Hotels Section */
.hotels {
    padding: 80px 0;
    background: var(--hotels-bg-color, #ffffff);
}

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

.hotel-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(0,0,0,0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    border: 1px solid rgba(44, 85, 48, 0.05);
}

.hotel-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color), var(--accent-color));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.hotel-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 25px 70px rgba(44, 85, 48, 0.12);
}

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

.hotel-image {
    position: relative;
    overflow: hidden;
    height: 220px;
}

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

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

.hotel-image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(transparent, rgba(0,0,0,0.1));
    pointer-events: none;
}

.hotel-content {
    padding: 2rem;
    text-align: center;
    position: relative;
}

.hotel-content h3 {
    font-size: 1.7rem;
    margin-bottom: 0.8rem;
    color: var(--primary-color);
    font-weight: 700;
    transition: color 0.3s ease;
}

.hotel-card:hover .hotel-content h3 {
    color: var(--secondary-color);
}

.hotel-rating {
    margin-bottom: 1.2rem;
    color: #ffd700;
    font-size: 1.1rem;
    display: flex;
    justify-content: center;
    gap: 3px;
}

.hotel-rating i {
    transition: transform 0.2s ease;
}

.hotel-card:hover .hotel-rating i {
    transform: scale(1.1);
}

.hotel-content p {
    margin-bottom: 1.8rem;
    color: #666;
    line-height: 1.7;
    font-size: 1rem;
    transition: color 0.3s ease;
}

.hotel-card:hover .hotel-content p {
    color: #555;
}

.hotel-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    padding: 12px 25px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--secondary-color), #1a4d2e);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(44, 85, 48, 0.3);
}

.btn-whatsapp {
    background: linear-gradient(135deg, #25D366, #1da851);
    color: white;
    padding: 12px 25px;
}

.btn-whatsapp::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 ease;
}

.btn-whatsapp:hover {
    background: linear-gradient(135deg, #1da851, #128c3a);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

.btn-whatsapp:hover::before {
    left: 100%;
}

.btn i {
    font-size: 1.1rem;
    transition: transform 0.3s ease;
}

.btn:hover i {
    transform: scale(1.2);
}

/* Gallery Sections */
.bus-gallery, .hotel-gallery {
    padding: 80px 0;
    background: var(--hotel-gallery-bg-color, #ffffff);
}

.bus-gallery {
    background: var(--bus-gallery-bg-color, #f8f9fa);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.gallery-item {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.gallery-item:hover {
    transform: scale(1.05);
}

.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

/* Office Location Section */
.office-location {
    padding: 80px 0;
    background: #f8f9fa;
}

.location-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.location-info {
    padding: 2rem;
}

.location-info h3 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.location-info p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    color: #666;
}

.contact-info {
    margin-bottom: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.contact-item i {
    width: 20px;
    color: var(--primary-color);
    font-size: 1.2rem;
}

.location-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.map-container {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    height: 450px;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

/* Footer */
.footer {
    background: var(--primary-color);
    color: white;
    padding: 50px 0 20px;
}

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

.footer-section h3 {
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.footer-section p {
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

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

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: var(--secondary-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--secondary-color);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0,0,0,0.05);
        padding: 2rem 0;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .hero {
        height: 70vh;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-content p {
        font-size: 1.1rem;
    }
    
    .hero-buttons {
        flex-direction: row;
        align-items: center;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .location-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .buses-grid {
        grid-template-columns: 1fr;
    }
    
    .trips-grid {
        grid-template-columns: 1fr;
    }

    /* Two columns for galleries on mobile */
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .gallery-item img {
        height: 180px;
    }
    
    /* Why Choose Us - 2 columns on mobile */
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .feature-card {
        padding: 1.5rem;
    }
    
    .feature-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .feature-card h3 {
        font-size: 1.2rem;
    }
    
    .feature-card p {
        font-size: 0.9rem;
    }
    
    .whatsapp-btn, .call-btn {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
    
    .section-title {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero {
        height: 60vh;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-content p {
        font-size: 1rem;
    }
    
    .btn {
        padding: 12px 25px;
        font-size: 1rem;
    }
    
    .feature-card, .service-card, .trip-card {
        padding: 1.5rem;
    }
    
    /* Why Choose Us - smaller mobile layout */
    .feature-card {
        padding: 1rem;
    }
    
    .feature-icon {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
        margin-bottom: 0.8rem;
    }
    
    .feature-card h3 {
        font-size: 1.1rem;
        margin-bottom: 0.5rem;
    }
    
    .feature-card p {
        font-size: 0.85rem;
    }
    
    .section-title {
        font-size: 1.8rem;
        margin-bottom: 2rem;
    }
}

/* Animations */
@keyframes slideBackground {
    0% {
        left: -100%;
    }
    50% {
        left: 100%;
    }
    100% {
        left: -100%;
    }
}

@keyframes textGlow {
    0%, 100% {
        background-position: 0% 50%;
        text-shadow: 
            2px 2px 4px rgba(0,0,0,0.5),
            0 0 10px rgba(255,255,255,0.3),
            0 0 20px rgba(255,255,255,0.2);
    }
    50% {
        background-position: 100% 50%;
        text-shadow: 
            3px 3px 6px rgba(0,0,0,0.7),
            0 0 15px rgba(255,255,255,0.5),
            0 0 30px rgba(255,255,255,0.3),
            0 0 40px rgba(255,255,255,0.1);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

.feature-card, .service-card, .trip-card, .hotel-card {
    animation: fadeInUp 0.6s ease-out;
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/*