:root {
    --primary: #133a6c;
    --secondary: #2bb3b1;
    --accent: #ffb347;
    --light: #f6fbfd;
    --dark: #222831;
    --gradient: linear-gradient(135deg, var(--primary), var(--secondary));
    --card-gradient: linear-gradient(45deg, #133a6c, #2bb3b1);
    --honeymoon-gradient: linear-gradient(135deg, #ffb347, #ffcc80);
    --family-gradient: linear-gradient(135deg, #2bb3b1, #4fd2c2);
    --solo-gradient: linear-gradient(135deg, #133a6c, #222831);
    --shadow: 0 10px 30px rgba(19, 58, 108, 0.08);
    --transition: all 0.4s ease;
}

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

body {
    font-family: 'Poppins', sans-serif;
    background-color: #f0f5ff;
    color: var(--dark);
    overflow-x: hidden;
    scroll-behavior: smooth;
}

/* Header Styles */
header {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: var(--shadow);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 2000;
    padding: 1rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
}

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    display: flex;
    align-items: center;
}

.logo i {
    margin-right: 8px;
    font-size: 2rem;
}

.logo-text {
    background: var(--gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-size: 1.8rem;
    font-weight: 700;
}

nav ul {
    display: flex;
    list-style: none;
}

nav li {
    margin: 0 1.2rem;
}

nav a {
    text-decoration: none;
    color: var(--dark);
    font-weight: 500;
    position: relative;
    padding: 0.5rem 0;
    transition: var(--transition);
}

nav a:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--gradient);
    transition: var(--transition);
}

nav a:hover:after {
    width: 100%;
}

.header-btns {
    display: flex;
    gap: 1rem;
}

.btn, .btn-primary, .btn-outline {
    text-decoration: none;
}

.btn {
    padding: 0.7rem 1.5rem;
    border-radius: 50px;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    font-size: 1rem;
}

.btn-primary {
    background: var(--gradient);
    color: white;
    box-shadow: 0 5px 15px rgba(67, 97, 238, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(67, 97, 238, 0.4);
}

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

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

/* Hero Banner */
.hero-banner {
    height: 100vh;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    padding: 90px 2rem 0 2rem;
    z-index: 1;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 0;
}

.hero-slide.active {
    opacity: 1;
}

.hero-content {
    max-width: 800px;
    z-index: 2;
    padding: 2rem;
    background: rgba(0, 0, 0, 0.32);
    border-radius: 20px;
    border: 2px solid rgba(255,255,255,0.12);
    box-shadow: 0 8px 32px rgba(0,0,0,0.18), 0 0 16px 2px rgba(255,255,255,0.08);
    transform: translateY(20px);
    opacity: 0;
    transition: transform 0.8s ease, opacity 0.8s ease;
}

.hero-content.active {
    transform: translateY(0);
    opacity: 1;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
    color: #fff;
    text-shadow: 0 4px 24px rgba(0,0,0,0.55), 0 1px 0 #222;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    color: #fff;
    text-shadow: 0 2px 12px rgba(0,0,0,0.45), 0 1px 0 #222;
}

.hero-banner:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.15);
    pointer-events: none;
    z-index: 1;
}

.hero-nav {
    position: absolute;
    bottom: 2rem;
    display: flex;
    gap: 1rem;
    z-index: 10;
}

.hero-nav-btn {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: var(--transition);
}

.hero-nav-btn.active {
    background: white;
    transform: scale(1.3);
}

/* Section Styles */
section {
    padding: 5rem 5%;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
    opacity: 0;
    transform: translateY(20px);
    transition: transform 0.8s ease, opacity 0.8s ease;
}

.section-header.active {
    opacity: 1;
    transform: translateY(0);
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    background: var(--gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    display: inline-block;
}

.section-header p {
    max-width: 700px;
    margin: 0 auto;
    font-size: 1.1rem;
    color: #666;
}

/* Places Section */
.places-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

@media (max-width: 900px) {
    .places-container {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 600px) {
    .places-container {
        grid-template-columns: 1fr;
    }
}

.place-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transform: translateY(30px);
    opacity: 0;
    transition: var(--transition);
    position: relative;
    height: 350px;
}

.place-card.active {
    transform: translateY(0);
    opacity: 1;
}

.place-image {
    height: 70%;
    width: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.5s ease;
}

.place-card:hover .place-image {
    transform: scale(1.05);
}

.place-content {
    padding: 1.5rem;
    position: relative;
    z-index: 2;
}

.place-content h3 {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
}

.place-content p {
    color: #666;
    margin-bottom: 1rem;
}

.place-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    opacity: 0;
    transition: var(--transition);
    display: flex;
    align-items: flex-end;
    padding: 1.5rem;
    color: white;
}

.place-card:hover .place-overlay {
    opacity: 1;
}

.place-card:hover .place-content {
    opacity: 0;
    pointer-events: none;
}

.stars {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    color: #FFD700;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}
.stars .material-icons {
    font-size: 1.2rem;
    vertical-align: middle;
}
.stars span {
    color: #666;
    font-size: 1rem;
    margin-left: 0.3rem;
}

.place-rating-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: white;
    color: #FF4B4B;
    font-weight: 600;
    font-size: 1.1rem;
    border-radius: 20px;
    box-shadow: 0 2px 8px rgba(19, 58, 108, 0.08);
    padding: 0.3rem 0.8rem 0.3rem 0.6rem;
    display: flex;
    align-items: center;
    gap: 0.3rem;
    z-index: 3;
}
.place-rating-badge .material-icons {
    font-size: 1.2rem;
    margin-right: 0.2rem;
    color: #FF4B4B;
}

/* Packages Section */
.packages-container {
    display: flex;
    gap: 2rem;
    overflow-x: auto;
    padding: 1rem 0 3rem;
    scroll-snap-type: x mandatory;
}

.packages-container::-webkit-scrollbar {
    height: 8px;
}

.packages-container::-webkit-scrollbar-track {
    background: rgba(67, 97, 238, 0.1);
    border-radius: 10px;
}

.packages-container::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 10px;
}

