/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 20px;
}

.nav-logo {
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c5aa0;
}

.nav-logo img {
    height: 50px;
    width: auto;
    object-fit: contain;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: #2c5aa0;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: #2c5aa0;
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: #333;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    overflow: hidden;
}

.hero-slider {
    position: relative;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.slide.active {
    opacity: 1;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slide-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    z-index: 2;
}

.slide-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    animation: fadeInUp 1s ease;
}

.slide-content p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    animation: fadeInUp 1s ease 0.3s both;
}

.cta-btn {
    display: inline-block;
    background: linear-gradient(135deg, #2c5aa0, #1e3f72);
    color: white;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(44, 90, 160, 0.3);
    animation: fadeInUp 1s ease 0.6s both;
}

.cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(44, 90, 160, 0.4);
}

.slider-nav {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 2rem;
    z-index: 3;
}

.slider-nav button {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    font-size: 1.5rem;
    padding: 15px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.slider-nav button:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

.slider-dots {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 3;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active,
.dot:hover {
    background: white;
    transform: scale(1.2);
}

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c5aa0;
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.2rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

/* Sri Lanka Section */
.sri-lanka-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.feature-icon {
    font-size: 3rem;
    color: #2c5aa0;
    margin-bottom: 1rem;
}

.feature-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 1rem;
}

.feature-card p {
    color: #666;
    line-height: 1.8;
}

/* Packages Section */
.packages-section {
    padding: 100px 0;
}

.packages-grid {
    display: grid !important;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)) !important;
    gap: 2rem !important;
    align-items: stretch !important;
}

.package-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.package-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.package-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.package-content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.package-content h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 0.5rem;
    min-height: 3.9rem;
    max-height: 3.9rem;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.package-content p {
    color: #666;
    margin-bottom: 1rem;
    line-height: 1.6;
    flex-grow: 1;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 4.8rem;
}

.package-btn {
    background: linear-gradient(135deg, #2c5aa0, #1e3f72);
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.package-btn:hover {
    background: linear-gradient(135deg, #1e3f72, #2c5aa0);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(44, 90, 160, 0.3);
}

/* About Section */
.about-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
}

.about-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: center;
}

.about-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c5aa0;
    margin-bottom: 2rem;
}

.about-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 1.5rem;
}

.about-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

/* Contact Section */
.contact-section {
    padding: 100px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
}

.contact-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.contact-icon {
    font-size: 3rem;
    color: #2c5aa0;
    margin-bottom: 1rem;
}

.contact-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #2c5aa0;
    margin-bottom: 1rem;
}

.contact-card h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 1rem;
}

