/* ===== CSS RESET & BASE STYLES ===== */
* {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    font-size: 0.938rem;
    background-color: var(--body-color);
    color: var(--text-color);
    line-height: 1.6;
}

h1, h2, h3 {
    color: var(--title-color);
    font-weight: 600;
    line-height: 1.2;
}

ul {
    list-style: none;
}

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

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

button {
    cursor: pointer;
    border: none;
    outline: none;
    font-family: inherit;
}

input, textarea {
    font-family: inherit;
    outline: none;
}

/* ===== CSS VARIABLES ===== */
:root {
    --header-height: 3.5rem;
    
    /* Colors */
    --primary-color: #00aaff;
    --primary-color-alt: #0088cc;
    --secondary-color: #ff7f50;
    --secondary-color-alt: #ff6633;
    --title-color: #1a1a1a;
    --text-color: #666666;
    --text-color-light: #999999;
    --body-color: #ffffff;
    --container-color: #ffffff;
    --border-color: #e0e0e0;
    --shadow-color: rgba(0, 0, 0, 0.1);
    --overlay-color: rgba(0, 0, 0, 0.4);
    
    /* Typography */
    --biggest-font-size: 2.5rem;
    --h1-font-size: 2.25rem;
    --h2-font-size: 1.5rem;
    --h3-font-size: 1.25rem;
    --normal-font-size: 0.938rem;
    --small-font-size: 0.813rem;
    --smaller-font-size: 0.75rem;
    
    /* Font Weight */
    --font-light: 300;
    --font-regular: 400;
    --font-medium: 500;
    --font-semi-bold: 600;
    --font-bold: 700;
    
    /* Margins */
    --mb-0-25: 0.25rem;
    --mb-0-5: 0.5rem;
    --mb-0-75: 0.75rem;
    --mb-1: 1rem;
    --mb-1-25: 1.25rem;
    --mb-1-5: 1.5rem;
    --mb-2: 2rem;
    --mb-2-5: 2.5rem;
    --mb-3: 3rem;
    
    /* Z-index */
    --z-tooltip: 10;
    --z-fixed: 100;
    --z-modal: 1000;
    
    /* Transitions */
    --transition: all 0.3s ease;
    --transition-fast: all 0.2s ease;
}

/* Dark Theme Variables */
body.dark-theme {
    --title-color: #ffffff;
    --text-color: #cccccc;
    --text-color-light: #999999;
    --body-color: #1a1a1a;
    --container-color: #2a2a2a;
    --border-color: #404040;
    --shadow-color: rgba(0, 0, 0, 0.3);
}

/* ===== RESPONSIVE TYPOGRAPHY ===== */
@media screen and (min-width: 968px) {
    :root {
        --biggest-font-size: 3rem;
        --h1-font-size: 2.75rem;
        --h2-font-size: 1.75rem;
        --h3-font-size: 1.5rem;
        --normal-font-size: 1rem;
        --small-font-size: 0.875rem;
        --smaller-font-size: 0.813rem;
    }
}

/* ===== REUSABLE CSS CLASSES ===== */
.container {
    max-width: 1200px;
    margin-left: var(--mb-1-5);
    margin-right: var(--mb-1-5);
}

.grid {
    display: grid;
}

.section {
    padding: 4.5rem 0 2rem;
}

.section__title {
    font-size: var(--h2-font-size);
    color: var(--title-color);
    text-align: center;
    margin-bottom: var(--mb-0-75);
}

.section__subtitle {
    display: block;
    font-size: var(--normal-font-size);
    color: var(--text-color);
    text-align: center;
    margin-bottom: var(--mb-3);
}

.btn {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-color-alt));
    color: #ffffff;
    padding: 0.875rem 2rem;
    border-radius: 2rem;
    font-weight: var(--font-medium);
    transition: var(--transition);
    box-shadow: 0 4px 12px rgba(0, 170, 255, 0.3);
    border: none;
    cursor: pointer;
    text-align: center;
}

