/* DM Serif Display Font Face Declarations */
@font-face {
    font-family: 'DMSerifDisplay';
    src: url('/img/fonts/DMSerifDisplay-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

/* Override main.css font for homepage */
body, html, body * {
    font-family: 'DMSerifDisplay', serif !important;
}

/* Test class to verify font loading */
.font-test {
    font-family: 'DMSerifDisplay', serif !important;
    font-size: 24px;
    font-weight: 400;
}



/* Hero Section Styles */
.hero-section {
    background: linear-gradient(180deg, #0d3542 0%, #295768 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: visible;
    padding: 100px 0 0 0;
    font-family: 'DMSerifDisplay', serif;
}

.hero-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

.hero-content {
    display: flex;
    gap: 60px;
    align-items: center;
    min-height: 80vh;
}

/* Hero Text Section */
.hero-text {
    color: white;
    z-index: 2;
    position: relative;
    flex: 1;
    max-width: 100%;
    font-size: 2.6em;
    width: 109%;
}

hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.1;
    margin: 0 0 40px 0;
    font-family: 'Inter', 'AdobeFnt24', sans-serif;
    letter-spacing: -0.02em;
    color: white;
}

.hero-buttons {
    display: flex;
    flex-direction: row;
    gap: 20px;
    margin-bottom: 30px;
    flex-wrap: nowrap;
    align-items: center;
}

.btn-hero-primary,
.btn-hero-secondary {
    font-size: 18px;
    font-weight: 600;
    padding: 16px 32px;
    border-radius: 8px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
    min-width: 160px;
    text-align: center;
}

.btn-hero-primary {
    background: #ea5a3e;
    color: white;
    box-shadow: 0 4px 15px rgba(234, 90, 62, 0.3);
    border-color: #ea5a3e;
}

.btn-hero-primary:hover {
    background: #d44a2e;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(234, 90, 62, 0.4);
    color: white;
}

.btn-hero-primary:focus {
    outline: 3px solid rgba(255, 255, 255, 0.5);
    outline-offset: 2px;
}

.btn-hero-secondary {
    background: transparent;
    color: white;
    border-color: rgba(255, 255, 255, 0.8);
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.1);
}

.btn-hero-secondary:hover {
    background: white;
    color: #0d3542;
    border-color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.2);
}

.btn-hero-secondary:focus {
    outline: 3px solid rgba(255, 255, 255, 0.5);
    outline-offset: 2px;
}

.hero-trust-text {
    ont-size: 0.7em;
    color: rgba(255, 255, 255, 0.85);
    margin: 0;
    margin-top: 150px;
    line-height: 1.5;
    font-weight: 400;
    max-width: 500px;
}

/* Hero Image Section */
.hero-image-container {
    flex: 2;
    position: relative;
    z-index: 2;
    height: 80vh;
    min-height: 600px;
    margin-bottom: -100px;
}

.hero-image {
    width: 168%;
    height: auto;
    position: relative;
    top: -37%;
    left: -8.5%;
    object-fit: cover;
    z-index: 100;
    border-radius: 20px 0 20px 0;
    transition: transform 0.3s ease;
}

.hero-image:hover {
    transform: scale(1.02);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-content {
        flex-direction: column;
        gap: 40px;
        text-align: center;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .hero-trust-text {
        margin: 0 auto;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .hero-section {
        padding: 100px 0 60px 0;
        min-height: auto;
    }
    
    .hero-container {
        padding: 0 15px;
    }
    
    .hero-content {
        gap: 30px;
    }
    
    .hero-title {
        font-size: 2.5rem;
        margin-bottom: 30px;
    }
    
    .hero-buttons {
        flex-direction: row;
        align-items: center;
        gap: 12px;
        justify-content: flex-start;
        flex-wrap: nowrap;
    }
    
    .btn-hero-primary,
    .btn-hero-secondary {
        width: auto;
        max-width: none;
        padding: 12px 20px;
        font-size: 16px;
        white-space: nowrap;
    }
    
    .hero-trust-text {
        font-size: 15px;
    }
    
    .hero-image {
        max-width: 600px;
    }
}

@media (max-width: 480px) {
    .hero-section {
        padding: 80px 0 40px 0;
    }
    
    .hero-title {
        font-size: 2rem;
        margin-bottom: 25px;
    }
    
    .btn-hero-primary,
    .btn-hero-secondary {
        padding: 12px 20px;
        font-size: 15px;
    }
    
    .hero-trust-text {
        font-size: 14px;
    }
    
    .hero-image {
        max-width: 500px;
    }
}

/* Accessibility Enhancements */
@media (prefers-reduced-motion: reduce) {
    .hero-image,
    .btn-hero-primary,
    .btn-hero-secondary {
        transition: none;
    }
    
    .hero-image:hover {
        transform: none;
    }
    
    .btn-hero-primary:hover,
    .btn-hero-secondary:hover {
        transform: none;
    }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .btn-hero-primary {
        border-color: white;
    }
    
    .btn-hero-secondary {
        border-color: white;
        border-width: 3px;
    }
    
    .hero-trust-text {
        color: white;
    }
}

/* Focus visible for better keyboard navigation */
.btn-hero-primary:focus-visible,
.btn-hero-secondary:focus-visible {
    outline: 3px solid rgba(255, 255, 255, 0.8);
    outline-offset: 3px;
}

/* How to Take a Tour Section */
.how-to-section {
    background: white;
    padding: 180px 0 80px 0;
    position: relative;
}

.how-to-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.how-to-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ea5a3e;
    margin: 0 0 60px 0;
    font-family: 'Inter', 'AdobeFnt24', sans-serif;
    text-align: left;
}

.steps-container {
    display: flex;
    flex-direction: row;
    gap: 20px;
    margin-bottom: 60px;
    align-items: flex-start;
    background: transparent;
    padding: 0;
    border-radius: 0;
}

.step-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
    position: relative;
    flex: 1;
    text-align: center;
    background: white;
    border-radius: 12px;
    padding: 0 0 20px 0;
    margin: 0;
}

