/* ===== VARIABLES CSS ===== */
:root {
    /* Colors */
    --primary-color: #2563eb;
    --primary-alt: #1d4ed8;
    --secondary-color: #10b981;
    --accent-color: #f59e0b;
    --text-color: #1f2937;
    --text-light: #6b7280;
    --white-color: #ffffff;
    --light-color: #f8fafc;
    --gray-light: #f1f5f9;
    --gray-medium: #e2e8f0;
    --dark-color: #0f172a;

    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #2563eb 0%, #10b981 100%);
    --gradient-secondary: linear-gradient(135deg, #10b981 0%, #f59e0b 100%);
    --gradient-text: linear-gradient(135deg, #2563eb, #10b981);

    /* Typography */
    --body-font: 'Inter', sans-serif;
    --h1-font-size: 3rem;
    --h2-font-size: 2.25rem;
    --h3-font-size: 1.5rem;
    --normal-font-size: 1rem;
    --small-font-size: 0.875rem;
    --smaller-font-size: 0.75rem;
    --font-medium: 500;
    --font-semibold: 600;
    --font-bold: 700;

    /* Spacing */
    --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;

    /* Border radius */
    --border-radius: 0.75rem;
    --border-radius-lg: 1rem;
    --border-radius-xl: 1.5rem;

    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
}

/* Responsive typography */
@media screen and (max-width: 768px) {
    :root {
        --h1-font-size: 2.25rem;
        --h2-font-size: 1.875rem;
        --h3-font-size: 1.25rem;
    }
}

/* ===== BASE ===== */
* {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--body-font);
    font-size: var(--normal-font-size);
    background-color: var(--white-color);
    color: var(--text-color);
    line-height: 1.6;
}

h1, h2, h3, h4 {
    color: var(--text-color);
    font-weight: var(--font-semibold);
    line-height: 1.2;
}

ul {
    list-style: none;
}

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

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

/* ===== REUSABLE CSS CLASSES ===== */
.section {
    padding: 5rem 0 2rem;
}

.section__title {
    font-size: var(--h2-font-size);
    margin-bottom: var(--mb-1);
    text-align: center;
}

.section__subtitle {
    display: block;
    font-size: var(--normal-font-size);
    color: var(--text-light);
    text-align: center;
    margin-bottom: var(--mb-3);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.container {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 1rem;
    padding-right: 1rem;
}

.grid {
    display: grid;
}

.gradient-text {
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ===== BUTTONS ===== */
.button {
    display: inline-flex;
    align-items: center;
    gap: var(--mb-0-5);
    background: var(--gradient-primary);
    color: var(--white-color);
    padding: 0.875rem 2rem;
    border-radius: var(--border-radius);
    font-weight: var(--font-medium);
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: var(--normal-font-size);
    text-align: center;
}

.button:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.button--primary {
    background: var(--gradient-primary);
}

.button--secondary {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.button--secondary:hover {
    background: var(--primary-color);
    color: var(--white-color);
}

.button--large {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
}

.button--white {
    background: var(--white-color);
    color: var(--primary-color);
    border: 2px solid var(--white-color);
}

.button--white:hover {
    background: transparent;
    color: var(--white-color);
    border-color: var(--white-color);
}

/* ===== HEADER & NAV ===== */
.header {
    width: 100%;
    position: fixed;
    background-color: rgba(255, 255, 255, 0.95);
    top: 0;
    left: 0;
    z-index: var(--z-fixed);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--gray-medium);
    transition: all 0.3s ease;
}

.nav {
    height: 4rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav__container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.nav__logo {
    display: flex;
    align-items: center;
    gap: var(--mb-0-5);
    font-weight: var(--font-bold);
    font-size: 1.25rem;
    color: var(--primary-color);
}

.nav__logo i {
    font-size: 1.5rem;
}

.nav__menu {
    display: flex;
    align-items: center;
}

.nav__list {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav__link {
    color: var(--text-color);
    font-weight: var(--font-medium);
    font-size: var(--normal-font-size);
    transition: color 0.3s ease;
    position: relative;
}

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

.nav__link.active::after,
.nav__link:hover::after {
    content: '';
    position: absolute;
    bottom: -0.5rem;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--gradient-primary);
    border-radius: 1px;
}

.nav__toggle {
    display: none;
    cursor: pointer;
    font-size: 1.25rem;
    color: var(--text-color);
}

/* Header scroll */
.scroll-header {
    box-shadow: var(--shadow-md);
    background-color: rgba(255, 255, 255, 0.98);
}

/* ===== HOME ===== */
.home {
    padding-top: 4rem;
    background: var(--white-color);
    position: relative;
    overflow: hidden;
}

.home__hero {
    position: relative;
    height: 70vh;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white-color);
}

.home__hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

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

.home__hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.3) 100%);
    z-index: 2;
}

