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

:root {
    --primary-color: #008768;
    --primary-dark: #006d52;
    --secondary-color: #1a2b49;
    --accent-blue: #1e3a8a;
    --text-dark: #1f2937;
    --text-light: #6b7280;
    --text-gray: #9ca3af;
    --bg-white: #ffffff;
    --bg-gray: #f9fafb;
    --bg-light: #f3f4f6;
    --border-color: #e5e7eb;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    --radius-sm: 0.375rem;
    --radius-md: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;
    --radius-2xl: 1.5rem;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-white);
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 768px) {
    .container {
        padding: 0 2rem;
    }
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: bold;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: 3rem;
}

h2 {
    font-size: 2.25rem;
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 1rem;
}

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

/* Buttons */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background-color: var(--primary-color);
    color: white;
    font-weight: 600;
    padding: 1rem 2rem;
    border-radius: 9999px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-primary i {
    transition: transform 0.3s ease;
}

.btn-primary:hover i {
    transform: translateX(4px);
}

/* Header */
.header {
    background-color: var(--bg-white);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-sm);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--text-dark);
}

.nav-desktop {
    display: none;
}

@media (min-width: 768px) {
    .nav-desktop {
        display: flex;
        align-items: center;
        gap: 2rem;
    }
}

.nav-link {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-dark);
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.nav-link:hover {
    color: var(--primary-color);
}

.nav-link i {
    font-size: 0.75rem;
    transition: transform 0.3s ease;
}

.nav-dropdown:hover .nav-link i {
    transform: rotate(180deg);
}

/* Language Switcher */
.language-switcher {
    display: flex;
    align-items: center;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    overflow: hidden;
}

.lang-btn {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    font-weight: 500;
    background: none;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.lang-btn.active {
    background-color: var(--primary-color);
    color: white;
}

.lang-btn:not(.active) {
    background-color: var(--bg-white);
    color: var(--text-dark);
}

.lang-btn:not(.active):hover {
    background-color: var(--bg-gray);
}

.divider {
    width: 1px;
    height: 1.5rem;
    background-color: var(--border-color);
}

.language-switcher.desktop {
    display: none;
}

@media (min-width: 768px) {
    .language-switcher.desktop {
        display: flex;
    }
    .language-switcher.mobile {
        display: none;
    }
}

/* Mobile Controls */
.mobile-controls {
    display: flex;
    align-items: center;
    gap: 1rem;
}

@media (min-width: 768px) {
    .mobile-controls {
        display: none;
    }
}

.menu-toggle {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    color: var(--text-dark);
}

.menu-toggle i {
    font-size: 1.5rem;
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 300px;
    height: 100vh;
    background-color: var(--bg-white);
    box-shadow: var(--shadow-lg);
    transition: right 0.3s ease;
    z-index: 1001;
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu-content {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 4rem;
}

.mobile-nav-link {
    padding: 0.75rem 0;
    font-weight: 500;
    color: var(--text-dark);
    border-bottom: 1px solid var(--border-color);
    transition: color 0.3s ease;
}

.mobile-nav-link:hover {
    color: var(--primary-color);
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
}

.hero-swiper {
    width: 100%;
    height: 100%;
}

.swiper-slide {
    position: relative;
}

.slide-content {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
}

.slide-bg {
    position: absolute;
    inset: 0;
}

.slide-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.5));
}

.slide-text {
    position: relative;
    z-index: 10;
    max-width: 42rem;
}

.slide-text h1 {
    font-size: 3rem;
    color: white;
    margin-bottom: 2rem;
    line-height: 1.1;
}

@media (min-width: 640px) {
    .slide-text h1 {
        font-size: 3.75rem;
    }
}

@media (min-width: 1024px) {
    .slide-text h1 {
        font-size: 4.5rem;
    }
}

.cta-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: white;
    font-size: 1.125rem;
    font-weight: 600;
    background: none;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cta-btn:hover {
    gap: 0.75rem;
}

.cta-btn i {
    transition: transform 0.3s ease;
}

