/* =============================================
   JO.QUS TRAVEL WEBSITE - STYLES
   ============================================= */

/* ----- CSS Custom Properties ----- */
:root {
    --color-primary: #0B2E59;
    --color-gold: #D4AF37;
    --color-white: #FFFFFF;
    --color-light-bg: #F8F9FA;
    --color-medium-bg: #F1F3F5;
    --color-body-text: #43474F;
    --color-dark-text: #1A1A1A;
    --color-light-text: #E7E8E9;
    --color-border: rgba(116, 119, 128, 0.1);
    --color-border-dark: rgba(116, 119, 128, 0.2);
    --color-placeholder: #6B7280;
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Montserrat', sans-serif;
    --radius-card: 8px;
    --radius-btn: 2px;
    --radius-badge: 12px;
}
[dir="rtl"] {
    --color-primary: #0B2E59;
    --color-gold: #D4AF37;
    --color-white: #FFFFFF;
    --color-light-bg: #F8F9FA;
    --color-medium-bg: #F1F3F5;
    --color-body-text: #43474F;
    --color-dark-text: #1A1A1A;
    --color-light-text: #E7E8E9;
    --color-border: rgba(116, 119, 128, 0.1);
    --color-border-dark: rgba(116, 119, 128, 0.2);
    --color-placeholder: #6B7280;
    --font-heading: 'Noto Sans Arabic', 'Playfair Display', serif;
    --font-body: 'Noto Sans Arabic', 'Montserrat', sans-serif;
    --radius-card: 8px;
    --radius-btn: 2px;
    --radius-badge: 12px;
}

/* ----- Reset & Base ----- */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 74px;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--color-body-text);
    background-color: var(--color-white);
    overflow-x: hidden;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

ul {
    list-style: none;
}

/* ----- Section Label (reusable) ----- */
.section-label {
    display: block;
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 12px;
    line-height: 1em;
    letter-spacing: 0.1em;
    color: var(--color-gold);
    margin-bottom: 16px;
}

/* ----- Buttons ----- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 12px;
    line-height: 1em;
    letter-spacing: 0.1em;
    border-radius: var(--radius-btn);
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    border: none;
}

.btn--gold {
    background-color: var(--color-gold);
    color: var(--color-primary);
    padding: 20.5px 32px;
}

.btn--gold:hover {
    background-color: #c9a22e;
    color: var(--color-primary);
}

.btn--outline-gold {
    background: transparent;
    border: 1px solid var(--color-gold);
    color: var(--color-gold);
    padding: 16px 32px;
}

.btn--outline-gold:hover {
    background-color: rgba(212, 175, 55, 0.1);
    color: var(--color-gold);
}

/* =============================================
   HEADER
   ============================================= */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 0 40px;
    background: var(--color-primary);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0px 2px 4px -2px rgba(0, 0, 0, 0.1), 0px 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.header__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 8px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

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

.header__logo-img {
    height: 60px;
    width: auto;
    display: block;
}

.header__nav-list {
    display: flex;
    align-items: center;
    gap: 32px;
}

.header__nav-link {
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 12px;
    line-height: 1em;
    letter-spacing: 0.1em;
    color: var(--color-white);
    text-transform: uppercase;
    transition: color 0.3s ease;
}

.header__nav-link:hover {
    color: var(--color-gold);
}

.header__actions {
    display: flex;
    align-items: center;
    gap: 24px;
}

.header__lang {
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 12px;
    line-height: 1em;
    letter-spacing: 0.1em;
    color: var(--color-white);
    cursor: pointer;
    background: none;
    border: none;
    padding: 0;
}

.header__nav-lang-mobile {
    display: none;
}

.header__cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: var(--color-gold);
    color: var(--color-white);
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 12px;
    line-height: 1em;
    letter-spacing: 0.1em;
    padding: 12px 24px;
    border-radius: var(--radius-btn);
    text-transform: uppercase;
    transition: background-color 0.3s ease;
}

.header__cta:hover {
    background-color: #c9a22e;
    color: var(--color-white);
}

.header__menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.header__menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background-color: var(--color-white);
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* =============================================
   HERO SECTION
   ============================================= */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 74px;
    overflow: hidden;
}

