/* Lanka Super Lions - Custom Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #1e3a8a;
    --secondary-color: #f59e0b;
    --text-light: #ffffff;
    --text-dark: #1f2937;
    --overlay-color: rgba(0, 0, 0, 0.4);
}

body {
    font-family: 'Poppins', sans-serif;
    overflow-x: hidden;
}

/* Header Styles */
.header-section {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

.navbar {
    background: transparent !important;
    padding: 20px 0;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: rgba(30, 58, 138, 0.95) !important;
    backdrop-filter: blur(10px);
    padding: 15px 0;
}

.navbar-brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-light) !important;
}

.navbar-nav .nav-link {
    color: var(--text-light) !important;
    font-weight: 500;
    margin: 0 15px;
    padding: 8px 0 !important;
    transition: all 0.3s ease;
    position: relative;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--text-light) !important;
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--secondary-color);
    animation: slideIn 0.3s ease;
}

@keyframes slideIn {
    from {
        width: 0;
        left: 50%;
        right: 50%;
    }
    to {
        width: 100%;
        left: 0;
        right: 0;
    }
}

/* Dropdown Styles */
.dropdown-menu {
    background: rgba(30, 58, 138, 0.95);
    border: none;
    backdrop-filter: blur(10px);
}

.dropdown-item {
    color: var(--text-light) !important;
    font-weight: 500;
}

.dropdown-item:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-light) !important;
}

/* Hero Section */
/* ===== HERO SECTION (EXACT NEWSLETTER COPY) ===== */
.hero-section {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
}

/* Carousel Styles */
.carousel-inner,
.carousel-item {
    height: 100vh;
}

.hero-slide {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.3) 0%, rgba(0, 0, 0, 0.4) 100%);
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    right: auto;
    transform: translate(-50%, -50%);
    z-index: 100;
    width: 100%;
    max-width: 1200px;
    display: grid;
    place-items: center;
    padding: 0 15px;
}

.hero-content .container {
    width: 100% !important;
    max-width: 100% !important;
    padding: 0 !important;
    margin: 0 !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
}

/* Hero Search Content - EXACT COPY OF NEWSLETTER */
.hero-search-content {
    background: rgba(255, 255, 255, 0.72); /* increased transparency */
    backdrop-filter: blur(18px) saturate(140%);
    -webkit-backdrop-filter: blur(18px) saturate(140%);
    border: 1px solid rgba(255,255,255,0.4);
    border-radius: 24px;
    padding: 60px 40px;
    text-align: center;
    margin: 0 auto !important;
    box-shadow: 0 20px 50px -15px rgba(0, 0, 0, 0.35);
    position: relative;
    transform: translateY(0%) translateX(0%) !important;
    max-width: 1000px;
    width: 100%;
    left: 0 !important;
    right: 0 !important;
    transition: background .3s ease, box-shadow .3s ease;
}

.hero-search-form {
    margin-bottom: 20px;
}

.hero-search-input-group {
    display: flex;
    max-width: 1000px;
    margin: 0 auto;
    gap: 0;
    background: #e5e5e5;
    border-radius: 30px;
    overflow: visible;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: relative;
    height: 60px;
}

.hero-search-input {
    flex: 1;
    border: none;
    padding: 20px 160px 20px 25px;
    font-size: 1rem;
    background: transparent;
    outline: none;
    color: #999;
    border-radius: 30px;
    height: 100%;
}

.hero-search-input::placeholder {
    color: #999;
}

.hero-search-btn {
    background: #007bff;
    color: white;
    border: none;
    padding: 15px 30px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    position: absolute;
    right: 5px;
    top: 5px;
    bottom: 5px;
    border-radius: 25px;
    min-width: 120px;
}

.hero-search-btn:hover {
    background: #0056b3;
    transform: translateY(0);
}

/* Hero Categories - Simple Grid */
.hero-categories {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    max-width: 1000px;
    margin: 0 auto;
}

.hero-category-item {
    background: white;
    border: 2px solid #e5e5e5;
    border-radius: 15px;
    padding: 20px 10px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.hero-category-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border-color: #007bff;
}

.hero-category-item.selected {
    border-color: #dc3545;
    background: #fff5f5;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(220, 53, 69, 0.2);
}

.hero-category-item img {
    width: 40px;
    height: 40px;
    margin-bottom: 10px;
    object-fit: contain;
}

.hero-category-item span {
    font-size: 14px;
    font-weight: 500;
    color: #333;
    line-height: 1.2;
}

/* RESPONSIVE - EXACT COPY OF NEWSLETTER RESPONSIVE */
@media (max-width: 768px) {
    .hero-content {
        max-width: calc(100% - 30px);
        left: 50%;
        transform: translate(-50%, -50%);
        display: grid;
        place-items: center;
        padding: 0 15px;
    }
    
    .hero-content .container {
        width: 100% !important;
        max-width: 100% !important;
        padding: 0 !important;
        margin: 0 !important;
        padding-left: 0 !important;
        padding-right: 0 !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
    }
    
    .hero-search-content {
        padding: 40px 20px;
        margin: 0 auto !important;
        transform: translateY(0%) translateX(0%) !important;
        max-width: 100%;
        width: 100%;
        left: 0 !important;
        right: 0 !important;
    }
    
    .hero-search-input-group {
        max-width: 100%;
        height: 50px;
        border-radius: 25px;
    }
    
    .hero-search-input {
        padding: 15px 130px 15px 20px;
        font-size: 0.9rem;
        border-radius: 25px;
    }
    
    .hero-search-btn {
        padding: 12px 20px;
        font-size: 0.9rem;
        min-width: 100px;
        border-radius: 20px;
    }
    
    .hero-categories {
        gap: 12px;
    }
    
    .hero-category-item {
        padding: 15px 8px;
    }
    
    .hero-category-item img {
        width: 35px;
        height: 35px;
        margin-bottom: 8px;
    }
    
    .hero-category-item span {
        font-size: 12px;
    }
}