.home__hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    width: 100%;
    padding-top: 2rem;
}

.home__title {
    font-size: var(--h1-font-size);
    font-weight: var(--font-bold);
    margin-bottom: var(--mb-1);
    line-height: 1.2;
    color: var(--white-color);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.home__subtitle {
    font-size: 1.25rem;
    margin-bottom: var(--mb-2-5);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
}

.home__intro {
    padding: 3rem 0;
    background: var(--white-color);
}

.home__stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    background: var(--white-color);
    border-radius: var(--border-radius-xl);
    padding: 2rem;
    box-shadow: var(--shadow-lg);
    margin-top: -3rem;
    position: relative;
    z-index: 4;
}

.stat {
    text-align: center;
}

.stat__number {
    font-size: 2rem;
    font-weight: var(--font-bold);
    color: var(--primary-color);
    margin-bottom: var(--mb-0-25);
}

.stat__text {
    color: var(--text-light);
    font-size: var(--small-font-size);
}

/* ===== ABOUT ===== */
.about {
    background: var(--light-color);
}

.about__container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    margin-bottom: 4rem;
}

.about__image {
    position: relative;
    overflow: hidden;
    border-radius: var(--border-radius-xl);
    box-shadow: var(--shadow-lg);
}

.about__img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.about__image:hover .about__img {
    transform: scale(1.05);
}

.about__content {
    padding-left: 2rem;
}

.about__description {
    color: var(--text-light);
    margin-bottom: var(--mb-1-5);
    line-height: 1.7;
}

.values__container {
    margin-top: 4rem;
}

.values__title {
    font-size: var(--h3-font-size);
    text-align: center;
    margin-bottom: var(--mb-2-5);
    color: var(--text-color);
}

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

.value__card {
    background: var(--white-color);
    border-radius: var(--border-radius-lg);
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid var(--gray-medium);
}

.value__card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.value__icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--mb-1);
    font-size: 1.5rem;
    color: var(--white-color);
}

.value__card h4 {
    font-size: var(--h3-font-size);
    margin-bottom: var(--mb-0-75);
    color: var(--text-color);
}

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

/* ===== SERVICES ===== */
.services {
    background: var(--white-color);
}

.services__container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.service__card {
    background: var(--white-color);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid var(--gray-medium);
    position: relative;
    box-shadow: var(--shadow);
}

.service__card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.service__card.featured {
    border: 2px solid var(--accent-color);
}

.service__badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--accent-color);
    color: var(--white-color);
    padding: 0.25rem 0.75rem;
    border-radius: var(--border-radius);
    font-size: var(--smaller-font-size);
    font-weight: var(--font-medium);
    z-index: 2;
}

.service__image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

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

.service__card:hover .service__image img {
    transform: scale(1.05);
}

.service__content {
    padding: 2rem;
}

.service__icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--mb-1);
    font-size: 1.5rem;
    color: var(--white-color);
}

.service__card.featured .service__icon {
    background: var(--gradient-secondary);
}

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

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