.cta-btn:hover i {
    transform: translateX(4px);
}

/* Swiper Navigation */


.swiper-button-prev,
.swiper-button-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(120, 120, 120, 0.25);
    box-shadow: 0 2px 8px rgba(0,0,0,0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    border: none;
    cursor: pointer;
    z-index: 20;
    transition: background 0.2s, box-shadow 0.2s;
    backdrop-filter: blur(2px);
    
}

.swiper-button-prev:hover,
.swiper-button-next:hover {
    background: rgba(80, 80, 80, 0.35);
    box-shadow: 0 4px 16px rgba(0,0,0,0.18);
}

.swiper-button-prev {
    left: 24px;
}

.swiper-button-next {
    right: 24px;
}

.swiper-button-prev:after,
.swiper-button-next:after {
    display: none;
}

.swiper-button-prev i,
.swiper-button-next i {
    font-size: 2rem;
    color: #fff;
    pointer-events: none;

    transition: all 0.3s ease;
}

.swiper-pagination-bullet-active {
    background: white;
    width: 50px;
}


/* About Section */
.about {
    background: linear-gradient(135deg, var(--bg-gray) 0%, var(--bg-white) 100%);
    padding: 4rem 1rem;
}

@media (min-width: 768px) {
    .about {
        padding: 4rem 2rem;
    }
}

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

@media (min-width: 1024px) {
    .about-grid {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }
}

.about-image {
    position: relative;
}

.image-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-xl);
    height: 600px;
}

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

.image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.3), transparent);
}

.decorative-circle {
    position: absolute;
    bottom: -1.5rem;
    right: -1.5rem;
    width: 8rem;
    height: 8rem;
    background-color: var(--accent-blue);
    border-radius: 50%;
    opacity: 0.1;
    filter: blur(24px);
}

.about-content {
    padding: 2rem 0;
}

.section-label {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    display: block;
    margin-bottom: 0.75rem;
}

.about-content h2 {
    font-size: 2.25rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

@media (min-width: 640px) {
    .about-content h2 {
        font-size: 3rem;
    }
}

.highlight {
    color: var(--primary-color);
}

.tagline {
    font-size: 1.125rem;
    color: var(--text-light);
    font-style: italic;
    margin-bottom: 1.5rem;
}

.description p {
    font-size: 1.125rem;
    color: var(--text-dark);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.description p strong {
    color: var(--text-dark);
}

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

@media (min-width: 640px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-dark);
    transition: color 0.3s ease;
}

.feature-item:hover {
    color: var(--accent-blue);
}

.feature-item i {
    color: var(--accent-blue);
    font-size: 1rem;
}

.feature-item span {
    font-size: 0.875rem;
    font-weight: 500;
}

/* Destinations Section */
.destinations {
    padding: 4rem 1rem;
    background-color: var(--bg-white);
}

@media (min-width: 768px) {
    .destinations {
        padding: 4rem 2rem;
    }
}

.section-block {
    margin-bottom: 4rem;
}

.section-block:last-child {
    margin-bottom: 0;
}

.section-header-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 2rem;
}

.section-header-row h2 {
    font-size: 1.875rem;
    color: var(--text-dark);
}

@media (min-width: 640px) {
    .section-header-row h2 {
        font-size: 2.25rem;
    }
}

.view-all {
    display: none;
    align-items: center;
    gap: 0.25rem;
    color: var(--primary-color);
    font-weight: 600;
    transition: color 0.3s ease;
}

.view-all:hover {
    color: var(--text-dark);
}

@media (min-width: 768px) {
    .view-all {
        display: flex;
    }
}

.destinations-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 640px) {
    .destinations-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .destinations-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.destination-card {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    display: block;
}

.destination-card:hover {
    box-shadow: var(--shadow-xl);
    transform: translateY(-4px);
}

.card-image {
    position: relative;
    height: 16rem;
}

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

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

.card-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    right: 1rem;
}

.badge-content {
    background-color: rgba(31, 41, 55, 0.8);
    backdrop-filter: blur(4px);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: var(--radius-lg);
    display: inline-block;
}