@media (max-width: 576px) {
    .hero-content {
        max-width: calc(100% - 20px);
        left: 50%;
        transform: translate(-50%, -50%);
        display: grid;
        place-items: center;
        padding: 0 10px;
    }
    
    .hero-content .container {
        width: 100% !important;
        max-width: 100% !important;
        padding: 0 !important;
        margin: 0 !important;
        padding-left: 0 !important;
        padding-right: 0 !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
    }
    
    .hero-search-content {
        padding: 30px 15px;
        transform: translateY(0%) translateX(0%) !important;
        max-width: 100%;
        margin: 0 auto !important;
        width: 100%;
        left: 0 !important;
        right: 0 !important;
    }
    
    .hero-search-input-group {
        height: 45px;
        border-radius: 22px;
    }
    
    .hero-search-input {
        padding: 12px 110px 12px 15px;
        font-size: 0.85rem;
        border-radius: 22px;
    }
    
    .hero-search-btn {
        padding: 10px 15px;
        font-size: 0.85rem;
        min-width: 85px;
        border-radius: 18px;
        right: 3px;
        top: 3px;
        bottom: 3px;
    }
    
    .hero-categories {
        gap: 8px;
    }
    
    .hero-category-item {
        padding: 12px 5px;
        border-radius: 12px;
    }
    
    .hero-category-item img {
        width: 28px;
        height: 28px;
        margin-bottom: 6px;
    }
    
    .hero-category-item span {
        font-size: 11px;
    }
}

/* Smooth Animations */
.carousel-item {
    transition: transform 0.8s ease-in-out;
}

.carousel-fade .carousel-item {
    opacity: 0;
    transition-property: opacity;
    transform: none;
}

.carousel-fade .carousel-item.active,
.carousel-fade .carousel-item-next.carousel-item-start,
.carousel-fade .carousel-item-prev.carousel-item-end {
    z-index: 1;
    opacity: 1;
}

.carousel-fade .active.carousel-item-start,
.carousel-fade .active.carousel-item-end {
    z-index: 0;
    opacity: 0;
    transition: opacity 0s 0.8s;
}

/* Loading Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.search-container,
.search-container-integrated,
.category-icons {
    animation: fadeInUp 0.8s ease-out;
}

.category-icons {
    animation-delay: 0.3s;
}

/* Why Choose Us Section */
.why-choose-us-section {
    background: #f8fafc;
    padding: 80px 0;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 40px;
    letter-spacing: 1px;
}

.features-container {
    margin-bottom: 50px;
}

.feature-tag {
    display: inline-block;
    background: transparent;
    color: #6b7280;
    font-size: 1.1rem;
    font-weight: 500;
    margin: 8px 15px;
    padding: 0;
    transition: all 0.3s ease;
    position: relative;
}

.feature-tag:hover {
    color: var(--primary-color);
    transform: translateY(-2px);
}

.why-choose-card {
    background: white;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 400px;
}

.why-choose-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.card-image {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease;
}

.why-choose-card:hover .card-image img {
    transform: scale(1.05);
}

/* Animation for cards */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.why-choose-card {
    animation: fadeInUp 0.6s ease-out;
}

.why-choose-card:nth-child(1) {
    animation-delay: 0.1s;
}

.why-choose-card:nth-child(2) {
    animation-delay: 0.2s;
}

.why-choose-card:nth-child(3) {
    animation-delay: 0.3s;
}

/* Focus States for Accessibility */
.search-input:focus,
.search-btn:focus,
.category-item:focus {
    outline: 2px solid var(--secondary-color);
    outline-offset: 2px;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 100;
    color: var(--text-light);
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

/* Best Combos Section */
.best-combos-section {
    background: #ffffff;
    padding: 80px 0;
}

.combo-card {
    height: 280px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    cursor: pointer;
}

.combo-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.2);
}

.combo-image-container {
    position: relative;
    height: 100%;
    width: 100%;
}

.combo-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.combo-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.3));
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 30px;
}

.combo-content {
    text-align: left;
}

.combo-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: #ffffff;
    text-transform: uppercase;
    line-height: 1.3;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
}

.combo-btn {
    background: #dc2626;
    color: #ffffff;
    border: none;
    padding: 12px 24px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
}

.combo-btn:hover {
    background: #b91c1c;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(220, 38, 38, 0.3);
    color: #ffffff;
    text-decoration: none;
}

/* Choose Your Ideal Ride Section */
.ideal-ride-section {
    background: #ffffff;
    padding: 80px 0;
}

.ideal-ride-container {
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    border-radius: 25px;
    padding: 60px 40px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.ideal-ride-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="50" cy="10" r="0.5" fill="rgba(255,255,255,0.05)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
    pointer-events: none;
}

.ride-content {
    position: relative;
    z-index: 2;
}

.ride-title {
    font-size: 2rem;
    font-weight: 700;
    color: #1f2937;
    text-transform: uppercase;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.ride-list {
    list-style: none;
    padding: 0;
    margin-bottom: 0;
}

.ride-list li {
    color: #1f2937;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 8px;
    position: relative;
    padding-left: 15px;
}

.ride-list li::before {
    content: '•';
    color: #dc2626;
    font-weight: bold;
    position: absolute;
    left: 0;
    font-size: 1.2rem;
}

.why-choose-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1f2937;
    text-transform: uppercase;
    margin-bottom: 15px;
    letter-spacing: 0.5px;
}