.package-card {
    flex: 0 0 350px;
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
    scroll-snap-align: start;
    transform: translateY(30px);
    opacity: 0;
    transition: var(--transition);
}

.package-card.active {
    transform: translateY(0);
    opacity: 1;
}

.package-image {
    height: 200px;
    background-size: cover;
    background-position: center;
}

.package-content {
    padding: 1.5rem;
    position: relative;
}

.package-badge {
    position: absolute;
    top: -20px;
    right: 20px;
    background: var(--gradient);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 5px 15px rgba(67, 97, 238, 0.3);
}

.package-content h3 {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
}

.package-details {
    display: flex;
    gap: 1rem;
    margin: 1rem 0;
    flex-wrap: wrap;
}

.package-detail {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #666;
}

.package-price {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary);
    margin: 1rem 0;
}

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

.service-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    transform: translateY(30px);
    opacity: 0;
}

.service-card.active {
    transform: translateY(0);
    opacity: 1;
}

.service-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: var(--transition);
}

.service-icon i {
    font-size: 2.5rem;
    color: white;
}

.service-card:hover .service-icon {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(67, 97, 238, 0.3);
}

.service-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

.service-card p {
    color: #666;
}

/* Transport Sections */
.transport-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

@media (max-width: 900px) {
    .transport-container {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 600px) {
    .transport-container {
        grid-template-columns: 1fr;
    }
}

.transport-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    transform: translateY(30px);
    opacity: 0;
}

.transport-card.active {
    transform: translateY(0);
    opacity: 1;
}

.transport-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.transport-image {
    height: 200px;
    background-size: cover;
    background-position: center;
}

.transport-content {
    padding: 1.5rem;
}

.transport-content h3 {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
}

.transport-details {
    display: flex;
    gap: 1rem;
    margin: 1rem 0;
    flex-wrap: wrap;
}

.transport-detail {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #666;
}

.transport-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    margin: 1rem 0;
}

/* Package Categories */
.category-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.category-tab {
    padding: 0.8rem 2rem;
    border-radius: 50px;
    background: white;
    border: 2px solid #e0e0e0;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
}

.category-tab.active, .category-tab:hover {
    background: var(--gradient);
    color: white;
    border-color: var(--primary);
    box-shadow: 0 5px 15px rgba(67, 97, 238, 0.3);
}

/* Honeymoon Packages */
.honeymoon-package .package-badge {
    background: var(--honeymoon-gradient);
}

/* Family Packages */
.family-package .package-badge {
    background: var(--family-gradient);
}

