/* Enhanced Responsive Styles */

/* Tablet Landscape & Desktop Small (769px - 1024px) */
@media (max-width: 1024px) {
    .container {
        max-width: 100%;
        padding: 0 20px;
    }

    .nav-container {
        padding: 0 20px;
        height: 70px;
    }

    .nav-logo .logo-img {
        height: 42px;
    }

    .logo-text {
        font-size: 1.3rem;
    }

    .nav-menu {
        gap: 2rem;
    }

    .nav-menu a {
        font-size: 0.9rem;
    }

    .hero-content {
        padding: 5rem 2rem 2rem 2rem;
        max-width: 90%;
    }

    .hero-content h1 {
        font-size: 3rem;
        line-height: 1.1;
    }

    .hero-content p {
        font-size: 1.2rem;
        margin-bottom: 2rem;
    }

    .search-bar {
        max-width: 450px;
    }

    .section-header h2 {
        font-size: 2.2rem;
    }

    .contact-btn {
        padding: 10px 18px;
        font-size: 0.9rem;
        min-height: 44px;
    }

    /* Destinations and Cards */
    .destinations-grid {
        gap: 1.5rem;
    }

    .destination-card {
        min-width: 280px;
        max-width: 320px;
    }

    .getaways-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 1.5rem;
    }

    .features-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 2rem;
    }
}

/* Tablet Portrait (481px - 768px) */
@media (max-width: 768px) {
    .container {
        padding: 0 16px;
    }

    /* Mobile navbar styles moved to components.css */

    .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);
        z-index: 1001;
        padding: 2rem 0;
        gap: 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        margin: 0.8rem 0;
    }

    .nav-menu a {
        color: #1a1a1a;
        font-size: 1rem;
        font-weight: 600;
        text-decoration: none;
        transition: color 0.3s;
        display: block;
        padding: 0.8rem 1rem;
        position: relative;
    }

    .nav-menu a:hover {
        color: #00843d;
    }

    .nav-menu a::after {
        display: none;
    }

    .contact-btn {
        background: #00843d;
        color: white !important;
        border-radius: 25px;
        padding: 10px 20px;
        margin: 1rem auto;
        width: fit-content;
        min-height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .contact-btn:hover {
        color: white !important;
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(0, 132, 61, 0.4);
        background: #006830;
    }

    .hero {
        margin-top: 70px;
        min-height: calc(100vh - 70px);
        padding: 2rem 0;
    }

    .hero-content {
        padding: 2rem 1rem;
        max-width: 95%;
    }

    .hero-content h1 {
        font-size: 2.5rem;
        line-height: 1.2;
        margin-bottom: 1.2rem;
    }

    .hero-content p {
        font-size: 1.1rem;
        margin-bottom: 2rem;
        line-height: 1.5;
    }

    .search-bar {
        max-width: 100%;
        margin: 0 auto;
        border-radius: 30px;
        overflow: hidden;
    }

    .search-bar input {
        padding: 1rem 1.2rem;
        font-size: 1rem;
        border-radius: 30px 0 0 30px;
    }

    .search-bar button {
        padding: 1rem 1.5rem;
        font-size: 1rem;
        min-height: 44px;
        border-radius: 0 30px 30px 0;
    }

    .section-header h2 {
        font-size: 2rem;
        line-height: 1.3;
    }

    .section-header p {
        font-size: 1rem;
        line-height: 1.6;
    }

    .footer-logo {
        height: 36px;
    }

    /* Destinations and Cards */
    .destinations-grid {
        gap: 1rem;
        padding: 0 0.5rem;
    }

    .destination-card {
        min-width: 260px;
        max-width: 300px;
    }

    .destination-card h3 {
        font-size: 1.1rem;
        line-height: 1.3;
    }

    .price-section {
        margin: 0.8rem 0;
    }

    .current-price {
        font-size: 1.2rem;
    }

    .getaways-grid {
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
        gap: 1rem;
    }

    .getaway-card h3 {
        font-size: 1.1rem;
    }

    .features-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 1.5rem;
    }

    .why-choose-grid {
        grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
        gap: 1.5rem;
    }

    .why-choose-card {
        padding: 1.5rem;
    }

    .why-choose-card h3 {
        font-size: 1.1rem;
    }
}