.step-banner {
    display: none;
}

.step-number {
    font-size: 4.5rem;
    font-weight: 700;
    color: #60c6c7;
    line-height: 1;
    background: white;
    width: 90px;
    height: 90px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: -45px;
    left: 50%;
    transform: translateX(-50%);
    
    z-index: 3;
}

.step-content {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 0;
    flex: 1;
    background: white;
    padding: 0;
    border-radius: 0 0 12px 12px;
    width: 100%;
    color: white;
    min-height: 360px;
}

.step-text {
    flex: 1;
    text-align: left;
    background: #007f7b;
    padding: 40px 20px 20px 20px;
    border-radius: 12px 0 0 12px;
    color: white;
    min-height: 230px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
}

.step-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    margin: 0 0 15px 0;
    font-family: 'Inter', 'AdobeFnt24', sans-serif;
}

.step-description {
    font-size: 1rem;
    color: white;
    line-height: 1.6;
    margin: 0;
}

.step-mockup {
    flex-shrink: 0;
    margin-left: 0;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.phone-mockup {
    width: 180px;
    height: 360px;
    background: transparent;
    border-radius: 25px;
    padding: 0;
    box-shadow: none;
    position: relative;
    overflow: hidden;
}

.phone-mockup::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: #333;
    border-radius: 2px;
    z-index: 1;
}

.mockup-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 25px;
    background: transparent;
    margin-left: -10px
}

/* Download Buttons */
.download-buttons {
    display: flex;
    gap: 20px;
    justify-content: flex-start;
    flex-wrap: wrap;
}

.download-btn {
    display: inline-block;
    transition: transform 0.3s ease;
    text-decoration: none;
}

.download-btn:hover {
    transform: translateY(-2px);
}

.download-btn:focus {
    outline: 3px solid var(--tsgreen);
    outline-offset: 3px;
    border-radius: 8px;
}

.download-btn-image {
    height: 45px;
    width: auto;
    border-radius: 8px;
    max-width: 250px;
    object-fit: contain;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .steps-container {
        gap: 15px;
    }
    
    .phone-mockup {
        width: 150px;
        height: 300px;
    }
    
    .step-title {
        font-size: 1.3rem;
    }
    
    .step-description {
        font-size: 0.9rem;
    }
    
    .step-content {
        min-height: 320px;
    }
}