.badge-title {
    font-size: 1.125rem;
    font-weight: bold;
}

.badge-subtitle {
    font-size: 0.875rem;
    opacity: 0.9;
}

/* Culture Grid */
.culture-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

@media (min-width: 640px) {
    .culture-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 1024px) {
    .culture-grid {
        grid-template-columns: repeat(6, 1fr);
    }
}

.culture-card {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    display: block;
}

.culture-card:hover {
    box-shadow: var(--shadow-xl);
}

.culture-image {
    position: relative;
    height: 18rem;
}

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

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

.culture-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background-color: rgba(31, 41, 55, 0.9);
    backdrop-filter: blur(4px);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: var(--radius-lg);
    font-weight: bold;
}

/* Tours Section */
.tours {
    padding: 4rem 1rem;
    background-color: var(--bg-white);
}

@media (min-width: 768px) {
    .tours {
        padding: 4rem 2rem;
    }
}

.tours h2 {
    font-size: 1.875rem;
    color: var(--text-dark);
    margin-bottom: 3rem;
}

@media (min-width: 640px) {
    .tours h2 {
        font-size: 2.25rem;
    }
}

.tours-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 640px) {
    .tours-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .tours-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.tour-card {
    display: block;
    transition: all 0.3s ease;
}

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

.tour-image {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-xl);
    margin-bottom: 0.75rem;
}

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

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

.tour-tag {
    position: absolute;
    top: 0.75rem;
    left: 0.75rem;
    color: white;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-sm);
}

.tour-tag.multi-day {
    background-color: #ef4444;
}

.tour-tag.guided {
    background-color: #06b6d4;
}

.wishlist-btn {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    background-color: var(--bg-white);
    border-radius: 50%;
    width: 2.5rem;
    height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.wishlist-btn:hover {
    background-color: var(--bg-gray);
}

.wishlist-btn i {
    color: var(--text-dark);
    font-size: 1.25rem;
}

.tour-content h3 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    line-height: 1.4;
    transition: color 0.3s ease;
}

.tour-card:hover .tour-content h3 {
    color: var(--accent-blue);
}