.why-choose-list {
    list-style: none;
    padding: 0;
    margin-bottom: 0;
}

.why-choose-list li {
    color: #1f2937;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 8px;
    position: relative;
    padding-left: 15px;
}

.why-choose-list li::before {
    content: '•';
    color: #dc2626;
    font-weight: bold;
    position: absolute;
    left: 0;
    font-size: 1.2rem;
}

.ride-description p {
    color: #1f2937;
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 0;
}

.btn-choose-vehicle {
    background: #dc2626;
    color: #ffffff;
    border: none;
    padding: 15px 35px;
    border-radius: 30px;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(220, 38, 38, 0.3);
}

.btn-choose-vehicle:hover {
    background: #b91c1c;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(220, 38, 38, 0.4);
}

/* Vehicle Images Styling */
.vehicle-images {
    display: flex;
    flex-direction: column;
    gap: 20px;
    height: 100%;
    justify-content: center;
}

.vehicle-card {
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    border-radius: 25px;
    padding: 30px 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 180px;
}

.vehicle-top {
    margin-bottom: 10px;
}

.vehicle-bottom {
    margin-top: 10px;
}

.vehicle-image {
    width: 100%;
    max-width: 200px;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 8px 20px rgba(0, 0, 0, 0.3));
    transition: transform 0.3s ease;
}

.vehicle-card:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.vehicle-card:hover .vehicle-image {
    transform: scale(1.05);
}

/* Special Tours Section */
.special-tours-section {
    background: #f8fafc;
    padding: 80px 0;
}

.special-tour-card {
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    margin-bottom: 30px;
    transition: all 0.3s ease;
    height: 300px;
}

.special-tour-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.special-tour-bg {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

.special-tour-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.4));
    display: flex;
    align-items: center;
    padding: 40px;
}

.special-tour-content {
    width: 100%;
}

.special-tour-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: #ffffff;
    text-transform: uppercase;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.special-tour-description {
    font-size: 1rem;
    color: #ffffff;
    line-height: 1.6;
    margin-bottom: 25px;
    opacity: 0.95;
}

.special-offer-badge {
    text-align: center;
}

.offer-percentage {
    display: block;
    font-size: 3.5rem;
    font-weight: 900;
    color: #fbbf24;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    line-height: 1;
    letter-spacing: -2px;
}

.offer-period {
    display: block;
    font-size: 1.1rem;
    font-weight: 600;
    color: #fbbf24;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 5px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

/* Responsive Design for Special Tours */
@media (max-width: 768px) {
    .special-tours-section {
        padding: 60px 0;
    }
    
    .special-tour-card {
        height: 350px;
        margin-bottom: 20px;
    }
    
    .special-tour-overlay {
        padding: 30px 20px;
    }
    
    .special-tour-title {
        font-size: 1.8rem;
        margin-bottom: 15px;
        text-align: center;
    }
    
    .special-tour-description {
        font-size: 0.95rem;
        text-align: center;
        margin-bottom: 20px;
    }
    
    .special-offer-badge {
        text-align: center;
        margin-top: 20px;
    }
    
    .offer-percentage {
        font-size: 2.5rem;
    }
    
    .offer-period {
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .special-tour-card {
        height: 320px;
    }
    
    .special-tour-overlay {
        padding: 20px 15px;
    }
    
    .special-tour-title {
        font-size: 1.5rem;
    }
    
    .special-tour-description {
        font-size: 0.9rem;
    }
    
    .offer-percentage {
        font-size: 2.2rem;
    }
    
    .offer-period {
        font-size: 0.9rem;
    }
}

/* Travelers Point Section */
.travelers-point-section {
    background: #ffffff;
    padding: 100px 0;
}

.travelers-map-container {
    position: relative;
    padding: 40px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.sri-lanka-map {
    position: relative;
    max-width: 100%;
    margin: 0 auto;
}

.base-map-image {
    width: 100%;
    max-width: 500px;
    height: auto;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.1));
}

/* Content Styling */
.travelers-content {
    padding-left: 40px;
}

.travelers-subtitle {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.travelers-description {
    font-size: 1rem;
    color: #6b7280;
    line-height: 1.7;
    margin-bottom: 40px;
}

.travelers-stats {
    margin-top: 30px;
}

.stat-item {
    text-align: left;
    margin-bottom: 25px;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--text-dark);
    margin-bottom: 5px;
    line-height: 1;
}

.stat-label {
    font-size: 0.95rem;
    color: #6b7280;
    font-weight: 500;
    margin-bottom: 0;
}

/* Responsive Design for Travelers Point */
@media (max-width: 992px) {
    .travelers-content {
        padding-left: 20px;
        margin-top: 40px;
    }
}

@media (max-width: 768px) {
    .travelers-point-section {
        padding: 80px 0;
    }
    
    .travelers-content {
        padding-left: 0;
        text-align: center;
    }
    
    .travelers-subtitle {
        font-size: 1.3rem;
    }
    
    .travelers-description {
        font-size: 0.95rem;
    }
    
    .stat-item {
        text-align: center;
        margin-bottom: 20px;
    }
    
    .stat-number {
        font-size: 2rem;
    }
}

@media (max-width: 576px) {
    .travelers-point-section {
        padding: 60px 0;
    }
    
    .travelers-map-container {
        padding: 20px 10px;
    }
    
    .stat-number {
        font-size: 1.8rem;
    }
    
    .stat-label {
        font-size: 0.9rem;
    }
}

/* Newsletter Section */
.newsletter-section {
    background: #ffffff;
    padding-top: 20;
    padding-bottom: 80px;
    position: relative;
    z-index: 3;
}

.newsletter-content {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 60px 40px;
    text-align: center;
    margin: 0 auto;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    position: relative;
    transform: translateY(50%);
}

.newsletter-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 30px;
    letter-spacing: 1px;
}