.hero__bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
}

.hero__bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.6;
}

.hero__overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, rgba(11, 46, 89, 0.8) 0%, rgba(11, 46, 89, 0) 100%);
    z-index: 1;
}

.hero__content {
    position: relative;
    z-index: 2;
    max-width: 592px;
    padding: 0 24px;
    margin-left: calc((100vw - 1200px) / 2);
}

@media (max-width: 1240px) {
    .hero__content {
        margin-left: 40px;
    }
}

.hero__label {
    display: block;
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 12px;
    line-height: 1em;
    letter-spacing: 0.1em;
    color: var(--color-gold);
    margin-bottom: 16px;
}

.hero__heading {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 64px;
    line-height: 1.1em;
    letter-spacing: -0.02em;
    color: var(--color-white);
    margin-bottom: 24px;
}

.hero__text {
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 18px;
    line-height: 1.625em;
    color: var(--color-light-text);
    margin-bottom: 40px;
}

.hero__buttons {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

/* =============================================
   ABOUT SECTION
   ============================================= */
.about {
    background-color: var(--color-light-bg);
    padding: 80px 40px;
}

.about__container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 88px;
}

.about__image-wrapper {
    position: relative;
    flex-shrink: 0;
    width: 500px;
}

.about__image-blob {
    position: absolute;
    top: 24px;
    left: -24px;
    right: 24px;
    bottom: -24px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: var(--radius-card);
}

.about__image {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 680px;
    object-fit: cover;
    border-radius: var(--radius-card);
    box-shadow: 0px 4px 6px -4px rgba(0, 0, 0, 0.1), 0px 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.about__content {
    flex: 1;
}

.about__heading {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 48px;
    line-height: 1.2em;
    color: var(--color-primary);
    margin-bottom: 24px;
}

.about__text {
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 16px;
    line-height: 1.6em;
    color: var(--color-body-text);
    margin-bottom: 15px;
}

.about__stats {
    display: flex;
    gap: 64px;
    border-top: 1px solid var(--color-border-dark);
    padding-top: 32px;
    margin-top: 32px;
}

.about__stat {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.about__stat-number {
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 32px;
    line-height: 1.3em;
    color: var(--color-primary);
}

.about__stat-label {
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 16px;
    color: var(--color-body-text);
}

/* =============================================
   SERVICES SECTION
   ============================================= */
.services {
    background-color: var(--color-medium-bg);
    padding: 80px 40px;
}

.services__container {
    max-width: 1200px;
    margin: 0 auto;
}

.services__header {
    text-align: center;
    margin-bottom: 64px;
}

.services__header .section-label {
    text-align: center;
}

.services__heading {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 48px;
    line-height: 1.2em;
    color: var(--color-primary);
    margin-bottom: 16px;
}

.services__subtitle {
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 16px;
    line-height: 1.6em;
    color: var(--color-body-text);
}

.services__grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 24px;
}

.services__card {
    background: var(--color-light-bg);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-card);
    padding: 32px 32px 40px;
    text-align: center;
    box-shadow: 0px 10px 40px -10px rgba(11, 46, 89, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.services__card:hover {
    transform: translateY(-4px);
    box-shadow: 0px 15px 50px -10px rgba(11, 46, 89, 0.12);
}

.services__card-icon {
    width: 30px;
    height: 30px;
    margin: 0 auto 16px;
}

.services__card-title {
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 12px;
    line-height: 1em;
    letter-spacing: 0.1em;
    color: var(--color-primary);
    text-transform: uppercase;
}

/* =============================================
   DESTINATIONS SECTION
   ============================================= */
.destinations {
    background-color: var(--color-light-bg);
    padding: 80px 40px;
}

.destinations__container {
    max-width: 1200px;
    margin: 0 auto;
}

.destinations__header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 48px;
}

.destinations__heading {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 48px;
    line-height: 1.2em;
    color: var(--color-primary);
    margin-top: 8px;
}

.destinations__view-all {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 12px;
    line-height: 1em;
    letter-spacing: 0.1em;
    color: var(--color-gold);
    text-transform: uppercase;
}

.destinations__view-all:hover {
    color: #c9a22e;
}

.destinations__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.destinations__card {
    position: relative;
    border-radius: var(--radius-card);
    overflow: hidden;
}

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

.destinations__card--large {
    grid-row: span 1;
    height: 616px;
}

.destinations__card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(0deg, rgba(11, 46, 89, 0.9) 0%, rgba(11, 46, 89, 0.2) 50%, rgba(11, 46, 89, 0) 100%);
}

