/* ============================================= */
/* SERVICES & FEATURES - OPTIMIZED FOR ALL SCREENS */
/* ============================================= */

/* Featured Destination Layout */
.featured-destination {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    margin-bottom: 3rem;
}

.destination-image {
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

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

.destination-image:hover img {
    transform: scale(1.03);
}

.destination-content h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #111827;
}

.destination-description {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #4b5563;
    margin-bottom: 1.5rem;
}

.destination-highlights h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #111827;
}

.destination-highlights ul {
    list-style: none;
    padding: 0;
}

.destination-highlights li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: #4b5563;
}

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

/* Services Grid */
.services-grid-wrapper {
    width: 100%;
    overflow: visible;
    position: relative;
}

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

.service-card {
    background: white;
    padding: 2rem;
    border-radius: 0.75rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: 380px;
    position: relative;
    border: 1px solid #f3f4f6;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    border-color: #f8d56b;
}

.service-icon {
    width: 70px;
    height: 70px;
    background: #f0fdf4;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    background: linear-gradient(135deg, #f0fdf4, #dcfce7);
    transform: scale(1.1);
}

.service-icon i {
    font-size: 1.8rem;
    color: #0d9488;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon i {
    color: #065f46;
    transform: scale(1.1);
}

.service-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #111827;
    min-height: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-card p {
    color: #4b5563;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

/* Read More Button Styles */
.read-more-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #f8d56b, #f9c74f);
    color: #333 !important;
    text-decoration: none;
    padding: 12px 24px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(248, 213, 107, 0.3);
    margin-top: auto;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
    min-width: 140px;
}