.newsletter-form {
    margin-bottom: 20px;
}

.newsletter-input-group {
    display: flex;
    max-width: 1000px;
    margin: 0 auto;
    gap: 0;
    background: #e5e5e5;
    border-radius: 30px;
    overflow: visible;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: relative;
    height: 60px;
}

.newsletter-input {
    flex: 1;
    border: none;
    padding: 20px 160px 20px 25px;
    font-size: 1rem;
    background: transparent;
    outline: none;
    color: #999;
    border-radius: 30px;
    height: 100%;
}

.newsletter-input::placeholder {
    color: #999;
}

.newsletter-btn {
    background: #e74c3c;
    color: white;
    border: none;
    padding: 15px 30px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    position: absolute;
    right: 5px;
    top: 5px;
    bottom: 5px;
    border-radius: 25px;
    min-width: 120px;
}

.newsletter-btn:hover {
    background: #c0392b;
    transform: translateY(0);
}

.newsletter-text {
    color: #666;
    font-size: 1rem;
    margin: 0;
    line-height: 1.6;
}

/* Footer Section */
.footer-section {
    background: url('../img/FOOTER.png') no-repeat center center;
    background-size: cover;
    padding: 220px 0 60px;
    position: relative;
    color: var(--text-light);
    margin-top: -80px;
    min-height: 100vh;
}

.footer-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index: 1;
}

.footer-section .container {
    position: relative;
    z-index: 2;
}

.footer-brand {
    text-align: center;
}

.footer-logo {
    margin-bottom: 30px;
}

.footer-logo-img {
    max-height: 120px;
    max-width: 200px;
    width: auto;
    height: auto;
    object-fit: contain;
}

.logo-circle {
    width: 120px;
    height: 120px;
    border: 3px solid var(--text-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-light);
}

.footer-social {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--secondary-color);
    color: var(--text-light);
    transform: translateY(-3px);
}

.footer-content {
    text-align: center;
}

.footer-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--text-light);
    letter-spacing: 1px;
}

.footer-description {
    font-size: 1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

.footer-links {
    text-align: center;
}

.footer-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-menu li {
    margin-bottom: 12px;
}

.footer-menu a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: underline;
    font-size: 1rem;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-menu a:hover {
    color: var(--secondary-color);
    transform: translateX(5px);
}

/* Responsive Design for Newsletter and Footer */
@media (max-width: 768px) {
    .newsletter-content {
        padding: 40px 20px;
        margin: 0 15px;
        transform: translateY(30%);
    }
    
    .newsletter-title {
        font-size: 1.8rem;
    }
    
    .newsletter-input-group {
        max-width: 100%;
        height: 50px;
        border-radius: 25px;
    }
    
    .newsletter-input {
        padding: 15px 130px 15px 20px;
        font-size: 0.9rem;
        border-radius: 25px;
    }
    
    .newsletter-btn {
        padding: 12px 20px;
        font-size: 0.9rem;
        min-width: 100px;
        border-radius: 20px;
    }
    
    .footer-section {
        padding: 180px 0 50px;
        margin-top: -60px;
        min-height: 90vh;
    }
    
    .footer-logo-img {
        max-height: 100px;
        max-width: 150px;
    }
    
    .footer-title {
        font-size: 1.3rem;
    }
    
    .footer-description {
        font-size: 0.9rem;
    }
}

@media (max-width: 576px) {
    .newsletter-section {
        padding-bottom: 60px;
    }
    
    .newsletter-content {
        padding: 30px 15px;
        transform: translateY(20%);
    }
    
    .newsletter-title {
        font-size: 1.5rem;
    }
    
    .newsletter-input-group {
        height: 45px;
        border-radius: 22px;
    }
    
    .newsletter-input {
        padding: 12px 110px 12px 15px;
        font-size: 0.85rem;
        border-radius: 22px;
    }
    
    .newsletter-btn {
        padding: 10px 15px;
        font-size: 0.85rem;
        min-width: 85px;
        border-radius: 18px;
        right: 3px;
        top: 3px;
        bottom: 3px;
    }
    
    .footer-section {
        padding: 160px 0 50px;
        margin-top: -40px;
        min-height: 80vh;
    }
}

/* Page Hero Section Styles */
.hero-section {
    position: relative;
    height: 50vh;
    overflow: hidden;
}

.hero-section .hero-slide {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-section .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.3) 0%, rgba(0, 0, 0, 0.4) 100%);
}

.hero-section .hero-content {
    position: absolute;
    top: 50%;
    left: 50px;
    transform: translateY(-50%);
    z-index: 100;
}

.page-title {
    font-family: 'Inter', sans-serif;
    font-size: 3rem;
    font-weight: 600;
    color: #ffffff !important;
    margin: 0;
    letter-spacing: 2px;
    text-align: left;
    line-height: 1.2;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8);
    display: block;
}

/* Packages Section */
.packages-section {
    background: #ffffff;
    padding: 80px 0;
}

.packages-description {
    color: #666;
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 60px;
    text-align: justify;
}

.combo-description {
    color: #666;
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 30px;
    text-align: justify;
}

/* Package Cards */
.package-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.package-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.package-image {
    position: relative;
    overflow: hidden;
    height: 200px;
}

.package-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.package-card:hover .package-image img {
    transform: scale(1.05);
}

.package-content {
    padding: 25px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.package-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 15px;
    letter-spacing: 0.5px;
}

.package-details {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 20px;
    flex: 1;
}

.package-duration {
    color: #666;
    font-size: 0.9rem;
    display: block;
}