@media (max-width: 768px) {
    .how-to-section {
        padding: 60px 0;
    }
    
    .how-to-container {
        padding: 0 15px;
    }
    
    .how-to-title {
        font-size: 2rem;
        margin-bottom: 40px;
    }
    
    .steps-container {
        flex-direction: column;
        gap: 30px;
        margin-bottom: 40px;
    }
    
    .step-item {
        flex-direction: row;
        align-items: flex-start;
        text-align: left;
        gap: 20px;
    }
    
    .step-banner {
        width: auto;
        min-width: 60px;
        padding: 15px 20px;
        margin-bottom: 0;
    }
    
    .step-number {
        font-size: 2rem;
        width: 50px;
        height: 50px;
        left: -25px;
    }
    
    .step-content {
        flex-direction: row;
        align-items: center;
        padding: 20px;
        border-radius: 12px;
        gap: 20px;
        background: #007f7b;
        color: white;
    }
    
    .step-text {
        flex: 1;
    }
    
    .phone-mockup {
        width: 120px;
        height: 200px;
        padding: 12px 10px;
    }
    
    .download-buttons {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .how-to-section {
        padding: 40px 0;
    }
    
    .how-to-title {
        font-size: 1.8rem;
        margin-bottom: 30px;
    }
    
    .steps-container {
        gap: 25px;
        margin-bottom: 30px;
    }
    
    .step-banner {
        padding: 12px 20px;
        min-width: 50px;
    }
    
    .step-number {
        font-size: 2rem;
    }
    
    .step-content {
        padding: 15px;
    }
    
    .step-title {
        font-size: 1.3rem;
        margin-bottom: 10px;
    }
    
    .step-description {
        font-size: 0.9rem;
    }
    
    .phone-mockup {
        width: 140px;
        height: 250px;
        padding: 12px 10px;
    }
    
    .download-btn-image {
        height: 50px;
    }
}

/* Accessibility Enhancements */
@media (prefers-reduced-motion: reduce) {
    .download-btn {
        transition: none;
    }
    
    .download-btn:hover {
        transform: none;
    }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .step-banner {
        border: 2px solid #000;
    }
    
    .step-content {
        border: 2px solid #000;
    }
    
    .step-title {
        color: #000;
    }
    
    .step-description {
        color: #000;
    }
}

/* Focus visible for better keyboard navigation */
.download-btn:focus-visible {
    outline: 3px solid var(--tsgreen);
    outline-offset: 3px;
}

/* Why Choose TravelStorys Section */
.why-choose-section {
    background: linear-gradient(180deg, #00843e 0%, #007f79 100%);
    padding: 20px 0 80px 0;
    position: relative;
    overflow: hidden;
}

.why-choose-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.why-choose-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: center;
}

.why-choose-text {
    color: white;
    position: relative;
}

.why-choose-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    margin: 0 0 -100px 0;
    font-family: 'DMSerifDisplay', serif;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.btn-learn-more {
    display: inline-block;
    background: #ffd100;
    color: #1a3d3e;
    padding: 16px 32px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 450;
    font-size: 20px;
    margin: 0 0 15px 0;
    transition: all 0.3s ease;
    position: relative;
    flex-shrink: 0;
    /* left: 200px; */
    z-index: 4;
    right: -738px;
    top: 16px;
}

.btn-learn-more:hover {
    background: #e6bc00;
    transform: translateY(-2px);
   
    color: #000;
}

.btn-learn-more:focus {
    outline: 3px solid rgba(255, 255, 255, 0.5);
    outline-offset: 2px;
}

.why-choose-sections {
    margin-top: 80px;
}

.why-section {
    margin-bottom: 40px;
}

.why-section-title {
    font-size: 30px;
    font-weight: 700;
    color: white;
    margin: 0 0 20px 0;
    font-family: 'Inter', 'AdobeFnt24', sans-serif;
}

.why-section-list {
    list-style: none;
    padding: 0;
    margin: 0;
    font-weight: 200;
}

.why-section-list li {
    color: white;
    font-size: 1.7rem;
    line-height: 1.6;
    margin-bottom: 12px;
    padding-left: 20px;
    position: relative;
}

.why-section-list li::before {
    content: "•";
    color: #ffffff;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.why-choose-images {
    position: relative;
    height: 900px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.circular-image {
    position: absolute;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.woman-smartphone {
    width: 650;
    height: 650;
    top: -50px;
    left: 90px;
    z-index: 3;
}


.hands-app {
    width: 350;
    height: 350;
    bottom: 10px;
    top: 520;
    left: 60;
    z-index: 5;
}

.driving-navigation {
    width: 350;
    height: 350;
    bottom: 20px;
    left: 400;
    top: 400;
    z-index: 4;
}

.circular-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .why-choose-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .btn-learn-more {
        position: static;
        left: 0;
        margin-top: 20px;
    }
    
    .why-choose-images {
        height: 700px;
    }
    
    .woman-smartphone {
        width: 350px;
        height: 350px;
        top: 10px;
        right: 10px;
    }
    
    .hands-app {
        width: 180px;
        height: 180px;
        bottom: 30px;
        right: 40px;
    }
    
    .driving-navigation {
        width: 160px;
        height: 160px;
        bottom: 10px;
        left: 10px;
    }
}

@media (max-width: 768px) {
    .why-choose-section {
        padding: 15px 0 60px 0;
    }
    
    .why-choose-container {
        padding: 0 15px;
    }
    
    .why-choose-title {
        font-size: 2rem;
        margin-bottom: 20px;
    }
    
    .btn-learn-more {
        padding: 14px 24px;
        font-size: 15px;
        margin-bottom: 25px;
    }
    
.why-choose-sections {
    margin-top: 0;
    width: 100%;
}
    
    .why-section {
        margin-bottom: 30px;
    }
    
    .why-section-title {
        font-size: 1.2rem;
        margin-bottom: 15px;
    }
    
    .why-section-list li {
        font-size: 0.9rem;
        margin-bottom: 10px;
    }
    
    .why-choose-images {
        height: 600px;
    }
    
    .woman-smartphone {
        width: 280px;
        height: 280px;
        top: 5px;
        right: 5px;
    }
    
    .hands-app {
        width: 140px;
        height: 140px;
        bottom: 20px;
        right: 25px;
    }
    
    .driving-navigation {
        width: 120px;
        height: 120px;
        bottom: 5px;
        left: 5px;
    }
}

@media (max-width: 480px) {
    .why-choose-section {
        padding: 10px 0 40px 0;
    }
    
    .why-choose-title {
        font-size: 1.8rem;
    }
    
    .btn-learn-more {
        padding: 12px 20px;
        font-size: 14px;
    }
    
    .why-section-title {
        font-size: 1.1rem;
    }
    
    .why-section-list li {
        font-size: 0.85rem;
    }
    
    .why-choose-images {
        height: 500px;
    }
    
    .woman-smartphone {
        width: 220px;
        height: 220px;
    }
    
    .hands-app {
        width: 120px;
        height: 120px;
    }
    
    .driving-navigation {
        width: 100px;
        height: 100px;
    }
}

/* Accessibility Enhancements */
@media (prefers-reduced-motion: reduce) {
    .btn-learn-more {
        transition: none;
    }
    
    .btn-learn-more:hover {
        transform: none;
    }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .btn-learn-more {
        border: 2px solid #000;
    }
    
    .why-section-list li::before {
        color: #fff;
    }
}

/* Focus visible for better keyboard navigation */
.btn-learn-more:focus-visible {
    outline: 3px solid rgba(255, 255, 255, 0.8);
    outline-offset: 3px;
}

/* All Tours. One Shared Platform Section */
.platform-section {
    background: white;
    position: relative;
    border-top: 2px solid #60c6c7;
    overflow: hidden;
}

.platform-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    gap: 60px;
}

.platform-text {
    color: #333;
    flex: 2;
    min-width: 50%;
}

.platform-title {
    font-size: 3rem;
    font-weight: 700;
    color: #ea5a3e;
    margin: 0 0 20px 0;
    font-family: 'DMSerifDisplay', serif;
    line-height: 1.1;
}

.platform-subtitle {
    font-size: 1.5rem;
    font-weight: 700;
    color: #007f7b;
    margin: 0 0 40px 0;
    font-family: 'Inter', 'AdobeFnt24', sans-serif;
}

.platform-sections {
    margin-bottom: 40px;
}

.platform-section-item {
    margin-bottom: 30px;
}

.platform-section-title {
    font-size: 1.9rem;
    font-weight: 700;
    color: #1a3d3e;
    margin: 0 0 15px 0;
    font-family: 'Inter', 'AdobeFnt24', sans-serif;
}

.platform-section-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.platform-section-list li {
    color: #1a3d3e;
    font-size: 1.4rem;
    line-height: 1.6;
    margin-bottom: 8px;
    padding-left: 20px;
    position: relative;
    font-family: 'Inter', 'AdobeFnt24', sans-serif;
}

.platform-section-list li::before {
    content: "•";
    color: #000000;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.btn-platform-cta {
    display: inline-block;
    background: #ea5a3e;
    color: white;
    padding: 16px 32px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(234, 90, 62, 0.3);
}

.btn-platform-cta:hover {
    background: #d44a2e;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(234, 90, 62, 0.4);
    color: white;
}

.btn-platform-cta:focus {
    outline: 3px solid rgba(234, 90, 62, 0.5);
    outline-offset: 2px;
}

.platform-map {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    /* margin-left: 300px; */
    right: -121px;
}

.map-image {
    width: 1000px;
    height: 800px;
    border-radius: 50%;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    object-fit: cover;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .platform-container {
        flex-direction: column;
        text-align: center;
    }
    
    .platform-title {
        font-size: 2.5rem;
    }
    
    .platform-subtitle {
        font-size: 1.3rem;
    }
}

@media (max-width: 768px) {
    .platform-section {
        padding: 60px 0;
    }
    
    .platform-container {
        padding: 0 15px;
    }
    
    .platform-content {
        gap: 30px;
    }
    
    .platform-title {
        font-size: 2rem;
        margin-bottom: 15px;
    }
    
    .platform-subtitle {
        font-size: 1.2rem;
        margin-bottom: 30px;
    }
    
    .platform-sections {
        margin-bottom: 30px;
    }
    
    .platform-section-item {
        margin-bottom: 25px;
    }
    
    .platform-section-title {
        font-size: 1.2rem;
        margin-bottom: 12px;
    }
    
    .platform-section-list li {
        font-size: 0.9rem;
        margin-bottom: 6px;
    }
    
    .btn-platform-cta {
        padding: 14px 24px;
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .platform-section {
        padding: 40px 0;
    }
    
    .platform-title {
        font-size: 1.8rem;
    }
    
    .platform-subtitle {
        font-size: 1.1rem;
    }
    
    .platform-section-title {
        font-size: 1.1rem;
    }
    
    .platform-section-list li {
        font-size: 0.85rem;
    }
    
    .btn-platform-cta {
        padding: 12px 20px;
        font-size: 14px;
    }
}

/* Accessibility Enhancements */
@media (prefers-reduced-motion: reduce) {
    .btn-platform-cta {
        transition: none;
    }
    
    .btn-platform-cta:hover {
        transform: none;
    }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .btn-platform-cta {
        border: 2px solid #000;
    }
    
    .platform-section-list li::before {
        color: #000;
    }
}

/* Focus visible for better keyboard navigation */
.btn-platform-cta:focus-visible {
    outline: 3px solid rgba(234, 90, 62, 0.8);
    outline-offset: 3px;
}

/* Featured Tours Section */
.featured-tours-section {
    background: #dff4f4;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.featured-tours-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.featured-tours-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 50px;
}

.featured-tours-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ea5a3e;
    margin: 0;
    font-family: 'Inter', 'AdobeFnt24', sans-serif;
}

.btn-explore-all {
    background: #ea5a3e;
    color: white;
    padding: 12px 24px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(234, 90, 62, 0.3);
}

.btn-explore-all:hover {
    background: #d44a2e;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(234, 90, 62, 0.4);
    color: white;
}

.btn-explore-all:focus {
    outline: 3px solid rgba(234, 90, 62, 0.5);
    outline-offset: 2px;
}

/* Tours Carousel */
.tours-carousel {
    position: relative;
    display: flex;
    align-items: center;
    gap: 20px;
}

.carousel-nav {
    background: #007f7b;
    color: white;
    border: none;
    border-radius: 50%;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    flex-shrink: 0;
    z-index: 2;
}

.carousel-nav:hover {
    background: #005f5b;
    transform: scale(1.05);
}

.carousel-nav:focus {
    outline: 3px solid rgba(0, 127, 123, 0.5);
    outline-offset: 2px;
}

.carousel-nav:disabled {
    background: #ccc;
    cursor: not-allowed;
    transform: none;
}

/* Carousel pause button styles */
.carousel-pause-btn {
    background: rgba(0, 0, 0, 0.7) !important;
    color: white !important;
    border: none !important;
    border-radius: 50% !important;
    width: 40px !important;
    height: 40px !important;
    cursor: pointer !important;
    font-size: 16px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    transition: background 0.3s ease !important;
    position: relative !important;
    z-index: 10 !important;
}

.carousel-pause-btn:hover {
    background: rgba(0, 0, 0, 0.9) !important;
}

.carousel-pause-btn:focus {
    outline: 3px solid rgba(255, 255, 255, 0.8) !important;
    outline-offset: 2px !important;
}

.carousel-track {
    flex: 1;
    overflow: hidden;
    position: relative;
}

.carousel-slides {
    display: flex;
    transition: transform 0.5s ease;
    gap: 20px;
}

.tour-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    flex: 0 0 calc(33.333% - 14px);
    min-width: 300px;
    position: relative;
}

