/* Clean, Simple Homepage Styles */

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    color: #333;
    line-height: 1.6;
}

/* Hero Section */
.hero-slider {
    position: relative;
    width: 100%;
    height: 600px;
    overflow: hidden;
    margin: 0;
    padding: 0;
}

.hero-slider-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

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

.hero-slide::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 2;
    color: white;
    max-width: 800px;
    padding: 0 20px;
    width: 100%;
}

.hero-content h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
    line-height: 1.2;
    letter-spacing: -0.5px;
}

.hero-content p {
    font-size: 1.25rem;
    margin-bottom: 30px;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
    font-weight: 400;
}

.hero-cta {
    display: inline-block;
    padding: 15px 40px;
    background: #fff;
    color: #333;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.hero-cta:hover {
    background: #f0f0f0;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

/* Slider Navigation Dots */
.hero-slider-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    gap: 10px;
}

.hero-slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    border: 2px solid rgba(255, 255, 255, 0.8);
    cursor: pointer;
    transition: all 0.3s ease;
}

.hero-slider-dot.active {
    background: #fff;
    border-color: #fff;
    transform: scale(1.2);
}

/* Section Headings */
.section-heading {
    text-align: center;
    margin-bottom: 25px;
}

.section-heading h2 {
    font-size: 1.8rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
    position: relative;
    display: inline-block;
}

.section-heading h2::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 2px;
    background: #333;
    border-radius: 1px;
}

.section-heading p {
    font-size: 0.95rem;
    color: #666;
    margin-top: 10px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.5;
}

/* Fancy Heading Section */
.fancy-heading-section {
    padding: 35px 15px;
    background: #f8f9fa;
    text-align: center;
}

.fancy-heading-content h2 {
    font-size: 1.8rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 0;
}

.fancy-heading-content .highlight {
    color: #333;
    font-weight: 600;
}

/* Statistics Section - Compact & Clean */
.stats-section {
    padding: 35px 15px;
    background: white;
    border-bottom: 1px solid #e8e8e8;
}