.package-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
}

.package-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
}

.package-btn {
    background: #e74c3c;
    color: white;
    border: none;
    padding: 10px 25px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.package-btn:hover {
    background: #c0392b;
    transform: translateY(-2px);
}

.package-actions {
    display: flex;
    gap: 8px;
}

.package-btn.details-btn {
    background: transparent;
    color: #e74c3c;
    border: 2px solid #e74c3c;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.package-btn.details-btn:hover {
    background: #e74c3c;
    color: white;
    transform: translateY(-2px);
}

/* Contact Card Styles */
.contact-card {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 350px;
}

.contact-content {
    text-align: center;
    color: white;
    padding: 40px 20px;
}

.contact-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: white;
}

.contact-subtitle {
    font-size: 1rem;
    margin-bottom: 25px;
    opacity: 0.9;
}

.contact-btn {
    background: white;
    color: #d97706;
    border: none;
    padding: 15px 30px;
    border-radius: 30px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.contact-btn:hover {
    background: #f8f8f8;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Responsive Styles for Hero Sections */
@media (max-width: 768px) {
    .hero-section {
        height: 40vh;
    }
    
    .page-title {
        font-size: 2rem;
        letter-spacing: 1px;
    }
    
    .packages-section {
        padding: 60px 0;
    }
    
    .packages-description,
    .combo-description {
        font-size: 0.9rem;
        margin-bottom: 40px;
    }
    
    .package-card {
        margin-bottom: 30px;
    }
    
    .package-title {
        font-size: 1.2rem;
    }
    
    .package-price {
        font-size: 1.3rem;
    }
    
    .contact-card {
        min-height: 300px;
    }
    
    .contact-title {
        font-size: 1.3rem;
    }
}

@media (max-width: 576px) {
    .hero-section {
        height: 35vh;
    }
    
    .page-title {
        font-size: 1.8rem;
        letter-spacing: 0.5px;
    }
    
    .packages-section {
        padding: 40px 0;
    }
    
    .package-content {
        padding: 20px;
    }
    
    .package-title {
        font-size: 1.1rem;
    }
    
    .package-footer {
        flex-direction: column;
        gap: 15px;
        align-items: stretch;
    }
    
    .package-btn {
        width: 100%;
        padding: 12px;
    }
    
    .contact-card {
        min-height: 250px;
    }
    
    .contact-content {
        padding: 30px 15px;
    }
}

/* About Us Page Styles */

/* About Content Section */
.about-content-section {
    background: #ffffff;
    padding: 80px 0 60px;
}

.about-text {
    text-align: left;
    font-size: 1rem;
    line-height: 1.8;
    color: #4a5568;
}

.about-text p {
    margin-bottom: 25px;
    text-align: justify;
}

.about-highlight {
    font-weight: 600;
    color: var(--text-dark);
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 30px !important;
}

/* Gallery Section */
.about-gallery-section {
    background: #ffffff;
    padding: 40px 0;
}

.gallery-image {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
}

.gallery-image:hover {
    transform: translateY(-5px);
}

.gallery-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.gallery-image.large {
    height: 500px;
}

.gallery-image.medium {
    height: 240px;
}

.gallery-image.small {
    height: 240px;
}

.gallery-image.bottom {
    height: 300px;
}

.gallery-image.single-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
    margin: 20px 0;
}

.gallery-image.single-image:hover {
    transform: translateY(-5px);
}

/* Features Section */
.about-features-section {
    background: #f8fafc;
    padding: 80px 0;
}

.feature-card {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.feature-icon {
    margin-bottom: 25px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.feature-icon-img {
    width: 60px;
    height: 60px;
    object-fit: contain;
}

.feature-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 20px;
    letter-spacing: 0.5px;
}

.feature-description {
    color: #6b7280;
    font-size: 0.95rem;
    line-height: 1.6;
    text-align: justify;
    flex: 1;
}

/* Contact Page Specific Styles */
.contact-main-section {
    background: #ffffff;
    padding: 80px 0;
}

.contact-intro-text {
    text-align: center;
    margin-bottom: 40px;
}

.contact-intro-text p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #666;
    margin: 0;
    max-width: 800px;
    margin: 0 auto;
}

.contact-section-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 30px;
    letter-spacing: 1px;
}