.tour-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.tour-image {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.tour-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.tour-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: rgba(255, 255, 255, 0.9);
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
    color: #333;
    display: flex;
    gap: 4px;
}

.tour-badge.enrich {
    background: #4caf50;
    color: white;
}

.tour-content {
    padding: 20px;
}

.tour-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1a3d3e;
    margin: 0 0 8px 0;
    font-family: 'Inter', 'AdobeFnt24', sans-serif;
}

.tour-subtitle {
    font-size: 0.95rem;
    color: #666;
    margin: 0 0 16px 0;
    line-height: 1.4;
}

.tour-location {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 12px;
    font-size: 0.85rem;
    color: #666;
    font-weight: 500;
}

.tour-location svg {
    color: #007f7b;
}

.tour-activity,
.tour-activities {
    display: flex;
    align-items: center;
    gap: 8px;
}

.tour-activity svg,
.tour-activities svg {
    color: #007f7b;
}

/* More Tours Statistics Section */
.more-tours-section {
    background: #dff4f4;
    padding: 60px 0;
    position: relative;
}

.more-tours-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}

.more-tours-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ea5a3e;
    margin: 0 0 50px 0;
    font-family: 'Inter', 'AdobeFnt24', sans-serif;
    line-height: 1.2;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.stat-icon {
    color: #007f7b;
    margin-bottom: 16px;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #0d3542;
    margin: 0 0 8px 0;
    font-family: 'Inter', 'AdobeFnt24', sans-serif;
}