.stats-compact {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    max-width: 900px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.stat-compact-item {
    text-align: center;
    padding: 0;
}

.stat-compact-number {
    font-size: 2.2rem;
    font-weight: 700;
    color: #667eea;
    margin-bottom: 6px;
    line-height: 1;
}

.stat-compact-label {
    font-size: 0.875rem;
    color: #666;
    font-weight: 500;
    line-height: 1.3;
}

.stat-divider {
    width: 1px;
    height: 50px;
    background: #e0e0e0;
}

/* Why Choose Us Section - Compact & Modern */
.why-choose-section {
    padding: 30px 15px;
    background: #f8f9fa;
    border-top: 1px solid #e8e8e8;
    border-bottom: 1px solid #e8e8e8;
}

.why-choose-title {
    text-align: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: #333;
    margin: 0 0 25px 0;
}

.why-features {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.why-feature {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    min-width: 120px;
}

.why-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.why-feature:hover .why-icon {
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.2);
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.why-feature:hover .why-icon svg {
    stroke: white;
}

.why-icon svg {
    stroke: #667eea;
    transition: stroke 0.3s ease;
}

.why-feature span {
    font-size: 0.9rem;
    font-weight: 600;
    color: #333;
    text-align: center;
}

/* Compact Contact Form Section */
.contact-form-section {
    padding: 35px 15px;
    background: white;
}

.contact-form-container {
    max-width: 900px;
    margin: 0 auto;
}

.contact-compact-wrapper {
    background: #f8f9fa;
    border-radius: 10px;
    padding: 25px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.contact-compact-header {
    text-align: center;
    margin-bottom: 20px;
}

.contact-compact-header h2 {
    font-size: 1.6rem;
    font-weight: 700;
    color: #333;
    margin: 0 0 6px 0;
}

.contact-compact-header p {
    font-size: 0.9rem;
    color: #666;
    margin: 0;
}

.contact-compact-content {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 25px;
    align-items: start;
}

.contact-quick-info {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.quick-contact-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    background: white;
    border-radius: 6px;
    font-size: 0.875rem;
    color: #333;
    text-decoration: none;
    transition: all 0.2s ease;
    white-space: nowrap;
    border: 1px solid #e0e0e0;
}

.quick-contact-item:hover {
    transform: translateX(3px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.quick-contact-item.whatsapp {
    background: #25D366;
    color: white;
    border-color: #25D366;
}

.quick-contact-item.location {
    cursor: default;
}

.quick-contact-item.location:hover {
    transform: none;
}

.quick-contact-item svg {
    flex-shrink: 0;
}

.contact-compact-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.contact-compact-form input,
.contact-compact-form select,
.contact-compact-form textarea {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 0.875rem;
    font-family: inherit;
    transition: all 0.2s ease;
}

.contact-compact-form input:focus,
.contact-compact-form select:focus,
.contact-compact-form textarea:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.contact-compact-form textarea {
    min-height: 70px;
    resize: vertical;
    grid-column: 1 / -1;
}

.compact-submit-btn {
    padding: 12px 20px;
    background: #25D366;
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.2s ease;
}

.compact-submit-btn:hover {
    background: #128C7E;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
}

.compact-submit-btn svg {
    flex-shrink: 0;
}

/* Trip Types Section */
.trip-types-section {
    padding: 40px 15px;
    background: white;
}

.trip-types-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 15px;
    max-width: 1200px;
    margin: 0 auto;
}

.trip-type-card {
    background: white;
    border: 1px solid #e0e0e0;
    overflow: hidden;
    transition: border-color 0.2s ease;
    cursor: pointer;
}

.trip-type-card:hover {
    border-color: #333;
}

.trip-type-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.trip-type-content {
    padding: 15px;
    text-align: center;
}

.trip-type-title {
    font-size: 1.3rem;
    font-weight: 500;
    color: #333;
    margin: 0;
}


.content-wrapper {
    max-width: 1200px;
    margin: 0 auto;
}

.content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    align-items: center;
}

.content-text h2 {
    font-size: 1.6rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
    line-height: 1.3;
}

.content-text h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #333;
    margin-top: 20px;
    margin-bottom: 12px;
}

.content-text p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #555;
    margin-bottom: 12px;
}

.content-features {
    list-style: none;
    margin: 15px 0;
}

.content-features li {
    font-size: 0.9rem;
    line-height: 1.7;
    color: #555;
    padding-left: 20px;
    position: relative;
    margin-bottom: 6px;
}

.content-features li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #333;
    font-weight: bold;
    font-size: 1.2rem;
}

.content-image {
    overflow: hidden;
}

.content-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Tour Packages Section */
.tour-packages-section {
    padding: 40px 15px;
    background: #f8f9fa;
}

.tour-packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    max-width: 1400px;
    margin: 25px auto 0;
}

@media (min-width: 1200px) {
    .tour-packages-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 18px;
    }
}

.tour-package-card {
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
}

.tour-package-card:hover {
    border-color: #667eea;
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(102, 126, 234, 0.15);
}

.tour-package-image {
    width: 100%;
    height: 200px;
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

@media (min-width: 1200px) {
    .tour-package-image {
        height: 180px;
    }
}

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

.tour-package-content {
    padding: 18px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

@media (min-width: 1200px) {
    .tour-package-content {
        padding: 16px;
    }
}

.tour-package-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
    margin: 0 0 8px 0;
    line-height: 1.3;
}

@media (min-width: 1200px) {
    .tour-package-title {
        font-size: 1rem;
        margin-bottom: 6px;
    }
}

.tour-package-meta {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: auto;
    padding-top: 10px;
    border-top: 1px solid #f0f0f0;
    font-size: 0.85rem;
    color: #666;
}

@media (min-width: 1200px) {
    .tour-package-meta {
        font-size: 0.8rem;
        padding-top: 8px;
        gap: 8px;
    }
}

.tour-package-meta .price {
    color: #667eea;
    font-weight: 600;
    margin-left: auto;
}

/* Things to Do Section */
.things-to-do-section {
    padding: 40px 15px;
    background: white;
}

.things-intro {
    max-width: 800px;
    margin: 0 auto 25px auto;
    text-align: center;
    color: #555;
    font-size: 0.95rem;
    line-height: 1.6;
}

.things-tags {
    margin-top: 15px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

.things-tags span {
    display: inline-block;
    padding: 6px 14px;
    border-radius: 999px;
    background: #f0f2ff;
    color: #4f5ed6;
    font-size: 0.8rem;
    font-weight: 600;
}

.things-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 18px;
    max-width: 1100px;
    margin: 30px auto 0;
}

.thing-card {
    background: #f8f9fa;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.thing-card:hover {
    border-color: #4f5ed6;
    box-shadow: 0 10px 28px rgba(79, 94, 214, 0.12);
}

.thing-card-image {
    position: relative;
    height: 180px;
    overflow: hidden;
}

.thing-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.thing-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    background: rgba(79, 94, 214, 0.95);
    color: white;
    font-size: 0.75rem;
    letter-spacing: 0.05em;
    padding: 5px 10px;
    border-radius: 999px;
    text-transform: uppercase;
    font-weight: 600;
}