/* Contact Form Styles */
.contact-form .form-label {
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-input, .contact-textarea {
    border: none;
    border-radius: 8px;
    padding: 15px 20px;
    font-size: 1rem;
    background-color: #e5e5e5;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.contact-input:focus, .contact-textarea:focus {
    outline: none;
    box-shadow: none;
    border-color: var(--primary-color);
    background-color: #f8f9fa;
}

.contact-input.is-invalid, .contact-textarea.is-invalid {
    border-color: #e74c3c;
    background-color: #fff5f5;
}

.contact-notification {
    position: relative;
    margin-bottom: 20px;
    border-radius: 8px;
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.contact-textarea {
    resize: vertical;
    min-height: 120px;
}

.contact-submit-btn {
    background: #e74c3c;
    color: white;
    border: none;
    padding: 15px 40px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-submit-btn:hover {
    background: #c0392b;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(231, 76, 60, 0.3);
}

/* Map Section */
.map-container {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

/* Company Info Section */
.company-info-section {
    background: #ffffff;
    padding: 80px 0;
    text-align: center;
}

.company-info-content {
    max-width: 600px;
    margin: 0 auto;
}

.company-logo {
    margin: 0 auto 30px;
    display: flex;
    justify-content: center;
}

.company-logo-img {
    max-height: 120px;
    max-width: 200px;
    width: auto;
    height: auto;
    object-fit: contain;
}

.company-name {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 30px;
    letter-spacing: 1px;
}

.company-details p {
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: 10px;
    font-weight: 500;
}

.company-address {
    margin-bottom: 5px !important;
}

.company-email {
    margin-bottom: 5px !important;
}

.company-phone {
    margin-bottom: 0 !important;
}

/* Transportation Page Specific Styles */
.transport-card .package-content {
    padding: 30px 25px;
}

.transport-features {
    margin: 20px 0;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.feature-list li {
    display: flex;
    align-items: center;
    margin-bottom: 8px;
    font-size: 0.9rem;
    color: #6b7280;
}

.feature-list li i {
    margin-right: 10px;
    color: var(--primary-color);
    width: 16px;
    text-align: center;
}

.transport-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    margin: 20px 0;
    padding: 15px;
    background: #f8fafc;
    border-radius: 10px;
}

.price-from {
    font-size: 0.8rem;
    color: #6b7280;
    margin-right: 5px;
}

.price-amount {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-right: 5px;
}

.price-period {
    font-size: 0.9rem;
    color: #6b7280;
}

.transport-btn {
    background: var(--secondary-color);
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 25px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    width: 100%;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.transport-btn:hover {
    background: #d97706;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(245, 158, 11, 0.3);
    text-decoration: none;
}

.transport-highlight {
    background: linear-gradient(145deg, rgba(255,255,255,0.25), rgba(255,255,255,0.15));
    border-radius: 25px;
    padding: 40px 30px;
    backdrop-filter: blur(12px) saturate(140%);
    border: 1px solid rgba(255, 255, 255, 0.35);
    box-shadow: 0 15px 40px -10px rgba(0,0,0,0.25);
}

.transport-stats .stat-item {
    padding: 25px 10px;
}

.transport-stats .stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 5px;
    display: block;
}

.transport-stats .stat-label {
    font-size: 0.85rem;
    color: #6b7280;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Alignment inside ideal ride container adjustments */
.ideal-ride-container .transport-highlight {display:flex;align-items:center;justify-content:center;}
.ideal-ride-container .transport-stats {width:100%;}
.ideal-ride-container .transport-stats .stat-item:not(:last-child){border-bottom:1px solid rgba(0,0,0,0.06);} 

/* Package Details Page Styles */
.package-details-section {
    background: #ffffff;
    padding: 120px 0 80px;
}

/* Package Details Page Header - Black Background */
body.package-details .header-section {
    background: rgba(0, 0, 0, 0.9);
    position: relative;
}

body.package-details .navbar {
    background: rgba(0, 0, 0, 0.9) !important;
}

.package-gallery {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.package-hero-img {
    height: 400px;
    object-fit: cover;
}

.carousel-control-prev,
.carousel-control-next {
    display: none !important;
}

.package-header {
    margin-bottom: 30px;
}

.package-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.package-rating {
    display: flex;
    align-items: center;
    gap: 10px;
}

.rating-stars i {
    color: #fbbf24;
    font-size: 1.2rem;
    margin-right: 2px;
}

.rating-number {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-dark);
}

.package-services {
    background: #f8fafc;
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 40px;
}

.service-icon {
    text-align: center;
}

.service-icon i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 10px;
    display: block;
}

.service-icon span {
    font-size: 0.9rem;
    color: #6b7280;
    font-weight: 500;
}

.package-itinerary {
    margin-top: 40px;
}

.itinerary-header {
    margin-bottom: 30px;
}

.duration-badge {
    background: var(--secondary-color);
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
}

.itinerary-day {
    margin-bottom: 30px;
    padding: 25px;
    background: #f8fafc;
    border-radius: 15px;
    border-left: 4px solid var(--primary-color);
}

.day-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.day-activities {
    list-style: none;
    padding: 0;
    margin: 0;
}

.day-activities li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 8px;
    color: #6b7280;
    line-height: 1.6;
}

.day-activities li::before {
    content: '•';
    color: var(--secondary-color);
    position: absolute;
    left: 0;
    font-weight: bold;
}

.tour-inclusions,
.optional-addons {
    margin-top: 30px;
    padding: 25px;
    background: #ffffff;
    border: 2px solid #e5e7eb;
    border-radius: 15px;
}

.inclusions-title,
.addons-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.inclusions-list,
.addons-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.inclusions-list li,
.addons-list li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 8px;
    color: #6b7280;
    line-height: 1.6;
}

.inclusions-list li::before {
    content: '✓';
    color: #10b981;
    position: absolute;
    left: 0;
    font-weight: bold;
}

.addons-list li::before {
    content: '+';
    color: var(--secondary-color);
    position: absolute;
    left: 0;
    font-weight: bold;
}

/* Booking Card */
.booking-card {
    background: #ffffff;
    border: 2px solid #e5e7eb;
    border-radius: 20px;
    padding: 30px;
    position: sticky;
    top: 100px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.package-price {
    text-align: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid #e5e7eb;
}

.price-amount {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    display: block;
}

.price-period {
    font-size: 1rem;
    color: #6b7280;
    margin-top: 5px;
}

.booking-form .form-label {
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
    font-size: 0.9rem;
}

.booking-input,
.booking-textarea {
    border: 2px solid #e5e7eb;
    border-radius: 10px;
    padding: 12px 15px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.booking-input:focus,
.booking-textarea:focus {
    outline: none;
    box-shadow: none;
    border-color: var(--primary-color);
}

.booking-btn {
    background: #e74c3c;
    color: white;
    border: none;
    padding: 15px 30px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.booking-btn:hover {
    background: #c0392b;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(231, 76, 60, 0.3);
}

/* Reviews Section */
.reviews-section {
    background: #f8fafc;
    padding: 80px 0;
}

.review-card {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.reviewer-info {
    margin-bottom: 20px;
}

.reviewer-name {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.reviewer-rating i {
    color: #fbbf24;
    font-size: 1.1rem;
    margin-right: 2px;
}

.review-text {
    font-size: 1rem;
    line-height: 1.7;
    color: #6b7280;
    font-style: italic;
    margin: 0;
}

/* Package Features List */
.package-features {
    list-style: none;
    padding: 0;
    margin: 15px 0;
}

.package-features li {
    font-size: 0.9rem;
    color: #6b7280;
    margin-bottom: 5px;
    position: relative;
    padding-left: 15px;
}

.package-features li::before {
    content: '•';
    color: var(--primary-color);
    position: absolute;
    left: 0;
    font-weight: bold;
}

.package-price-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #e5e7eb;
}

.package-btn {
    background: #e74c3c;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 20px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.package-btn:hover {
    background: #c0392b;
    color: white;
    text-decoration: none;
    transform: translateY(-2px);
}

/* --- Home page specific hero centering overrides --- */
body.home .hero-section {height:100vh;} /* ensure full height */
body.home .hero-content {left:50% !important;right:auto !important;transform:translate(-50%, -50%) !important;margin:0 auto;}
body.home .hero-search-content {margin:0 auto !important;}
@media (min-width: 1200px){body.home .hero-content{max-width:1200px;}}
/* Remove any unintended horizontal offset that earlier rules may introduce later in file */
body.home .hero-section .hero-content {left:50% !important;transform:translate(-50%, -50%) !important;}

/* === Package Details Page Enhanced Mobile Responsiveness === */

/* Enhanced spacing for mobile devices */
@media (max-width: 576px) {
    .package-details-section {
        padding: 2rem 0 !important;
    }
    
    .container {
        padding-left: 1rem !important;
        padding-right: 1rem !important;
    }
    
    .package-info-content {
        padding-left: 0.5rem !important;
        padding-right: 0.5rem !important;
    }
    
    .package-title {
        font-size: 1.5rem !important;
        line-height: 1.3 !important;
    }
    
    .package-services .row {
        gap: 0.5rem !important;
    }
    
    .service-icon {
        padding: 1rem !important;
    }
    
    .service-icon i {
        font-size: 1.5rem !important;
    }
    
    .booking-card {
        margin-top: 2rem !important;
        padding: 1.5rem !important;
    }
    
    .price-amount {
        font-size: 2rem !important;
    }
    
    .booking-input, .booking-textarea {
        padding: 0.75rem !important;
    }
}

/* Enhanced spacing for tablets */
@media (min-width: 577px) and (max-width: 991px) {
    .package-details-section {
        padding: 3rem 0 !important;
    }
    
    .package-info-content {
        padding-left: 1rem !important;
        padding-right: 1rem !important;
    }
    
    .package-title {
        font-size: 2rem !important;
    }
    
    .booking-card {
        margin-top: 2rem !important;
    }
}

/* Enhanced spacing for desktop */
@media (min-width: 992px) {
    .package-details-section {
        padding: 4rem 0 !important;
    }
    
    .package-info-content {
        padding-right: 2rem !important;
    }
}

/* Improved gallery styling */
.package-gallery {
    border-radius: 1rem !important;
    overflow: hidden !important;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1) !important;
}

.package-gallery .carousel-item img {
    height: 400px !important;
    object-fit: cover !important;
    width: 100% !important;
}

@media (max-width: 576px) {
    .package-gallery .carousel-item img {
        height: 250px !important;
    }
}

/* Enhanced booking card styling */
.booking-card {
    background: #fff !important;
    border-radius: 1rem !important;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1) !important;
    border: none !important;
}

.booking-btn {
    background: linear-gradient(135deg, var(--primary-color), #3b82f6) !important;
    border: none !important;
    transition: all 0.3s ease !important;
}

.booking-btn:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 5px 15px rgba(30, 58, 138, 0.4) !important;
}

/* Improved service icons */
.service-icon {
    transition: all 0.3s ease !important;
    cursor: pointer !important;
}

.service-icon:hover {
    transform: translateY(-3px) !important;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1) !important;
}

/* === Enhanced Hero Carousel Styles === */

/* Improved carousel indicators */
.hero-section .carousel-indicators {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    justify-content: center;
    list-style: none;
    margin: 0;
    padding: 0;
    z-index: 15;
}

.hero-section .carousel-indicators button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.5);
    background-color: transparent;
    margin: 0 6px;
    transition: all 0.3s ease;
    cursor: pointer;
    text-indent: -999px;
    overflow: hidden;
}

.hero-section .carousel-indicators button.active,
.hero-section .carousel-indicators button:hover {
    background-color: rgba(255, 255, 255, 0.9);
    border-color: rgba(255, 255, 255, 0.9);
    transform: scale(1.2);
}

/* Enhanced fade transitions */
.carousel-fade .carousel-item {
    transition: opacity 0.8s ease-in-out;
}

.carousel-fade .carousel-item.active,
.carousel-fade .carousel-item-next.carousel-item-start,
.carousel-fade .carousel-item-prev.carousel-item-end {
    z-index: 1;
    opacity: 1;
}

.carousel-fade .active.carousel-item-start,
.carousel-fade .active.carousel-item-end {
    z-index: 0;
    opacity: 0;
    transition: opacity 0s 0.8s;
}

/* Improved hero slide animations */
.hero-slide {
    position: relative;
    background-size: cover !important;
    background-position: center center !important;
    background-repeat: no-repeat !important;
    transition: transform 0.8s ease-in-out;
}

.carousel-item.active .hero-slide {
    animation: slideZoom 4s ease-in-out;
}

@keyframes slideZoom {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.03);
    }
    100% {
        transform: scale(1);
    }
}