.destinations__card-overlay--small {
    background: linear-gradient(0deg, rgba(11, 46, 89, 0.8) 0%, rgba(11, 46, 89, 0) 100%);
}

.destinations__card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 32px;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 7.6px;
}

.destinations__card-content--small {
    padding: 24px;
}

.destinations__card-badge {
    display: inline-block;
    background: var(--color-gold);
    color: var(--color-white);
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 10px;
    padding: 4px 12px;
    border-radius: var(--radius-badge);
}

.destinations__card-title {
    font-family: var(--font-heading);
    font-weight: 400;
    font-size: 24px;
    line-height: 1.5em;
    color: var(--color-white);
}

.destinations__card-title--large {
    font-weight: 500;
    font-size: 32px;
    line-height: 1.3em;
}

.destinations__card-desc {
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 16px;
    line-height: 1.6em;
    color: var(--color-light-text);
}

.destinations__grid-right {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 16px;
}

.destinations__card--small {
    height: 300px;
}

/* =============================================
   WELLNESS SECTION
   ============================================= */
.wellness {
    background-color: var(--color-primary);
    padding: 80px 40px;
    position: relative;
    overflow: hidden;
}

.wellness__pattern {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 50%;
    opacity: 0.3;
    background-image: url('../assets/icons/pattern-medical.svg');
    background-repeat: repeat;
    background-size: 60px;
    pointer-events: none;
}

.wellness__container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 88px;
    position: relative;
    z-index: 1;
}

.wellness__content {
    flex: 1;
}

.wellness__heading {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 48px;
    line-height: 1.2em;
    color: var(--color-white);
    margin-bottom: 24px;
}

.wellness__text {
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 16px;
    line-height: 1.6em;
    color: var(--color-light-text);
    margin-bottom: 32px;
}

.wellness__features {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 17px 0 25px;
}

.wellness__feature {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.wellness__feature-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    padding-top: 4px;
}

.wellness__feature-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.wellness__feature-text strong {
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 16px;
    line-height: 1.5em;
    color: var(--color-white);
}

.wellness__feature-text span {
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 14px;
    line-height: 1.43em;
    color: var(--color-light-text);
}

.wellness__image-wrapper {
    position: relative;
    flex-shrink: 0;
    width: 500px;
}

.wellness__image-blob {
    position: absolute;
    bottom: 32px;
    left: -32px;
    width: 192px;
    height: 192px;
    background: rgba(212, 175, 55, 0.1);
    filter: blur(64px);
    border-radius: 50%;
}

.wellness__image {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 544px;
    object-fit: cover;
    border-radius: var(--radius-card);
    box-shadow: 0px 25px 50px -12px rgba(0, 0, 0, 0.25);
}

/* =============================================
   ADVANTAGES SECTION
   ============================================= */
.advantages {
    background-color: var(--color-medium-bg);
    padding: 80px 40px;
}

.advantages__container {
    max-width: 1200px;
    margin: 0 auto;
}

.advantages__heading {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 48px;
    line-height: 1.2em;
    color: var(--color-primary);
    text-align: center;
    margin-bottom: 64px;
}

.advantages__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.advantages__card {
    background: var(--color-light-bg);
    border-radius: var(--radius-card);
    padding: 32px 32px 62px;
    box-shadow: 0px 10px 40px -10px rgba(11, 46, 89, 0.08);
    text-align: center;
}

.advantages__card-icon-wrap {
    width: 48px;
    height: 48px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px;
}

.advantages__card-icon-wrap img {
    width: 24px;
    height: 24px;
}