/* Mobile Landscape & Small Tablet (481px - 600px) */
@media (max-width: 600px) {
    .container {
        padding: 0 12px;
    }

    .nav-container {
        padding: 0 12px;
        height: 60px;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .nav-logo {
        display: flex;
        align-items: center;
        gap: 0.5rem;
        min-width: 150px;
    }

    .nav-logo .logo-img {
        height: 84px;
        border-radius: 50%;
    }

    .logo-text {
        font-size: 1.1rem;
        font-weight: 800;
        letter-spacing: 0.2px;
    }

    .nav-menu {
        position: fixed;
        top: 60px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 60px);
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(10px);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        gap: 2rem;
        padding: 2rem 0;
        transition: left 0.3s ease;
        z-index: 999;
    }

    .nav-menu.active {
        left: 0;
    }

    .navbar.scrolled .nav-menu {
        background: rgba(255, 255, 255, 0.98);
    }

    .nav-menu li {
        display: flex;
        justify-content: center;
        width: 100%;
    }

    .nav-menu a {
        font-size: 1.1rem;
        padding: 1rem 2rem;
        text-align: center;
        width: 80%;
        border-radius: 8px;
        font-weight: 600;
        transition: all 0.3s ease;
    }

    .nav-menu a:hover {
        background: rgba(233, 30, 99, 0.1);
        transform: translateY(-2px);
    }

    .contact-btn {
        padding: 12px 24px !important;
        font-size: 1rem !important;
        min-height: 48px;
        border-radius: 24px;
        font-weight: 700;
        background: #FF6B35 !important;
        color: white !important;
        width: 60% !important;
        text-align: center;
        margin-top: 1rem;
    }

    .nav-toggle {
        display: flex;
        flex-direction: column;
        cursor: pointer;
        z-index: 1001;
    }

    .nav-toggle span {
        width: 25px;
        height: 3px;
        background: white;
        margin: 3px 0;
        transition: 0.3s;
        border-radius: 2px;
    }

    .navbar.scrolled .nav-toggle span {
        background: #2d3748;
    }

    .nav-toggle.active span:nth-child(1) {
        transform: rotate(-45deg) translate(-5px, 6px);
    }

    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active span:nth-child(3) {
        transform: rotate(45deg) translate(-5px, -6px);
    }

    .hero-content {
        padding: 3.5rem 0.8rem 2rem 0.8rem;
        max-width: 100%;
    }

    .hero-content h1 {
        font-size: 2rem;
        line-height: 1.2;
        margin-bottom: 1rem;
    }

    .hero-content p {
        font-size: 1rem;
        margin-bottom: 1.8rem;
        line-height: 1.5;
    }

    .search-bar {
        flex-direction: column;
        border-radius: 20px;
        overflow: hidden;
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    }

    /* Travel Form Mobile */
    .travel-inquiry-form {
        padding: 1.5rem;
        margin: 1rem;
        max-width: calc(100% - 2rem);
    }

    .horizontal-form {
        flex-direction: column;
        align-items: stretch;
        gap: 1rem;
    }

    .form-field {
        min-width: auto;
        max-width: none;
    }

    .horizontal-form input,
    .horizontal-form select {
        padding: 0.8rem 1rem;
        font-size: 0.9rem;
        height: 44px;
    }

    .book-now-btn {
        padding: 0.8rem 2rem;
        font-size: 1rem;
        height: 44px;
        min-width: auto;
        max-width: none;
        width: 100%;
    }

    .search-bar input {
        width: 100%;
        padding: 1.2rem 1rem;
        font-size: 1rem;
        border-radius: 20px 20px 0 0;
        border-bottom: 1px solid #e2e8f0;
    }

    .search-bar button {
        width: 100%;
        padding: 1.2rem;
        font-size: 1rem;
        min-height: 50px;
        border-radius: 0 0 20px 20px;
        font-weight: 600;
    }

    .section-header h2 {
        font-size: 1.8rem;
        line-height: 1.3;
        margin-bottom: 0.8rem;
    }

    .section-header p {
        font-size: 0.95rem;
        line-height: 1.6;
    }

    .footer-logo {
        height: 28px;
    }

    /* Destinations and Cards */
    .destinations-grid {
        gap: 0.8rem;
        padding: 0 0.3rem;
    }

    .destination-card {
        min-width: 240px;
        max-width: 280px;
    }

    .destination-card h3 {
        font-size: 1rem;
        line-height: 1.3;
    }

    .current-price {
        font-size: 1.1rem;
    }

    .package-features {
        gap: 0.5rem;
    }

    .view-itinerary-btn {
        padding: 0.8rem 1rem;
        font-size: 0.9rem;
        min-height: 44px;
    }

    .getaways-grid {
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
        gap: 0.8rem;
    }

    .getaway-card {
        min-height: 200px;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .why-choose-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .why-choose-card {
        padding: 1.2rem;
        text-align: center;
    }

    .nav-btn {
        width: 40px;
        height: 40px;
        font-size: 0.9rem;
    }
}

/* Mobile Portrait (320px - 480px) */
@media (max-width: 480px) {
    .container {
        padding: 0 8px;
    }

    /* Mobile nav-menu styles moved to components.css */

    .contact-btn {
        padding: 12px 24px !important;
        font-size: 1rem !important;
        min-height: 48px;
        border-radius: 24px;
        font-weight: 700;
        background: #FF6B35 !important;
        color: white !important;
        width: 60% !important;
        text-align: center;
        margin-top: 1rem;
    }

    .nav-toggle {
        display: flex;
        flex-direction: column;
        cursor: pointer;
        z-index: 1001;
    }

    .nav-toggle span {
        width: 25px;
        height: 3px;
        background: white;
        margin: 3px 0;
        transition: 0.3s;
        border-radius: 2px;
    }

    .navbar.scrolled .nav-toggle span {
        background: #2d3748;
    }

    .nav-toggle.active span:nth-child(1) {
        transform: rotate(-45deg) translate(-5px, 6px);
    }

    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active span:nth-child(3) {
        transform: rotate(45deg) translate(-5px, -6px);
    }

    .hero-content {
        padding: 3rem 0.5rem 1.5rem 0.5rem;
        max-width: 100%;
    }

    .hero-content h1 {
        font-size: 1.6rem;
        line-height: 1.2;
        margin-bottom: 0.8rem;
    }

    .cursive-text {
        font-size: 1.8rem;
    }

    .hero-content p {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
        line-height: 1.5;
    }

    .search-bar {
        margin: 0 auto;
        max-width: 100%;
    }

    .search-bar input {
        padding: 1.1rem 0.8rem;
        font-size: 0.95rem;
    }

    .search-bar button {
        padding: 1.1rem;
        font-size: 0.95rem;
        min-height: 48px;
    }

    .section-header h2 {
        font-size: 1.5rem;
        line-height: 1.3;
    }

    .section-header p {
        font-size: 0.9rem;
        line-height: 1.6;
    }

    .footer-logo {
        height: 24px;
    }

    /* Destinations and Cards */
    .destinations-grid {
        gap: 0.5rem;
        padding: 0;
    }

    .destination-card {
        min-width: 200px;
        max-width: 250px;
        margin: 0 auto;
    }

    .destination-card h3 {
        font-size: 0.95rem;
        line-height: 1.3;
    }

    .current-price {
        font-size: 1rem;
    }

    .original-price {
        font-size: 0.8rem;
    }

    .per-person {
        font-size: 0.75rem;
    }

    .package-features {
        gap: 0.3rem;
        flex-wrap: wrap;
    }

    .feature {
        font-size: 0.8rem;
    }

    .view-itinerary-btn {
        padding: 0.7rem 0.8rem;
        font-size: 0.85rem;
        min-height: 44px;
    }

    .getaways-grid {
        grid-template-columns: 1fr 1fr;
        gap: 0.5rem;
    }

    .getaway-card {
        min-height: 150px;
    }

    .getaway-card h3 {
        font-size: 0.9rem;
    }

    .getaway-card p {
        font-size: 0.8rem;
    }

    .features-grid {
        gap: 0.8rem;
    }

    .why-choose-grid {
        gap: 0.8rem;
    }

    .why-choose-card {
        padding: 1rem;
    }

    .why-choose-card h3 {
        font-size: 1rem;
    }

    .why-choose-card p {
        font-size: 0.85rem;
    }

    .nav-btn {
        width: 36px;
        height: 36px;
        font-size: 0.8rem;
    }

    .handpicked-header {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .nav-arrows {
        order: -1;
    }
}

.logo-text {
    font-family: 'Poppins', 'Manrope', Arial, sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: #fff;
    letter-spacing: 0.5px;
    transition: color 0.3s;
}

.navbar.scrolled .logo-text {
    color: #2d3748;
}

.footer-logo {
    height: 80px;
    width: auto;
    margin-right: 0.5rem;
    vertical-align: middle;
}

/* Google Fonts Import */
@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@200..800&family=Inter:wght@300;400;500;600;700&family=Poppins:wght@300;400;500;600;700&family=Dancing+Script:wght@400;500;600;700&display=swap');

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: white;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    margin-top: 3rem;
}

/* Global heading font family */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Manrope', sans-serif;
}

/* Global paragraph and subtitle font family */
p,
.subtitle,
.tagline,
.description {
    font-family: 'Poppins', sans-serif;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 0.5rem;
    font-family: 'Manrope', sans-serif;
    position: relative;
    display: inline-block;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #FF6B35 0%, #E91E63 50%, #00BCD4 100%);
    border-radius: 2px;
}

.section-header p {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
    font-family: 'Poppins', sans-serif;
}

/* Navigation */
.navbar {
    background: rgba(245, 247, 239, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.3s ease;
}

/* Navbar styles moved to components.css for better organization */

.contact-btn {
    background: #FF6B35;
    color: white !important;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 600;
    text-decoration: none;
    font-size: 0.95rem;
    position: relative;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.contact-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.4);
    color: white !important;
    background: #FF4500;
}

.contact-btn::after {
    display: none !important;
}

/* Accessible hamburger button */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 6px;
    border: 0;
    background: transparent;
    border-radius: 8px;
}

.hamburger:focus-visible {
    outline: 3px solid rgba(229, 62, 62, 0.5);
    outline-offset: 2px;
}

.hamburger span {
    width: 26px;
    height: 3px;
    background: #2d3748;
    margin: 3px 0;
    transition: transform 0.25s ease, opacity 0.25s ease, background 0.25s ease;
    border-radius: 2px;
}

.hamburger.active span:nth-child(1) {
    transform: translateY(6px) rotate(-45deg);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: translateY(-6px) rotate(45deg);
}

/* Darken page when menu is open */
.nav-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.35);
    backdrop-filter: blur(1px);
    z-index: 998;
}

[hidden].nav-overlay {
    display: none !important;
}

body.menu-open {
    overflow: hidden;
}

.nav-menu a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    position: relative;
}

.nav-menu a:hover {
    color: #E91E63;
}

.nav-menu a:hover::after {
    width: 100%;
}

.nav-menu a::after {
    display: block;
    content: '';
    position: absolute;
    left: 50%;
    bottom: -6px;
    width: 0;
    height: 2px;
    background: #00BCD4;
    transform: translateX(-50%);
    transition: width 0.3s ease;
}

/* Hero Section */
.hero {
    margin-top: 80px;
    min-height: calc(100vh - 80px);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #00843d;
    background-image:
        url('../images/hero-bg.jpg'),
        url('https://picsum.photos/1920/1080?random=300');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: white;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(37, 47, 38, 0.702);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 1200px;
    padding: 4rem 2rem 4rem 2rem;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 80vh;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    line-height: 1.2;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    font-family: 'Manrope', sans-serif;
}

.cursive-text {
    font-family: 'Dancing Script', cursive;
    font-style: italic;
    color: #daca42;
    font-weight: 700;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.4);
    position: relative;
    display: inline-block;
}