/* ===== IBIZA ===== */
.ibiza {
    background: var(--light-color);
    position: relative;
    overflow: hidden;
}

.ibiza__hero {
    position: relative;
    height: 60vh;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white-color);
    margin-bottom: 4rem;
}

.ibiza__hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

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

.ibiza__hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.8) 0%, rgba(16, 185, 129, 0.6) 100%);
    z-index: 2;
}

.ibiza__hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    width: 100%;
}

.ibiza__title {
    font-size: var(--h2-font-size);
    font-weight: var(--font-bold);
    margin-bottom: var(--mb-1);
    color: var(--white-color);
}

.ibiza__subtitle {
    font-size: 1.1rem;
    margin-bottom: var(--mb-1-5);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.95);
}

.ibiza__tagline {
    font-size: 1.1rem;
    margin-bottom: var(--mb-2-5);
    padding: 1rem 2rem;
    background: rgba(255, 255, 255, 0.15);
    border-radius: var(--border-radius);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: inline-block;
}

.ibiza__features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    padding: 2rem 0;
}

.ibiza__feature {
    background: var(--white-color);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transition: all 0.3s ease;
}

.ibiza__feature:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.ibiza__feature-image {
    height: 200px;
    overflow: hidden;
}

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

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

.ibiza__feature-content {
    padding: 1.5rem;
    text-align: center;
}

.ibiza__feature-content i {
    width: 50px;
    height: 50px;
    background: var(--gradient-secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white-color);
    font-size: 1.25rem;
    margin: 0 auto var(--mb-1);
}

.ibiza__feature-content h4 {
    font-size: var(--h3-font-size);
    margin-bottom: var(--mb-0-5);
    color: var(--text-color);
}

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

/* ===== CONTACT ===== */
.contact {
    background: var(--white-color);
}

.contact__container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.contact__info {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.contact__card {
    background: var(--light-color);
    border-radius: var(--border-radius-lg);
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid var(--gray-medium);
}

.contact__card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    background: var(--white-color);
}

.contact__card i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: var(--mb-1);
}

.contact__card h3 {
    font-size: var(--h3-font-size);
    margin-bottom: var(--mb-0-5);
    color: var(--text-color);
}

.contact__card p {
    color: var(--text-light);
    font-weight: var(--font-medium);
}

.contact__form {
    background: var(--light-color);
    border-radius: var(--border-radius-lg);
    padding: 2rem;
    border: 1px solid var(--gray-medium);
}

.form__group {
    margin-bottom: var(--mb-1-5);
}

.form__input {
    width: 100%;
    background: var(--white-color);
    border: 1px solid var(--gray-medium);
    border-radius: var(--border-radius);
    padding: 0.875rem 1rem;
    font-size: var(--normal-font-size);
    color: var(--text-color);
    transition: all 0.3s ease;
    font-family: var(--body-font);
}

.form__input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

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

.form__button {
    width: 100%;
    justify-content: center;
}

/* ===== FOOTER ===== */
.footer {
    background: var(--dark-color);
    color: var(--white-color);
    padding: 3rem 0 1rem;
}

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

.footer__data {
    margin-bottom: var(--mb-2);
}

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

.footer__logo i {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.footer__description {
    color: #94a3b8;
    margin-bottom: var(--mb-1-5);
    line-height: 1.6;
}

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

.footer__social-link {
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white-color);
    transition: all 0.3s ease;
}

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

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

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

.footer__list {
    list-style: none;
}

.footer__list li {
    margin-bottom: var(--mb-0-5);
}

.footer__link {
    color: #94a3b8;
    transition: color 0.3s ease;
}

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

.footer__info {
    color: #94a3b8;
    font-size: var(--small-font-size);
}

.footer__bottom {
    border-top: 1px solid #334155;
    padding-top: 1rem;
    text-align: center;
}

.footer__copy {
    color: #94a3b8;
    font-size: var(--small-font-size);
}