.thing-card-body {
    padding: 18px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.thing-card-body h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
    margin: 0;
}
.thing-card-body ul {
    margin: 0;
    padding-left: 18px;
    font-size: 0.9rem;
    color: #555;
    line-height: 1.6;
}

.thing-card-body ul li {
    margin-bottom: 6px;
}

.thing-card-body ul li:last-child {
    margin-bottom: 0;
}

.thing-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    font-size: 0.8rem;
    color: #667eea;
    font-weight: 600;
}

/* About Compact Section */
.about-compact-section {
    padding: 40px 15px;
    background: white;
}

.about-compact-grid {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 30px;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
}

.about-compact-image {
    border: 1px solid #e0e0e0;
    overflow: hidden;
}

.about-compact-image img {
    width: 100%;
    height: auto;
    display: block;
}

.about-compact-content h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #333;
    margin: 0 0 15px 0;
}

.about-compact-content p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #666;
    margin: 0 0 20px 0;
}

.about-highlights {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.highlight-item {
    font-size: 0.875rem;
    color: #333;
    font-weight: 500;
}

/* Popular Destinations Section */
.destinations-section {
    padding: 40px 15px;
    background: #f8f9fa;
}

.destinations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 15px;
    max-width: 1200px;
    margin: 25px auto 0;
}

.destination-card {
    background: white;
    border: 1px solid #e0e0e0;
    overflow: hidden;
    transition: border-color 0.2s ease;
}

.destination-card:hover {
    border-color: #333;
}

.destination-image {
    height: 180px;
    background-size: cover;
    background-position: center;
}

.destination-info {
    padding: 15px;
}

.destination-info h3 {
    font-size: 1rem;
    font-weight: 600;
    color: #333;
    margin: 0 0 6px 0;
}

.destination-info p {
    font-size: 0.875rem;
    color: #666;
    margin: 0;
}

/* Gallery Section */
.gallery-section {
    padding: 40px 15px;
    background: white;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 12px;
    max-width: 1200px;
    margin: 25px auto 0;
}

.gallery-item {
    overflow: hidden;
    position: relative;
    cursor: pointer;
    border: 1px solid #e0e0e0;
    transition: border-color 0.2s ease;
    aspect-ratio: 4/3;
}

.gallery-item:hover {
    border-color: #333;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Map Section */
.map-section {
    padding: 40px 15px;
    background: white;
}

.map-container {
    max-width: 1000px;
    margin: 0 auto;
    border: 1px solid #e0e0e0;
    overflow: hidden;
}

.map-container iframe {
    width: 100%;
    height: 400px;
    border: none;
    display: block;
}

/* Floating Contact Form */
.floating-form {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(100px);
    transition: all 0.4s ease;
}

.floating-form.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.floating-form-toggle {
    background: #25D366;
    color: white;
    border: none;
    border-radius: 50px;
    padding: 15px 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    z-index: 10000;
}

.floating-form-toggle:hover {
    background: #1ebe5d;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
    transform: translateY(-2px);
}

.floating-form-toggle svg {
    width: 24px;
    height: 24px;
}

.floating-form-content {
    position: absolute;
    bottom: 70px;
    right: 0;
    width: 350px;
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    padding: 25px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px) scale(0.95);
    transition: all 0.3s ease;
    max-height: 80vh;
    overflow-y: auto;
}