/* Solo Packages */
.solo-package .package-badge {
    background: linear-gradient(135deg, #6a11cb, #2575fc);
}

/* Hotels Section */
.hotels-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

@media (max-width: 900px) {
    .hotels-container {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 600px) {
    .hotels-container {
        grid-template-columns: 1fr;
    }
}

.hotel-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transform: translateY(30px);
    opacity: 0;
    transition: var(--transition);
}

.hotel-card.active {
    transform: translateY(0);
    opacity: 1;
}

.hotel-image {
    height: 250px;
    background-size: cover;
    background-position: center;
    transition: transform 0.5s ease;
}

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

.hotel-content {
    padding: 1.5rem;
}

.hotel-rating {
    display: flex;
    gap: 0.3rem;
    margin-bottom: 0.5rem;
}

.hotel-rating i {
    color: #FFD700;
}

.hotel-content h3 {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
}

.hotel-features {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin: 1rem 0;
}

.hotel-feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #666;
}

.hotel-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    margin: 1rem 0;
}

/* Footer */
footer {
    background: var(--dark);
    color: white;
    padding: 5rem 5% 2rem;
}

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

.footer-col h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-col h3:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--gradient);
}

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

.footer-col ul li {
    margin-bottom: 1rem;
}

.footer-col ul li a {
    color: #aaa;
    text-decoration: none;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-col ul li a:hover {
    color: white;
    transform: translateX(5px);
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--primary);
    transform: translateY(-5px);
}

.copyright {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #aaa;
}

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

.float {
    animation: float 4s ease-in-out infinite;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.fade-in {
    animation: fadeIn 1s ease forwards;
}

/* Responsive Design */
@media (max-width: 992px) {
    .hero-content h1 {
        font-size: 2.8rem;
    }
}

@media (max-width: 768px) {
    header {
        padding: 1rem;
    }
    nav {
        display: none;
    }
    .mobile-menu-btn {
        display: block;
        font-size: 2rem;
        background: none;
        border: none;
        color: var(--primary);
        cursor: pointer;
        z-index: 1100;
    }
    .mobile-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: white;
        box-shadow: 0 8px 24px rgba(0,0,0,0.08);
        padding: 1.5rem 0;
        z-index: 1099;
        animation: fadeIn 0.3s;
    }
    .mobile-nav.active {
        display: block;
    }
    .mobile-nav ul {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
        list-style: none;
        margin: 0;
        padding: 0;
    }
    .mobile-nav a {
        color: var(--primary);
        font-size: 1.2rem;
        font-weight: 600;
        text-decoration: none;
        transition: color 0.2s;
    }
    .mobile-nav a:hover {
        color: var(--secondary);
    }
    .hero-content h1 {
        font-size: 2.2rem;
    }
    .section-header h2 {
        font-size: 2rem;
    }
}

@media (min-width: 769px) {
    .mobile-menu-btn, .mobile-nav {
        display: none !important;
    }
}

@media (max-width: 576px) {
    .hero-content h1 {
        font-size: 1.8rem;
    }
    
    .hero-content p {
        font-size: 1rem;
    }
    
    .btn {
        padding: 0.6rem 1.2rem;
        font-size: 0.9rem;
    }
    
    .package-card {
        flex: 0 0 300px;
    }
    
    .category-tab {
        padding: 0.6rem 1.5rem;
    }
}

/* Popular Packages Section */
.popular-packages-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

@media (max-width: 900px) {
    .popular-packages-container {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 600px) {
    .popular-packages-container {
        grid-template-columns: 1fr;
    }
}

.popular-package-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transform: translateY(30px);
    opacity: 0;
    transition: var(--transition);
}

.popular-package-card.active {
    transform: translateY(0);
    opacity: 1;
}

.popular-package-image {
    height: 250px;
    background-size: cover;
    background-position: center;
    transition: transform 0.5s ease;
}

.popular-package-card:hover .popular-package-image {
    transform: scale(1.05);
}

.popular-package-content {
    padding: 1.5rem;
    position: relative;
}

.popular-package-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.popular-package-title {
    flex: 1;
}

.popular-package-rating {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    color: #FFD700;
}

.popular-package-likes {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    color: #FF4B91;
    font-size: 0.9rem;
}

