/* 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;
}

img {
    max-width: 100%;
    height: auto;
}

a {
    text-decoration: none;
    color: inherit;
}

.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);
    z-index: 1000;
    padding: 1rem 0;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.nav-logo h2 {
    color: #2c5f2d;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: -5px;
}

.nav-logo span {
    font-size: 0.9rem;
    color: #253b05;
    font-weight: 400;
}

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

.nav-link {
    font-weight: 500;
    color: #333;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: #2c5f2d;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    right: 0;
    height: 2px;
    background: #97bc62;
}

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

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

/* Hero Section */
.hero {
    min-height: 100vh;
    background: linear-gradient(rgba(44, 95, 45, 0.3), rgba(151, 188, 98, 0.3)), 
                url('../images/main-background5.png') center/cover no-repeat;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="20" cy="20" r="1" fill="%23ffffff" opacity="0.1"/><circle cx="80" cy="80" r="1" fill="%23ffffff" opacity="0.1"/><circle cx="40" cy="60" r="1" fill="%23ffffff" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.hero-content {
    flex: 1;
    z-index: 2;
    padding: 2rem;
}

.hero h1 {
    font-size: 3.5rem;
    color: white;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    max-width: 600px;
}

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

.hero-map {
    flex: 1;
    position: relative;
    height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sri-lanka-map {
    position: relative;
    width: 100%;
    max-width: 400px;
    height: 500px;
    background: url('../images/sri-lanka-map.jpg') center/contain no-repeat;
    margin: 2rem;
}

.map-pointer {
    position: absolute;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.map-pointer:hover {
    transform: scale(1.2);
}

.map-pointer i {
    color: #ff6b35;
    font-size: 1.5rem;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.location-name {
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 0.8rem;
    white-space: nowrap;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.map-pointer:hover .location-name {
    opacity: 1;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 500;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 2px solid transparent;
    font-size: 1rem;
}

.btn-primary {
    background: #ff6b35;
    color: white;
    border-color: #ff6b35;
}

.btn-primary:hover {
    background: #e55a2b;
    border-color: #e55a2b;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.4);
}

.btn-secondary {
    background: transparent;
    color: white;
    border-color: white;
}

.btn-secondary:hover {
    background: white;
    color: #2c5f2d;
}

.btn-outline {
    background: transparent;
    color: #2c5f2d;
    border-color: #2c5f2d;
}

.btn-outline:hover {
    background: #2c5f2d;
    color: white;
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, #2c5f2d 0%, #97bc62 100%);
    color: white;
    padding: 120px 0 50px;
    text-align: center;
}

.page-header h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.page-header p {
    font-size: 0.95rem;
    margin-bottom: 0.8rem;
    opacity: 0.9;
    line-height: 1.6;
}

/* About Page Specific - Smaller Text */
body:has(.photo-grid-section) .page-header {
    padding: 120px 0 30px;
}

body:has(.photo-grid-section) .page-header h1 {
    font-size: 2rem;
    margin-bottom: 0.8rem;
}

body:has(.photo-grid-section) .page-header p {
    font-size: 0.85rem;
    margin-bottom: 0.5rem;
    line-height: 1.5;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.header-description {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1rem;
    opacity: 0.8;
    line-height: 1.8;
}

/* Sections */
section {
    padding: 80px 0;
}

section h2 {
    font-size: 2.5rem;
    color: #2c5f2d;
    margin-bottom: 1rem;
    text-align: center;
    font-weight: 600;
}

section h3 {
    font-size: 1.8rem;
    color: #97bc62;
    margin-bottom: 2rem;
    text-align: center;
    font-weight: 500;
}

/* Journey Section */
.journey-section {
    background: #f8f9fa;
}

.journey-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.journey-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.journey-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

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

.journey-content {
    padding: 1.5rem;
    text-align: center;
}

.journey-content h4 {
    font-size: 1.1rem;
    color: #ff6b35;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.journey-content h5 {
    font-size: 1.3rem;
    color: #2c5f2d;
    margin-bottom: 1rem;
    font-weight: 500;
}

.journey-link {
    color: #97bc62;
    font-weight: 500;
    transition: color 0.3s ease;
}

.journey-link:hover {
    color: #2c5f2d;
}

/* Island Section */
.island-section {
    text-align: center;
}

.experiences-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin: 3rem 0;
}

.experience-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.experience-card:hover {
    transform: translateY(-5px);
}

.experience-card img {
    width: 100%;
    height: 150px;
    object-fit: cover;
}

.experience-card h4 {
    padding: 1rem;
    font-size: 1rem;
    color: #2c5f2d;
    font-weight: 500;
}

/* Destinations Section */
.destinations-section {
    background: #f8f9fa;
}

.destinations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.destination-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.destination-card:hover {
    transform: translateY(-5px);
}

.destination-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.destination-card h4 {
    padding: 1rem 1rem 0.5rem;
    font-size: 1.3rem;
    color: #2c5f2d;
    font-weight: 600;
}

.destination-card p {
    padding: 0 1rem 1rem;
    color: #666;
    font-size: 0.9rem;
}

/* Tours Section */
.tours-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.tour-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.tour-card:hover {
    transform: translateY(-5px);
}

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

.tour-info {
    padding: 1.5rem;
}

.tour-duration {
    background: #ff6b35;
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

.tour-info h4 {
    font-size: 1.4rem;
    color: #2c5f2d;
    margin: 1rem 0 0.5rem;
    font-weight: 600;
}

.tour-type {
    font-size: 1rem;
    color: #97bc62;
    font-weight: 500;
    margin-bottom: 1rem;
}

.tour-info p {
    color: #666;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.tour-link {
    color: #ff6b35;
    font-weight: 500;
    transition: color 0.3s ease;
}

.tour-link:hover {
    color: #e55a2b;
}

/* Testimonials */
.testimonials-section {
    background: #f8f9fa;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.testimonial-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    position: relative;
}

.testimonial-card::before {
    content: '"';
    font-size: 4rem;
    color: #97bc62;
    position: absolute;
    top: -10px;
    left: 20px;
    font-weight: bold;
    opacity: 0.3;
}

.testimonial-card p {
    color: #666;
    font-style: italic;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.testimonial-author strong {
    color: #2c5f2d;
    font-weight: 600;
}

.testimonial-author span {
    color: #97bc62;
    font-size: 0.9rem;
}

/* Destinations Page Styles */
.destinations-content {
    padding: 0;
}

.destination-item {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.destination-item:hover {
    transform: translateY(-5px);
}

.destination-item:nth-child(even) {
    flex-direction: row-reverse;
}

.destination-item img {
    width: 400px;
    height: 300px;
    object-fit: cover;
    flex-shrink: 0;
}

.destination-info {
    padding: 2rem;
    flex: 1;
    display: flex !important;
    flex-direction: column;
    justify-content: center;
    background-color: #f9f9f9 !important;
    border: 1px solid #ddd !important;
}

.destination-info h3 {
    font-size: 1.8rem;
    color: #2c5f2d;
    margin-bottom: 1rem;
    font-weight: 600;
    text-align: left;
}

.destination-info p {
    color: #000 !important;
    margin-bottom: 1.5rem;
    line-height: 1.8;
    font-weight: 500 !important;
    opacity: 1 !important;
    display: block !important;
    visibility: visible !important;
    font-size: 1rem !important;
    background-color: rgba(255, 255, 255, 0.9) !important;
}

.destination-features {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.feature-tag {
    background: #f0f8f0;
    color: #2c5f2d;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

/* Packages Page Styles */
.package-categories {
    background: #f8f9fa;
    padding: 60px 0;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.category-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
}

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

.category-card i {
    font-size: 2.5rem;
    color: #97bc62;
    margin-bottom: 1rem;
}

.category-card h3 {
    font-size: 1.2rem;
    color: #2c5f2d;
    margin-bottom: 0.5rem;
    text-align: center;
}

.category-card p {
    color: #666;
    font-size: 0.9rem;
}

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

.package-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.package-card:hover {
    transform: translateY(-5px);
}

.package-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.package-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.package-duration {
    position: absolute;
    top: 15px;
    left: 15px;
    background: rgba(44, 95, 45, 0.9);
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
}

.package-price {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(255, 107, 53, 0.9);
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.package-content {
    padding: 2rem;
}

.package-content h3 {
    font-size: 1.5rem;
    color: #2c5f2d;
    margin-bottom: 0.5rem;
    text-align: left;
    font-weight: 600;
}

.package-subtitle {
    color: #97bc62;
    font-weight: 500;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.package-content > p {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.package-highlights h4 {
    font-size: 1.1rem;
    color: #2c5f2d;
    margin-bottom: 1rem;
    font-weight: 600;
}

.package-highlights ul {
    list-style: none;
    margin-bottom: 1.5rem;
}

.package-highlights li {
    color: #666;
    margin-bottom: 0.5rem;
    position: relative;
    padding-left: 20px;
    font-size: 0.9rem;
}

.package-highlights li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #97bc62;
    font-weight: bold;
}

.package-details {
    margin-bottom: 1.5rem;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    color: #666;
}

.detail-item i {
    color: #97bc62;
    width: 16px;
}

.package-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.package-actions .btn {
    flex: 1;
    min-width: 150px;
    text-align: center;
}

/* Services Section */
.services-section,
.services-overview {
    background: #f8f9fa;
}

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

.service-item,
.service-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;
}

.service-item:hover,
.service-card:hover {
    transform: translateY(-5px);
}

.service-item i {
    font-size: 2.5rem;
    color: #97bc62;
    margin-bottom: 1rem;
}

.service-item h3,
.service-card h3 {
    font-size: 1.3rem;
    color: #2c5f2d;
    margin-bottom: 1rem;
    text-align: center;
    font-weight: 600;
}

.service-item p,
.service-card p {
    color: #666;
    line-height: 1.6;
}

.service-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 1rem;
}

.service-card ul {
    list-style: none;
    text-align: left;
    margin-top: 1rem;
}

.service-card li {
    color: #666;
    margin-bottom: 0.5rem;
    position: relative;
    padding-left: 20px;
    font-size: 0.9rem;
}

.service-card li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #97bc62;
    font-weight: bold;
}

/* Contact Page Styles */
.contact-section {
    padding: 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    margin: 3rem 0;
}

.contact-form-container,
.contact-info-container {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.contact-form-container h2,
.contact-info-container h2 {
    font-size: 1.8rem;
    color: #2c5f2d;
    margin-bottom: 1rem;
    text-align: left;
}

.contact-form-container p {
    color: #666;
    margin-bottom: 2rem;
}

.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;
    color: #2c5f2d;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #97bc62;
}

.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;
    color: #666;
    font-weight: normal;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin: 0;
}

.contact-info-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    align-items: flex-start;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: #f0f8f0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon i {
    font-size: 1.5rem;
    color: #2c5f2d;
}

.contact-details h3 {
    font-size: 1.2rem;
    color: #2c5f2d;
    margin-bottom: 0.5rem;
    text-align: left;
}

.contact-details p {
    font-size: 1.1rem;
    color: #333;
    margin-bottom: 0.25rem;
    font-weight: 500;
}

.contact-details span {
    font-size: 0.9rem;
    color: #666;
}

.business-hours,
.emergency-contact {
    background: #f0f8f0;
    padding: 1.5rem;
    border-radius: 10px;
    margin-top: 2rem;
}

.business-hours h3,
.emergency-contact h3 {
    font-size: 1.2rem;
    color: #2c5f2d;
    margin-bottom: 1rem;
    text-align: left;
}

.hours-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.hours-item {
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
    color: #666;
}

.emergency-number {
    font-size: 1.2rem;
    color: #ff6b35;
    font-weight: 600;
    margin-top: 0.5rem;
}

/* Why Choose Section */
.why-choose-section,
.features-grid {
    background: #f8f9fa;
}

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

.feature-item {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
}

.feature-item i {
    font-size: 2rem;
    color: #97bc62;
    margin-bottom: 1rem;
}

.feature-item h3 {
    font-size: 1.2rem;
    color: #2c5f2d;
    margin-bottom: 1rem;
    text-align: center;
}

.feature-item p {
    color: #666;
    font-size: 0.9rem;
}

/* FAQ Section */
.faq-section {
    padding: 60px 0;
}

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

.faq-item {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.faq-item h3 {
    font-size: 1.2rem;
    color: #2c5f2d;
    margin-bottom: 1rem;
    text-align: left;
}

.faq-item p {
    color: #666;
    line-height: 1.6;
}

/* About Page Styles */
.about-intro {
    padding: 80px 0;
}

.about-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: center;
}

.about-text h2 {
    font-size: 2.2rem;
    color: #2c5f2d;
    margin-bottom: 1.5rem;
    text-align: left;
}

.about-text p {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.about-highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.highlight-item {
    text-align: center;
    padding: 1.5rem;
    background: #f0f8f0;
    border-radius: 10px;
}

.highlight-item i {
    font-size: 2rem;
    color: #97bc62;
    margin-bottom: 1rem;
}

.highlight-item h3 {
    font-size: 1.1rem;
    color: #2c5f2d;
    margin-bottom: 0.5rem;
    text-align: center;
}

.highlight-item p {
    color: #666;
    font-size: 0.9rem;
    margin: 0;
}

.about-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Photo Grid Section */
.photo-grid-section {
    padding: 60px 0;
    background: white;
}

.photo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.photo-card {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.photo-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
}

.photo-card img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

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

.values-section {
    background: #f8f9fa;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.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(-5px);
}

.value-card i {
    font-size: 2.5rem;
    color: #97bc62;
    margin-bottom: 1rem;
}

.value-card h3 {
    font-size: 1.3rem;
    color: #2c5f2d;
    margin-bottom: 1rem;
    text-align: center;
}

.value-card p {
    color: #666;
    line-height: 1.6;
}

.differentiators-section {
    padding: 80px 0;
}

.differentiators-content {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    margin-top: 3rem;
}

.diff-item {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
}

.diff-item:nth-child(even) {
    flex-direction: row-reverse;
}

.diff-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #2c5f2d, #97bc62);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.diff-icon i {
    font-size: 2rem;
    color: white;
}

.diff-content h3 {
    font-size: 1.5rem;
    color: #2c5f2d;
    margin-bottom: 1rem;
    text-align: left;
}

.diff-content p {
    color: #666;
    line-height: 1.8;
}

.team-section {
    background: #f8f9fa;
}

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

.team-member {
    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;
}

.team-member:hover {
    transform: translateY(-5px);
}

.team-member img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 1rem;
}

.team-member h3 {
    font-size: 1.3rem;
    color: #2c5f2d;
    margin-bottom: 0.5rem;
    text-align: center;
}

.team-role {
    color: #97bc62;
    font-weight: 500;
    margin-bottom: 1rem;
}

.team-member p {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.6;
}

.awards-section {
    padding: 60px 0;
}

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

.award-item {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.award-item:hover {
    transform: translateY(-5px);
}

.award-item i {
    font-size: 2.5rem;
    color: #ff6b35;
    margin-bottom: 1rem;
}

.award-item h3 {
    font-size: 1.2rem;
    color: #2c5f2d;
    margin-bottom: 0.5rem;
    text-align: center;
}

.award-item p {
    color: #97bc62;
    font-weight: 500;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #2c5f2d 0%, #97bc62 100%);
    color: white;
    text-align: center;
}

.cta-section h2 {
    color: white;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-features {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.cta-feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: white;
}

.cta-feature i {
    color: #ff6b35;
    font-size: 1.2rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Footer */
.footer {
    background: #1a1a1a;
    color: white;
    padding: 60px 0 20px;
}

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

.footer-section h3 {
    color: #97bc62;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    text-align: left;
}

.footer-section h4 {
    color: #97bc62;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.footer-section p {
    color: #ccc;
    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;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #97bc62;
}

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

.social-links a {
    width: 40px;
    height: 40px;
    background: #333;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
}

.social-links a:hover {
    background: #97bc62;
}

.social-links i {
    color: white;
    font-size: 1.2rem;
}

.contact-info p {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    color: #ccc;
}

.contact-info i {
    color: #97bc62;
    width: 20px;
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 20px;
    text-align: center;
    color: #999;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        margin: 1rem 0;
    }

    .hero {
        flex-direction: column;
        padding: 100px 0 50px;
        text-align: center;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero-map {
        height: 60vh;
        margin-top: 2rem;
    }

    .page-header h1 {
        font-size: 2.2rem;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .about-content {
        grid-template-columns: 1fr;
    }

    .diff-item,
    .diff-item:nth-child(even) {
        flex-direction: column;
        text-align: center;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .destination-item,
    .destination-item:nth-child(even) {
        flex-direction: column;
    }

    .destination-item img {
        width: 100%;
        height: 250px;
    }

    .packages-grid {
        grid-template-columns: 1fr;
    }

    .package-actions {
        flex-direction: column;
    }

    .cta-features {
        flex-direction: column;
        gap: 1rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    section {
        padding: 60px 0;
    }

    section h2 {
        font-size: 2rem;
    }

    .journey-grid,
    .destinations-grid,
    .tours-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .page-header h1 {
        font-size: 1.8rem;
    }

    .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .nav-logo h2 {
        font-size: 1.5rem;
    }

    .package-actions .btn {
        min-width: 120px;
    }
}

/* Animation Classes */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.slide-in-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.6s ease;
}

.slide-in-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.slide-in-right {
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.6s ease;
}

.slide-in-right.visible {
    opacity: 1;
    transform: translateX(0);
}

/* Loading Spinner */
.loading {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100px;
}

.spinner {
    width: 40px;
    height: 40px;
    border: 4px solid #f3f3f3;
    border-top: 4px solid #97bc62;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

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

/* Success/Error Messages */
.message {
    padding: 1rem;
    border-radius: 8px;
    margin: 1rem 0;
    font-weight: 500;
}

.message.success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.message.error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* Accessibility */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Focus States */
.btn:focus,
input:focus,
select:focus,
textarea:focus,
.nav-link:focus {
    outline: 2px solid #97bc62;
    outline-offset: 2px;
}

/* Last Minute Tour Custom Styling */
.last-minute-tour {
    position: relative;
    overflow: hidden;
}

.last-minute-tour img {
    opacity: 1 !important;
    transition: transform 0.3s ease;
}

.last-minute-tour:hover img {
    transform: scale(1.05);
}

/* Add a subtle gradient overlay for better text readability if needed */
.last-minute-tour::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, transparent 0%, rgba(30, 60, 114, 0.1) 100%);
    pointer-events: none;
    z-index: 1;
}

.last-minute-tour .tour-info {
    position: relative;
    z-index: 2;
}

/* Print Styles */
@media print {
    .navbar,
    .footer,
    .cta-section {
        display: none;
    }
    
    body {
        font-size: 12pt;
        line-height: 1.4;
    }
    
    .container {
        max-width: none;
        margin: 0;
        padding: 0;
    }
}

/* EMERGENCY FIX FOR DESTINATION TEXT VISIBILITY */
.destinations-content .destination-item {
    display: block !important;
    flex-direction: column !important;
    min-height: auto !important;
    overflow: visible !important;
}

.destinations-content .destination-item .destination-info {
    width: 100% !important;
    min-height: 200px !important;
    padding: 20px !important;
    display: block !important;
}

.destinations-content .destination-item .destination-info p {
    color: #000 !important;
    background-color: #f9f9f9 !important;
    font-size: 16px !important;
    font-weight: 400 !important;
    opacity: 1 !important;
    display: block !important;
    visibility: visible !important;
    text-shadow: none !important;
    padding: 15px !important;
    border: 1px solid #ddd !important;
    border-radius: 5px !important;
    margin: 10px 0 !important;
    line-height: 1.6 !important;
    z-index: 999 !important;
    position: relative !important;
    width: auto !important;
    max-width: none !important;
}

/* Destination Images Styling */
.destinations-content .destination-item img {
    width: 300px !important;
    height: 200px !important;
    object-fit: cover !important;
    border-radius: 15px !important;
    margin-bottom: 20px !important;
    display: block !important;
    box-shadow: 0 8px 20px rgba(0,0,0,0.15) !important;
    transition: transform 0.3s ease !important;
}

.destinations-content .destination-item:hover img {
    transform: translateY(-3px) !important;
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 30px;
    right: 30px;
    background-color: #25D366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    text-decoration: none;
}

.whatsapp-float:hover {
    background-color: #128C7E;
    transform: scale(1.1);
    box-shadow: 2px 2px 15px rgba(0, 0, 0, 0.4);
}

.whatsapp-float i {
    margin-top: 0;
    line-height: 60px;
}

/* Responsive WhatsApp Button */
@media (max-width: 768px) {
    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
        font-size: 25px;
    }
    
    .whatsapp-float i {
        line-height: 50px;
    }
}