.floating-form.active .floating-form-content {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.floating-form-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #e0e0e0;
}

.floating-form-header h4 {
    font-size: 1.4rem;
    font-weight: 600;
    color: #333;
    margin: 0;
}

.floating-form-close {
    background: none;
    border: none;
    font-size: 2rem;
    color: #999;
    cursor: pointer;
    line-height: 1;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.2s ease;
}

.floating-form-close:hover {
    color: #333;
}

.floating-form-group {
    margin-bottom: 15px;
}

.floating-form-group input,
.floating-form-group textarea,
.floating-form-group select {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 0.9rem;
    transition: border-color 0.2s ease;
    font-family: inherit;
}

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

.floating-form-group select {
    cursor: pointer;
    background: white;
}

.floating-form-group textarea {
    min-height: 80px;
    resize: vertical;
}

.floating-form-submit {
    width: 100%;
    padding: 12px;
    background: #25D366;
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 5px;
}

.floating-form-submit:hover {
    background: #1ebe5d;
}

.floating-form-submit svg {
    width: 18px;
    height: 18px;
}

/* Testimonials Section */
.testimonials-section {
    padding: 50px 15px;
    background: white;
}

.testimonial-summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    max-width: 900px;
    margin: 0 auto 25px auto;
    padding: 18px 22px;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    background: #f8f9fa;
}

.testimonial-score {
    display: flex;
    align-items: center;
    gap: 16px;
}

.score-number {
    font-size: 2.4rem;
    font-weight: 700;
    color: #667eea;
    line-height: 1;
}

.score-stars {
    font-size: 1.1rem;
    color: #FFA500;
    letter-spacing: 2px;
    line-height: 1;
}

.testimonial-score p {
    margin: 0;
    font-size: 0.875rem;
    color: #666;
}

.testimonial-action {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 0.9rem;
    color: #333;
}

.testimonial-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 18px;
    border-radius: 999px;
    background: #667eea;
    color: white;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.3s ease;
}

.testimonial-cta:hover {
    background: #4f5ed6;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.testimonial-card {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 10px;
    border-left: 4px solid #667eea;
    transition: all 0.3s ease;
    position: relative;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.testimonial-quote {
    font-size: 3rem;
    color: rgba(102, 126, 234, 0.25);
    line-height: 1;
    margin-bottom: 10px;
    font-family: 'Georgia', 'Times New Roman', serif;
}

.testimonial-rating {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: #FFA500;
}

.testimonial-text {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.testimonial-author strong {
    color: #333;
    font-size: 1rem;
    font-weight: 600;
}

.testimonial-author span {
    color: #666;
    font-size: 0.875rem;
}

/* CTA Section */

.cta-section {
    position: relative;
    padding: 80px 15px;
    color: white;
    text-align: center;
    background-image: url('../uploads/bhutan-laenderinformationen-ausblick-tigers-nest-landschaft-natucate.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(10, 23, 42, 0.78) 0%, rgba(14, 54, 81, 0.72) 100%);
    backdrop-filter: blur(1px);
    z-index: 0;
}

.cta-content {
    position: relative;
    z-index: 1;
    max-width: 720px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 2.3rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #fdfdfd;
    text-shadow: 0 4px 18px rgba(0, 0, 0, 0.35);
}

.cta-content p {
    font-size: 1rem;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.9);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 35px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.cta-button.primary {
    background: white;
    color: #667eea;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.cta-button.primary:hover {
    background: #f0f0f0;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.cta-button.secondary {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: 2px solid white;
}

.cta-button.secondary:hover {
    background: white;
    color: #667eea;
    transform: translateY(-3px);
}

/* Bhutan Group Trip Popup */
.bhutan-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.bhutan-popup.show {
    display: flex;
}

.bhutan-popup-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(3px);
}

.bhutan-popup-content {
    position: relative;
    background: #ffffff;
    border-radius: 8px;
    padding: 0;
    max-width: 340px;
    width: 100%;
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.15);
    overflow: hidden;
    animation: bhutanPopupSlideIn 0.3s ease-out;
    max-height: 90vh;
    overflow-y: auto;
    background-size: cover;
    background-position: center;
}

.bhutan-popup-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.92);
    z-index: 0;
}