/* Mobile responsive indicators */
@media (max-width: 768px) {
    .hero-section .carousel-indicators {
        bottom: 1rem;
    }
    
    .hero-section .carousel-indicators button {
        width: 10px;
        height: 10px;
        margin: 0 4px;
    }
}

/* Smooth loading animation */
.hero-section {
    opacity: 0;
    animation: fadeInHero 1s ease-in forwards;
}

@keyframes fadeInHero {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* ===== AUTH SECTION (LOGIN/REGISTER) ===== */
.auth-section {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.9), rgba(59, 130, 246, 0.9));
    padding: 100px 0 50px;
}

.auth-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('../img/HERO 03.png');
    background-size: cover;
    background-position: center;
    z-index: -1;
}

.auth-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.auth-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}

.auth-logo {
    height: 60px;
    width: auto;
}

.auth-title {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 28px;
    margin-bottom: 5px;
}

.auth-subtitle {
    color: #6b7280;
    font-size: 14px;
    margin-bottom: 0;
}

/* Auth Toggle Buttons */
.auth-toggle {
    display: flex;
    background: rgba(30, 58, 138, 0.1);
    border-radius: 12px;
    padding: 4px;
    margin-bottom: 30px;
}

.auth-toggle-btn {
    flex: 1;
    background: transparent;
    border: none;
    padding: 12px 20px;
    border-radius: 8px;
    font-weight: 500;
    color: var(--primary-color);
    transition: all 0.3s ease;
    font-size: 14px;
}