.popular-package-stats {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.subsection-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    display: inline-block;
    border-bottom: 3px solid var(--primary);
    padding-bottom: 0.3rem;
    margin-bottom: 1.2rem;
    letter-spacing: 0.5px;
    background: none;
}

.mt-5 {
    margin-top: 3rem;
} 


/* about */

.about-hero {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3rem;
    padding: 5rem 5% 3rem 5%;
    background: var(--light);
}
.about-hero-img {
    max-width: 350px;
    width: 100%;
}
.about-hero-content h1 {
    font-size: 2.8rem;
    background: var(--gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-weight: 700;
    margin-bottom: 1rem;
}
.about-hero-content p {
    font-size: 1.2rem;
    color: var(--dark);
    margin-bottom: 2rem;
}
.about-infographics {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin: 3rem 0;
    flex-wrap: wrap;
}
.about-info-card {
    background: white;
    border-radius: 20px;
    box-shadow: var(--shadow);
    padding: 2rem 2.5rem;
    text-align: center;
    min-width: 220px;
    flex: 1 1 220px;
}
.about-info-icon {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 0.7rem;
}
.about-info-value {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--secondary);
}
.about-info-label {
    font-size: 1.1rem;
    color: #666;
}
.about-story {
    max-width: 900px;
    margin: 0 auto 4rem auto;
    background: white;
    border-radius: 20px;
    box-shadow: var(--shadow);
    padding: 2.5rem 2rem;
}
.about-story h2 {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 1rem;
}
.about-story p {
    font-size: 1.1rem;
    color: var(--dark);
    line-height: 1.7;
}
@media (max-width: 900px) {
    .about-hero {
        flex-direction: column;
        text-align: center;
    }
    .about-hero-img {
        margin-bottom: 2rem;
    }
    .about-infographics {
        gap: 1.5rem;
    }
}

.footer-logo-box {
    background: #fff;
    padding: 1.2rem 1.5rem;
    border-radius: 16px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.07);
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 1.5rem;
}