.hero-content p {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
    font-family: 'Poppins', sans-serif;
}

.search-bar {
    display: flex;
    background: white;
    border-radius: 50px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    max-width: 500px;
    margin: 0 auto;
}

.search-bar input {
    flex: 1;
    padding: 1.2rem 1.5rem;
    border: none;
    outline: none;
    font-size: 1rem;
    color: #333;
}

.search-bar input::placeholder {
    color: #999;
}

.search-bar button {
    padding: 1.2rem 1.8rem;
    background: #FF6B35;
    border: none;
    color: white;
    cursor: pointer;
    transition: background 0.3s;
    font-size: 1.1rem;
}

.search-bar button:hover {
    background: #FF4500;
}

/* Travel Inquiry Form - Horizontal Layout */
.travel-inquiry-form {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 1.5rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    max-width: 1000px;
    width: 100%;
    margin: 2rem auto 0;
}

.horizontal-form {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: nowrap;
    width: 100%;
}

.form-field {
    display: flex;
    flex-direction: column;
    flex: 1;
    min-width: 180px;
    max-width: 220px;
}

.form-field label {
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.horizontal-form input,
.horizontal-form select {
    padding: 0.8rem 1rem;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    font-size: 1rem;
    font-family: inherit;
    background: white;
    color: #333;
    transition: all 0.3s ease;
    outline: none;
    width: 100%;
    height: 48px;
}

.horizontal-form input:focus,
.horizontal-form select:focus {
    border-color: #E91E63;
    box-shadow: 0 0 0 3px rgba(233, 30, 99, 0.1);
    transform: translateY(-2px);
}

.horizontal-form input::placeholder {
    color: #a0aec0;
}

.horizontal-form select {
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 8 4 4 4-4'/%3e%3c/svg%3e");
    background-position: right 0.5rem center;
    background-repeat: no-repeat;
    background-size: 1.5em 1.5em;
    padding-right: 2.5rem;
}

.book-now-btn {
    background: #ffd700;
    color: #333;
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
    min-width: 120px;
    max-width: 140px;
    height: 48px;
    flex-shrink: 0;
}

.book-now-btn:hover {
    background: #ffed4e;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
}

.book-now-btn:active {
    transform: translateY(0);
}

/* Success Message */
.success-message {
    text-align: center;
    padding: 2rem;
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    border-radius: 12px;
    margin-top: 1rem;
}

.success-message i {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.success-message h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.success-message p {
    font-size: 1rem;
    opacity: 0.9;
    margin: 0;
}

/* Features Section */
.features-section {
    padding: 2rem 0;
    background: #f8fafc;
    border-top: 1px solid #e2e8f0;
    overflow: visible;
}

.features-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    max-width: none;
    margin: 0;
    padding: 1rem 0;
    flex-wrap: nowrap;
}

.feature-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1rem 1.5rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: left;
    min-width: 240px;
    flex: 1;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.feature-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    transition: left 0.6s;
}

.feature-item:hover::before {
    left: 100%;
}

.feature-item:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.feature-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: white;
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-icon::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature-item:hover .feature-icon::after {
    opacity: 1;
    animation: rotate 2s linear infinite;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.feature-item:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
}

.feature-icon.rating {
    background: linear-gradient(135deg, #FF6B35, #E91E63);
}

.feature-icon.customized {
    background: linear-gradient(135deg, #E91E63, #00BCD4);
}

.feature-icon.visa {
    background: linear-gradient(135deg, #00BCD4, #FF6B35);
}

.feature-icon.support {
    background: linear-gradient(135deg, #FF6B35, #00BCD4);
}

.feature-content h4 {
    font-size: 1rem;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 0.125rem;
    font-family: 'Manrope', sans-serif;
}

.feature-content p {
    font-size: 0.85rem;
    color: #718096;
    margin: 0;
}


/* Popular Destinations Section - Separate Styling */
.popular-destinations-section {
    padding: 5rem 0;
    background: #ffffff;
    position: relative;
    overflow: hidden;
}

.popular-destinations-section .destinations-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.popular-destinations-section .destinations-title {
    font-family: 'Inter', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #2d3748;
    margin: 0;
    letter-spacing: -0.02em;
}

.popular-destinations-section .view-all-link {
    color: #2d5016;
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    transition: color 0.3s ease;
}

.popular-destinations-section .view-all-link:hover {
    color: #1a365d;
}

.popular-destinations-section .destinations-carousel {
    position: relative;
    overflow: hidden;
    padding: 0 1rem;
}

.popular-destinations-section .destinations-wrapper {
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.popular-destinations-section .destinations-wrapper::-webkit-scrollbar {
    display: none;
}

.popular-destinations-section .destinations-grid {
    height: 400px;
    display: flex;
    gap: 1.5rem;
    padding: 1rem 0;
    transition: transform 0.3s ease;
}

.popular-destinations-section .destination-card {
    position: relative;
    width: 280px;
    height: 360px;
    min-width: 280px;
    max-width: 280px;
    min-height: 360px;
    max-height: 360px;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
}

.popular-destinations-section .destination-card:hover {
    transform: translateY(-12px);
    /* box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25); */
}

.popular-destinations-section .destination-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    filter: brightness(0.8) contrast(1.1);
    display: block;
    position: absolute;
    top: 0;
    left: 0;
}

.popular-destinations-section .destination-card:hover img {
    transform: scale(1.05);
    filter: brightness(1) contrast(1.2);
}

.popular-destinations-section .destination-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(37, 47, 38, 0.3);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 1.5rem;
    z-index: 2;
    border-radius: 20px;
    transition: all 0.3s ease;
}

.popular-destinations-section .destination-card:hover .destination-overlay {
    background: rgba(30, 33, 30, 0.1);
}

/* Text fade effect on hover for Popular Destinations */
.popular-destinations-section .destination-title,
.popular-destinations-section .destination-subtitle,
.popular-destinations-section .destination-date {
    transition: opacity 0.3s ease;
}

.popular-destinations-section .destination-card:hover .destination-title,
.popular-destinations-section .destination-card:hover .destination-subtitle,
.popular-destinations-section .destination-card:hover .destination-date {
    opacity: 0.3;
}

/* Date header for Popular Destinations */
.popular-destinations-section .destination-date {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    text-align: left;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

/* Heart icon for Popular Destinations */
.popular-destinations-section .destination-heart {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.2rem;
    transition: all 0.3s ease;
    cursor: pointer;
    z-index: 3;
}

.popular-destinations-section .destination-heart:hover {
    color: #e53e3e;
    transform: scale(1.1);
}

/* Content container for Popular Destinations */
.popular-destinations-section .destination-content {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.popular-destinations-section .destination-title {
    font-family: 'Inter', sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    margin: 0;
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.7);
    line-height: 1.2;
    letter-spacing: -0.01em;
    transition: all 0.3s ease;
    position: relative;
    z-index: 10;
}

.popular-destinations-section .destination-card:hover .destination-title {
    transform: translateY(-2px);
}

.popular-destinations-section .destination-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 400;
    margin: 0;
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.6);
    line-height: 1.3;
    letter-spacing: 0.01em;
    position: relative;
    z-index: 10;
}

.popular-destinations-section .destination-card:hover .destination-subtitle {
    transform: translateY(-1px);
}

/* View Trip Button for Popular Destinations */
.popular-destinations-section .view-trip-btn {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 12px;
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    align-self: flex-start;
    margin-top: auto;
}

.popular-destinations-section .view-trip-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
    /* box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2); */
}

.popular-destinations-section .destinations-navigation {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.popular-destinations-section .nav-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid #e2e8f0;
    background: white;
    color: #4a5568;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
}

.popular-destinations-section .nav-btn:hover {
    background: #2d5016;
    color: white;
    border-color: #2d5016;
    transform: scale(1.05);
}

.popular-destinations-section .nav-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

/* Responsive Design for Popular Destinations */
@media (max-width: 768px) {
    .popular-destinations-section .destinations-grid {
        height: 300px;
    }

    .popular-destinations-section .destination-card {
        width: 250px;
        height: 250px;
        min-width: 300px;
        max-width: 300px;
        min-height: 300px;
        max-height: 300px;
    }

    .popular-destinations-section .destination-card img {
        min-height: 300px;
        max-height: 300px;
        min-width: 300px;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .popular-destinations-section .destination-card {
        width: 240px;
        height: 300px;
        min-width: 240px;
        min-height: 300px;
    }

    .popular-destinations-section .destination-card img {
        height: 70%;
    }

    .popular-destinations-section .destination-title {
        font-size: 1.2rem;
    }

    .popular-destinations-section .destination-subtitle {
        font-size: 0.8rem;
    }
}


.destinations-section {
    padding: 5rem 0;
    background: #ffffff;
    position: relative;
    overflow: hidden;
}

.destinations-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3rem;
    padding: 0 1rem;
}

.destinations-title {
    font-family: 'Manrope', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin: 0;
    letter-spacing: -0.02em;
    text-align: left;
}

.view-all-link {
    font-family: 'Inter', sans-serif;
    color: #E91E63;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    text-align: right;
}

.view-all-link:hover {
    color: #ffffff;
    background-color: #E91E63;
    border-color: #E91E63;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(233, 30, 99, 0.3);
}

.destinations-carousel {
    position: relative;
    overflow: hidden;
    padding: 0 50px;
    /* Space for navigation buttons */
    margin: 0;
}

.destinations-wrapper {
    overflow: hidden;
    border-radius: 16px;
    width: 100%;
    position: relative;
    box-sizing: border-box;
}

.destinations-grid {
    display: flex;
    gap: 24px;
    padding: 1rem 0;
    box-sizing: border-box;
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform;
    align-items: stretch;
    min-height: 100px;
}

.destinations-grid::-webkit-scrollbar {
    display: none;
}

.destination-card {
    position: relative;
    width: 280px;
    height: 360px;
    min-width: 280px;
    max-width: 280px;
    min-height: 360px;
    max-height: 360px;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    background: #00843d;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
}

.destination-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
}