.contact-card p {
    color: #666;
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.contact-card i {
    color: #2c5aa0;
    margin-right: 8px;
}

/* Footer */
.footer {
    background: #1a1a1a;
    color: white;
    padding: 50px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #2c5aa0;
}

.footer-logo {
    width: auto;
    height: 60px;
    max-width: 200px;
    margin-bottom: 1.5rem;
    background: white;
    padding: 12px;
    border-radius: 15px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    object-fit: contain;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.footer-logo:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.footer-section {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-section:first-child {
    align-items: center;
    text-align: center;
}

.footer-section p {
    line-height: 1.6;
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #2c5aa0;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: #2c5aa0;
    color: white;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: #1e3f72;
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #333;
    color: #ccc;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Scroll Animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Welcome Section */
.welcome-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fffe 0%, #e8f8f5 100%);
}

.welcome-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.welcome-text h2 {
    font-size: 2.5em;
    color: #2c3e50;
    margin-bottom: 20px;
    font-weight: 700;
}

.welcome-text .lead {
    font-size: 1.2em;
    line-height: 1.8;
    color: #555;
    margin-bottom: 40px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.stat-item {
    text-align: center;
    padding: 20px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
}

.stat-number {
    font-size: 2.2em;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.stat-label {
    color: #666;
    font-size: 0.9em;
    font-weight: 500;
}

.welcome-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

/* Destinations Highlight */
.destinations-highlight {
    padding: 80px 0;
    background: #ffffff;
}

.destinations-showcase {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 40px;
}

.destination-large {
    position: relative;
    height: 400px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.destination-large img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.destination-large:hover img {
    transform: scale(1.1);
}

.destination-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    color: white;
    padding: 40px 30px 30px;
}

.destination-overlay h3 {
    font-size: 1.8em;
    margin-bottom: 10px;
    font-weight: 600;
}

.destination-overlay p {
    margin-bottom: 20px;
    opacity: 0.9;
}

.explore-btn {
    display: inline-block;
    padding: 12px 25px;
    background: var(--primary-color);
    color: white;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.explore-btn:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
}

.destination-grid {
    display: grid;
    grid-template-rows: repeat(2, 1fr);
    gap: 20px;
}

.destination-small {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    display: flex;
    align-items: center;
}

.destination-small:hover {
    transform: translateY(-5px);
}

.destination-small img {
    width: 120px;
    height: 100px;
    object-fit: cover;
}

.destination-info {
    padding: 20px;
    flex: 1;
}

.destination-info h4 {
    font-size: 1.2em;
    color: #2c3e50;
    margin-bottom: 8px;
    font-weight: 600;
}

.destination-info p {
    color: #666;
    font-size: 0.9em;
    line-height: 1.5;
}

/* Experience Types */
.experience-types {
    padding: 80px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.experience-types .section-header h2,
.experience-types .section-header p {
    color: white;
}

.experience-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.experience-card {
    position: relative;
    height: 400px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
    transition: transform 0.3s ease;
}

.experience-card:hover {
    transform: translateY(-10px);
}

.experience-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.experience-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.experience-card:hover .experience-bg img {
    transform: scale(1.1);
}

.experience-content {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.4) 100%);
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    color: white;
}

.experience-icon {
    font-size: 2.5em;
    margin-bottom: 20px;
    opacity: 0.9;
}

.experience-content h3 {
    font-size: 1.5em;
    margin-bottom: 15px;
    font-weight: 600;
}

.experience-content p {
    line-height: 1.6;
    margin-bottom: 20px;
    opacity: 0.9;
}

.experience-link {
    display: inline-block;
    padding: 12px 25px;
    background: rgba(255,255,255,0.2);
    color: white;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 500;
    border: 2px solid rgba(255,255,255,0.3);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.experience-link:hover {
    background: rgba(255,255,255,0.3);
    border-color: rgba(255,255,255,0.6);
}

/* Why Choose Us Home */
.why-choose-home {
    padding: 80px 0;
    background: #f8f9fa;
}

.why-choose-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.why-choose-text h2 {
    font-size: 2.5em;
    color: #2c3e50;
    margin-bottom: 15px;
    font-weight: 700;
}

.subtitle {
    font-size: 1.2em;
    color: #666;
    margin-bottom: 40px;
}

.features-list {
    margin-bottom: 40px;
}

.feature-point {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
    gap: 20px;
}

.feature-point i {
    font-size: 1.8em;
    color: var(--primary-color);
    margin-top: 5px;
    min-width: 40px;
}

.feature-point h4 {
    font-size: 1.2em;
    color: #2c3e50;
    margin-bottom: 8px;
    font-weight: 600;
}

.feature-point p {
    color: #666;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-primary, .btn-secondary {
    display: inline-block;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-primary {
    background: var(--primary-color);
    color: white;
}

.btn-primary:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: white;
}

.testimonial-card {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    position: relative;
}

.quote-icon {
    font-size: 2em;
    color: var(--primary-color);
    opacity: 0.3;
    margin-bottom: 20px;
}

.testimonial-content blockquote {
    font-size: 1.1em;
    line-height: 1.7;
    color: #555;
    margin-bottom: 30px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.author-info h5 {
    color: #2c3e50;
    font-weight: 600;
    margin-bottom: 5px;
}

.author-info span {
    color: #666;
    font-size: 0.9em;
}

.rating {
    color: #ffc107;
}

/* Home CTA */
.home-cta {
    padding: 60px 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5em;
    margin-bottom: 15px;
    font-weight: 700;
}

.cta-content p {
    font-size: 1.2em;
    margin-bottom: 40px;
    opacity: 0.9;
}

.cta-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-btn {
    display: inline-block;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 500;
    transition: all 0.3s ease;
    min-width: 200px;
}

.cta-btn.primary {
    background: white;
    color: var(--primary-color);
}

.cta-btn.primary:hover {
    background: #f8f9fa;
    transform: translateY(-2px);
}

.cta-btn.secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.cta-btn.secondary:hover {
    background: rgba(255,255,255,0.1);
    transform: translateY(-2px);
}

/* Responsive Design for New Sections */
@media (max-width: 768px) {
    .welcome-content,
    .why-choose-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .destinations-showcase {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .experience-grid {
        grid-template-columns: 1fr;
    }
    
    .destination-small {
        flex-direction: column;
        text-align: center;
    }
    
    .destination-small img {
        width: 100%;
        height: 150px;
    }
    
    .cta-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .welcome-text h2,
    .why-choose-text h2,
    .cta-content h2 {
        font-size: 2em;
    }
    
    /* Keep navigation always visible */
    .nav-menu {
        display: flex !important;
        position: static !important;
        flex-direction: row !important;
        background-color: transparent !important;
        width: auto !important;
        text-align: left !important;
        box-shadow: none !important;
        padding: 0 !important;
        left: auto !important;
        top: auto !important;
    }
    
    .nav-menu li {
        margin: 0 1rem !important;
    }
    
    /* Hide hamburger menu completely */
    .hamburger {
        display: none !important;
    }
}
    
    .slide-content h1 {
        font-size: 2.5rem;
    }
    
    .slide-content p {
        font-size: 1.1rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .packages-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)) !important;
        gap: 1.5rem !important;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .slide-content h1 {
        font-size: 2rem;
    }
    
    .slide-content p {
        font-size: 1rem;
    }
    
    .cta-btn {
        padding: 12px 20px;
        font-size: 1rem;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
    }
    
    .feature-card,
    .package-card,
    .contact-card {
        margin: 0 10px;
    }
}

/* Page Header Styles */
.page-header {
    position: relative;
    height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-top: 80px;
}

.page-header-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.page-header-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 2;
}

.page-header-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.page-header-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: white;
    max-width: 800px;
    padding: 0 2rem;
}

.page-header-content h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-header-content p {
    font-size: 1.3rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

/* Enhanced Package Cards */
.package-card.enhanced {
    position: relative;
    overflow: hidden;
}

.package-image {
    position: relative;
    overflow: hidden;
    height: 200px;
}

.package-overlay {
    position: absolute;
    top: 1rem;
    right: 1rem;
    z-index: 2;
}

.package-overlay span {
    display: inline-block;
    background: rgba(44, 90, 160, 0.9);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-left: 0.5rem;
}

.package-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1rem;
    min-height: 2.5rem;
}

.package-features span {
    font-size: 0.85rem;
    color: #666;
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.package-actions {
    display: flex;
    gap: 0.5rem;
    margin-top: auto;
    padding-top: 1rem;
}

.detail-btn {
    flex: 1;
    background: transparent;
    color: #2c5aa0;
    border: 2px solid #2c5aa0;
    padding: 10px 15px;
    border-radius: 25px;
    text-decoration: none;
    text-align: center;
    font-weight: 600;
    transition: all 0.3s ease;
}

.detail-btn:hover {
    background: #2c5aa0;
    color: white;
    transform: translateY(-2px);
}

.package-btn {
    flex: 1;
}

/* Package Filter */
.package-filter {
    padding: 2rem 0;
    background: #f8f9fa;
}

.package-filter .container {
    text-align: left !important;
}

.filter-buttons {
    display: flex !important;
    justify-content: flex-start !important;
    align-items: center !important;
    flex-wrap: wrap !important;
    gap: 1rem !important;
    text-align: left !important;
}

.filter-btn {
    background: white;
    border: 2px solid #e9ecef;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #666;
    display: inline-block !important;
    text-align: center !important;
    margin: 0 !important;
}

.filter-btn:hover,
.filter-btn.active {
    background: #2c5aa0;
    color: white;
    border-color: #2c5aa0;
    transform: translateY(-2px);
}

/* Sri Lanka Page Styles */
.sri-lanka-content {
    padding: 100px 0;
}

.content-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: start;
}

.features-detailed {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.feature-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    padding: 1.5rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
}

.feature-item .feature-icon {
    font-size: 2.5rem;
    color: #2c5aa0;
    min-width: 60px;
}

.feature-content h3 {
    font-size: 1.4rem;
    color: #333;
    margin-bottom: 0.5rem;
}

.feature-content ul {
    list-style: none;
    margin-top: 1rem;
}

.feature-content ul li {
    padding: 0.3rem 0;
    color: #666;
    position: relative;
    padding-left: 1.5rem;
}

.feature-content ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #2c5aa0;
    font-weight: bold;
}

.destinations-grid h2 {
    margin-bottom: 2rem;
    color: #2c5aa0;
}

.destinations {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.destination-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.destination-card:hover {
    transform: translateY(-5px);
}

.destination-card img {
    width: 100%;
    height: 120px;
    object-fit: cover;
}

.destination-info {
    padding: 1rem;
}

.destination-info h3 {
    font-size: 1.1rem;
    color: #333;
    margin-bottom: 0.5rem;
}

.destination-info p {
    font-size: 0.9rem;
    color: #666;
}

/* About Page Styles */
.about-content-page {
    padding: 100px 0;
}

.about-intro {
    text-align: center;
    margin-bottom: 4rem;
}

.intro-text h2 {
    font-size: 2.5rem;
    color: #2c5aa0;
    margin-bottom: 1rem;
}

.lead {
    font-size: 1.2rem;
    color: #555;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

.about-detailed {
    display: flex;
    flex-direction: column;
    gap: 5rem;
    margin-top: 3rem;
}

.about-section {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: center;
    padding: 2rem 0;
}

.about-section.reverse {
    grid-template-columns: 1fr 2fr;
}

.about-section.reverse .section-content {
    order: 2;
    padding-left: 2rem;
}

.about-section.reverse .section-image {
    order: 1;
}

.section-content {
    padding: 1.5rem 2rem 1.5rem 0;
}

.section-content h3 {
    font-size: 2rem;
    color: #2c5aa0;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.section-content h3:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(135deg, #2c5aa0, #1e3f72);
    border-radius: 2px;
}

.section-content p {
    font-size: 1.1rem;
    line-height: 1.9;
    color: #555;
    text-align: justify;
    margin-top: 1rem;
    padding-right: 1rem;
}

.section-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.our-values {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.value-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.value-card:hover {
    transform: translateY(-10px);
}

.value-icon {
    font-size: 3rem;
    color: #2c5aa0;
    margin-bottom: 1rem;
}

.value-card h3 {
    font-size: 1.3rem;
    color: #333;
    margin-bottom: 1rem;
}

.why-choose-us {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.choose-content {
    display: block;
    width: 100%;
}

.choose-text h2 {
    font-size: 2.5rem;
    color: #2c5aa0;
    margin-bottom: 3rem;
    text-align: center;
    position: relative;
    padding-bottom: 1rem;
}

.choose-text h2:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(135deg, #2c5aa0, #1e3f72);
    border-radius: 2px;
}

.reasons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.reason-item {
    display: flex;
    gap: 1.2rem;
    align-items: flex-start;
    background: rgba(255, 255, 255, 0.8);
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.reason-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(44, 90, 160, 0.15);
}

.reason-item i {
    color: #2c5aa0;
    font-size: 1.4rem;
    margin-top: 0.3rem;
    min-width: 24px;
    background: rgba(44, 90, 160, 0.1);
    padding: 8px;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.reason-item h4 {
    color: #333;
    margin-bottom: 0.8rem;
    font-size: 1.2rem;
    font-weight: 600;
}

.reason-item p {
    color: #666;
    line-height: 1.7;
    font-size: 1rem;
}

.our-offices {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
}

.offices-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
}

.office-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.office-card:hover {
    transform: translateY(-5px);
}

.office-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.office-content {
    padding: 2rem;
}

.office-content h3 {
    color: #2c5aa0;
    margin-bottom: 1rem;
}

.office-details {
    margin-top: 1.5rem;
}

.office-details p {
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #666;
}

.office-details i {
    color: #2c5aa0;
    min-width: 20px;
}

/* Contact Page Styles */
.contact-content {
    padding: 100px 0;
}

.contact-intro {
    text-align: center;
    margin-bottom: 4rem;
}

.contact-intro h2 {
    font-size: 2.5rem;
    color: #2c5aa0;
    margin-bottom: 1rem;
}

.contact-intro p {
    font-size: 1.2rem;
    color: #666;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

.contact-main {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
}

.contact-form-section h3 {
    font-size: 1.8rem;
    color: #2c5aa0;
    margin-bottom: 2rem;
}

.contact-form {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}

.form-group {
    margin-bottom: 1rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #333;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2c5aa0;
}

.checkbox-group {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 0.5rem;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 5px;
    transition: background 0.3s ease;
}

.checkbox-label:hover {
    background: #f8f9fa;
}

.submit-btn {
    background: linear-gradient(135deg, #2c5aa0, #1e3f72);
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(44, 90, 160, 0.3);
}

.contact-info-section {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.quick-contact h3,
.office-info h3,
.business-hours h3 {
    color: #2c5aa0;
    margin-bottom: 1rem;
}

.faq-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1rem;
}

.map-section {
    padding: 50px 0;
}

/* Package Detail Page Styles */
.package-detail-hero {
    position: relative;
    height: 70vh;
    display: flex;
    align-items: center;
    margin-top: 80px;
    overflow: hidden;
}

.package-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.package-hero-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(0, 0, 0, 0.7), rgba(44, 90, 160, 0.4));
}

.package-hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: none !important;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}

.package-hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
}

.package-hero-content .container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: center;
}

.hero-text {
    color: white;
}

.package-category {
    background: rgba(255, 255, 255, 0.2);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 1rem;
}

.hero-text h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-text p {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.package-quick-info {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.package-quick-info span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 20px;
}

.package-quick-info span i {
    color: #ffffff !important;
    font-size: 1rem !important;
    width: 1.2rem;
    text-align: center;
    opacity: 1 !important;
    display: inline-block !important;
}

/* Package Detail Page Icon Fixes */
.package-details-content i,
.highlight-icon i,
.hero-actions i,
.inclusions-list i,
.exclusions-list i,
.day-accommodation i {
    display: inline-block !important;
    font-family: "Font Awesome 6 Free" !important;
    font-weight: 900 !important;
    font-style: normal !important;
    opacity: 1 !important;
    visibility: visible !important;
}

.fab {
    font-family: "Font Awesome 6 Brands" !important;
    font-weight: 400 !important;
}

/* Ensure WhatsApp icons display properly in buttons */
.cta-btn.primary i.fab.fa-whatsapp,
.contact-btn.whatsapp i.fab.fa-whatsapp {
    font-family: "Font Awesome 6 Brands" !important;
    font-weight: 400 !important;
    display: inline-block !important;
    font-style: normal !important;
    font-variant: normal !important;
    text-rendering: auto !important;
    -webkit-font-smoothing: antialiased !important;
    margin-right: 8px !important;
    vertical-align: middle !important;
}

/* General button icon spacing */
.cta-btn i,
.contact-btn i {
    margin-right: 8px;
    vertical-align: middle;
}

/* Highlight Icons Specific Styling */
.highlight-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #2c5aa0, #1e3f72);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    box-shadow: 0 4px 15px rgba(44, 90, 160, 0.3);
}

.highlight-icon i {
    color: #ffffff !important;
    font-size: 1.5rem !important;
    text-align: center;
}

/* Fallback for missing icons */
.highlight-icon i:before {
    content: attr(class);
}

.highlight-icon i.fas:not([class*="fa-"]):before,
.highlight-icon i[class="fas"]:before {
    content: "\f005"; /* fa-star as fallback */
}

.hero-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.hero-actions .cta-btn.primary {
    background: #25D366;
}

.hero-actions .cta-btn.secondary {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.package-details-content {
    padding: 100px 0;
}

.details-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
}

.detail-section {
    margin-bottom: 3rem;
}

.detail-section h2 {
    color: #2c5aa0;
    margin-bottom: 1.5rem;
    font-size: 2rem;
}

.itinerary-container {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.itinerary-day {
    display: flex;
    gap: 1.5rem;
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    border-left: 4px solid #2c5aa0;
}

.day-number {
    background: #2c5aa0;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.day-content h4 {
    color: #333;
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

.day-content p {
    color: #666;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.day-activities {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.activity-tag {
    background: #f8f9fa;
    color: #2c5aa0;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.85rem;
    font-weight: 600;
}

.day-accommodation {
    color: #666;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.highlights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.highlight-item {
    background: white;
    padding: 1.5rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.highlight-item:hover {
    transform: translateY(-5px);
}

.highlight-icon {
    font-size: 2.5rem;
    color: #2c5aa0;
    margin-bottom: 1rem;
}

.highlight-item h4 {
    color: #333;
    margin-bottom: 0.5rem;
}

.highlight-item p {
    color: #666;
    font-size: 0.9rem;
}

.photo-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
}

.gallery-item {
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.gallery-item:hover {
    transform: scale(1.05);
}

.gallery-item img {
    width: 100%;
    height: 150px;
    object-fit: cover;
}

.sidebar {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.info-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.info-card h3 {
    color: #2c5aa0;
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
}

.info-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #f8f9fa;
}

.info-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.info-item i {
    color: #2c5aa0;
    font-size: 1.2rem;
    margin-top: 0.2rem;
    min-width: 20px;
}

.info-item div strong {
    display: block;
    color: #333;
    margin-bottom: 0.3rem;
}

.info-item div span {
    color: #666;
    font-size: 0.9rem;
}

.inclusion-list,
.exclusion-list {
    list-style: none;
}

.inclusion-list li,
.exclusion-list li {
    padding: 0.5rem 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
}

.inclusion-list li i {
    color: #28a745;
}

.exclusion-list li i {
    color: #dc3545;
}

.contact-card {
    background: linear-gradient(135deg, #2c5aa0, #1e3f72);
    color: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.contact-card h3 {
    color: #ffffff !important;
    margin-bottom: 1rem;
    font-size: 1.5rem;
    font-weight: 600;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.contact-card p {
    margin-bottom: 1.5rem;
    color: #f0f0f0 !important;
    font-size: 1rem;
    opacity: 0.95;
}

.contact-btn {
    display: block;
    width: 100%;
    padding: 12px;
    margin-bottom: 1rem;
    border: none;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    text-align: center;
}

.contact-btn.whatsapp {
    background: #25D366;
    color: white;
}

.contact-btn.email {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    backdrop-filter: blur(10px);
}

.contact-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.contact-info {
    margin-top: 1.5rem;
    font-size: 0.9rem;
}

.contact-info p {
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 10000;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modal-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    padding: 2rem;
    border-radius: 15px;
    max-width: 500px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
}

.close-modal {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 24px;
    cursor: pointer;
    color: #666;
}

.close-modal:hover {
    color: #333;
}

.related-packages {
    padding: 100px 0;
    background: #f8f9fa;
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.related-package {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.related-package:hover {
    transform: translateY(-5px);
}

.related-package img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.related-content {
    padding: 1.5rem;
}

.related-content h4 {
    color: #333;
    margin-bottom: 0.5rem;
}

.related-content p {
    color: #666;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.view-btn {
    background: #2c5aa0;
    color: white;
    padding: 10px 20px;
    border-radius: 20px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
}

.view-btn:hover {
    background: #1e3f72;
    transform: translateY(-2px);
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Loading Animation */
.loading {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: white;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.spinner {
    width: 50px;
    height: 50px;
    border: 3px solid #f3f3f3;
    border-top: 3px solid #2c5aa0;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Welcome Section */
.welcome-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fffe 0%, #e8f8f5 100%);
}

.welcome-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.welcome-text h2 {
    font-size: 2.5em;
    color: #2c3e50;
    margin-bottom: 20px;
    font-weight: 700;
}

.welcome-text .lead {
    font-size: 1.2em;
    line-height: 1.8;
    color: #555;
    margin-bottom: 40px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.stat-item {
    text-align: center;
    padding: 20px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
}

.stat-number {
    font-size: 2.2em;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.stat-label {
    color: #666;
    font-size: 0.9em;
    font-weight: 500;
}

.welcome-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

/* Destinations Highlight */
.destinations-highlight {
    padding: 80px 0;
    background: #ffffff;
}

.destinations-showcase {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 40px;
}

.destination-large {
    position: relative;
    height: 400px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.destination-large img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.destination-large:hover img {
    transform: scale(1.1);
}

.destination-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    color: white;
    padding: 40px 30px 30px;
}

.destination-overlay h3 {
    font-size: 1.8em;
    margin-bottom: 10px;
    font-weight: 600;
}

.destination-overlay p {
    margin-bottom: 20px;
    opacity: 0.9;
}

.explore-btn {
    display: inline-block;
    padding: 12px 25px;
    background: var(--primary-color);
    color: white;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.explore-btn:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
}

.destination-grid {
    display: grid;
    grid-template-rows: repeat(2, 1fr);
    gap: 20px;
}

.destination-small {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    display: flex;
    align-items: center;
}

.destination-small:hover {
    transform: translateY(-5px);
}

.destination-small img {
    width: 120px;
    height: 100px;
    object-fit: cover;
}

.destination-info {
    padding: 20px;
    flex: 1;
}

.destination-info h4 {
    font-size: 1.2em;
    color: #2c3e50;
    margin-bottom: 8px;
    font-weight: 600;
}

.destination-info p {
    color: #666;
    font-size: 0.9em;
    line-height: 1.5;
}

/* Experience Types */
.experience-types {
    padding: 80px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.experience-types .section-header h2,
.experience-types .section-header p {
    color: white;
}

.experience-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.experience-card {
    position: relative;
    height: 400px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
    transition: transform 0.3s ease;
}

.experience-card:hover {
    transform: translateY(-10px);
}

.experience-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.experience-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.experience-card:hover .experience-bg img {
    transform: scale(1.1);
}

.experience-content {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.4) 100%);
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    color: white;
}

.experience-icon {
    font-size: 2.5em;
    margin-bottom: 20px;
    opacity: 0.9;
}

.experience-content h3 {
    font-size: 1.5em;
    margin-bottom: 15px;
    font-weight: 600;
}

.experience-content p {
    line-height: 1.6;
    margin-bottom: 20px;
    opacity: 0.9;
}

.experience-link {
    display: inline-block;
    padding: 12px 25px;
    background: rgba(255,255,255,0.2);
    color: white;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 500;
    border: 2px solid rgba(255,255,255,0.3);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.experience-link:hover {
    background: rgba(255,255,255,0.3);
    border-color: rgba(255,255,255,0.6);
}

/* Why Choose Us Home */
.why-choose-home {
    padding: 80px 0;
    background: #f8f9fa;
}

.why-choose-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.why-choose-text h2 {
    font-size: 2.5em;
    color: #2c3e50;
    margin-bottom: 15px;
    font-weight: 700;
}

.subtitle {
    font-size: 1.2em;
    color: #666;
    margin-bottom: 40px;
}

.features-list {
    margin-bottom: 40px;
}

.feature-point {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
    gap: 20px;
}

.feature-point i {
    font-size: 1.8em;
    color: var(--primary-color);
    margin-top: 5px;
    min-width: 40px;
}

.feature-point h4 {
    font-size: 1.2em;
    color: #2c3e50;
    margin-bottom: 8px;
    font-weight: 600;
}

.feature-point p {
    color: #666;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-primary, .btn-secondary {
    display: inline-block;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-primary {
    background: var(--primary-color);
    color: white;
}

.btn-primary:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: white;
}

.testimonial-card {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    position: relative;
}

.quote-icon {
    font-size: 2em;
    color: var(--primary-color);
    opacity: 0.3;
    margin-bottom: 20px;
}

.testimonial-content blockquote {
    font-size: 1.1em;
    line-height: 1.7;
    color: #555;
    margin-bottom: 30px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.author-info h5 {
    color: #2c3e50;
    font-weight: 600;
    margin-bottom: 5px;
}

.author-info span {
    color: #666;
    font-size: 0.9em;
}

.rating {
    color: #ffc107;
}

/* Home CTA */
.home-cta {
    padding: 60px 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5em;
    margin-bottom: 15px;
    font-weight: 700;
}

.cta-content p {
    font-size: 1.2em;
    margin-bottom: 40px;
    opacity: 0.9;
}

.cta-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-btn {
    display: inline-block;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 500;
    transition: all 0.3s ease;
    min-width: 200px;
}

.cta-btn.primary {
    background: white;
    color: var(--primary-color);
}

.cta-btn.primary:hover {
    background: #f8f9fa;
    transform: translateY(-2px);
}

.cta-btn.secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.cta-btn.secondary:hover {
    background: rgba(255,255,255,0.1);
    transform: translateY(-2px);
}

/* Responsive Design for New Sections */
@media (max-width: 768px) {
    .welcome-content,
    .why-choose-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .destinations-showcase {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .experience-grid {
        grid-template-columns: 1fr;
    }
    
    .destination-small {
        flex-direction: column;
        text-align: center;
    }
    
    .destination-small img {
        width: 100%;
        height: 150px;
    }
    
    .cta-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .welcome-text h2,
    .why-choose-text h2,
    .cta-content h2 {
        font-size: 2em;
    }
}

/* Additional styles for single column why choose us */
.why-choose-content-single {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.why-choose-content-single .features-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    text-align: left;
}

.why-choose-content-single .cta-buttons {
    justify-content: center;
}

/* Fix button colors on light background */
.why-choose-home .btn-secondary {
    background: white !important;
    color: var(--primary-color) !important;
    border: 2px solid var(--primary-color) !important;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1) !important;
}

.why-choose-home .btn-secondary:hover {
    background: var(--primary-color) !important;
    color: white !important;
}

.why-choose-home .btn-primary {
    background: var(--primary-color) !important;
    color: black !important;
    box-shadow: 0 2px 10px rgba(44, 90, 160, 0.3) !important;
}

.why-choose-home .btn-primary:hover {
    background: var(--secondary-color) !important;
    color: black !important;
}

/* Ensure buttons are visible */
.why-choose-home .cta-buttons a {
    display: inline-block !important;
    margin: 10px !important;
    padding: 15px 30px !important;
    border-radius: 30px !important;
    font-weight: 500 !important;
    text-decoration: none !important;
    transition: all 0.3s ease !important;
}

/* Sri Lanka page Contact Us button black text */
body .cta-btn.secondary {
    color: black !important;
}

body .cta-btn.secondary:hover {
    color: black !important;
}

/* Enhanced Footer Design */
.footer {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    color: white;
    padding: 60px 0 0;
    margin-top: 80px;
}

/* Force packages to display left to right */
.packages-section .packages-grid {
    display: grid !important;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)) !important;
    gap: 2rem !important;
    align-items: start !important;
}

/* Ensure packages work on smaller screens too */
@media (max-width: 768px) {
    .packages-section .packages-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)) !important;
        gap: 1.5rem !important;
    }
}

@media (max-width: 480px) {
    .packages-section .packages-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)) !important;
        gap: 1rem !important;
    }
}

/* Force navigation to always be visible */
.nav-menu {
    display: flex !important;
    position: static !important;
    flex-direction: row !important;
    background-color: transparent !important;
    width: auto !important;
    text-align: left !important;
    box-shadow: none !important;
    padding: 0 !important;
    left: auto !important;
    top: auto !important;
    list-style: none !important;
    gap: 2rem !important;
}

.hamburger {
    display: none !important;
}

/* Responsive navigation for smaller screens */
@media (max-width: 480px) {
    .nav-menu {
        gap: 1rem !important;
        flex-wrap: wrap !important;
        justify-content: center !important;
    }
    
    .nav-link {
        font-size: 0.9rem !important;
        padding: 0.5rem !important;
    }
    
    .nav-container {
        flex-direction: column !important;
        gap: 1rem !important;
        padding: 1rem !important;
    }
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 40px;
    align-items: start;
}

.footer-main {
    max-width: 350px;
}

.footer-section {
    align-self: start;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.footer-brand h3 {
    color: white;
    font-size: 1.4em;
    font-weight: 600;
    margin: 0;
}

.footer-description {
    color: rgba(255,255,255,0.8);
    line-height: 1.6;
    margin-bottom: 25px;
}

.footer-section h4 {
    color: white;
    font-size: 1.2em;
    font-weight: 600;
    margin-bottom: 20px;
    position: relative;
}

.footer-section h4:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 30px;
    height: 2px;
    background: var(--primary-color);
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    display: block;
    padding: 5px 0;
}

.footer-links a:hover {
    color: var(--primary-color);
    padding-left: 10px;
}

.contact-info {
    margin-top: 10px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 18px;
    color: rgba(255,255,255,0.8);
    padding: 5px 0;
}

.contact-item i {
    color: var(--primary-color);
    width: 20px;
    text-align: center;
    font-size: 1.2em;
    flex-shrink: 0;
}

.contact-item span {
    line-height: 1.6;
    flex: 1;
}

.social-links {
    display: flex;
    gap: 12px;
    margin-top: 25px;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    color: white;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.social-links a:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(44, 90, 160, 0.4);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 25px 0;
    background: rgba(0,0,0,0.2);
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.footer-bottom p {
    margin: 0;
    color: rgba(255,255,255,0.7);
    font-size: 0.9em;
}

.footer-credit i {
    color: #e74c3c;
    margin: 0 5px;
}

/* Footer Responsive */
@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    /* About Page Mobile Responsive */
    .about-section {
        grid-template-columns: 1fr !important;
        gap: 2rem;
        text-align: center;
    }
    
    .about-section.reverse .section-content {
        order: 1;
        padding-left: 0;
    }
    
    .about-section.reverse .section-image {
        order: 2;
    }
    
    .section-content {
        padding: 1rem 0;
    }
    
    .section-content h3:after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .section-content p {
        padding-right: 0;
        text-align: center;
    }
    
    .choose-content {
        display: block !important;
        width: 100%;
    }
    
    .reasons-grid {
        grid-template-columns: 1fr !important;
        gap: 1.5rem;
    }
    
    .choose-text h2 {
        font-size: 2rem;
        margin-bottom: 2rem;
    }
    
    .reason-item {
        padding: 1.2rem;
    }
    
    .reason-item i {
        width: 35px;
        height: 35px;
        font-size: 1.2rem;
    }
    
    .footer-content {
        gap: 2rem;
        text-align: center;
    }
    
    .footer-logo {
        height: 50px;
        max-width: 150px;
        margin: 0 auto 1rem auto;
    }
    
    .footer-section:first-child {
        align-items: center;
    }
    
    .footer-main {
        max-width: none;
    }
    
    .footer-brand {
        justify-content: center;
    }
    
    .footer-section h4:after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .social-links {
        justify-content: center;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }
}

/* Navigation Logo Mobile Responsive */
@media (max-width: 768px) {
    .nav-logo {
        font-size: 1.3rem;
    }
    
    .nav-logo img {
        height: 45px;
    }
}

@media (max-width: 480px) {
    .nav-logo {
        font-size: 1.1rem;
    }
    
    .nav-logo img {
        height: 40px;
    }
}