.tour-subtitle {
    font-size: 0.875rem;
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.tour-certified {
    font-size: 0.875rem;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 0.25rem;
    margin-bottom: 0.5rem;
}

.tour-certified i {
    color: #10b981;
}

.tour-rating {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.stars {
    display: flex;
    gap: 0.125rem;
}

.stars i {
    color: var(--text-dark);
    font-size: 1rem;
}

.rating-score {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-dark);
}

.review-count {
    font-size: 0.875rem;
    color: var(--text-light);
}

.tour-duration {
    font-size: 0.875rem;
    color: var(--text-dark);
}

/* Services Section */
.services {
    padding: 4rem 1rem;
    background-color: var(--bg-gray);
}

@media (min-width: 768px) {
    .services {
        padding: 4rem 2rem;
    }
}

.section-header-center {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header-center h2 {
    font-size: 2.25rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

@media (min-width: 640px) {
    .section-header-center h2 {
        font-size: 3rem;
    }
}

.section-header-center p {
    color: var(--text-light);
    max-width: 64rem;
    margin: 0 auto;
    line-height: 1.7;
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.service-card {
    background-color: var(--bg-white);
    border: 2px solid var(--border-color);
    border-radius: var(--radius-2xl);
    padding: 2rem;
    transition: all 0.3s ease;
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.service-card:hover {
    border-color: var(--accent-blue);
    box-shadow: var(--shadow-lg);
}

.service-icon {
    flex-shrink: 0;
}

.service-icon i {
    color: var(--accent-blue);
    font-size: 3rem;
    transition: transform 0.3s ease;
}

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

.service-content h3 {
    font-size: 1.25rem;
    font-weight: bold;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
}

.service-content p {
    color: var(--text-light);
    line-height: 1.6;
}

/* TripAdvisor Section */
.tripadvisor {
    padding: 3rem 1rem;
    background-color: var(--bg-white);
}

.tripadvisor-content {
    text-align: center;
    max-width: 42rem;
    margin: 0 auto;
}

.tripadvisor-badge {
    margin-bottom: 1.5rem;
}

.tripadvisor-badge img {
    width: 12rem;
    height: 12rem;
    object-fit: contain;
}

.tripadvisor-brand {
    font-size: 2.25rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.brand-part {
    color: var(--text-dark);
}

.brand-part.advisor {
    color: #00af87;
}

.tripadvisor-content h2 {
    font-size: 1.5rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

@media (min-width: 768px) {
    .tripadvisor-content h2 {
        font-size: 1.875rem;
    }
}

.tripadvisor-content p {
    color: var(--text-light);
    font-size: 1.125rem;
}

/* Booking Section */
.booking {
    background-color: var(--primary-color);
    padding: 4rem 1rem;
}

.booking-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: start;
}

@media (min-width: 1024px) {
    .booking-grid {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }
}

.booking-content {
    color: white;
}

.booking-content .section-label {
    color: rgba(255, 255, 255, 0.9);
}

.booking-content h2 {
    font-size: 2.25rem;
    color: white;
    margin-bottom: 1.5rem;
}

.booking-content p {
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.booking-form {
    background-color: var(--bg-white);
    border-radius: var(--radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow-xl);
}

.booking-form h3 {
    font-size: 1.5rem;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.booking-form > p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.discount {
    color: #f59e0b;
    font-weight: 600;
}

#bookingForm {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

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

@media (min-width: 768px) {
    .form-row {
        grid-template-columns: 1fr 1fr;
    }
}

#bookingForm input,
#bookingForm select,
#bookingForm textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    font-size: 1rem;
    transition: all 0.3s ease;
}

#bookingForm input:focus,
#bookingForm select:focus,
#bookingForm textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(0, 135, 104, 0.1);
}

#bookingForm textarea {
    resize: vertical;
    min-height: 6rem;
}

.btn-submit {
    background-color: var(--accent-blue);
    color: white;
    font-weight: 600;
    padding: 1rem;
    border: none;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.btn-submit:hover {
    background-color: #1e40af;
}

/* Gallery Section */
.gallery {
    padding: 4rem 1rem;
    background-color: var(--bg-gray);
}

.gallery-filters {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 3rem;
}

.filter-btn {
    padding: 0.75rem 1.5rem;
    border-radius: 9999px;
    font-weight: 500;
    font-size: 0.875rem;
    border: 2px solid var(--border-color);
    background-color: var(--bg-white);
    color: var(--text-dark);
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn:hover {
    border-color: var(--accent-blue);
    color: var(--accent-blue);
}

.filter-btn.active {
    background-color: var(--accent-blue);
    color: white;
    border-color: var(--accent-blue);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 3rem;
}

@media (min-width: 640px) {
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 1024px) {
    .gallery-grid {
        grid-template-columns: repeat(5, 1fr);
    }
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    cursor: pointer;
    transition: all 0.3s ease;
}

.gallery-item:hover {
    box-shadow: var(--shadow-2xl);
    transform: translateY(-4px);
}

.gallery-item.large {
    grid-column: span 2;
    grid-row: span 2;
}

.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item.large img {
    height: 100%;
    min-height: 250px;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent);
    opacity: 0;
    display: flex;
    align-items: flex-end;
    padding: 1rem;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay p {
    color: white;
    font-size: 0.875rem;
    font-weight: 600;
}

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

/* Gallery Count Styles */
.gallery-count {
    text-align: center;
    margin: 1.5rem 0;
    padding: 0.75rem;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    border-radius: 8px;
    font-size: 0.95rem;
    color: #495057;
    font-weight: 500;
    border: 1px solid #dee2e6;
}

.gallery-count p {
    margin: 0;
}

.count-badge {
    background: var(--accent-blue);
    color: white;
    font-size: 0.7rem;
    padding: 0.1rem 0.4rem;
    border-radius: 10px;
    margin-left: 0.3rem;
    vertical-align: middle;
}

/* Animation Classes */
.gallery-item {
    transition: opacity 0.4s ease, transform 0.4s ease, box-shadow 0.3s ease;
}

/* Partners Section */
.partners {
    padding: 3rem 1rem;
    background-color: var(--bg-gray);
}

.partners-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 3.5rem;
}

@media (min-width: 768px) {
    .partners-grid {
        gap: 5rem;
    }
}

@media (min-width: 1024px) {
    .partners-grid {
        gap: 6rem;
    }
}

.partner-logo {
    flex: 0 0 auto;
    opacity: 0.7;
    transition: all 0.3s ease;
}

.partner-logo:hover {
    opacity: 1;
    filter: grayscale(0);
}

.partner-logo img {
    width: 180px;
    height: 100px;
    object-fit: contain;
}

/* FAQ Section */
.faq {
    padding: 3rem 1rem;
}

.faq-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 1024px) {
    .faq-grid {
        grid-template-columns: 300px 1fr;
        gap: 2rem;
    }
}

.faq-title h2 {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--text-dark);
}

.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.accordion-item {
    background-color: var(--bg-white);
    border-bottom: 1px solid var(--border-color);
}

.accordion-header {
    width: 100%;
    padding: 1.25rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    transition: background-color 0.3s ease;
}

.accordion-header:hover {
    background-color: var(--bg-gray);
}

.accordion-header span {
    font-size: 1rem;
    font-weight: normal;
    color: var(--text-dark);
    padding-right: 2rem;
}

.accordion-header i {
    font-size: 1.25rem;
    color: var(--text-dark);
    flex-shrink: 0;
    transition: transform 0.2s ease;
}

.accordion-item.active .accordion-header i {
    transform: rotate(180deg);
}

.accordion-content {
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.3s ease-in-out;
}

.accordion-item.active .accordion-content {
    max-height: 500px;
}

.accordion-content p {
    padding: 0 1.5rem 1.25rem;
    color: var(--text-light);
    line-height: 1.7;
}

/* Footer */
.footer {
    background-color: var(--secondary-color);
    color: white;
    padding: 3rem 1rem;
}

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

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 3rem;
    }
}

.footer-logo {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.contact-item {
    margin-bottom: 0.5rem;
}

.contact-label {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 0.25rem;
}

.contact-value {
    color: rgba(255, 255, 255, 0.8);
    transition: color 0.3s ease;
    display: block;
}

.contact-value:hover {
    color: white;
}

.footer-column h3 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: white;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.footer-links li a {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
    transition: color 0.2s ease;
}

.footer-links li a:hover {
    color: white;
}

.social-links {
    display: flex;
    gap: 0.5rem;
}

.social-links a {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease;
}

.social-links a:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

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

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    text-align: center;
}

@media (min-width: 768px) {
    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }
}

.footer-bottom p {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
}

.footer-bottom a {
    color: #60a5fa;
    transition: color 0.3s ease;
}

.footer-bottom a:hover {
    color: #93c5fd;
}

/* Utility Classes */
.text-center {
    text-align: center;
}
/* Language Switcher Styles */
.language-switcher a[data-lang] {
    position: relative;
    padding: 8px 12px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    color: #4a5568;
    transition: all 0.3s ease;
    min-width: 40px;
    text-align: center;
}

.language-switcher a[data-lang]:hover {
    color: #2c5282;
    background-color: #f7fafc;
    transform: translateY(-1px);
}

.language-switcher a[data-lang].active {
    color: #2c5282;
    background-color: #ebf8ff;
    border: 2px solid #4299e1;
    font-weight: 700;
}

.language-switcher a[data-lang].active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 10px;
    right: 10px;
    height: 2px;
    background-color: #2c5282;
    border-radius: 1px;
}

.language-switcher {
    display: flex;
    align-items: center;
}

.lang-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    text-decoration: none;
    font-size: 14px;
}

.lang-btn img {
    width: 20px;
    height: auto;
    border-radius: 2px;
}