.destination-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    filter: brightness(0.8) contrast(1.1);
    display: block;
    position: absolute;
    top: 0;
    left: 0;
}

.destination-card:hover img {
    transform: scale(1.05);
    filter: brightness(1) contrast(1.2);
}

.destination-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 132, 61, 0.6);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 1.5rem;
    z-index: 2;
    border-radius: 20px;
    transition: all 0.3s ease;
}

.destination-card:hover .destination-overlay {
    background: rgba(0, 132, 61, 0.8);
}

/* Date header for destination cards */
.destination-date {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    text-align: left;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

/* Heart icon for destination cards */
.destination-heart {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.2rem;
    transition: all 0.3s ease;
    cursor: pointer;
    z-index: 3;
}

.destination-heart:hover {
    color: #e53e3e;
    transform: scale(1.1);
}

/* Content container for title and subtitle */
.destination-content {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.destination-title {
    font-family: 'Manrope', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0;
    color: #ffffff;
    line-height: 1.2;
    letter-spacing: -0.02em;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.7);
    transform: translateY(0);
    transition: all 0.3s ease;
    position: relative;
    z-index: 10;
}

.destination-card:hover .destination-title {
    transform: translateY(-2px);
}

.destination-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 400;
    margin: 0;
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.6);
    transform: translateY(0);
    transition: all 0.3s ease 0.1s;
    letter-spacing: 0.01em;
    position: relative;
    z-index: 10;
}

.destination-card:hover .destination-subtitle {
    transform: translateY(-1px);
}

/* View Trip Button */
.view-trip-btn {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 12px;
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    margin-top: 1rem;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.view-trip-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* Card Text Utility Class */
.card-text {
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 0px 2px 6px rgba(0, 0, 0, 0.7);
}

/* Navigation buttons below carousel */
.destinations-navigation {
    display: flex;
    justify-content: center;
    gap: 16px;
    /* padding: 30px 0; */
}

.nav-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: #FF6B35;
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    font-size: 18px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.nav-btn:hover {
    background: #FF4500;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
}

.nav-btn:active {
    transform: translateY(0);
}

.nav-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
    transform: none;
}

.nav-btn:disabled:hover {
    background: #FF6B35;
    transform: none;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

/* Tablet responsive adjustments */
@media (max-width: 1024px) {
    .features-grid {
        gap: 1rem;
        padding: 1rem 0;
        justify-content: center;
    }

    .feature-item {
        min-width: 180px;
        padding: 0.75rem 1rem;
        flex: 1;
    }

    .feature-icon {
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
    }

    .feature-content h4 {
        font-size: 0.95rem;
    }

    .feature-content p {
        font-size: 0.8rem;
    }
}

/* Mobile responsive adjustments */
@media (max-width: 768px) {
    .nav-btn {
        width: 45px;
        height: 45px;
        font-size: 16px;
    }

    .destinations-prev-btn {
        left: 10px;
    }

    .destinations-next-btn {
        right: 10px;
    }

    .destinations-carousel {
        padding: 0 25px;
    }

    .destination-card {
        width: 250px;
        height: 250px;
        min-width: 250px;
        max-width: 250px;
        min-height: 250px;
        max-height: 250px;
    }

    .destination-card img {
        min-height: 250px;
        max-height: 250px;
        min-width: 250px;
        max-width: 250px;
    }
}

/* Responsive Layout - Single Row */
@media (max-width: 768px) {
    .destinations-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
        padding: 0 1rem;
    }

    .destinations-title {
        font-size: 2rem;
    }

    .destination-card {
        width: 240px;
        height: 300px;
        min-width: 240px;
        min-height: 300px;
    }

    .destination-card img {
        height: 70%;
    }

    .destination-title {
        font-size: 1.2rem;
    }

    .destination-subtitle {
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .destinations-carousel {
        padding: 0 0.5rem;
    }

    .destination-card {
        width: 220px;
        height: 200px;
        min-width: 220px;
        min-height: 200px;
    }

    .destination-card img {
        min-height: 200px;
        max-height: 200px;
    }

    .destinations-title {
        font-size: 1.8rem;
    }
}

/* Festival Banner Section */
.festival-banner {
    padding-bottom: 4rem;
    background: #ffffff;
}

/* Desktop-first banner: center inside page content and constrain to 1000x259 target */
.banner-content {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    width: 100%;
    max-width: 100%;
    margin: 0 auto; /* center the content box */
    /* Use an aspect-ratio so the image scales to fill the container while maintaining the intended banner proportions */
    aspect-ratio: 1000 / 259;
    /* Fallback for older browsers */
    min-height: 259px;
    height: auto;
}

.banner-image {
    /* use relative positioning so centering and margins behave predictably */
    position: relative;
    width: 100%;
    height: 100%;
    display: block;
}

.banner-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Responsive Banner */
@media (max-width: 1280px) {
    .banner-content {
        aspect-ratio: 1000 / 230;
        min-height: 230px;
    }
}

@media (max-width: 1024px) {
    .banner-content {
        aspect-ratio: 1000 / 200;
        min-height: 200px;
    }
}

@media (max-width: 768px) {
    .festival-banner {
        padding: 1.5rem 0;
    }

    .banner-content {
        aspect-ratio: 16 / 9;
        min-height: 180px;
        margin: 0 1rem;
        max-width: calc(100% - 32px);
    }
}

/* Last-Minute Getaways Section */
.last-minute-getaways {
    padding: 4rem 0;
    background: #f9f5f0;
}

.getaways-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.getaways-header h2 {
    font-size: 1.6rem;
    font-weight: 700;
    color: #1a202c;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 0;
}

.getaways-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: 200px 200px;
    gap: 16px;
    max-width: 1200px;
    margin: 0 auto;
}

.getaway-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.getaway-card:hover {
    border-color: #e53e3e;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(229, 62, 62, 0.2);
}

.getaway-card.large-center {
    grid-column: 2;
    grid-row: 1 / 3;
}

.getaway-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.getaway-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