.stat-label {
    font-size: x-large;
    color: #0d3542;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .featured-tours-section {
        padding: 60px 0;
    }
    
    .featured-tours-header {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .featured-tours-title {
        font-size: 2rem;
    }
    
    .tour-card {
        flex: 0 0 calc(50% - 10px);
        min-width: 280px;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .more-tours-title {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .featured-tours-section {
        padding: 40px 0;
    }
    
    .featured-tours-container {
        padding: 0 15px;
    }
    
    .featured-tours-title {
        font-size: 1.8rem;
    }
    
    .btn-explore-all {
        padding: 10px 20px;
        font-size: 14px;
    }
    
    .tours-carousel {
        gap: 15px;
    }
    
    .carousel-nav {
        width: 40px;
        height: 40px;
    }
    
    .tour-card {
        flex: 0 0 calc(100% - 10px);
        min-width: 260px;
    }
    
    .tour-image {
        height: 180px;
    }
    
    .tour-content {
        padding: 16px;
    }
    
    .tour-title {
        font-size: 1.1rem;
    }
    
    .tour-subtitle {
        font-size: 0.9rem;
    }
    
    .more-tours-section {
        padding: 40px 0;
    }
    
    .more-tours-container {
        padding: 0 15px;
    }
    
    .more-tours-title {
        font-size: 1.8rem;
        margin-bottom: 40px;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .stat-label {
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .featured-tours-title {
        font-size: 1.6rem;
    }
    
    .btn-explore-all {
        padding: 8px 16px;
        font-size: 13px;
    }
    
    .carousel-nav {
        width: 36px;
        height: 36px;
    }
    
    .tour-card {
        min-width: 240px;
    }
    
    .tour-image {
        height: 160px;
    }
    
    .tour-content {
        padding: 14px;
    }
    
    .tour-title {
        font-size: 1rem;
    }
    
    .tour-subtitle {
        font-size: 0.85rem;
    }
    
    .more-tours-title {
        font-size: 1.6rem;
    }
    
    .stat-number {
        font-size: 1.8rem;
    }
}

/* Accessibility Enhancements */
@media (prefers-reduced-motion: reduce) {
    .tour-card,
    .carousel-nav,
    .btn-explore-all,
    .tour-image img {
        transition: none;
    }
    
    .tour-card:hover {
        transform: none;
    }
    
    .carousel-nav:hover {
        transform: none;
    }
    
    .btn-explore-all:hover {
        transform: none;
    }
    
    .tour-image img:hover {
        transform: none;
    }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .tour-card {
        border: 2px solid #000;
    }
    
    .carousel-nav {
        border: 2px solid #000;
    }
    
    .btn-explore-all {
        border: 2px solid #000;
    }
}

/* Focus visible for better keyboard navigation */
.btn-explore-all:focus-visible,
.carousel-nav:focus-visible {
    outline: 3px solid rgba(0, 127, 123, 0.8);
    outline-offset: 3px;
}

/* Our Partners Know Section */
.our-partners-section {
    background: white;
    padding: 80px 0;
    position: relative;
}

.our-partners-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.our-partners-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ea5a3e;
    margin: 0 0 60px 0;
    font-family: 'DMSerifDisplay', serif;
    text-align: center;
    line-height: 1.2;
}

.partners-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 60px;
}

.partners-image {
    position: relative;
}

.partners-main-image {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    object-fit: cover;
    aspect-ratio: 4/3;
}

.partners-info {
    padding-left: 20px;
}

.partners-count {
    font-size: 1.8rem;
    font-weight: 900;
    color: #000000;
    margin: 0 0 30px 0;
    font-family: 'Inter', 'AdobeFnt24', sans-serif;
}

.partners-list {
    list-style: none;
    padding: 0;
    margin: 0 0 40px 0;
}

.partners-list li {
    color: #000000;
    font-size: 1.4rem;
    font-weight: 300;
    line-height: 1.6;
    margin-bottom: 12px;
    padding-left: 20px;
    position: relative;
    font-family: 'Inter', 'AdobeFnt24', sans-serif;
}

.partners-list li::before {
    content: "•";
    color: #000000;
    font-weight: bold;
    position: absolute;
    left: 0;
    font-size: 1.4rem;
}

.btn-schedule-consultation {
    display: inline-block;
    background: #ffd100;
    color: #0d3542;
    padding: 16px 32px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    position: relative;
    font-size: 16px;
    top: 23px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s 
ease;
    box-shadow: 0 4px 15px rgba(255, 209, 0, 0.3);
}

.btn-schedule-consultation:hover {
    background: #e6bc00;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 209, 0, 0.4);
    color: #1a3d3e;
}

.btn-schedule-consultation:focus {
    outline: 3px solid rgba(255, 209, 0, 0.5);
    outline-offset: 2px;
}

/* Mission Banner */
.mission-banner {
    background: #007f7b;
    padding: 40px 60px;
    border-radius: 12px;
    text-align: left;
    margin-bottom: 60px;
    margin-top: -80;
    box-shadow: 0 8px 30px rgba(0, 127, 123, 0.2);
}

.mission-title {
    font-size: 2rem;
    font-weight: 700;
    color: white;
    margin: 0 0 20px 0;
    font-family: 'Inter', 'AdobeFnt24', sans-serif;
}

.mission-text {
    font-size: 1.4rem;
    color: white;
    margin: 0 0 10px 0;
    line-height: 1.6;
    font-family: 'Inter', 'AdobeFnt24', sans-serif;
}

.mission-text:last-child {
    margin-bottom: 0;
}

/* Partner Logos */
.partner-logos {
    text-align: center;
}

.logos-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a3d3e;
    margin: 0 0 40px 0;
    font-family: 'Inter', 'AdobeFnt24', sans-serif;
}

.logos-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 30px;
    align-items: center;
    justify-items: center;
}