.advantages__card-title {
    font-family: var(--font-heading);
    font-weight: 400;
    font-size: 20px;
    line-height: 1.5em;
    color: var(--color-primary);
    margin-bottom: 12px;
}

.advantages__card-desc {
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 14px;
    line-height: 1.5em;
    color: var(--color-body-text);
}

/* =============================================
   CONTACT SECTION
   ============================================= */
.contact {
    background-color: var(--color-light-bg);
    padding: 80px 40px;
}

.contact__container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 88px;
}

.contact__info {
    flex: 1;
}

.contact__heading {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 48px;
    line-height: 1.2em;
    color: var(--color-primary);
    margin-bottom: 16px;
}

.contact__text {
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 16px;
    line-height: 1.6em;
    color: var(--color-body-text);
}

.contact__items {
    display: flex;
    flex-direction: column;
    gap: 24px;
    padding-top: 25px;
}

.contact__item {
    display: flex;
    align-items: center;
    gap: 16px;
}

.contact__item-icon {
    width: 40px;
    height: 40px;
    background: rgba(11, 46, 89, 0.05);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact__item-icon img {
    width: 20px;
    height: 20px;
}

.contact__item-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.contact__item-label {
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 12px;
    line-height: 1em;
    letter-spacing: 0.1em;
    color: var(--color-body-text);
    text-transform: uppercase;
}

.contact__item-value {
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 16px;
    line-height: 1.5em;
    color: var(--color-primary);
}

.contact__form-wrapper {
    flex: 1;
}

.contact__form {
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-card);
    padding: 32px 32px 48px;
    box-shadow: 0px 10px 40px -10px rgba(11, 46, 89, 0.08);
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact__form-row {
    display: flex;
    gap: 24px;
}

.contact__form-row .contact__form-group {
    flex: 1;
}

.contact__form-group {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.contact__form-label {
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 10px;
    line-height: 1.5em;
    color: var(--color-body-text);
    text-transform: uppercase;
}

.contact__form-input {
    border: none;
    border-bottom: 1px solid var(--color-medium-bg);
    padding: 10px 0;
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 16px;
    line-height: 1.22em;
    color: var(--color-dark-text);
    background: transparent;
    outline: none;
    transition: border-color 0.3s ease;
    width: 100%;
}

.contact__form-input::placeholder {
    color: var(--color-placeholder);
}

.contact__form-input:focus {
    border-bottom-color: var(--color-primary);
}

.contact__form-select-wrapper {
    position: relative;
}

.contact__form-select {
    appearance: none;
    -webkit-appearance: none;
    cursor: pointer;
    padding-right: 32px;
}

.contact__form-select-icon {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 16px;
    height: 16px;
    pointer-events: none;
}

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

.contact__form-submit {
    background: var(--color-primary);
    color: var(--color-white);
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 12px;
    line-height: 1em;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 16px;
    width: 100%;
    border: none;
    border-radius: var(--radius-btn);
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.contact__form-submit:hover {
    background: #093050;
}

/* =============================================
   FOOTER
   ============================================= */
.footer {
    background-color: var(--color-primary);
    padding: 64px 40px 32px;
}

.footer__container {
    max-width: 1200px;
    margin: 0 auto;
}

.footer__top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 40px;
}

.footer__brand {
    display: flex;
    flex-direction: row;
    align-items: end;
    gap: 24px;
    max-width: 380px;
}

.footer__logo {
    display: inline-block;
    /*background: var(--color-white);*/
    /*border-radius: var(--radius-card);*/
    /*padding: 4px 6px;*/
    align-self: flex-start;
}

.footer__logo-img {
    /*height: 120px;*/
    width: auto;
    max-width: 130px;
    display: block;
}

.footer__desc {
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 14px;
    line-height: 1.7em;
    color: rgba(255, 255, 255, 0.7);
}

.footer__social {
    display: flex;
    align-items: center;
    gap: 16px;
    align-self: flex-end;
}

.footer__social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #E1E3E4;
    transition: all 0.3s ease;
}

.footer__social-link:hover {
    color: var(--color-gold);
    border-color: var(--color-gold);
    background: rgba(212, 175, 55, 0.1);
    transform: translateY(-2px);
}

.footer__social-link svg {
    flex-shrink: 0;
}

.footer__divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.12);
    margin: 40px 0 24px;
}