.getaway-content {
    position: absolute;
    bottom: 20px;
    left: 20px;
    color: white;
    z-index: 2;
}

.getaway-content h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin: 0 0 4px 0;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.getaway-content p {
    font-size: 1rem;
    font-weight: 500;
    margin: 0;
    opacity: 0.95;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    color: #ffffff;
    transition: color 0.3s ease;
}

.getaway-card:hover .getaway-content p {
    color: #ffeb3b;
}

/* Responsive Last-Minute Getaways */
@media (max-width: 1024px) {
    .getaways-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 180px 180px 180px;
        gap: 12px;
    }

    .getaway-card.large-center {
        grid-column: 1 / 3;
        grid-row: 3;
    }
}

@media (max-width: 768px) {
    .getaways-grid {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(6, 160px);
        gap: 12px;
    }

    .getaway-card.large-center {
        grid-column: 1;
        grid-row: auto;
    }

    .getaway-content {
        bottom: 16px;
        left: 16px;
    }

    .getaway-content {
        bottom: 16px;
        left: 16px;
    }

    .getaway-content h3 {
        font-size: 1.2rem;
    }

    .getaway-content p {
        font-size: 0.9rem;
    }

    .getaways-header h2 {
        font-size: 1.5rem;
    }
}

/* Handpicked Destinations Section */
.handpicked-destinations {
    padding: 4rem 0;
    background: #ffffff;
}

.handpicked-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.handpicked-header h2 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #2d3748;
    font-family: 'Inter', sans-serif;
    letter-spacing: 0.5px;
}

.nav-arrows {
    display: flex;
    gap: 0.5rem;
    z-index: 100;
    position: relative;
}

.nav-arrow {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: 2px solid #e2e8f0;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    z-index: 101;
    position: relative;
    user-select: none;
    outline: none;
    pointer-events: auto;
}

.nav-arrow:hover {
    background: #667eea;
    border-color: #667eea;
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.3);
}

.nav-arrow:hover i {
    color: white;
}

.nav-arrow i {
    color: #4a5568;
    font-size: 1rem;
    transition: color 0.3s ease;
}

/* Handpicked Destinations Carousel - Grid Layout */
.handpicked-destinations .destinations-carousel {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    padding: 0 2rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.handpicked-destinations .destinations-wrapper {
    overflow: visible;
    width: 100%;
}

.handpicked-destinations .destinations-carousel::-webkit-scrollbar {
    height: 6px;
}

.handpicked-destinations .destinations-carousel::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 3px;
}

.handpicked-destinations .destinations-carousel::-webkit-scrollbar-thumb {
    background: #c1c1c1;
    border-radius: 3px;
}

.handpicked-destinations .destinations-carousel::-webkit-scrollbar-thumb:hover {
    background: #a1a1a1;
}

.handpicked-destinations .destination-card {
    background: white;
    border-radius: 12px;
    overflow: visible;
    /* box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08); */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #e2e8f0;
    height: auto;
    width: 100%;
    min-height: 420px;
    display: flex;
    flex-direction: column;
}

.destination-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.card-image {
    position: relative;
    height: 180px;
    overflow: hidden;
    border-radius: 12px 12px 0 0;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
    border-radius: 12px 12px 0 0;
}

.destination-card:hover .card-image img {
    transform: scale(1.05);
}

.discount-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: #e53e3e;
    color: white;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 4px 8px;
    border-radius: 4px;
    z-index: 2;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.card-content {
    padding: 1.25rem;
}

.card-content h3 {
    font-size: 1rem;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 1rem;
    line-height: 1.4;
    font-family: 'Inter', sans-serif;
    min-height: 2.8rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.price-section {
    margin-bottom: 1rem;
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.current-price {
    font-size: 1.1rem;
    font-weight: 700;
    color: #2d3748;
}

.original-price {
    font-size: 0.9rem;
    color: #a0aec0;
    text-decoration: line-through;
}

.per-person {
    font-size: 0.8rem;
    color: #718096;
}

.package-features {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.25rem;
    flex-wrap: wrap;
}

.feature {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    font-size: 0.8rem;
    color: #4a5568;
}

.feature i {
    color: #22c55e;
    font-size: 0.75rem;
}

.view-itinerary-btn {
    width: 100%;
    padding: 0.75rem 1rem;
    background: #22c55e;
    color: white !important;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.view-itinerary-btn:hover {
    background: #16a34a;
    transform: translateY(-1px);
}

.view-itinerary-btn i {
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.view-itinerary-btn:hover i {
    transform: translateX(2px);
}

/* Responsive Design for Handpicked Destinations */
@media (max-width: 768px) {
    .handpicked-destinations {
        padding: 3rem 0;
    }

    .handpicked-header {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
        padding: 0 16px;
    }

    .handpicked-header h2 {
        font-size: 1.3rem;
    }

    .handpicked-destinations .destinations-carousel {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 0.5rem;
        padding: 0px 8rem 2rem;
        max-width: 100%;
    }

    .handpicked-destinations .destination-card {
        width: 100%;
        min-height: 380px;
    }

    /* Ensure View Itinerary button is visible on mobile */
    .handpicked-destinations .view-itinerary-btn {
        display: block !important;
        width: 100%;
        padding: 0.75rem 1rem;
        font-size: 0.9rem;
        margin-top: 1rem;
    }
}

@media (max-width: 480px) {
    .handpicked-destinations {
        padding: 2rem 0;
    }

    .handpicked-destinations .destinations-carousel {
        display: grid;
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 1rem 1.5rem;
        max-width: 100%;
    }

    .handpicked-destinations .destination-card {
        width: 100%;
        min-height: 360px;
    }

    .card-content {
        padding: 1rem;
    }

    .package-features {
        gap: 0.5rem;
    }

    .handpicked-header {
        padding: 0 12px;
    }

    /* Ensure View Itinerary button is visible on small mobile */
    .handpicked-destinations .view-itinerary-btn {
        display: block !important;
        width: 100%;
        padding: 0.75rem 1rem;
        font-size: 0.9rem;
        margin-top: 1rem;
    }
}

/* Responsive Packages Section - Maintain Card Design */
@media (max-width: 768px) {
    .advanced-filters {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
        text-align: center;
    }

    .filter-group {
        min-width: unset;
        width: 100%;
        max-width: 300px;
    }

    /* Keep package cards consistent on mobile */
    .packages-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 0.75rem;
        padding: 0 0.75rem;
        width: 100%;
        max-width: 100%;
        overflow-x: hidden;
    }

    .package-card {
        min-height: 450px;
        max-width: 100%;
        width: 100%;
        display: flex;
        flex-direction: column;
        background: white;
        border-radius: 12px;
        overflow: hidden;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        transition: all 0.3s ease;
        box-sizing: border-box;
    }

    .package-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    }

    .package-image {
        height: 180px;
        flex-shrink: 0;
        position: relative;
        overflow: hidden;
    }

    .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 {
        flex: 1;
        display: flex;
        flex-direction: column;
        padding: 1rem;
    }

    .package-header h3 {
        font-size: 1rem;
        margin-bottom: 0.5rem;
        line-height: 1.3;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .package-features {
        display: flex;
        flex-wrap: wrap;
        gap: 0.5rem;
        margin-bottom: 1rem;
    }

    .feature {
        display: flex;
        align-items: center;
        gap: 0.25rem;
        font-size: 0.75rem;
        color: #495057;
    }

    .feature i {
        color: #28a745;
        font-size: 0.7rem;
    }

    .package-price {
        margin-bottom: 1rem;
        text-align: center;
        padding: 0.75rem;
        background: #f5f7ef;
        border-radius: 6px;
    }

    .current-price {
        font-size: 1.3rem;
        font-weight: 700;
        color: #2c3e50;
    }

    .original-price {
        font-size: 1rem;
        color: #6c757d;
        text-decoration: line-through;
        margin-left: 0.5rem;
    }

    .per-person {
        font-size: 0.75rem;
        color: #6c757d;
        display: block;
        margin-top: 0.25rem;
    }

    .package-actions {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 0.5rem;
        margin-top: auto;
    }

    .view-details-btn,
    .book-now-btn {
        padding: 0.6rem 0.8rem;
        border: none;
        border-radius: 6px;
        font-size: 0.8rem;
        font-weight: 600;
        cursor: pointer;
        transition: all 0.3s ease;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0.25rem;
    }

    .view-details-btn {
        background: #f8f9fa;
        color: #495057;
        border: 1px solid #dee2e6;
    }

    .view-details-btn:hover {
        background: #e9ecef;
        transform: translateY(-1px);
    }

    .book-now-btn {
        background: #00843d;
        color: white;
    }

    .book-now-btn:hover {
        background: #006830;
        transform: translateY(-1px);
    }

    .packages .section-header h2 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .packages-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 0 0.75rem;
        width: 100%;
        max-width: 100%;
        overflow-x: hidden;
    }

    .package-card {
        max-width: 400px;
        margin: 0 auto;
        min-height: 420px;
    }

    .package-image {
        height: 200px;
    }

    .package-content {
        padding: 1.25rem;
    }

    .package-header h3 {
        font-size: 1.1rem;
    }

    .package-features {
        flex-direction: column;
        gap: 0.4rem;
    }

    .feature {
        font-size: 0.8rem;
    }

    .package-price {
        padding: 1rem;
    }

    .current-price {
        font-size: 1.4rem;
    }

    .original-price {
        font-size: 1.1rem;
    }

    .package-actions {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }

    .view-details-btn,
    .book-now-btn {
        padding: 0.75rem 1rem;
        font-size: 0.85rem;
    }
}

/* Why Choose PickYourTrail Section */
.why-choose-section {
    padding: 5rem 0;
    background: #ffffff;
}

.why-choose-header {
    text-align: center;
    margin-bottom: 4rem;
}

.why-choose-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 1rem;
}

.why-choose-header p {
    font-size: 1.1rem;
    color: #6b7280;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.why-choose-card {
    text-align: center;
    padding: 2rem 1.5rem;
    background: #f8fafc;
    border-radius: 16px;
    border: 1px solid #e2e8f0;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.why-choose-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.why-choose-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #FF6B35, #E91E63);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 2rem;
    transition: all 0.3s ease;
}

.why-choose-card:hover .why-choose-icon {
    background: linear-gradient(135deg, #E91E63, #00BCD4);
    transform: scale(1.05);
}

.why-choose-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #1a202c;
    margin-bottom: 1rem;
}

.why-choose-card p {
    font-size: 1rem;
    color: #6b7280;
    line-height: 1.6;
    margin: 0;
}

/* Responsive Why Choose Section */
@media (max-width: 1024px) {
    .why-choose-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .why-choose-section {
        padding: 4rem 0;
    }

    .why-choose-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .why-choose-header h2 {
        font-size: 2rem;
    }

    .why-choose-header p {
        font-size: 1rem;
    }

    .why-choose-card {
        padding: 1.5rem 1rem;
    }

    .why-choose-icon {
        width: 70px;
        height: 70px;
        font-size: 1.8rem;
    }
}

/* Two Banner Section */
.two-banner-section {
    padding: 60px 20px;
    /* background: #f8f9fa; */
}

.banner-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    align-items: center;
}