/* ===== SCROLL UP ===== */
.scrollup {
    position: fixed;
    right: 1rem;
    bottom: -20%;
    background: var(--primary-color);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white-color);
    font-size: 1.25rem;
    transition: all 0.3s ease;
    z-index: var(--z-tooltip);
    box-shadow: var(--shadow-lg);
}

.scrollup:hover {
    background: var(--primary-alt);
    transform: translateY(-3px);
}

.show-scroll {
    bottom: 2rem;
}

/* ===== ANIMATIONS ===== */
@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

@keyframes wave {
    0%, 100% {
        transform: scaleX(1);
    }
    50% {
        transform: scaleX(1.1);
    }
}

@keyframes sway {
    0%, 100% {
        transform: rotate(-5deg);
    }
    50% {
        transform: rotate(5deg);
    }
}

/* ===== BREAKPOINTS ===== */
/* Large devices */
@media screen and (max-width: 992px) {
    .home__hero {
        height: 60vh;
        min-height: 400px;
    }

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

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

    .about__content {
        padding-left: 0;
        text-align: center;
        order: 2;
    }

    .about__image {
        order: 1;
    }

    .about__img {
        height: 300px;
    }

    .services__container {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .ibiza__hero {
        height: 50vh;
        min-height: 350px;
    }

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

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

    .contact__info {
        grid-template-columns: repeat(2, 1fr);
        order: 2;
    }

    .contact__form {
        order: 1;
    }

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

}

/* Medium devices */
@media screen and (max-width: 768px) {
    .nav__menu {
        position: fixed;
        left: -100%;
        top: 4rem;
        background-color: var(--white-color);
        width: 100%;
        border-radius: 0 0 var(--border-radius) var(--border-radius);
        box-shadow: var(--shadow-lg);
        padding: 1.5rem 0;
        transition: left 0.3s ease;
    }

    .nav__list {
        flex-direction: column;
        gap: 1rem;
        padding: 0 1rem;
    }

    .nav__link {
        display: block;
        padding: 0.75rem;
        border-radius: var(--border-radius);
        transition: all 0.3s ease;
    }

    .nav__link:hover {
        background-color: var(--light-color);
    }

    .nav__toggle {
        display: block;
    }

    .show-menu {
        left: 0;
    }

    .home {
        padding-top: 6rem;
    }

    .home__hero {
        height: 60vh;
        min-height: 400px;
    }

    .home__hero-content {
        padding-top: 3rem;
    }

    .home__title {
        font-size: 2rem;
        margin-bottom: var(--mb-1);
    }

    .home__subtitle {
        font-size: 1rem;
        margin-bottom: var(--mb-2);
        padding: 0 1rem;
    }

    .home__stats {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 1.5rem;
        margin-top: -2rem;
    }

    .stat {
        display: flex;
        align-items: center;
        justify-content: space-between;
        text-align: left;
        padding: 1rem;
        background: var(--light-color);
        border-radius: var(--border-radius);
    }

    .about__img {
        height: 250px;
    }

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

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

    .service__image {
        height: 180px;
    }

    .service__content {
        padding: 1.5rem;
    }

    .ibiza__hero {
        height: 40vh;
        min-height: 300px;
        margin-bottom: 2rem;
    }

    .ibiza__title {
        font-size: 1.75rem;
    }

    .ibiza__subtitle {
        font-size: 1rem;
    }

    .ibiza__feature-image {
        height: 150px;
    }

    .ibiza__feature-content {
        padding: 1rem;
    }

    .contact__info {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

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

/* Small devices */
@media screen and (max-width: 576px) {
    .container {
        padding-left: 0.75rem;
        padding-right: 0.75rem;
    }

    .section {
        padding: 3rem 0 1rem;
    }

    .home {
        padding-top: 5rem;
    }

    .home__hero {
        height: 50vh;
        min-height: 350px;
    }

    .home__hero-content {
        padding-top: 2rem;
    }

    .home__title {
        font-size: 1.75rem;
        margin-bottom: var(--mb-0-75);
    }

    .home__subtitle {
        font-size: 0.95rem;
        margin-bottom: var(--mb-1-5);
        padding: 0 1rem;
    }

    .button {
        padding: 0.75rem 1.5rem;
        font-size: var(--small-font-size);
    }

    .button--large {
        padding: 0.875rem 2rem;
        font-size: var(--normal-font-size);
    }

    .home__stats {
        padding: 1rem;
        border-radius: var(--border-radius);
        margin-top: -1.5rem;
    }

    .stat {
        padding: 0.75rem;
        flex-direction: column;
        text-align: center;
        gap: 0.25rem;
    }

    .stat__number {
        font-size: 1.5rem;
    }

    .about__img {
        height: 200px;
    }

    .value__card,
    .contact__card {
        padding: 1.5rem;
    }

    .value__icon {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }

    .service__card {
        margin-bottom: 1rem;
    }

    .service__image {
        height: 160px;
    }

    .service__content {
        padding: 1.25rem;
    }

    .service__icon {
        width: 40px;
        height: 40px;
        font-size: 1.25rem;
    }

    .service__title {
        font-size: 1.125rem;
    }

    .ibiza__hero {
        height: 45vh;
        min-height: 300px;
        margin-bottom: 1.5rem;
    }

    .ibiza__title {
        font-size: 1.5rem;
        margin-bottom: var(--mb-0-75);
    }

    .ibiza__subtitle {
        font-size: 0.95rem;
        margin-bottom: var(--mb-1);
        padding: 0 1rem;
    }

    .ibiza__tagline {
        font-size: 0.95rem;
        padding: 0.75rem 1rem;
        margin-bottom: var(--mb-1-5);
    }

    .ibiza__feature-image {
        height: 120px;
    }

    .ibiza__feature-content {
        padding: 0.875rem;
    }

    .ibiza__feature-content i {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .ibiza__feature-content h4 {
        font-size: 1rem;
    }

    .ibiza__feature-content p {
        font-size: var(--small-font-size);
    }

    .contact__form {
        padding: 1.5rem;
    }

    .form__input {
        padding: 0.75rem;
    }

    .form__button {
        padding: 0.875rem;
    }

    .footer__container {
        padding: 0 0.5rem;
    }

    .footer__data {
        text-align: center;
    }

    .footer__social {
        justify-content: center;
    }
}

/* Extra small devices */
@media screen and (max-width: 400px) {
    .home {
        padding-top: 4.5rem;
    }

    .home__hero {
        height: 45vh;
        min-height: 320px;
    }

    .home__hero-content {
        padding-top: 1.5rem;
    }

    .home__title {
        font-size: 1.5rem;
    }

    .home__subtitle {
        font-size: 0.875rem;
        padding: 0 0.5rem;
    }

    .button--large {
        padding: 0.75rem 1.5rem;
        font-size: var(--small-font-size);
    }

    .home__stats {
        padding: 0.75rem;
    }

    .stat {
        padding: 0.5rem;
    }

    .stat__number {
        font-size: 1.25rem;
    }

    .about__img {
        height: 180px;
    }

    .service__image {
        height: 140px;
    }

    .service__content {
        padding: 1rem;
    }

    .ibiza__hero {
        height: 40vh;
        min-height: 280px;
    }

    .ibiza__title {
        font-size: 1.25rem;
    }

    .ibiza__subtitle {
        font-size: 0.8rem;
        padding: 0;
    }

    .ibiza__tagline {
        font-size: 0.875rem;
        padding: 0.5rem 0.75rem;
    }

    .ibiza__feature-image {
        height: 100px;
    }

    .ibiza__feature-content {
        padding: 0.75rem;
    }

    .value__card,
    .contact__card,
    .contact__form {
        padding: 1.25rem;
    }
}