.btn:hover {
    background: linear-gradient(135deg, var(--primary-color-alt), var(--primary-color));
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 170, 255, 0.4);
}

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

/* ===== HEADER & NAVIGATION ===== */
.header {
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: var(--z-fixed);
    background-color: var(--body-color);
    box-shadow: 0 2px 16px var(--shadow-color);
    transition: var(--transition);
}

.nav {
    height: var(--header-height);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav__logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: var(--font-semi-bold);
    color: var(--title-color);
}

.nav__logo-img {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
}

.nav__menu {
    position: fixed;
    top: var(--header-height);
    right: -100%;
    width: 70%;
    max-width: 300px; /* Added max-width for better mobile experience */
    height: calc(100vh - var(--header-height));
    background-color: var(--body-color);
    box-shadow: -2px 0 16px var(--shadow-color);
    padding: 2rem;
    transition: var(--transition);
    z-index: var(--z-fixed); /* Ensure menu is above other content */
}

.nav__list {
    display: flex;
    flex-direction: column;
    row-gap: 1.5rem;
}

.nav__link {
    color: var(--text-color);
    font-weight: var(--font-medium);
    transition: var(--transition);
    position: relative;
}

.nav__link:hover,
.nav__link.active-link {
    color: var(--primary-color);
}

.nav__link.active-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--primary-color);
    border-radius: 1px;
}

.nav__close {
    position: absolute;
    top: 0.75rem;
    right: 1rem;
    font-size: 1.5rem;
    color: var(--title-color);
    cursor: pointer;
}

.nav__toggle {
    font-size: 1.25rem;
    color: var(--title-color);
    cursor: pointer;
    transition: var(--transition);
    order: 2; /* Ensure toggle is after theme button */
}

.nav__theme {
    font-size: 1.25rem;
    color: var(--title-color);
    cursor: pointer;
    transition: var(--transition);
    margin-left: auto; /* Push theme button to the right */
    order: 1; /* Ensure theme button is before toggle */
}

.nav__toggle:hover,
.nav__theme:hover {
    color: var(--primary-color);
}

/* Show menu */
.show-menu {
    right: 0;
}

/* ===== HERO SECTION ===== */
.hero {
    position: relative;
    height: 100vh;
    overflow: hidden;
}

.hero__container {
    position: relative;
    height: 100%;
}

.hero__slider {
    position: relative;
    height: 100%;
}

.hero__slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.hero__slide.active {
    opacity: 1;
}

.hero__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero__content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #ffffff;
    z-index: 2;
    max-width: 600px;
    padding: 0 1rem;
}

.hero__slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--overlay-color);
    z-index: 1;
}

.hero__title {
    font-size: var(--biggest-font-size);
    font-weight: var(--font-bold);
    margin-bottom: var(--mb-1);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    animation: fadeInUp 1s ease-out;
}

.hero__description {
    font-size: var(--h3-font-size);
    margin-bottom: var(--mb-2);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    animation: fadeInUp 1s ease-out 0.2s both;
}

.hero__button {
    animation: fadeInUp 1s ease-out 0.4s both;
}

.hero__nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 3;
}

.hero__nav-btn {
    position: absolute;
    background: rgba(255, 255, 255, 0.2);
    color: #ffffff;
    border: 2px solid rgba(255, 255, 255, 0.3);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    transition: var(--transition);
    backdrop-filter: blur(10px);
}

.hero__nav-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
    transform: scale(1.1);
}

.hero__prev {
    left: 2rem;
    visibility: hidden;
}

.hero__next {
    right: 2rem;
}

.hero__indicators {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.5rem;
    z-index: 3;
}

.hero__indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    border: none;
    cursor: pointer;
    transition: var(--transition);
}

.hero__indicator.active,
.hero__indicator:hover {
    background: #ffffff;
    transform: scale(1.2);
}