.logo-item {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 120px;
    width: 100%;
    max-width: 180px;
}

.logo-link {
    display: block;
    text-decoration: none;
    transition: all 0.3s ease;
}

.logo-link:hover {
    transform: scale(1.05);
}

.logo-link:focus {
    outline: 3px solid rgba(0, 127, 123, 0.5);
    outline-offset: 2px;
    border-radius: 8px;
}

.partner-logo {
    max-width: 100%;
    max-height: 120px;
    width: auto;
    height: auto;
    object-fit: contain;
    transition: all 0.3s ease;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .our-partners-section {
        padding: 60px 0;
    }
    
    .our-partners-title {
        font-size: 2rem;
        margin-bottom: 40px;
    }
    
    .partners-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .partners-info {
        padding-left: 0;
    }
    
    .partners-count {
        font-size: 1.6rem;
    }
    
    .logos-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 20px;
    }
    
    .mission-banner {
        padding: 30px 40px;
    }
    
    .mission-title {
        font-size: 1.8rem;
    }
}

@media (max-width: 768px) {
    .our-partners-section {
        padding: 40px 0;
    }
    
    .our-partners-container {
        padding: 0 15px;
    }
    
    .our-partners-title {
        font-size: 1.8rem;
        margin-bottom: 30px;
    }
    
    .partners-content {
        gap: 30px;
    }
    
    .partners-count {
        font-size: 1.4rem;
        margin-bottom: 20px;
    }
    
    .partners-list li {
        font-size: 1rem;
        margin-bottom: 10px;
    }
    
    .btn-schedule-consultation {
        padding: 14px 24px;
        font-size: 14px;
    }
    
    .mission-banner {
        padding: 25px 30px;
        margin-bottom: 40px;
    }
    
    .mission-title {
        font-size: 1.6rem;
        margin-bottom: 15px;
    }
    
    .mission-text {
        font-size: 1rem;
    }
    
    .logos-title {
        font-size: 1.3rem;
        margin-bottom: 30px;
    }
    
    .logos-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
    }
    
    .logo-item {
        min-height: 90px;
        max-width: 140px;
    }
    
    .partner-logo {
        max-height: 90px;
    }
}