.banner-left {
    position: relative;
    padding: 1rem;
}

.video-banner {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    height: 400px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.video-banner .video-poster {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.video-banner:hover .video-poster {
    transform: scale(1.05);
}

.video-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 132, 61, 0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.video-overlay:hover {
    background: rgba(0, 132, 61, 0.7);
}

.video-content {
    color: white;
    padding: 20px;
    text-align: center;
}

.video-content h3 {
    font-size: 1.1em;
    font-weight: 400;
    margin-bottom: 10px;
}

.video-content h2 {
    font-size: 2.5em;
    margin-bottom: 10px;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.video-content p {
    font-size: 1.2em;
    margin-bottom: 30px;
    opacity: 0.9;
}

.watch-video-btn {
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid white;
    color: white;
    padding: 15px 30px;
    border-radius: 50px;
    font-size: 1.1em;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.watch-video-btn:hover {
    background: white;
    color: #667eea;
    transform: translateY(-2px);
}

.watch-video-btn i {
    margin-right: 10px;
}

/* Video Player Styles */
.testimonial-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
    transition: opacity 0.3s ease;
    cursor: pointer;
}

.video-banner .video-poster {
    transition: opacity 0.3s ease;
}

.video-banner .video-overlay {
    transition: opacity 0.3s ease;
}

.video-banner.playing .video-poster {
    display: none;
    opacity: 0;
}

.video-banner.playing .video-overlay {
    display: none;
    opacity: 0;
}

.video-banner.playing .testimonial-video {
    display: block !important;
    opacity: 1;
}

/* Custom Video Play Button */
.custom-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: rgba(0, 0, 0, 0.8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 28px;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    z-index: 15;
    pointer-events: auto;
    border: 3px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.custom-play-btn:hover {
    background: rgba(102, 126, 234, 0.9);
    transform: translate(-50%, -50%) scale(1.15);
    border-color: rgba(255, 255, 255, 0.5);
    box-shadow: 0 6px 25px rgba(102, 126, 234, 0.4);
}

.custom-play-btn:active {
    transform: translate(-50%, -50%) scale(1.05);
}

/* Video playing state */
.video-banner.playing .custom-play-btn {
    opacity: 1;
    visibility: visible;
}

/* Animation for button appearance */
.custom-play-btn {
    animation: fadeInScale 0.3s ease-out;
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: translate(-50%, -50%) scale(0.8);
    }

    to {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1);
    }
}

/* Video Controls Enhancement */
.testimonial-video {
    /* Custom video styling - hide all controls */
    outline: none;
}

.testimonial-video::-webkit-media-controls {
    display: none !important;
}

.testimonial-video::-webkit-media-controls-panel {
    display: none !important;
}

.testimonial-video::-webkit-media-controls-play-button,
.testimonial-video::-webkit-media-controls-pause-button {
    display: none !important;
}

.testimonial-video::-webkit-media-controls-timeline {
    display: none !important;
}

.testimonial-video::-webkit-media-controls-volume-slider {
    display: none !important;
}

.testimonial-video::-webkit-media-controls-mute-button {
    display: none !important;
}

.testimonial-video::-webkit-media-controls-fullscreen-button {
    display: none !important;
}

/* Loading state for video */
.video-banner.loading .video-overlay::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    border: 4px solid rgba(255, 255, 255, 0.3);
    border-top: 4px solid white;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% {
        transform: translate(-50%, -50%) rotate(0deg);
    }

    100% {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

.banner-right {
    background: white;
    border-radius: 20px;
    padding: 40px;
    /* box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1); */
    text-align: center;
}

.stats-header h2 {
    font-size: 3em;
    color: #667eea;
    margin-bottom: 10px;
    font-weight: 700;
}

.stats-header h3 {
    font-size: 1.3em;
    color: #2c3e50;
    margin-bottom: 30px;
    font-weight: 600;
}

.traveller-avatars {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 30px;
}

.avatar-circle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid #667eea;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.avatar-circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-quote {
    margin-bottom: 30px;
}

.testimonial-quote p {
    font-style: italic;
    font-size: 1.1em;
    color: #2c3e50;
    margin-bottom: 15px;
    line-height: 1.6;
}

.testimonial-author strong {
    color: #667eea;
    font-size: 1.1em;
}

.view-more-btn {
    background: #FF6B35;
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 50px;
    font-size: 1.1em;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none; /* remove underline for anchor elements */
}

.view-more-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(255, 107, 53, 0.3);
    background: #FF4500;
}

/* Responsive Design for Two Banner Section */
@media (max-width: 768px) {
    .banner-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .video-banner {
        height: 300px;
    }

    .video-content h2 {
        font-size: 2em;
    }

    .stats-header h2 {
        font-size: 2.5em;
    }

    .traveller-avatars {
        gap: 10px;
    }

    .avatar-circle {
        width: 50px;
        height: 50px;
    }

    .banner-right {
        padding: 30px 20px;
    }
}

@media (max-width: 480px) {
    .video-content h2 {
        font-size: 1.8em;
    }

    .stats-header h2 {
        font-size: 2em;
    }

    .stats-header h3 {
        font-size: 1.1em;
    }

    .traveller-avatars {
        gap: 8px;
    }

    .avatar-circle {
        width: 45px;
        height: 45px;
    }
}

/* Testimonials Section */
.testimonials {
    padding: 5rem 0;
    background: #f5f7ef;
    position: relative;
    overflow: hidden;
}

.testimonials::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="50" cy="50" r="1" fill="%23000" opacity="0.02"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>') repeat;
    pointer-events: none;
}