/* ===== ABOUT SECTION ===== */
.about__container {
    gap: 2.5rem;
    align-items: center;
}

.about__data {
    text-align: center;
}

.about__description {
    margin-bottom: var(--mb-2);
    color: var(--text-color);
}

.about__features {
    display: grid;
    gap: 1.5rem;
    margin-top: var(--mb-2-5);
}

.about__feature {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--container-color);
    border-radius: 1rem;
    box-shadow: 0 4px 16px var(--shadow-color);
    transition: var(--transition);
}

.about__feature:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px var(--shadow-color);
}

.about__feature-icon {
    font-size: 2rem;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    flex-shrink: 0;
}

.about__feature-title {
    font-size: var(--h3-font-size);
    margin-bottom: var(--mb-0-25);
}

.about__feature-description {
    color: var(--text-color);
    font-size: var(--small-font-size);
}

.about__img {
    justify-self: center;
}

.about__img img {
    width: 100%;
    max-width: 400px;
    border-radius: 1rem;
    box-shadow: 0 8px 24px var(--shadow-color);
}

/* ===== DESTINATIONS SECTION ===== */
.destinations {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
}

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

.destination__card {
    position: relative;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 8px 24px var(--shadow-color);
    transition: var(--transition);
}

.destination__card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 32px var(--shadow-color);
}

.destination__img-container {
    position: relative;
    height: 250px;
    overflow: hidden;
}

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

.destination__card:hover .destination__img {
    transform: scale(1.1);
}

.destination__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.8));
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1.5rem;
    color: #ffffff;
    opacity: 0;
    transition: var(--transition);
}

.destination__card:hover .destination__overlay {
    opacity: 1;
}

.destination__title {
    font-size: var(--h3-font-size);
    margin-bottom: var(--mb-0-25);
}

.destination__location {
    font-size: var(--small-font-size);
    margin-bottom: var(--mb-1);
    opacity: 0.9;
}

.destination__button {
    align-self: flex-start;
    padding: 0.5rem 1rem;
    font-size: var(--small-font-size);
}

/* ===== SERVICES SECTION ===== */
.services__grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: var(--mb-3);
}

.service__card {
    text-align: center;
    padding: 2rem 1.5rem;
    background: var(--container-color);
    border-radius: 1rem;
    box-shadow: 0 4px 16px var(--shadow-color);
    transition: var(--transition);
    border: 1px solid var(--border-color);
}

.service__card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 28px var(--shadow-color);
    border-color: var(--primary-color);
}

.service__icon {
    font-size: 3rem;
    margin-bottom: var(--mb-1);
    display: block;
}

.service__title {
    font-size: var(--h3-font-size);
    margin-bottom: var(--mb-1);
    color: var(--title-color);
}

.service__description {
    color: var(--text-color);
    line-height: 1.6;
}

/* ===== TESTIMONIALS SECTION ===== */
.testimonials {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: #ffffff;
}

.testimonials .section__title,
.testimonials .section__subtitle {
    color: #ffffff;
}

.testimonials__container {
    position: relative;
}

.testimonials__slider {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    overflow: hidden;
}

.testimonial__card {
    opacity: 0;
    transform: translateX(100%);
    transition: all 0.5s ease;
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
}

.testimonial__card.active {
    opacity: 1;
    transform: translateX(0);
    position: relative;
}

.testimonial__content {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 1rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.testimonial__text {
    font-size: var(--normal-font-size);
    line-height: 1.8;
    margin-bottom: var(--mb-2);
    font-style: italic;
}

.testimonial__author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.testimonial__avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid rgba(255, 255, 255, 0.3);
}

.testimonial__name {
    font-size: var(--h3-font-size);
    margin-bottom: var(--mb-0-25);
}

.testimonial__role {
    font-size: var(--small-font-size);
    opacity: 0.8;
}

.testimonials__nav {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: var(--mb-2);
}