.bhutan-popup-content > * {
    position: relative;
    z-index: 1;
}

@keyframes bhutanPopupSlideIn {
    from {
        opacity: 0;
        transform: scale(0.95) translateY(20px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.bhutan-popup-close {
    position: absolute;
    top: 8px;
    right: 8px;
    background: rgba(0, 0, 0, 0.05);
    border: none;
    color: #666;
    width: 24px;
    height: 24px;
    border-radius: 4px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: all 0.2s ease;
    padding: 0;
}

.bhutan-popup-close:hover {
    background: rgba(0, 0, 0, 0.1);
    color: #333;
}

.bhutan-popup-close svg {
    width: 14px;
    height: 14px;
}

.bhutan-popup-header {
    padding: 12px 16px 10px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.bhutan-popup-info-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 8px;
}

.bhutan-deal-info {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 6px;
    font-size: 0.7rem;
    font-weight: 600;
    color: #333;
}

.bhutan-departure,
.bhutan-pax,
.bhutan-date {
    color: #333;
}

.bhutan-sep {
    color: #999;
    margin: 0 2px;
}

.bhutan-popup-main {
    padding: 16px;
}

.bhutan-title-section {
    text-align: center;
    margin-bottom: 16px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.bhutan-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 10px 0;
    letter-spacing: 1px;
    line-height: 1;
}

.bhutan-price-badge {
    display: inline-block;
    background: #25D366;
    color: #ffffff;
    padding: 6px 14px;
    border-radius: 6px;
    font-size: 0.875rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.bhutan-type-badge {
    display: inline-block;
    background: #FFD700;
    color: #333;
    padding: 5px 12px;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 700;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.bhutan-duration {
    font-size: 0.8125rem;
    font-weight: 600;
    color: #333;
    margin-top: 6px;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.bhutan-inclusions-section {
    margin-bottom: 16px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.bhutan-inclusions-label {
    background: #FFD700;
    color: #333;
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 700;
    display: inline-block;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.bhutan-inclusions-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.bhutan-inclusions-list li {
    font-size: 0.75rem;
    color: #555;
    padding: 6px 0;
    line-height: 1.4;
    padding-left: 12px;
    position: relative;
}

.bhutan-inclusions-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #25D366;
    font-weight: bold;
}

.bhutan-enquiry-section {
    text-align: center;
    margin-bottom: 12px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.bhutan-enquiry-label {
    font-size: 0.75rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.bhutan-contact-buttons {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.bhutan-whatsapp-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: #25D366;
    color: #ffffff;
    padding: 10px 16px;
    border-radius: 6px;
    font-size: 0.875rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease;
    box-shadow: 0 2px 6px rgba(37, 211, 102, 0.3);
}

.bhutan-whatsapp-btn:hover {
    background: #128C7E;
    box-shadow: 0 4px 10px rgba(37, 211, 102, 0.4);
    transform: translateY(-1px);
}

.bhutan-whatsapp-btn svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.bhutan-phone {
    display: inline-block;
    background: #FFD700;
    color: #333;
    padding: 8px 14px;
    border-radius: 6px;
    font-size: 0.875rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.2s ease;
}

.bhutan-phone:hover {
    background: #f0c700;
    transform: translateY(-1px);
}

.bhutan-footer {
    text-align: center;
    padding-top: 8px;
}

.bhutan-website {
    font-size: 0.75rem;
    color: #666;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
}

.bhutan-website:hover {
    color: #25D366;
}

/* Responsive Design */
@media (max-width: 992px) {
    .content-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .trip-types-grid,
    .tour-packages-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 12px;
    }
}

@media (max-width: 768px) {
    .hero-slider {
        height: 450px;
    }
    
    .section-heading {
        margin-bottom: 20px;
    }
    
    .section-heading h2 {
        font-size: 1.5rem;
    }
    
    .fancy-heading-section {
        padding: 30px 15px;
    }
    
    .fancy-heading-content h2 {
        font-size: 1.5rem;
    }
    
    .contact-form-section {
        padding: 30px 15px;
    }
    
    .contact-compact-wrapper {
        padding: 20px;
    }
    
    .contact-compact-content {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .contact-quick-info {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .quick-contact-item {
        flex: 1;
        min-width: 140px;
        justify-content: center;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    
    .testimonial-summary {
        flex-direction: column;
        align-items: flex-start;
        padding: 18px 18px;
        gap: 15px;
    }

    .testimonial-action {
        width: 100%;
        justify-content: space-between;
    }

    
    .trip-types-section,
    .tour-packages-section,
    .things-to-do-section,
    .gallery-section,
    .map-section {
        padding: 30px 15px;
    }
    
    .content-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .content-text h2 {
        font-size: 1.4rem;
    }
    
    .trip-types-grid,
    .tour-packages-grid,
    .things-grid,
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }
    
    .tour-packages-grid {
        gap: 20px;
    }
    
    .tour-package-card {
        border-radius: 12px;
    }
    
    .tour-package-image {
        height: 200px;
    }
    
    .tour-package-content {
        padding: 18px;
    }
    
    .tour-package-title {
        font-size: 1.1rem;
    }
    
    .tour-package-meta {
        font-size: 0.85rem;
    }

    .cta-section {
        background-attachment: scroll;
        padding: 60px 15px;
    }
}

@media (max-width: 480px) {
    .hero-slider {
        height: 350px;
    }
    
    .hero-slider-dots {
        bottom: 15px;
        gap: 8px;
    }
    
    .hero-slider-dot {
        width: 10px;
        height: 10px;
    }
    
    .section-heading {
        margin-bottom: 18px;
    }
    
    .section-heading h2 {
        font-size: 1.3rem;
        margin-bottom: 6px;
    }
    
    .section-heading p {
        font-size: 0.85rem;
        margin-top: 8px;
    }
    
    .fancy-heading-section {
        padding: 25px 15px;
    }
    
    .fancy-heading-content h2 {
        font-size: 1.3rem;
    }
    
    .contact-form-section {
        padding: 25px 10px;
    }
    
    .contact-compact-wrapper {
        padding: 18px;
    }
    
    .contact-compact-header h2 {
        font-size: 1.4rem;
    }
    
    .quick-contact-item {
        font-size: 0.8rem;
        padding: 8px 12px;
        min-width: 120px;
    }
    
    .about-compact-content h2 {
        font-size: 1.3rem;
    }
    
    .about-compact-content p {
        font-size: 0.875rem;
    }
    
    .highlight-item {
        font-size: 0.8rem;
    }
    
    .destinations-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    
    .destination-image {
        height: 200px;
    }

    .things-grid {
        grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
        gap: 14px;
    }

    .things-intro {
        font-size: 0.85rem;
    }

    .things-tags {
        gap: 8px;
    }

    .things-tags span {
        font-size: 0.75rem;
        padding: 5px 12px;
    }

    .thing-card-image {
        height: 200px;
    }
    
    .map-container iframe {
        height: 300px;
    }
    
    .stats-section {
        padding: 25px 10px;
    }
    
    .stats-compact {
        gap: 20px;
    }
    
    .stat-compact-number {
        font-size: 1.6rem;
    }
    
    .stat-compact-label {
        font-size: 0.75rem;
    }
    
    .stat-divider {
        display: none;
    }
    
    .testimonial-summary {
        padding: 16px 15px;
        gap: 12px;
    }

    .testimonial-score {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .score-number {
        font-size: 2rem;
    }

    .testimonial-action {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
        width: 100%;
    }

    .cta-section {
        padding: 50px 10px;
    }

    .about-compact-section,
    .destinations-section,
    .testimonials-section,
    .cta-section,
    .trip-types-section,
    .tour-packages-section,
    .things-to-do-section,
    .gallery-section,
    .map-section {
        padding: 30px 10px;
    }
    
    .about-compact-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .about-compact-image {
        max-width: 400px;
        margin: 0 auto;
    }
    
    .about-compact-content h2 {
        font-size: 1.4rem;
    }
    
    .about-compact-content p {
        font-size: 0.9rem;
    }
    
    .about-highlights {
        grid-template-columns: 1fr;
    }
    
    .destinations-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 12px;
    }
    
    .destination-image {
        height: 160px;
    }
    
    .map-container iframe {
        height: 350px;
    }
    
    .why-choose-section {
        padding: 25px 10px;
    }
    
    .why-choose-title {
        font-size: 1.2rem;
        margin-bottom: 18px;
    }
    
    .why-features {
        gap: 20px;
    }
    
    .why-feature {
        min-width: 80px;
    }
    
    .why-icon {
        width: 42px;
        height: 42px;
    }
    
    .why-icon svg {
        width: 20px;
        height: 20px;
    }
    
    .why-feature span {
        font-size: 0.8rem;
    }
    
    .stats-section {
        padding: 30px 15px;
    }
    
    .stats-compact {
        gap: 30px;
    }
    
    .stat-compact-number {
        font-size: 1.8rem;
    }
    
    .stat-compact-label {
        font-size: 0.8rem;
    }
    
    .stat-divider {
        height: 45px;
    }
    
    .why-choose-section {
        padding: 30px 15px;
    }
    
    .why-choose-title {
        font-size: 1.3rem;
        margin-bottom: 20px;
    }
    
    .why-features {
        gap: 25px;
    }
    
    .why-feature {
        min-width: 100px;
    }
    
    .why-icon {
        width: 45px;
        height: 45px;
    }
    
    .why-feature span {
        font-size: 0.85rem;
    }
    
    .testimonials-section {
        padding: 40px 15px;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .cta-section {
        padding: 50px 15px;
    }
    
    .cta-content h2 {
        font-size: 1.75rem;
    }
    
    .cta-content p {
        font-size: 1rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    .cta-button {
        width: 100%;
        justify-content: center;
        padding: 14px 25px;
    }
    
    .content-text h2 {
        font-size: 1.3rem;
        margin-bottom: 12px;
    }
    
    .content-text h3 {
        font-size: 1.2rem;
        margin-top: 15px;
        margin-bottom: 10px;
    }
    
    .content-text p {
        font-size: 0.9rem;
        margin-bottom: 10px;
    }
    
    .trip-types-grid,
    .tour-packages-grid,
    .things-grid,
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }
    
    .tour-packages-grid {
        gap: 20px;
    }
    
    .tour-package-card {
        border-radius: 12px;
    }
    
    .tour-package-content {
        padding: 18px;
    }
    
    .tour-package-title {
        font-size: 1.1rem;
    }
    
    .tour-package-meta {
        font-size: 0.85rem;
        gap: 10px;
    }
    
    .trip-type-image,
    .tour-package-image {
        height: 180px;
    }
    
    .floating-form {
        bottom: 15px;
        right: 15px;
    }
    
    .floating-form-toggle {
        padding: 12px 16px;
        font-size: 0.9rem;
    }
    
    .floating-form-toggle svg {
        width: 20px;
        height: 20px;
    }
    
    .floating-form-content {
        width: calc(100vw - 30px);
        max-width: 350px;
        bottom: 60px;
        padding: 20px;
    }
    
    .floating-form-header h4 {
        font-size: 1.2rem;
    }
    
    .bhutan-popup-content {
        max-width: 90%;
        margin: 10px;
    }
    
    .bhutan-title {
        font-size: 1.5rem;
    }
    
    .bhutan-popup-main {
        padding: 14px;
    }
    
    .bhutan-contact-buttons {
        gap: 6px;
    }
    
    .bhutan-whatsapp-btn {
        padding: 9px 14px;
        font-size: 0.8125rem;
    }
    
    .bhutan-phone {
        padding: 7px 12px;
        font-size: 0.8125rem;
    }
}