.testimonials h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 3rem;
    position: relative;
    z-index: 1;
}

.testimonials-carousel {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    background: white;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    position: relative;
    z-index: 1;
}

.testimonial-slide {
    padding: 3rem;
    text-align: center;
    display: none;
}

.testimonial-slide.active {
    display: block;
}

.testimonial-content p {
    font-size: 1.2rem;
    color: #4a5568;
    line-height: 1.8;
    margin-bottom: 2rem;
    font-style: italic;
    position: relative;
}

.testimonial-content p::before,
.testimonial-content p::after {
    content: '"';
    font-size: 3rem;
    color: #00843d;
    position: absolute;
    font-family: serif;
}

.testimonial-content p::before {
    top: -10px;
    left: -20px;
}

.testimonial-content p::after {
    bottom: -40px;
    right: -10px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.testimonial-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #00843d;
}

.testimonial-author h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 0.25rem;
}

.testimonial-author span {
    font-size: 0.9rem;
    color: #718096;
}

.carousel-controls {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.prev-btn,
.next-btn {
    width: 50px;
    height: 50px;
    border: none;
    border-radius: 50%;
    background: #E91E63;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    font-size: 1.2rem;
}

.prev-btn:hover,
.next-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(233, 30, 99, 0.3);
    background: #C2185B;
}

/* Booking Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
}

.modal-content {
    background-color: white;
    margin: 5% auto;
    padding: 2rem;
    border-radius: 16px;
    width: 90%;
    max-width: 500px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    position: relative;
    animation: modalSlideIn 0.3s ease;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.close {
    position: absolute;
    right: 1rem;
    top: 1rem;
    font-size: 2rem;
    font-weight: bold;
    cursor: pointer;
    color: #718096;
    transition: color 0.3s ease;
}

.close:hover {
    color: #00843d;
}

.modal h2 {
    margin-bottom: 1.5rem;
    color: #2d3748;
    font-size: 1.5rem;
}

.form-group {
    margin-bottom: 1rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #2d3748;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: #E91E63;
    box-shadow: 0 0 0 3px rgba(233, 30, 99, 0.1);
}

.modal button[type="submit"] {
    width: 100%;
    padding: 0.75rem;
    background: #FF6B35;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.modal button[type="submit"]:hover {
    transform: translateY(-2px);
    background: #FF4500;
}

.testimonials-carousel {
    position: relative;
    margin-bottom: 3rem;
}

.testimonials-wrapper {
    overflow: hidden;
    border-radius: 16px;
}

.testimonials-grid {
    display: flex;
    gap: 2rem;
    padding: 1rem;
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.testimonial-card {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    min-width: 400px;
    flex-shrink: 0;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 2rem;
    font-size: 4rem;
    color: #e53e3e;
    font-family: 'Manrope', sans-serif;
    line-height: 1;
    opacity: 0.3;
}

.testimonial-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.12);
}

.testimonial-content {
    margin-bottom: 2rem;
}

.testimonial-text {
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    line-height: 1.7;
    color: #2d3748;
    margin: 0;
    font-weight: 400;
    position: relative;
    z-index: 2;
}

.testimonial-rating {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 1.5rem;
}

.testimonial-rating .star {
    color: #fbbf24;
    font-size: 1.2rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid #e53e3e;
    flex-shrink: 0;
}

.author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-info h4 {
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: #1a202c;
    margin: 0 0 0.25rem 0;
}

.author-info p {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    color: #718096;
    margin: 0;
}

.trip-info {
    font-family: 'Poppins', sans-serif;
    font-size: 0.85rem;
    color: #e53e3e;
    font-weight: 500;
    font-style: italic;
}

/* Testimonial Navigation Buttons */
.testimonial-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.95);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: #2d3748;
    transition: all 0.3s ease;
    z-index: 10;
    opacity: 0;
    backdrop-filter: blur(10px);
}

.testimonials-carousel:hover .testimonial-btn {
    opacity: 1;
}

.testimonial-btn:hover {
    background: white;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
    color: #e53e3e;
}

.testimonial-btn:active {
    transform: translateY(-50%) scale(0.95);
}

.testimonial-btn-prev {
    left: -25px;
}

.testimonial-btn-next {
    right: -25px;
}

/* Testimonial Indicators */
.testimonials-indicators {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 2rem;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(229, 62, 62, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.indicator.active {
    background: #e53e3e;
    transform: scale(1.2);
}

.indicator:hover {
    background: #e53e3e;
    transform: scale(1.1);
}

/* Footer Section */
.footer {
    background: #333;
    color: #e2e8f0;
    padding: 4rem 0 2rem;
    margin-top: 4rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
}

.footer-section h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: white;
    margin-bottom: 1rem;
}

.footer-section p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #a0aec0;
    margin-bottom: 0.5rem;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #a0aec0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #00BCD4;
}

.footer-section i {
    margin-right: 0.5rem;
    color: #00BCD4;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #4a5568;
}

.footer-bottom p {
    color: #a0aec0;
    font-size: 0.9rem;
}