.footer__bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.footer__copyright {
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 14px;
    line-height: 1.6em;
    color: rgba(255, 255, 255, 0.6);
}

.footer__credit {
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 14px;
    line-height: 1.6em;
    color: rgba(255, 255, 255, 0.6);
}

.footer__credit-link {
    color: var(--color-gold);
    font-weight: 500;
    transition: color 0.3s ease;
}

.footer__credit-link:hover {
    color: #e6c347;
}

/* =============================================
   SCROLL ANIMATIONS
   ============================================= */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}
.animate-item {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}
.animate-item.animated {
    opacity: 1;
    transform: translateY(0);
}

/* =============================================
   HEADER SCROLL STATE
   ============================================= */
.site-header {
    transition: padding 0.3s ease, box-shadow 0.3s ease;
}
.site-header.header--scrolled {
    box-shadow: 0px 4px 12px -2px rgba(0, 0, 0, 0.15), 0px 8px 16px -4px rgba(0, 0, 0, 0.1);
}
.site-header.header--scrolled .header__container {
    padding-top: 4px;
    padding-bottom: 4px;
    transition: padding 0.3s ease;
}

/* =============================================
   ACTIVE NAV LINK
   ============================================= */
.header__nav-link.active {
    color: var(--color-gold);
}

/* =============================================
   HOVER EFFECTS - SERVICE CARDS
   ============================================= */
.services__card {
    border-top: 3px solid transparent;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-top-color 0.3s ease;
}
.services__card:hover {
    transform: scale(1.03);
    box-shadow: 0px 20px 60px -10px rgba(11, 46, 89, 0.16);
    border-top-color: var(--color-gold);
}

/* =============================================
   HOVER EFFECTS - DESTINATION CARDS
   ============================================= */
.destinations__card {
    overflow: hidden;
}
.destinations__card-image {
    transition: transform 0.5s ease;
}
.destinations__card:hover .destinations__card-image {
    transform: scale(1.05);
}

/* =============================================
   HOVER EFFECTS - ADVANTAGES CARDS
   ============================================= */
.advantages__card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.advantages__card:hover {
    transform: translateY(-4px);
    box-shadow: 0px 20px 60px -10px rgba(11, 46, 89, 0.14);
}

/* =============================================
   HOVER EFFECTS - CTA BUTTONS
   ============================================= */
.btn {
    transition: all 0.3s ease, transform 0.2s ease;
}
.btn:hover {
    opacity: 0.92;
    transform: translateY(-1px);
}
.btn--gold:hover {
    opacity: 1;
    transform: translateY(-1px);
}
.btn--outline-gold:hover {
    transform: translateY(-1px);
}

/* =============================================
   MOBILE MENU ENHANCEMENTS
   ============================================= */
.menu-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}
.menu-backdrop.is-visible {
    opacity: 1;
    visibility: visible;
}
body.menu-open {
    overflow: hidden;
}

/* =============================================
   FORM VALIDATION STATES
   ============================================= */