.testimonial__nav-btn {
    background: rgba(255, 255, 255, 0.2);
    color: #ffffff;
    border: 2px solid rgba(255, 255, 255, 0.3);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    font-size: 1.25rem;
    cursor: pointer;
    transition: var(--transition);
    backdrop-filter: blur(10px);
}

.testimonial__nav-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
    transform: scale(1.1);
}

.testimonials__indicators {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: var(--mb-1-5);
}

.testimonial__indicator {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    border: none;
    cursor: pointer;
    transition: var(--transition);
}

.testimonial__indicator.active,
.testimonial__indicator:hover {
    background: #ffffff;
    transform: scale(1.3);
}

/* ===== CONTACT SECTION ===== */
.contact__container {
    gap: 3rem;
}

.contact__data {
    text-align: center;
}

.contact__description {
    margin-bottom: var(--mb-2-5);
    color: var(--text-color);
}

.contact__info {
    display: grid;
    gap: 1.5rem;
    margin-bottom: var(--mb-2-5);
}

.contact__info-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--container-color);
    border-radius: 1rem;
    box-shadow: 0 4px 16px var(--shadow-color);
    transition: var(--transition);
}

.contact__info-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px var(--shadow-color);
}

.contact__info-icon {
    font-size: 1.5rem;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    flex-shrink: 0;
}

.contact__info-title {
    font-size: var(--h3-font-size);
    margin-bottom: var(--mb-0-25);
}

.contact__info-text {
    color: var(--text-color);
}

.contact__map {
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 8px 24px var(--shadow-color);
}

.contact__form {
    background: var(--container-color);
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 8px 24px var(--shadow-color);
}

.contact__form-title {
    text-align: center;
    margin-bottom: var(--mb-2);
    color: var(--title-color);
}

.contact__form-group {
    position: relative;
    margin-bottom: var(--mb-2);
}

.contact__form-input {
    width: 100%;
    padding: 1rem;
    border: 2px solid var(--border-color);
    border-radius: 0.5rem;
    background: transparent;
    color: var(--text-color);
    font-size: var(--normal-font-size);
    transition: var(--transition);
}

.contact__form-input:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(0, 170, 255, 0.1);
}

.contact__form-input:focus + .contact__form-label,
.contact__form-input:not(:placeholder-shown) + .contact__form-label {
    top: -0.5rem;
    left: 0.75rem;
    font-size: var(--small-font-size);
    color: var(--primary-color);
    background: var(--container-color);
    padding: 0 0.5rem;
}

.contact__form-label {
    position: absolute;
    top: 1rem;
    left: 1rem;
    color: var(--text-color-light);
    font-size: var(--normal-font-size);
    transition: var(--transition);
    pointer-events: none;
}

.contact__form-textarea {
    min-height: 120px;
    resize: vertical;
}

.contact__form-error {
    display: block;
    color: #e74c3c;
    font-size: var(--small-font-size);
    margin-top: var(--mb-0-25);
    opacity: 0;
    transition: var(--transition);
}

.contact__form-error.show {
    opacity: 1;
}

.contact__form-button {
    width: 100%;
    margin-top: var(--mb-1);
}

.contact__form-success {
    background: #d4edda;
    color: #155724;
    padding: 1rem;
    border-radius: 0.5rem;
    margin-top: var(--mb-1);
    text-align: center;
    opacity: 0;
    transform: translateY(-10px);
    transition: var(--transition);
}

.contact__form-success.show {
    opacity: 1;
    transform: translateY(0);
}

/* ===== FOOTER ===== */
.footer {
    background: var(--title-color);
    color: #ffffff;
    padding-top: 3rem;
}

.footer__container {
    gap: 2rem;
}

.footer__content {
    display: grid;
    gap: 2rem;
}

.footer__logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: var(--font-semi-bold);
    margin-bottom: var(--mb-1);
}

.footer__logo-img {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
}

.footer__description {
    margin-bottom: var(--mb-2);
    opacity: 0.8;
    line-height: 1.6;
}