.auth-toggle-btn.active {
    background: var(--primary-color);
    color: white;
    box-shadow: 0 2px 8px rgba(30, 58, 138, 0.3);
}

.auth-toggle-btn:hover:not(.active) {
    background: rgba(30, 58, 138, 0.1);
}

/* Form Styling */
.auth-form .form-label {
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 8px;
    font-size: 14px;
}

.auth-input {
    border: 2px solid #e5e7eb;
    border-radius: 10px;
    padding: 12px 16px;
    font-size: 14px;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.9);
}

.auth-input:focus {
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 0.2rem rgba(245, 158, 11, 0.25);
    background: white;
}

.password-input-group {
    position: relative;
}

.password-toggle {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: #6b7280;
    cursor: pointer;
    font-size: 16px;
    transition: color 0.3s ease;
}

.password-toggle:hover {
    color: var(--primary-color);
}

/* Form Check */
.form-check-input {
    border-radius: 4px;
    border: 2px solid #e5e7eb;
}

.form-check-input:checked {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.form-check-label {
    font-size: 14px;
    color: #374151;
}

/* Links */
.forgot-password {
    color: var(--secondary-color);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.3s ease;
}

.forgot-password:hover {
    color: #d97706;
}

.terms-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
}

.terms-link:hover {
    color: #1e40af;
    text-decoration: underline;
}

/* Auth Button */
.auth-btn {
    background: linear-gradient(135deg, var(--primary-color), #3b82f6);
    border: none;
    border-radius: 10px;
    padding: 14px 20px;
    font-weight: 600;
    font-size: 16px;
    color: white;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.auth-btn:hover {
    background: linear-gradient(135deg, #1e40af, #2563eb);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(30, 58, 138, 0.4);
}

.auth-btn:active {
    transform: translateY(0);
}

/* Social Login */
.social-login {
    position: relative;
    margin-top: 20px;
}

.social-login p {
    color: #6b7280;
    font-size: 14px;
    position: relative;
}

.social-login p::before,
.social-login p::after {
    content: '';
    position: absolute;
    top: 50%;
    width: calc(50% - 50px);
    height: 1px;
    background: #e5e7eb;
}

.social-login p::before {
    left: 0;
}

.social-login p::after {
    right: 0;
}

.social-btn {
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    padding: 10px 16px;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
    background: white;
    color: #374151;
}

.google-btn:hover {
    border-color: #ea4335;
    color: #ea4335;
    background: rgba(234, 67, 53, 0.05);
}

.facebook-btn:hover {
    border-color: #1877f2;
    color: #1877f2;
    background: rgba(24, 119, 242, 0.05);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .auth-card {
        padding: 30px 20px;
        margin: 20px;
        border-radius: 15px;
    }
    
    .auth-title {
        font-size: 24px;
    }
    
    .auth-logo {
        height: 50px;
    }
    
    .auth-toggle-btn {
        font-size: 13px;
        padding: 10px 15px;
    }
    
    .social-btn {
        font-size: 13px;
        padding: 8px 12px;
    }
    
    .auth-section {
        padding: 80px 0 30px;
    }
}

@media (max-width: 576px) {
    .auth-card {
        padding: 25px 15px;
        margin: 15px;
    }
    
    .auth-title {
        font-size: 22px;
    }
    
    .social-login p::before,
    .social-login p::after {
        width: calc(50% - 40px);
    }
    
    .row.g-2 {
        --bs-gutter-x: 0.25rem;
    }
}

/* Animation */
@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.auth-form {
    animation: slideIn 0.5s ease-out;
}

/* Loading States */
.auth-btn:disabled {
    background: #9ca3af;
    cursor: not-allowed;
    transform: none;
}

.auth-btn:disabled:hover {
    background: #9ca3af;
    transform: none;
    box-shadow: none;
}

/* Focus States */
.auth-toggle-btn:focus,
.auth-btn:focus,
.social-btn:focus {
    outline: 2px solid var(--secondary-color);
    outline-offset: 2px;
}

.password-toggle:focus {
    outline: 1px solid var(--secondary-color);
    outline-offset: 1px;
    border-radius: 2px;
}