@media (max-width: 480px) {
    .our-partners-title {
        font-size: 1.6rem;
    }
    
    .partners-count {
        font-size: 1.2rem;
    }
    
    .partners-list li {
        font-size: 0.9rem;
    }
    
    .btn-schedule-consultation {
        padding: 12px 20px;
        font-size: 13px;
    }
    
    .mission-banner {
        padding: 20px 25px;
    }
    
    .mission-title {
        font-size: 1.4rem;
    }
    
    .mission-text {
        font-size: 0.9rem;
    }
    
    .logos-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    
    .logo-item {
        min-height: 70px;
        max-width: 110px;
    }
    
    .partner-logo {
        max-height: 70px;
    }
}

/* Accessibility Enhancements */
@media (prefers-reduced-motion: reduce) {
    .partners-main-image,
    .btn-schedule-consultation,
    .logo-link,
    .partner-logo {
        transition: none;
    }
    
    .btn-schedule-consultation:hover,
    .logo-link:hover {
        transform: none;
    }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .btn-schedule-consultation {
        border: 2px solid #000;
    }
    
    .logo-link:focus {
        outline-color: #000;
        outline-width: 3px;
    }
    
    .partners-list li::before {
        color: #000;
    }
}

/* Focus visible for better keyboard navigation */
.btn-schedule-consultation:focus-visible {
    outline: 3px solid rgba(255, 209, 0, 0.8);
    outline-offset: 3px;
}