.footer__title {
    font-size: var(--h3-font-size);
    margin-bottom: var(--mb-1);
}

.footer__links {
    display: grid;
    gap: 0.5rem;
}

.footer__link {
    color: rgba(255, 255, 255, 0.8);
    transition: var(--transition);
}

.footer__link:hover {
    color: var(--primary-color);
    transform: translateX(4px);
}

.footer__newsletter-description {
    margin-bottom: var(--mb-1);
    opacity: 0.8;
}

.footer__newsletter {
    display: flex;
    gap: 0.5rem;
    margin-bottom: var(--mb-2);
}

.footer__newsletter-input {
    flex: 1;
    padding: 0.75rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    font-size: var(--small-font-size);
}

.footer__newsletter-input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.footer__newsletter-button {
    padding: 0.75rem 1rem;
    background: var(--primary-color);
    color: #ffffff;
    border: none;
    border-radius: 0.5rem;
    font-size: var(--small-font-size);
    cursor: pointer;
    transition: var(--transition);
}

.footer__newsletter-button:hover {
    background: var(--primary-color-alt);
}

.footer__social {
    display: flex;
    gap: 1rem;
}

.footer__social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: var(--transition);
}

.footer__social-link:hover {
    background: var(--primary-color);
    transform: translateY(-2px);
}

.footer__social-icon {
    font-size: 1.25rem;
}

.footer__copy {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: var(--mb-2);
    text-align: center;
    opacity: 0.8;
    font-size: var(--small-font-size);
}

.footer__copy-link {
    color: var(--primary-color);
    transition: var(--transition);
}

.footer__copy-link:hover {
    text-decoration: underline;
}

/* ===== SCROLL UP ===== */
.scrollup {
    position: fixed;
    right: 1rem;
    bottom: -20%;
    background: var(--primary-color);
    color: #ffffff;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    z-index: var(--z-tooltip);
    transition: var(--transition);
    box-shadow: 0 4px 12px rgba(0, 170, 255, 0.3);
}

.scrollup:hover {
    background: var(--primary-color-alt);
    transform: translateY(-4px);
    box-shadow: 0 6px 20px rgba(0, 170, 255, 0.4);
}

/* Show scroll up */
.show-scroll {
    bottom: 3rem;
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Scroll animations */
.scroll-animation {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.scroll-animation.animate {
    opacity: 1;
    transform: translateY(0);
}

/* ===== BREAKPOINTS ===== */

/* For small devices */
@media screen and (max-width: 350px) {
    .container {
        margin-left: var(--mb-1);
        margin-right: var(--mb-1);
    }
    
    .hero__title {
        font-size: 2rem;
    }
    
    .hero__nav-btn {
        width: 40px;
        height: 40px;
        font-size: 1.25rem;
    }
    
    .hero__prev {
        left: 1rem;
    }
    
    .hero__next {
        right: 1rem;
    }
}

/* For medium devices */
@media screen and (min-width: 568px) {
    .about__container,
    .contact__container {
        grid-template-columns: repeat(2, 1fr);
        align-items: center;
    }
    
    .about__data {
        text-align: initial;
    }
    
    .about__features {
        grid-template-columns: 1fr;
    }
    
    .contact__data {
        text-align: initial;
    }
    
    .footer__content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (min-width: 641px) {
    .destinations__grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .services__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* For large devices */
@media screen and (min-width: 768px) {
    .container {
        margin-left: auto;
        margin-right: auto;
    }
    
    .section {
        padding: 6rem 0 4rem;
    }
    
    .hero__content {
        max-width: 700px;
    }
    
    .about__features {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .contact__info {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .footer__content {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media screen and (min-width: 1200px) {
    .hero__nav-btn {
        width: 60px;
        height: 60px;
        font-size: 1.75rem;
    }
    
    .hero__prev {
        left: 3rem;
        visibility: hidden;
    }
    
    .hero__next {
        right: 3rem;
    }
}