.read-more-btn:hover {
    background: linear-gradient(135deg, #f9c74f, #f8d56b);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(248, 213, 107, 0.4);
    color: #111827 !important;
}

.read-more-btn:active {
    transform: translateY(0);
}

.read-more-btn i {
    font-size: 0.9rem;
    transition: transform 0.3s ease;
}

.read-more-btn:hover i {
    transform: translateX(3px);
}

/* Features Grid */
.why-choose-us {
    margin-top: 4rem;
}

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

.feature-item {
    background: white;
    padding: 2rem;
    border-radius: 0.75rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
    min-height: 280px;
    display: flex;
    flex-direction: column;
    border: 1px solid #f3f4f6;
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    border-color: #f8d56b;
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: #f0fdf4;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all 0.3s ease;
}

.feature-item:hover .feature-icon {
    background: linear-gradient(135deg, #f0fdf4, #dcfce7);
    transform: scale(1.1);
}

.feature-icon i {
    font-size: 1.8rem;
    color: #0d9488;
    transition: all 0.3s ease;
}

.feature-item:hover .feature-icon i {
    color: #065f46;
    transform: scale(1.1);
}

.feature-item h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #111827;
    min-height: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-item p {
    color: #4b5563;
    line-height: 1.6;
    flex-grow: 1;
}

/* ============================================= */
/* FAQ SECTION STYLES */
/* ============================================= */

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

.faq-item {
    background: white;
    border-radius: 0.75rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    margin-bottom: 1rem;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid #e5e7eb;
}

.faq-item:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.faq-question {
    width: 100%;
    padding: 1.5rem;
    background: white;
    border: none;
    text-align: left;
    font-size: 1.1rem;
    font-weight: 600;
    color: #111827;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
    position: relative;
}

.faq-question:hover {
    background: #f8fafc;
    color: #0d9488;
}

.faq-question.active {
    background: #f0fdf4;
    color: #065f46;
}

.faq-question i {
    font-size: 0.9rem;
    transition: transform 0.3s ease;
    color: #6b7280;
}

.faq-question.active i {
    transform: rotate(180deg);
    color: #065f46;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: white;
}

.faq-answer.active {
    max-height: 500px;
}

.faq-answer-content {
    padding: 0 1.5rem 1.5rem;
    color: #4b5563;
    line-height: 1.7;
}

.faq-answer-content p {
    margin-bottom: 1rem;
}

.faq-answer-content p:last-child {
    margin-bottom: 0;
}

/* ============================================= */
/* FORM STYLES OPTIMIZATION */
/* ============================================= */

.trip-planning-section {
    background: linear-gradient(135deg, #f8fafc, #f0fdf4);
    padding: 4rem 0;
    margin: 3rem 0;
}

.trip-planning-form {
    background: white;
    border-radius: 1rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    padding: 2rem;
    max-width: 800px;
    margin: 0 auto;
    border: 1px solid #e5e7eb;
}

.form-header {
    text-align: center;
    margin-bottom: 2rem;
}

.form-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #f0fdf4, #dcfce7);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: #0d9488;
    font-size: 1.5rem;
}

.form-header h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: #111827;
}

.form-header p {
    color: #6b7280;
}

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

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group-wide {
    grid-column: 1 / -1;
}

.form-group label {
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #374151;
}

.input-with-icon {
    position: relative;
    display: flex;
    align-items: center;
}

.input-with-icon i {
    position: absolute;
    left: 1rem;
    color: #6b7280;
    z-index: 1;
}

.input-with-icon input,
.input-with-icon select,
.input-with-icon textarea {
    width: 100%;
    padding: 0.75rem 1rem 0.75rem 2.5rem;
    border: 1px solid #d1d5db;
    border-radius: 0.5rem;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: white;
}

.input-with-icon textarea {
    min-height: 100px;
    resize: vertical;
    font-family: inherit;
}

.input-with-icon input:focus,
.input-with-icon select:focus,
.input-with-icon textarea:focus {
    outline: none;
    border-color: #0d9488;
    box-shadow: 0 0 0 3px rgba(13, 148, 136, 0.1);
}

.select-wrapper {
    position: relative;
}

.select-wrapper::after {
    content: '\f078';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: #6b7280;
    pointer-events: none;
    z-index: 1;
}

.select-wrapper select {
    appearance: none;
    background: white;
}

.form-footer {
    text-align: center;
}

.form-submit {
    background: linear-gradient(135deg, #f8d56b, #f9c74f);
    color: #333 !important;
    border: none;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(248, 213, 107, 0.3);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.form-submit:hover {
    background: linear-gradient(135deg, #f9c74f, #f8d56b);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(248, 213, 107, 0.4);
}

.form-note {
    margin-top: 1rem;
    color: #6b7280;
    font-size: 0.9rem;
}

/* ============================================= */
/* COMING SOON & UPCOMING TRIPS STYLES */
/* ============================================= */

.coming-soon {
    position: relative;
    opacity: 0.8;
}

.coming-soon-tag {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: #f8d56b;
    color: #333;
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

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

.upcoming-trip-card {
    background: white;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
}

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

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

.trip-date {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    font-size: 0.8rem;
    font-weight: 600;
}

.trip-content {
    padding: 1.5rem;
}

.trip-title {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #111827;
}

.trip-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    color: #6b7280;
    font-size: 0.9rem;
}

.trip-meta span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.trip-description {
    color: #4b5563;
    line-height: 1.6;
    margin-bottom: 1rem;
}

/* ============================================= */
/* MISSION GRID & PROCESS STYLES */
/* ============================================= */

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

.mission-card {
    background: white;
    border-radius: 0.75rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    min-height: 280px;
    display: flex;
    flex-direction: column;
    align-items: center;
    border: 1px solid #f3f4f6;
}

.mission-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    border-color: #f8d56b;
}

.process-icon {
    width: 70px;
    height: 70px;
    background: #f0fdf4;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: #0d9488;
    font-size: 1.8rem;
    transition: all 0.3s ease;
}

.mission-card:hover .process-icon {
    background: linear-gradient(135deg, #f0fdf4, #dcfce7);
    transform: scale(1.1);
}

.mission-card h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #111827;
}

.mission-card p {
    color: #4b5563;
    line-height: 1.6;
    flex-grow: 1;
}

/* Scrollable Process for Mobile */
.scrollable-process {
    display: flex;
    gap: 1.5rem;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 1rem 0.5rem;
    scrollbar-width: thin;
    scrollbar-color: #f8d56b #f1f1f1;
    -webkit-overflow-scrolling: touch;
}

.scrollable-process .mission-card {
    flex: 0 0 280px;
    min-height: 280px;
}

/* ============================================= */
/* RESPONSIVE DESIGN - MOBILE FIRST */
/* ============================================= */

/* Large Desktop */
@media (min-width: 1440px) {
    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 2.5rem;
    }
    
    .features-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 2.5rem;
    }
    
    .service-card,
    .feature-item {
        padding: 2.5rem;
    }
    
    .upcoming-trips-grid {
        grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    }
}

/* Tablet Styles */
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 1.5rem;
    }
    
    .features-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 1.5rem;
    }
    
    .service-card,
    .feature-item {
        padding: 1.5rem;
        min-height: 350px;
    }
    
    .featured-destination {
        gap: 2rem;
    }
    
    .mission-grid {
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
        gap: 1.5rem;
    }
}