/* Travelers Are Raving Section */
.testimonials-section {
    background: linear-gradient(180deg, #e8f4f8 0%, #f0f8fa 100%);
    padding: 80px 0;
    position: relative;
}

.testimonials-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.testimonials-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ea5a3e;
    margin: 0 0 60px 0;
    font-family: 'DMSerifDisplay', serif;
    text-align: left;
    line-height: 1.2;
}

/* Testimonials Carousel */
.testimonials-carousel {
    position: relative;
    display: flex;
    align-items: center;
    gap: 20px;
}

.testimonials-nav {
    background: #007f7b;
    color: white;
    border: none;
    border-radius: 50%;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    flex-shrink: 0;
    z-index: 2;
}

.testimonials-nav:hover {
    background: #005f5b;
    transform: scale(1.05);
}

.testimonials-nav:focus {
    outline: 3px solid rgba(0, 127, 123, 0.5);
    outline-offset: 2px;
}

.testimonials-nav:disabled {
    background: #ccc;
    cursor: not-allowed;
    transform: none;
}

.testimonials-track {
    flex: 1;
    overflow: hidden;
    position: relative;
}

.testimonials-slides {
    display: flex;
    transition: transform 0.5s ease;
    gap: 20px;
}

.testimonial-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    flex: 0 0 calc(33.333% - 14px);
    min-width: 300px;
    position: relative;
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.testimonial-image {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.testimonial-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.testimonial-image-adjusted {
    object-position: center 30% !important;
}

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

.testimonial-placeholder {
    background: #f5f5f5;
    border: 2px dashed #ccc;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #666;
    font-size: 0.9rem;
    font-weight: 500;
    font-family: 'Inter', 'AdobeFnt24', sans-serif;
}

.testimonial-content {
    padding: 20px;
}

.testimonial-rating {
    display: flex;
    gap: 2px;
    margin-bottom: 15px;
}

.star {
    font-size: 1.2rem;
    color: #ddd;
    transition: color 0.2s ease;
}

.star.filled {
    color: #ffd700;
}

.star.half {
    color: #ffd700;
    position: relative;
}

.star.half::after {
    content: "★";
    position: absolute;
    left: 0;
    top: 0;
    width: 50%;
    overflow: hidden;
    color: #ddd;
}

.star.empty {
    color: #ddd;
}

.testimonial-text {
    font-size: 1rem;
    color: #1a3d3e;
    line-height: 1.6;
    margin: 0;
    font-family: 'Inter', 'AdobeFnt24', sans-serif;
    font-style: italic;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .testimonials-section {
        padding: 60px 0;
    }
    
    .testimonials-title {
        font-size: 2rem;
        margin-bottom: 40px;
    }
    
    .testimonial-card {
        flex: 0 0 calc(50% - 10px);
        min-width: 280px;
    }
}

@media (max-width: 768px) {
    .testimonials-section {
        padding: 40px 0;
    }
    
    .testimonials-container {
        padding: 0 15px;
    }
    
    .testimonials-title {
        font-size: 1.8rem;
        margin-bottom: 30px;
    }
    
    .testimonials-carousel {
        gap: 15px;
    }
    
    .testimonials-nav {
        width: 40px;
        height: 40px;
    }
    
    .testimonial-card {
        flex: 0 0 calc(100% - 10px);
        min-width: 260px;
    }
    
    .testimonial-image {
        height: 180px;
    }
    
    .testimonial-content {
        padding: 16px;
    }
    
    .testimonial-text {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .testimonials-title {
        font-size: 1.6rem;
    }
    
    .testimonials-nav {
        width: 36px;
        height: 36px;
    }
    
    .testimonial-card {
        min-width: 240px;
    }
    
    .testimonial-image {
        height: 160px;
    }
    
    .testimonial-content {
        padding: 14px;
    }
    
    .testimonial-text {
        font-size: 0.85rem;
    }
}

/* Accessibility Enhancements */
@media (prefers-reduced-motion: reduce) {
    .testimonial-card,
    .testimonials-nav,
    .testimonial-image img {
        transition: none;
    }
    
    .testimonial-card:hover {
        transform: none;
    }
    
    .testimonials-nav:hover {
        transform: none;
    }
    
    .testimonial-image img:hover {
        transform: none;
    }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .testimonial-card {
        border: 2px solid #000;
    }
    
    .testimonials-nav {
        border: 2px solid #000;
    }
    
    .star.filled,
    .star.half {
        color: #000;
    }
}

/* Focus visible for better keyboard navigation */
.testimonials-nav:focus-visible {
    outline: 3px solid rgba(0, 127, 123, 0.8);
    outline-offset: 3px;
}