/* Responsive Footer */
@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer {
        padding: 3rem 0 1.5rem;
    }
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: #e2e8f0;
    text-decoration: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.social-link:hover {
    background: linear-gradient(135deg, #FF6B35, #E91E63);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.3);
}

.footer-title {
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 1.5rem;
    position: relative;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: -0.5rem;
    left: 0;
    width: 30px;
    height: 2px;
    background: linear-gradient(90deg, #FF6B35, #E91E63, #00BCD4);
    border-radius: 1px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: #a0aec0;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    position: relative;
}

.footer-links a:hover {
    color: #ffffff;
    padding-left: 0.5rem;
}

.footer-links a::before {
    content: '';
    position: absolute;
    left: -0.5rem;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 1px;
    background: #00BCD4;
    transition: width 0.3s ease;
}

.footer-links a:hover::before {
    width: 0.25rem;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.contact-item i {
    color: #00BCD4;
    font-size: 1.1rem;
    margin-top: 0.25rem;
    flex-shrink: 0;
}

.contact-item p {
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.4;
}

.contact-item p:first-child {
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 0.25rem;
}

.contact-item p:last-child {
    color: #a0aec0;
}

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 2rem 0;
    background: rgba(0, 0, 0, 0.2);
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.footer-certifications {
    display: flex;
    gap: 2rem;
}

.certification-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: #a0aec0;
}

.certification-item i {
    color: #00BCD4;
    font-size: 1rem;
}

.footer-copyright {
    text-align: center;
    flex: 1;
}

.footer-copyright p {
    margin: 0;
    font-size: 0.9rem;
    color: #a0aec0;
}

.footer-payment {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 0.85rem;
    color: #a0aec0;
}

.payment-icons {
    display: flex;
    gap: 0.75rem;
}

.payment-icons i {
    font-size: 1.5rem;
    color: #a0aec0;
    transition: color 0.3s ease;
}

.payment-icons i:hover {
    color: #ffffff;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .footer-main {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
    }

    .footer-company {
        grid-column: 1 / -1;
        padding-right: 0;
        margin-bottom: 1rem;
    }

    .testimonial-card {
        min-width: 350px;
        padding: 2rem;
    }

    .testimonials-title {
        font-size: 2.2rem;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 80px;
        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;
    }

    .nav-toggle {
        display: flex;
    }

    .hero {
        min-height: 60vh;
        padding: 1rem;
    }

    .hero-content {
        padding: 1rem;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-content p {
        font-size: 1.1rem;
    }

    .search-bar {
        flex-direction: column;
        border-radius: 15px;
    }

    .search-bar input {
        border-radius: 15px 15px 0 0;
    }

    .search-bar button {
        border-radius: 0 0 15px 15px;
        padding: 1rem;
    }

    .features-grid {
        gap: 0.75rem;
        padding: 1rem 0;
        flex-direction: column;
        align-items: stretch;
    }

    .feature-item {
        min-width: unset;
        max-width: unset;
        padding: 1rem;
        flex-direction: row;
        text-align: left;
        width: 100%;
        flex: none;
    }

    .feature-icon {
        margin-bottom: 0.5rem;
    }

    .destinations-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
        padding: 0 1rem;
    }

    .destinations-header h2 {
        font-size: 1.8rem;
    }

    .destinations-grid {
        gap: 1rem;
        padding: 0 1rem;
    }

    .destination-card {
        width: 240px;
        height: 180px;
    }

    .slider-btn {
        width: 40px;
        height: 40px;
        font-size: 0.9rem;
    }

    .prev-btn {
        left: 5px;
    }

    .next-btn {
        right: 5px;
    }

    .testimonials-section {
        padding: 4rem 0;
    }

    .testimonial-card {
        min-width: 300px;
        padding: 1.5rem;
    }

    .testimonials-title {
        font-size: 2rem;
    }

    .testimonials-subtitle {
        font-size: 1rem;
    }

    .testimonial-text {
        font-size: 1rem;
    }

    .testimonial-btn {
        width: 45px;
        height: 45px;
        font-size: 1rem;
        opacity: 1;
    }

    .testimonial-btn-prev {
        left: 10px;
    }

    .testimonial-btn-next {
        right: 10px;
    }

    .footer {
        padding: 3rem 0 0;
    }

    .footer-main {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    .footer-company {
        grid-column: 1 / -1;
        text-align: center;
        margin-bottom: 2rem;
    }

    .footer-social {
        justify-content: center;
    }

    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }

    .footer-certifications {
        order: 2;
    }

    .footer-copyright {
        order: 1;
    }

    .footer-payment {
        order: 3;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .testimonial-card {
        min-width: 280px;
        padding: 1.25rem;
    }

    .testimonials-grid {
        padding: 0.5rem;
    }

    .author-avatar {
        width: 50px;
        height: 50px;
    }

    .author-info h4 {
        font-size: 1rem;
    }

    .author-info p {
        font-size: 0.85rem;
    }

    .footer-main {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-certifications {
        flex-direction: column;
        gap: 1rem;
    }

    .footer-payment {
        flex-direction: column;
        gap: 0.5rem;
    }
}

/* About Section Styles */
.about-section {
    padding: 80px 0;
    background-color: #ffffff;
}

.about-content {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.about-header h2 {
    font-size: 3rem;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 0;
    font-family: 'Manrope', sans-serif;
}

.about-tagline {
    font-size: 1.8rem;
    color: #4a5568;
    margin: 10px 0 40px 0;
    font-weight: 400;
    line-height: 1.4;
    font-family: 'Poppins', sans-serif;
}

.about-description {
    text-align: left;
    margin: 40px 0 60px 0;
}

.about-description p {
    font-size: 1rem;
    line-height: 1.8;
    color: #4a5568;
    margin-bottom: 25px;
    text-align: justify;
}

.affiliations {
    margin-top: 60px;
}

.affiliations h3 {
    font-size: 1.5rem;
    color: #2d3748;
    margin-bottom: 30px;
    font-weight: 600;
    text-align: center;
}

.affiliation-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

.logo-item {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.logo-item:hover {
    transform: translateY(-5px);
}

.logo-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Responsive Design */
@media (max-width: 768px) {
    .about-section {
        padding: 60px 0;
    }

    .about-header h2 {
        font-size: 2.2rem;
    }

    .about-tagline {
        font-size: 1.4rem;
    }

    .about-description p {
        font-size: 0.95rem;
        text-align: left;
    }

    .affiliation-logos {
        gap: 20px;
    }

    .logo-item {
        width: 60px;
        height: 60px;
    }
}

@media (max-width: 480px) {
    .about-header h2 {
        font-size: 1.8rem;
    }

    .about-tagline {
        font-size: 1.2rem;
    }

    .affiliations h3 {
        font-size: 1.3rem;
    }
}

/* Recent Blogs Section Styles */
.recent-blogs {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.recent-blogs .section-header {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
}

.recent-blogs .section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 15px;
    font-family: 'Manrope', sans-serif;
}

.recent-blogs .section-header p {
    font-size: 1.1rem;
    color: #4a5568;
    max-width: 600px;
    margin: 0 auto 25px;
}

.view-all-blogs {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #E91E63;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    padding: 10px 20px;
    border: 2px solid #E91E63;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.view-all-blogs:hover {
    background-color: #E91E63;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(233, 30, 99, 0.3);
}

.blogs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.blog-card {
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.blog-image {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.blog-card:hover .blog-image img {
    transform: scale(1.05);
}

.blog-category {
    position: absolute;
    top: 15px;
    left: 15px;
    background: #E91E63;
    color: #ffffff;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.blog-content {
    padding: 25px;
}

.blog-meta {
    margin-bottom: 15px;
}

.blog-date {
    color: #718096;
    font-size: 0.9rem;
    font-weight: 500;
}

.blog-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 12px;
    line-height: 1.4;
    font-family: 'Manrope', sans-serif;
}

.blog-card:hover .blog-title {
    color: #E91E63;
}

.blog-excerpt {
    color: #4a5568;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 20px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.read-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #E91E63;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.read-more:hover {
    color: #C2185B;
    transform: translateX(5px);
}

.read-more::after {
    content: '→';
    transition: transform 0.3s ease;
}

.read-more:hover::after {
    transform: translateX(3px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .recent-blogs {
        padding: 60px 0;
    }

    .recent-blogs .section-header h2 {
        font-size: 2rem;
    }

    .blogs-grid {
        grid-template-columns: 1fr;
        gap: 25px;
        padding: 0 20px;
    }

    .blog-card {
        margin: 0 auto;
        max-width: 400px;
    }

    .blog-content {
        padding: 20px;
    }

    .blog-title {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .recent-blogs .section-header h2 {
        font-size: 1.8rem;
    }

    .blog-image {
        height: 180px;
    }

    .blog-content {
        padding: 18px;
    }

    .view-all-blogs {
        padding: 8px 16px;
        font-size: 0.9rem;
    }
}

/* Home CTA Section */
.home-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, #FF6B35, #E91E63);
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.home-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../images/hero-bg.jpg') center/cover;
    opacity: 0.1;
    z-index: 1;
}

.home-cta .container {
    position: relative;
    z-index: 2;
}

.home-cta .cta-content h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.home-cta .cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-btn {
    padding: 1rem 2rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    font-size: 1rem;
    border: 2px solid transparent;
    min-width: 200px;
    justify-content: center;
}

.cta-btn.primary {
    background: white;
    color: #E91E63;
    border-color: white;
}

.cta-btn.primary:hover {
    background: transparent;
    color: white;
    border-color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.cta-btn.secondary {
    background: transparent;
    color: white;
    border-color: white;
}

.cta-btn.secondary:hover {
    background: white;
    color: #E91E63;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* Responsive CTA */
@media (max-width: 768px) {
    .home-cta {
        padding: 60px 0;
    }

    .home-cta .cta-content h2 {
        font-size: 2rem;
    }

    .home-cta .cta-content p {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .cta-btn {
        width: 100%;
        max-width: 280px;
    }
}

/* Getaway Content Styling - All Screen Sizes */
.getaway-content p {
    font-size: 0.9rem;
    color: #ffffff;
    font-weight: 600;
    line-height: 10px;
}

.view-more-btn:visited, .view-more-btn:link, .view-more-btn:active {
    color: white;
    text-decoration: none;
}

.view-more-btn:focus-visible {
    outline: none;
    box-shadow: 0 0 0 4px rgba(102,126,234,0.18);
}