.form-field--error .contact__form-input {
    border-bottom-color: #DC3545;
}
.form-field--error .form-error-message {
    display: block;
}
.form-field--success .contact__form-input {
    border-bottom-color: #28A745;
}
.form-error-message {
    display: none;
    font-family: var(--font-body);
    font-size: 12px;
    color: #DC3545;
    margin-top: 4px;
}
.contact__form-submit:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}
.form-success-message {
    display: none;
    background: rgba(40, 167, 69, 0.08);
    border: 1px solid rgba(40, 167, 69, 0.3);
    border-radius: var(--radius-card);
    padding: 32px;
    text-align: center;
    animation: fadeInUp 0.4s ease-out;
}
.form-success-message.is-visible {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}
.form-success-message__icon {
    width: 48px;
    height: 48px;
    background: rgba(40, 167, 69, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}
.form-success-message__title {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 24px;
    color: var(--color-primary);
}
.form-success-message__text {
    font-family: var(--font-body);
    font-size: 14px;
    color: var(--color-body-text);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(16px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* =============================================
   RESPONSIVE STYLES
   ============================================= */

/* Tablet and below */
@media (max-width: 991.98px) {
    .site-header {
        padding: 0 24px;
    }

    .header__nav {
        position: fixed;
        top: 74px;
        left: 0;
        right: 0;
        background: rgba(248, 249, 250, 0.98);
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
        padding: 24px;
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        box-shadow: 0px 4px 6px -1px rgba(0, 0, 0, 0.1);
    }

    .header__nav.is-open {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .header__nav-list {
        flex-direction: column;
        gap: 20px;
        align-items: flex-start;
    }
    .header__nav-list .header__nav-link{
        color: var(--color-primary);
    }
    .header__menu-toggle {
        display: flex;
    }

    .header__lang:not(.header__lang--mobile) {
        display: none;
    }

    .header__nav-lang-mobile {
        display: block;
        padding-top: 12px;
        border-top: 1px solid var(--color-border);
        margin-top: 8px;
    }

    .header__lang--mobile {
        font-family: var(--font-body);
        font-weight: 500;
        font-size: 12px;
        line-height: 1em;
        letter-spacing: 0.1em;
        color: var(--color-dark-text);
        cursor: pointer;
        background: none;
        border: none;
        padding: 8px 0;
    }

    .header__cta {
        display: none;
    }

    .hero__heading {
        font-size: 48px;
    }

    .hero__content {
        margin-left: 24px;
        max-width: 500px;
    }

    .about__container {
        flex-direction: column;
        gap: 48px;
    }

    .about__image-wrapper {
        width: 100%;
        max-width: 500px;
    }

    .about__image {
        height: 450px;
    }

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

    .destinations__grid {
        grid-template-columns: 1fr;
    }

    .destinations__card--large {
        height: 400px;
    }

    .destinations__card--small {
        height: 250px;
    }

    .wellness__container {
        flex-direction: column;
        gap: 48px;
    }

    .wellness__image-wrapper {
        width: 100%;
        max-width: 500px;
    }

    .wellness__image {
        height: 400px;
    }

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

    .contact__container {
        flex-direction: column;
        gap: 48px;
    }

    .footer__top {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer__brand {
        align-items: center;
        flex-direction: column;
        text-align: center;
    }

    .footer__logo {
        align-self: center;
    }

    .footer__social {
        align-self: center;
        justify-content: center;
    }

    .footer__bottom {
        flex-direction: column;
        text-align: center;
    }
}

/* Mobile */
@media (max-width: 767.98px) {
    .site-header {
        padding: 0 16px;
    }

    .hero {
        padding-top: 74px;
    }

    .hero__heading {
        font-size: 40px;
    }

    .hero__text {
        font-size: 16px;
    }

    .hero__content {
        margin-left: 16px;
        padding: 0 16px;
    }

    .hero__buttons {
        flex-direction: column;
        align-items: flex-start;
    }

    .about {
        padding: 60px 20px;
    }

    .about__heading {
        font-size: 36px;
    }

    .about__image {
        height: 350px;
    }

    .services {
        padding: 60px 20px;
    }

    .services__heading {
        font-size: 36px;
    }

    .services__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .destinations {
        padding: 60px 20px;
    }

    .destinations__header {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }

    .destinations__heading {
        font-size: 36px;
    }

    .destinations__card--large {
        height: 350px;
    }

    .destinations__grid-right {
        grid-template-columns: 1fr 1fr;
    }

    .destinations__card--small {
        height: 200px;
    }

    .wellness {
        padding: 60px 20px;
    }

    .wellness__heading {
        font-size: 36px;
    }

    .advantages {
        padding: 60px 20px;
    }

    .advantages__heading {
        font-size: 36px;
    }

    .advantages__grid {
        grid-template-columns: 1fr;
    }

    .contact {
        padding: 60px 20px;
    }

    .contact__heading {
        font-size: 36px;
    }

    .contact__form-row {
        flex-direction: column;
        gap: 24px;
    }

    .footer {
        padding: 48px 20px;
    }

    .footer__copyright {
        font-size: 14px;
    }
}