/* Contact Page Styles */
.contact-section-bg {
    background: url('https://images.unsplash.com/photo-1506744038136-46273834b3fb?auto=format&fit=crop&w=900&q=80') center/cover no-repeat;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    min-height: 100%;
    z-index: 0;
    opacity: 0.18;
    pointer-events: none;
}
.contact-container {
    position: relative;
    max-width: 1100px;
    margin: 0 auto;
    padding: 7rem 5% 3rem 5%;
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    align-items: flex-start;
    z-index: 1;
}
.contact-info {
    flex: 1 1 350px;
    min-width: 320px;
    animation: fadeInLeft 1s;
}
.contact-info h1 {
    font-size: 2.5rem;
    background: var(--gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-weight: 700;
    margin-bottom: 1.2rem;
}
.contact-info p {
    font-size: 1.15rem;
    color: var(--dark);
    margin-bottom: 2.2rem;
    line-height: 1.7;
}
.contact-map {
    width: 100%;
    height: 260px;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: var(--shadow);
    margin-bottom: 1.5rem;
}
.contact-details {
    background: rgba(255,255,255,0.85);
    border-radius: 14px;
    box-shadow: 0 2px 12px rgba(19,58,108,0.07);
    padding: 1.2rem 1.5rem;
    margin-bottom: 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
}
.contact-details .contact-detail {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    color: var(--primary);
    font-size: 1.08rem;
}
.contact-details .contact-detail i {
    color: var(--secondary);
    font-size: 1.4rem;
}
.contact-form-section {
    flex: 1 1 350px;
    min-width: 320px;
    background: rgba(255,255,255,0.93);
    border-radius: 28px;
    box-shadow: 0 12px 40px rgba(19,58,108,0.18);
    padding: 2.7rem 2.2rem 2.2rem 2.2rem;
    backdrop-filter: blur(12px);
    animation: fadeInUp 1.1s;
    font-family: 'Poppins', sans-serif;
    display: flex;
    flex-direction: column;
    align-items: stretch;
}
.contact-form-section h2 {
    color: var(--primary);
    font-size: 2rem;
    margin-bottom: 1.2rem;
    display: flex;
    align-items: center;
    gap: 0.7rem;
    font-weight: 700;
}
.contact-form-icon {
    width: 2.2rem;
    height: 2.2rem;
    display: inline-block;
    vertical-align: middle;
}
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 2.1rem;
    font-family: 'Poppins', sans-serif;
}
.form-group {
    position: relative;
    margin-bottom: 0.5rem;
}
.contact-form input, .contact-form textarea {
    width: 100%;
    padding: 1.25rem 1.1rem 0.8rem 1.1rem;
    border-radius: 14px;
    border: 1.5px solid #e0e0e0;
    font-size: 1.08rem;
    background: rgba(255,255,255,0.97);
    transition: border 0.3s, box-shadow 0.3s;
    outline: none;
    resize: none;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    margin-bottom: 0;
    min-height: 48px;
}
.contact-form input:focus, .contact-form textarea:focus {
    border: 1.5px solid var(--primary);
    box-shadow: 0 0 0 3px var(--accent);
}
.floating-label {
    position: absolute;
    left: 1.1rem;
    top: 1.25rem;
    color: #888;
    font-size: 1.08rem;
    pointer-events: none;
    transition: 0.2s cubic-bezier(.4,0,.2,1);
    background: transparent;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
}
.contact-form input:focus + .floating-label,
.contact-form input:not(:placeholder-shown) + .floating-label,
.contact-form textarea:focus + .floating-label,
.contact-form textarea:not(:placeholder-shown) + .floating-label {
    top: -0.9rem;
    left: 0.9rem;
    font-size: 0.95rem;
    color: var(--primary);
    background: #fff;
    padding: 0 0.3rem;
    border-radius: 6px;
}
.contact-form button {
    background: linear-gradient(90deg, var(--primary) 0%, var(--secondary) 100%);
    color: white;
    border: none;
    padding: 1.15rem 0;
    border-radius: 30px;
    font-size: 1.15rem;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 7px 24px rgba(19, 58, 108, 0.13);
    transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.7rem;
    min-height: 52px;
}
.contact-form button:hover {
    transform: translateY(-3px) scale(1.04);
    box-shadow: 0 12px 32px rgba(19, 58, 108, 0.18);
    background: linear-gradient(90deg, var(--secondary) 0%, var(--primary) 100%);
}
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(40px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInLeft {
    from { opacity: 0; transform: translateX(-40px); }
    to { opacity: 1; transform: translateX(0); }
}
@media (max-width: 900px) {
    .contact-container {
        flex-direction: column;
        gap: 2rem;
    }
    .contact-map {
        height: 200px;
    }
    .contact-form-section {
        padding: 2rem 1rem;
        border-radius: 22px;
    }
}
@media (max-width: 600px) {
    .contact-form-section, .contact-info {
        min-width: 0;
        width: 100%;
    }
    .contact-form-section {
        padding: 1.2rem 0.5rem;
        border-radius: 16px;
    }
    .contact-info {
        padding: 0;
    }
}

/* Contact Us Redesign */
.contact-hero-bg {
    background: url('https://images.unsplash.com/photo-1506744038136-46273834b3fb?auto=format&fit=crop&w=1200&q=80') center/cover no-repeat, linear-gradient(120deg, #f3f8ff 60%, #e6f0fa 100%);
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 0;
    opacity: 0.22;
    pointer-events: none;
}
.contact-hero {
    position: relative;
    z-index: 1;
    padding: 7rem 5% 2.5rem 5%;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 220px;
}
.contact-hero-content {
    background: rgba(255,255,255,0.82);
    box-shadow: 0 8px 32px rgba(19,58,108,0.10);
    border-radius: 24px;
    padding: 2.5rem 2.5rem 2.2rem 2.5rem;
    max-width: 700px;
    text-align: center;
    animation: fadeInUp 1.1s;
}
.contact-hero-content h1 {
    font-size: 2.7rem;
    background: var(--gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-weight: 800;
    margin-bottom: 1.1rem;
}
.contact-hero-content p {
    font-size: 1.18rem;
    color: var(--dark);
    margin-bottom: 0;
    line-height: 1.7;
}
.contact-main {
    position: relative;
    z-index: 2;
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    gap: 3rem;
    align-items: flex-start;
    padding: 0 5% 4rem 5%;
    flex-wrap: wrap;
}
.contact-card {
    flex: 1 1 350px;
    min-width: 320px;
    background: rgba(255,255,255,0.93);
    border-radius: 28px;
    box-shadow: 0 12px 40px rgba(19,58,108,0.18);
    padding: 2.7rem 2.2rem 2.2rem 2.2rem;
    backdrop-filter: blur(12px);
    animation: fadeInUp 1.1s;
    display: flex;
    flex-direction: column;
    align-items: stretch;
}
.contact-info-card h2, .contact-form-card h2 {
    color: var(--primary);
    font-size: 2rem;
    margin-bottom: 1.2rem;
    display: flex;
    align-items: center;
    gap: 0.7rem;
    font-weight: 700;
}
.contact-details-list {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
    display: flex;
    flex-direction: column;
    gap: 1.1rem;
}
.contact-details-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--primary);
    font-size: 1.13rem;
    font-weight: 500;
}
.contact-details-list .material-icons {
    font-size: 2.1rem;
    color: var(--secondary);
    background: #e6f0fa;
    border-radius: 50%;
    padding: 0.4rem;
    margin-right: 0.5rem;
}
.contact-map-modern {
    width: 100%;
    height: 220px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 18px rgba(19,58,108,0.10);
    margin-top: 1.2rem;
}
.contact-form-card {
    background: rgba(255,255,255,0.97);
    box-shadow: 0 12px 40px rgba(19,58,108,0.18);
}
.contact-form-modern {
    display: flex;
    flex-direction: column;
    gap: 2.1rem;
    font-family: 'Poppins', sans-serif;
}
.contact-form-modern .form-group {
    position: relative;
    margin-bottom: 0.5rem;
}
.contact-form-modern input, .contact-form-modern textarea {
    width: 100%;
    padding: 1.25rem 1.1rem 0.8rem 1.1rem;
    border-radius: 14px;
    border: 1.5px solid #e0e0e0;
    font-size: 1.08rem;
    background: rgba(255,255,255,0.97);
    transition: border 0.3s, box-shadow 0.3s;
    outline: none;
    resize: none;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    margin-bottom: 0;
    min-height: 48px;
}
.contact-form-modern input:focus, .contact-form-modern textarea:focus {
    border: 1.5px solid var(--primary);
    box-shadow: 0 0 0 3px var(--accent);
}
.contact-form-modern .floating-label {
    position: absolute;
    left: 1.1rem;
    top: 1.25rem;
    color: #888;
    font-size: 1.08rem;
    pointer-events: none;
    transition: 0.2s cubic-bezier(.4,0,.2,1);
    background: transparent;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
}
.contact-form-modern input:focus + .floating-label,
.contact-form-modern input:not(:placeholder-shown) + .floating-label,
.contact-form-modern textarea:focus + .floating-label,
.contact-form-modern textarea:not(:placeholder-shown) + .floating-label {
    top: -0.9rem;
    left: 0.9rem;
    font-size: 0.95rem;
    color: var(--primary);
    background: #fff;
    padding: 0 0.3rem;
    border-radius: 6px;
}
.contact-form-modern button {
    background: linear-gradient(90deg, var(--primary) 0%, var(--secondary) 100%);
    color: white;
    border: none;
    padding: 1.15rem 0;
    border-radius: 30px;
    font-size: 1.15rem;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 7px 24px rgba(19, 58, 108, 0.13);
    transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.7rem;
    min-height: 52px;
}
.contact-form-modern button:hover {
    transform: translateY(-3px) scale(1.04);
    box-shadow: 0 12px 32px rgba(19, 58, 108, 0.18);
    background: linear-gradient(90deg, var(--secondary) 0%, var(--primary) 100%);
}
.form-feedback {
    margin-top: 1rem;
    font-size: 1.08rem;
    font-weight: 600;
    color: var(--secondary);
    text-align: center;
    display: none;
}
@media (max-width: 900px) {
    .contact-main {
        flex-direction: column;
        gap: 2rem;
        padding: 0 2% 3rem 2%;
    }
    .contact-hero {
        padding: 6rem 2% 2rem 2%;
    }
}
@media (max-width: 600px) {
    .contact-card {
        min-width: 0;
        width: 100%;
        padding: 1.2rem 0.5rem;
        border-radius: 16px;
    }
    .contact-hero-content {
        padding: 1.2rem 0.5rem;
        border-radius: 16px;
    }
}

/* Contact Us Redesign */
#popular-packages {
    background: linear-gradient(120deg, #fffbe6 60%, #ffe6e6 100%);
    position: relative;
    z-index: 1;
    box-shadow: 0 8px 32px rgba(255, 179, 71, 0.08);
}

.popular-section-star {
    color: #FFD700;
    font-size: 2.2rem;
    vertical-align: middle;
    margin-right: 0.5rem;
}

.popular-package-card .special-badge {
    position: absolute;
    top: 18px;
    left: 18px;
    background: linear-gradient(90deg, #FFD700 60%, #FFB347 100%);
    color: #fff;
    font-weight: 700;
    font-size: 1rem;
    padding: 0.4rem 1.1rem;
    border-radius: 50px;
    box-shadow: 0 2px 8px rgba(255, 179, 71, 0.18);
    z-index: 2;
    letter-spacing: 0.5px;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(255, 179, 71, 0.4);}
    70% { box-shadow: 0 0 0 12px rgba(255, 179, 71, 0);}
    100% { box-shadow: 0 0 0 0 rgba(255, 179, 71, 0);}
}

.inclusion-list ul,
.exclusion-list ul {
    list-style: none;
    padding-left: 0;
}
 /* Activities Section */
 .activities-section {
    max-width: 1200px;
    margin: 4rem auto;
    padding: 0 1rem;
    text-align: center;
    font-family: sans-serif;
  }
  .activities-section h2 {
    margin-bottom: 2rem;
    font-size: 2rem;
    color: #333;
  }
  
  /* Carousel */
  .activities-slider {
    position: relative;
    height: 520px;
    overflow: hidden;
  }
  .activity-card {
    position: absolute;
    width: 320px;
    height: 420px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.2);
    padding: 1rem;
    box-sizing: border-box;
    transition: transform 0.5s, opacity 0.5s, filter 0.5s;
    left: calc(50% - 160px);
    top: 0;
    text-align: left;
    overflow: visible;
    padding-bottom: 2.5rem;
}
.activity-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 6px;
    margin-bottom: 0.75rem;
}
.activity-card h3 {
    margin: 0.5rem 0 0.5rem;
    font-size: 1.1rem;
    color: #222;
}
.activity-card p {
    font-size: 0.9rem;
    line-height: 1.4;
    color: #555;
}
.activity-card .btn.btn-primary {
    position: absolute;
    left: 50%;
    bottom: -24px;
    transform: translateX(-50%);
    z-index: 2;
    box-shadow: 0 4px 16px rgba(0,0,0,0.10);
}
/* nav buttons */
.nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: linear-gradient(135deg, #4f8cff 60%, #38e6c5 100%);
    color: #fff;
    border: none;
    font-size: 2.5rem;
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 50%;
    cursor: pointer;
    z-index: 2;
    box-shadow: 0 4px 16px rgba(0,0,0,0.18);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
}
.nav-btn i.material-icons {
    font-size: 2.2rem;
    font-weight: bold;
}
.nav-btn:hover {
    background: linear-gradient(135deg, #38e6c5 60%, #4f8cff 100%);
    transform: translateY(-50%) scale(1.12);
    box-shadow: 0 8px 24px rgba(0,0,0,0.22);
}
#act-prev { left: 1rem; }
#act-next { right: 1rem; }

@media (max-width: 600px) {
  .nav-btn {
    display: none;
  }
}

@media (min-width: 900px) {
  .activities-slider {
    height: 480px;
    padding-top: 40px;
    display: flex;
    justify-content: center;
    align-items: flex-start;
  }
  .activity-card {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    width: 700px;
    height: 340px;
    padding: 0;
  }
  .activity-image-landscape {
    flex: 0 0 50%;
    position: relative;
    border-radius: 10px 0 0 10px;
    overflow: hidden;
  }
  .activity-image-landscape img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px 0 0 10px;
    display: block;
  }
  .activity-content-landscape {
    flex: 1 1 50%;
    padding: 2.2rem 2.2rem 2.2rem 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
  }
  .activity-badge {
    position: absolute;
    top: 1.2rem;
    left: 1.2rem;
    z-index: 2;
    background: rgba(255,255,255,0.92);
    border-radius: 20px;
    padding: 0.2rem 0.9rem;
    font-size: 1.1rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  }
  .activity-card .btn.btn-primary {
    position: absolute;
    left: 50%;
    bottom: -24px;
    transform: translateX(-50%);
    z-index: 2;
    box-shadow: 0 4px 16px rgba(0,0,0,0.10);
  }
}