/* Mobile Styles */
@media (max-width: 768px) {
    /* Featured Destination Mobile Layout */
    .featured-destination {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .destination-image {
        height: 300px;
    }
    
    .destination-content h2 {
        font-size: 1.6rem;
    }
    
    /* Services Grid Mobile */
    .services-grid-wrapper {
        overflow-x: auto;
        padding-bottom: 1rem;
        margin: 0 -1rem;
        padding: 0 1rem 1rem;
    }
    
    .services-grid {
        display: flex;
        flex-wrap: nowrap;
        gap: 1rem;
        margin-top: 1.5rem;
        padding-bottom: 0.5rem;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        overflow-x: auto;
        scrollbar-width: thin;
    }
    
    .services-grid::-webkit-scrollbar {
        height: 6px;
    }
    
    .services-grid::-webkit-scrollbar-track {
        background: #f1f1f1;
        border-radius: 10px;
    }
    
    .services-grid::-webkit-scrollbar-thumb {
        background: #f8d56b;
        border-radius: 10px;
    }
    
    .service-card {
        flex: 0 0 280px;
        scroll-snap-align: start;
        min-height: 380px;
        padding: 1.5rem;
    }
    
    /* Features Grid Mobile */
    .features-grid {
        display: flex;
        flex-wrap: nowrap;
        gap: 1rem;
        margin-top: 1.5rem;
        padding-bottom: 0.5rem;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
    }
    
    .feature-item {
        flex: 0 0 280px;
        scroll-snap-align: start;
        min-height: 320px;
        padding: 1.5rem;
    }
    
    .service-icon,
    .feature-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 1rem;
    }
    
    .service-icon i,
    .feature-icon i {
        font-size: 1.5rem;
    }
    
    .service-card h3,
    .feature-item h3 {
        font-size: 1.2rem;
        min-height: 2.5rem;
    }
    
    .read-more-btn {
        padding: 10px 20px;
        font-size: 0.9rem;
        min-width: 130px;
    }
    
    /* FAQ Mobile Styles */
    .faq-question {
        padding: 1.25rem;
        font-size: 1rem;
    }
    
    .faq-answer-content {
        padding: 0 1.25rem 1.25rem;
    }
    
    /* Form Mobile Styles */
    .trip-planning-section {
        padding: 2rem 0;
        margin: 2rem 0;
    }
    
    .trip-planning-form {
        padding: 1.5rem;
        margin: 0 -1rem;
        border-radius: 0;
    }
    
    .form-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    /* Upcoming Trips Mobile */
    .upcoming-trips-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    /* Mission Grid Mobile */
    .mission-grid {
        display: flex;
        flex-wrap: nowrap;
        gap: 1rem;
        overflow-x: auto;
        padding: 1rem 0;
        scroll-snap-type: x mandatory;
    }
    
    .mission-card {
        flex: 0 0 280px;
        scroll-snap-align: start;
        min-height: 280px;
        padding: 1.5rem;
    }
}

/* Small Mobile Styles */
@media (max-width: 480px) {
    .service-card {
        flex: 0 0 260px;
        min-height: 360px;
        padding: 1.25rem;
    }
    
    .feature-item {
        flex: 0 0 260px;
        min-height: 300px;
        padding: 1.25rem;
    }
    
    .service-card h3,
    .feature-item h3 {
        font-size: 1.1rem;
        min-height: 2.2rem;
    }
    
    .service-card p,
    .feature-item p {
        font-size: 0.9rem;
    }
    
    .read-more-btn {
        padding: 8px 16px;
        font-size: 0.85rem;
        min-width: 120px;
    }
    
    .mission-card {
        flex: 0 0 240px;
        min-height: 260px;
        padding: 1.25rem;
    }
    
    .faq-question {
        padding: 1rem;
        font-size: 0.95rem;
    }
    
    .faq-answer-content {
        padding: 0 1rem 1rem;
        font-size: 0.9rem;
    }
    
    .trip-planning-form {
        padding: 1rem;
    }
    
    .form-header h3 {
        font-size: 1.3rem;
    }
    
    .form-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .upcoming-trip-card {
        margin: 0 -0.5rem;
    }
}

/* Touch Device Optimizations */
@media (hover: none) and (pointer: coarse) {
    .service-card:hover,
    .feature-item:hover,
    .mission-card:hover,
    .upcoming-trip-card:hover {
        transform: none;
    }
    
    .service-card:active,
    .feature-item:active,
    .mission-card:active,
    .upcoming-trip-card:active {
        transform: scale(0.98);
    }
    
    .read-more-btn:hover {
        transform: none;
    }
    
    .read-more-btn:active {
        transform: scale(0.95);
    }
}

/* High Contrast Mode Support */
@media (prefers-contrast: high) {
    .service-card,
    .feature-item,
    .mission-card,
    .faq-item,
    .upcoming-trip-card {
        border: 2px solid #000;
    }
    
    .service-card:hover,
    .feature-item:hover,
    .mission-card:hover {
        border-color: #0d9488;
    }
}

/* Reduced Motion Support */
@media (prefers-reduced-motion: reduce) {
    .service-card,
    .feature-item,
    .mission-card,
    .faq-item,
    .read-more-btn,
    .upcoming-trip-card {
        transition: none;
    }
    
    .services-grid,
    .features-grid,
    .scrollable-process {
        scroll-behavior: auto;
    }
}