/* =========================================================
   HAWAA LAND
   استراحة هواء لند
   Main Stylesheet
========================================================= */


/* =========================================================
   ROOT
========================================================= */

:root {

    --green-dark: #26382d;
    --green: #506b4f;
    --green-light: #71886a;

    /* RED - لمسة بسيطة */
    --red: #a94442;
    --red-dark: #863735;
    --red-light: #c96b68;

    --blue: #3ba7c7;
    --blue-dark: #247d99;
    --blue-light: #8dd8e9;

    --sand: #d8b77a;
    --sand-light: #ead6aa;

    /* بيج فاتح */
    --cream: #f7f3ea;
    --cream-dark: #eee7d8;

    --white: #ffffff;

    --text: #1e2722;
    --text-light: #69726c;

    --border: rgba(38, 56, 45, 0.10);

    --shadow-sm:
        0 5px 20px rgba(31, 47, 38, 0.07);

    --shadow:
        0 15px 45px rgba(31, 47, 38, 0.12);

    --shadow-lg:
        0 25px 70px rgba(31, 47, 38, 0.18);

    --radius-sm: 12px;
    --radius: 22px;
    --radius-lg: 32px;

    --transition:
        all 0.35s cubic-bezier(.2,.7,.2,1);

    --container: 1240px;

}


/* =========================================================
   RESET
========================================================= */

* {

    margin: 0;
    padding: 0;

    box-sizing: border-box;

}


html {

    scroll-behavior: smooth;

    scroll-padding-top: 90px;

}


body {

    font-family: "Cairo", sans-serif;

    background: var(--white);

    color: var(--text);

    line-height: 1.8;

    overflow-x: hidden;

}


body.no-scroll {

    overflow: hidden;

}


a {

    text-decoration: none;

    color: inherit;

}


button,
input,
textarea,
select {

    font-family: inherit;

}


button {

    border: 0;

    cursor: pointer;

}


img {

    max-width: 100%;

    display: block;

}


ul {

    list-style: none;

}


::selection {

    background: var(--green);

    color: var(--white);

}


/* =========================================================
   CONTAINER
========================================================= */

.container {

    width: min(
        calc(100% - 40px),
        var(--container)
    );

    margin: 0 auto;

}


/* =========================================================
   HEADER
========================================================= */

.main-header {

    position: fixed;

    top: 0;
    right: 0;
    left: 0;

    z-index: 1000;

    padding: 18px 0;

    transition: var(--transition);

    /* أخضر مع لمسة حمراء بسيطة */
    background:
        linear-gradient(
            90deg,
            rgba(38,56,45,.97) 0%,
            rgba(80,107,79,.96) 72%,
            rgba(169,68,66,.92) 100%
        );

    border-bottom:
        2px solid rgba(169,68,66,.65);

    box-shadow:
        0 6px 25px rgba(0,0,0,.10);

}


/* خط أحمر رفيع أعلى الصفحة */

.main-header::before {

    content: "";

    position: absolute;

    top: 0;
    right: 0;
    left: 0;

    height: 3px;

    background:
        linear-gradient(
            90deg,
            transparent 0%,
            var(--red) 35%,
            var(--red-light) 75%,
            transparent 100%
        );

}


.main-header.scrolled {

    padding: 10px 0;

    background:
        linear-gradient(
            90deg,
            rgba(38,56,45,.98) 0%,
            rgba(80,107,79,.98) 75%,
            rgba(150,58,56,.96) 100%
        );

    backdrop-filter: blur(18px);

    border-bottom:
        2px solid rgba(169,68,66,.75);

    box-shadow:
        0 8px 35px rgba(0,0,0,.15);

}


.header-container {

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 25px;

}


/* =========================================================
   LOGO
========================================================= */

.logo {

    display: flex;

    align-items: center;

    gap: 12px;

    flex-shrink: 0;

}


.logo-icon {

    width: 48px;
    height: 48px;

    border-radius: 15px;

    display: flex;

    align-items: center;

    justify-content: center;

    color: var(--white);

    background:
        linear-gradient(
            145deg,
            var(--red),
            var(--red-dark)
        );

    box-shadow:
        0 8px 20px rgba(134,55,53,.30);

    font-size: 20px;

}


.logo-text {

    display: flex;

    flex-direction: column;

    line-height: 1.25;

}


.logo-text strong {

    font-family: "Marhey", "Cairo", sans-serif;

    font-size: 17px;

    color: var(--white);

}


.logo-text span {

    font-size: 10px;

    color: rgba(255,255,255,.68);

}


/* =========================================================
   NAVIGATION
========================================================= */

.main-nav {

    display: flex;

    align-items: center;

    gap: 5px;

}


.main-nav a {

    position: relative;

    padding: 9px 12px;

    font-size: 13px;

    font-weight: 600;

    color: rgba(255,255,255,.90);

    border-radius: 10px;

    transition: var(--transition);

}


.main-nav a::after {

    content: "";

    position: absolute;

    bottom: 2px;

    right: 50%;

    width: 0;

    height: 2px;

    background: var(--red-light);

    border-radius: 5px;

    transform: translateX(50%);

    transition: var(--transition);

}


.main-nav a:hover,
.main-nav a.active {

    color: var(--sand-light);

}


.main-nav a:hover::after,
.main-nav a.active::after {

    width: 22px;

}


/* =========================================================
   HEADER ACTIONS
========================================================= */

.header-actions {

    display: flex;

    align-items: center;

    gap: 10px;

}


.header-whatsapp {

    display: flex;

    align-items: center;

    gap: 8px;

    padding: 11px 18px;

    color: var(--white);

    background: #25D366;

    border-radius: 50px;

    font-size: 12px;

    font-weight: 700;

    box-shadow:
        0 8px 20px rgba(37,211,102,.18);

    transition: var(--transition);

}


.header-whatsapp i {

    font-size: 16px;

}


.header-whatsapp:hover {

    transform: translateY(-3px);

    background: #1faa53;

    box-shadow:
        0 12px 28px rgba(37,211,102,.25);

}


/* =========================================================
   MOBILE MENU
========================================================= */

.menu-toggle {

    display: none;

    width: 44px;
    height: 44px;

    border-radius: 12px;

    background: var(--cream);

    align-items: center;

    justify-content: center;

    flex-direction: column;

    gap: 5px;

}


.menu-toggle span {

    width: 21px;

    height: 2px;

    border-radius: 5px;

    background: var(--green-dark);

    transition: var(--transition);

}


.menu-toggle.active span:nth-child(1) {

    transform:
        translateY(7px)
        rotate(45deg);

}


.menu-toggle.active span:nth-child(2) {

    opacity: 0;

}


.menu-toggle.active span:nth-child(3) {

    transform:
        translateY(-7px)
        rotate(-45deg);

}


/* =========================================================
   HERO
========================================================= */

.hero {

    position: relative;

    min-height: 850px;

    display: flex;

    align-items: center;

    overflow: hidden;

    color: var(--white);

    background:
        linear-gradient(
            120deg,
            #26382d,
            #506b4f
        );

}


.hero::before {

    content: "";

    position: absolute;

    inset: 0;

    background-image:
        var(--hero-image);

    background-size: cover;

    background-position: center;

    opacity: .92;

    transform: scale(1.02);

}


.hero-overlay {

    position: absolute;

    inset: 0;

    background:

        linear-gradient(
            90deg,
            rgba(20,34,26,.90) 0%,
            rgba(20,34,26,.72) 42%,
            rgba(20,34,26,.28) 100%
        );

}


.hero::after {

    content: "";

    position: absolute;

    right: -180px;

    bottom: -280px;

    width: 600px;
    height: 600px;

    border-radius: 50%;

    border: 1px solid rgba(255,255,255,.15);

    box-shadow:
        0 0 0 60px rgba(255,255,255,.03),
        0 0 0 120px rgba(255,255,255,.02);

}


.hero-container {

    position: relative;

    z-index: 2;

    padding-top: 80px;

    display: grid;

    grid-template-columns:
        minmax(0, 1fr)
        330px;

    gap: 80px;

    align-items: center;

}


.hero-content {

    max-width: 720px;

}


.hero-badge {

    display: inline-flex;

    align-items: center;

    gap: 9px;

    padding: 7px 14px;

    border: 1px solid rgba(255,255,255,.18);

    border-radius: 50px;

    background: rgba(255,255,255,.08);

    backdrop-filter: blur(10px);

    font-size: 11px;

    margin-bottom: 20px;

}


.badge-dot {

    width: 7px;
    height: 7px;

    border-radius: 50%;

    background: var(--sand);

    box-shadow:
        0 0 0 5px rgba(216,183,122,.12);

}


.hero h1 {

    font-family: "Marhey", "Cairo", sans-serif;

    font-size: clamp(55px, 7vw, 95px);

    font-weight: 500;

    line-height: 1.15;

    letter-spacing: -3px;

    margin-bottom: 10px;

}


.hero h1 span {

    display: block;

    color: var(--sand);

}


.hero-subtitle {

    font-size: clamp(20px, 2.2vw, 30px);

    font-weight: 600;

    color: rgba(255,255,255,.95);

    margin-bottom: 15px;

}


.hero-description {

    max-width: 620px;

    color: rgba(255,255,255,.78);

    font-size: 15px;

    line-height: 2.1;

    margin-bottom: 28px;

}


/* =========================================================
   BUTTONS
========================================================= */

.hero-buttons {

    display: flex;

    align-items: center;

    gap: 12px;

    flex-wrap: wrap;

}


.btn {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 9px;

    min-height: 52px;

    padding: 0 25px;

    border-radius: 14px;

    font-size: 13px;

    font-weight: 700;

    transition: var(--transition);

}


.btn-primary {

    color: var(--white);

    background: var(--green);

    box-shadow:
        0 10px 30px rgba(38,56,45,.20);

}


.btn-primary:hover {

    transform: translateY(-3px);

    background: var(--green-dark);

    box-shadow:
        0 15px 35px rgba(38,56,45,.28);

}


.hero .btn-primary {

    background: var(--sand);

    color: var(--green-dark);

}


.hero .btn-primary:hover {

    background: #e6c98e;

}


.btn-outline {

    color: var(--white);

    border: 1px solid rgba(255,255,255,.30);

    background: rgba(255,255,255,.06);

    backdrop-filter: blur(10px);

}


.btn-outline:hover {

    background: var(--white);

    color: var(--green-dark);

    border-color: var(--white);

}


.btn-light {

    color: var(--green-dark);

    background: var(--white);

}


.btn-light:hover {

    transform: translateY(-3px);

    background: var(--sand);

}


/* =========================================================
   HERO FEATURES
========================================================= */

.hero-features {

    display: flex;

    align-items: center;

    gap: 25px;

    margin-top: 38px;

    flex-wrap: wrap;

}


.hero-feature {

    display: flex;

    align-items: center;

    gap: 8px;

    color: rgba(255,255,255,.75);

    font-size: 12px;

}


.hero-feature i {

    color: var(--sand);

    font-size: 15px;

}


/* =========================================================
   HERO CARD
========================================================= */

.hero-card {

    align-self: end;

    margin-bottom: 50px;

    padding: 24px;

    border-radius: 25px;

    background: rgba(255,255,255,.10);

    border: 1px solid rgba(255,255,255,.20);

    backdrop-filter: blur(20px);

    box-shadow:
        0 20px 50px rgba(0,0,0,.15);

}


.hero-card-top {

    display: flex;

    align-items: center;

    justify-content: space-between;

    color: rgba(255,255,255,.65);

    font-size: 11px;

    padding-bottom: 18px;

    border-bottom: 1px solid rgba(255,255,255,.12);

}


.hero-card-top i {

    color: var(--sand);

}


.hero-card-content {

    display: flex;

    flex-direction: column;

    padding: 20px 0;

}


.hero-card-content strong {

    font-size: 25px;

    color: var(--white);

}


.hero-card-content span {

    color: rgba(255,255,255,.62);

    font-size: 12px;

}


.hero-card-button {

    display: flex;

    align-items: center;

    justify-content: space-between;

    padding: 12px 14px;

    border-radius: 12px;

    color: var(--green-dark);

    background: var(--white);

    font-size: 11px;

    font-weight: 700;

    transition: var(--transition);

}


.hero-card-button:hover {

    background: var(--sand);

    transform: translateY(-2px);

}


/* =========================================================
   SCROLL DOWN
========================================================= */

.scroll-down {

    position: absolute;

    z-index: 3;

    bottom: 28px;

    left: 50%;

    transform: translateX(-50%);

    display: flex;

    align-items: center;

    flex-direction: column;

    gap: 5px;

    color: rgba(255,255,255,.60);

    font-size: 10px;

}


.scroll-down i {

    animation:
        scrollArrow 1.7s infinite;

}


@keyframes scrollArrow {

    0%,
    100% {

        transform: translateY(0);

    }

    50% {

        transform: translateY(6px);

    }

}


/* =========================================================
   QUICK INFO
========================================================= */

.quick-info {

    position: relative;

    z-index: 10;

    margin-top: -65px;

}


.quick-info-grid {

    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    background: var(--white);

    border-radius: 22px;

    box-shadow: var(--shadow-lg);

    overflow: hidden;

}


.quick-item {

    display: flex;

    align-items: center;

    gap: 14px;

    padding: 25px;

    border-left: 1px solid var(--border);

}


.quick-item:last-child {

    border-left: 0;

}


.quick-icon {

    width: 45px;
    height: 45px;

    flex-shrink: 0;

    border-radius: 14px;

    display: flex;

    align-items: center;

    justify-content: center;

    color: var(--green);

    background: var(--cream);

}


.quick-item span {

    display: block;

    color: var(--text-light);

    font-size: 10px;

}


.quick-item strong {

    display: block;

    margin-top: 2px;

    color: var(--green-dark);

    font-size: 13px;

}


/* =========================================================
   SECTION
========================================================= */

.section {

    padding: 110px 0;

}


.section-heading {

    margin-bottom: 50px;

}


.section-heading.centered {

    max-width: 650px;

    margin-right: auto;

    margin-left: auto;

    text-align: center;

}


.eyebrow {

    display: inline-flex;

    align-items: center;

    gap: 8px;

    color: var(--green);

    font-size: 11px;

    font-weight: 800;

    letter-spacing: .5px;

    margin-bottom: 10px;

}


.eyebrow::before {

    content: "";

    width: 25px;

    height: 2px;

    background: var(--sand);

    border-radius: 10px;

}


.section-heading h2 {

    color: var(--green-dark);

    font-family: "Marhey", "Cairo", sans-serif;

    font-size: clamp(30px, 4vw, 48px);

    line-height: 1.4;

    font-weight: 500;

}


.section-heading h2 span {

    color: var(--green);

}


.section-heading p {

    color: var(--text-light);

    font-size: 14px;

    margin-top: 10px;

}


/* =========================================================
   ABOUT
========================================================= */

.about-section {

    background: var(--cream);

}


.about-grid {

    display: grid;

    grid-template-columns:
        1fr
        1fr;

    gap: 90px;

    align-items: center;

}


/* =========================================================
   ABOUT IMAGES
========================================================= */

.about-images {

    position: relative;

    min-height: 530px;

}


.about-image-main {

    position: absolute;

    top: 0;

    right: 0;

    width: 78%;

    height: 450px;

    overflow: hidden;

    border-radius: 35px;

    box-shadow: var(--shadow-lg);

}


.about-image-main img {

    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: transform .8s ease;

}


.about-image-main:hover img {

    transform: scale(1.05);

}


.about-image-small {

    position: absolute;

    bottom: 0;

    left: 0;

    width: 48%;

    height: 220px;

    overflow: hidden;

    border: 10px solid var(--cream);

    border-radius: 28px;

    box-shadow: var(--shadow);

}


.about-image-small img {

    width: 100%;
    height: 100%;

    object-fit: cover;

}


.about-placeholder {

    width: 78%;
    height: 450px;

    position: absolute;

    right: 0;

    top: 0;

    border-radius: 35px;

    background:
        linear-gradient(
            135deg,
            var(--green),
            var(--blue)
        );

    color: var(--white);

    display: flex;

    align-items: center;

    justify-content: center;

    flex-direction: column;

    gap: 12px;

    box-shadow: var(--shadow-lg);

}


.about-placeholder i {

    font-size: 55px;

}


.about-decoration {

    position: absolute;

    right: 15px;

    bottom: 35px;

    display: flex;

    align-items: center;

    gap: 8px;

    padding: 12px 18px;

    color: var(--green-dark);

    background: var(--sand);

    border-radius: 50px;

    font-size: 11px;

    font-weight: 800;

    box-shadow: var(--shadow);

}


.about-decoration i {

    color: var(--green);

}


/* =========================================================
   ABOUT CONTENT
========================================================= */

.about-content {

    max-width: 570px;

}


.about-content .section-heading {

    margin-bottom: 25px;

}


.about-content p {

    color: var(--text-light);

    font-size: 14px;

    margin-bottom: 17px;

}


.about-content .about-lead {

    color: var(--text);

    font-size: 16px;

    line-height: 2;

}


.about-content strong {

    color: var(--green);

}


.about-points {

    display: grid;

    grid-template-columns:
        1fr 1fr;

    gap: 12px;

    margin: 28px 0;

}


.about-points div {

    display: flex;

    align-items: center;

    gap: 8px;

    font-size: 12px;

    color: var(--text);

}


.about-points i {

    color: var(--green);

    font-size: 15px;

}


.text-link {

    display: inline-flex;

    align-items: center;

    gap: 10px;

    color: var(--green);

    font-size: 13px;

    font-weight: 800;

    transition: var(--transition);

}


.text-link i {

    transition: var(--transition);

}


.text-link:hover {

    color: var(--green-dark);

}


.text-link:hover i {

    transform: translateX(-5px);

}


/* =========================================================
   FEATURES
========================================================= */

.features-section {

    background: var(--white);

}


.features-grid {

    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 18px;

}


.feature-card {

    position: relative;

    min-height: 290px;

    padding: 30px 25px;

    border: 1px solid var(--border);

    border-radius: 25px;

    background: var(--white);

    overflow: hidden;

    transition: var(--transition);

}


.feature-card::before {

    content: "";

    position: absolute;

    width: 150px;
    height: 150px;

    border-radius: 50%;

    left: -80px;
    bottom: -80px;

    background: var(--cream);

    transition: var(--transition);

}


.feature-card:hover {

    transform: translateY(-8px);

    box-shadow: var(--shadow);

    border-color: transparent;

}


.feature-card:hover::before {

    transform: scale(2);

}


.feature-card.featured {

    color: var(--white);

    background:
        linear-gradient(
            145deg,
            var(--green),
            var(--green-dark)
        );

    box-shadow:
        0 20px 40px rgba(38,56,45,.18);

}


.feature-card.featured::before {

    background: rgba(255,255,255,.05);

}


.feature-number {

    position: absolute;

    top: 20px;

    left: 20px;

    color: var(--sand);

    font-size: 11px;

    font-weight: 800;

}


.feature-icon {

    position: relative;

    width: 58px;
    height: 58px;

    display: flex;

    align-items: center;

    justify-content: center;

    margin-bottom: 35px;

    border-radius: 18px;

    color: var(--green);

    background: var(--cream);

    font-size: 22px;

}


.featured .feature-icon {

    color: var(--white);

    background: rgba(255,255,255,.12);

}


.feature-card h3 {

    position: relative;

    font-size: 18px;

    margin-bottom: 10px;

}


.feature-card p {

    position: relative;

    color: var(--text-light);

    font-size: 12px;

    line-height: 2;

}


.featured p {

    color: rgba(255,255,255,.72);

}


/* =========================================================
   CHALETS
========================================================= */

.chalets-section {

    background: var(--cream);

}


.chalets-layout {

    display: grid;

    grid-template-columns:
        1.45fr
        .75fr;

    gap: 20px;

}


.chalet-large {

    position: relative;

    min-height: 540px;

    overflow: hidden;

    border-radius: 30px;

    background: var(--green-dark);

}


.chalet-large > img {

    width: 100%;
    height: 100%;

    min-height: 540px;

    object-fit: cover;

    transition: transform .8s ease;

}


.chalet-large:hover > img {

    transform: scale(1.04);

}


.chalet-overlay {

    position: absolute;

    right: 0;
    bottom: 0;
    left: 0;

    padding: 40px;

    color: var(--white);

    background:
        linear-gradient(
            transparent,
            rgba(17,28,21,.92)
        );

}


.chalet-overlay span {

    display: inline-block;

    padding: 5px 12px;

    color: var(--green-dark);

    background: var(--sand);

    border-radius: 30px;

    font-size: 10px;

    font-weight: 800;

}


.chalet-overlay h3 {

    font-family: "Marhey", "Cairo", sans-serif;

    font-size: 28px;

    margin: 10px 0 2px;

}


.chalet-overlay p {

    color: rgba(255,255,255,.70);

    font-size: 12px;

}


.chalet-side {

    display: flex;

    flex-direction: column;

    gap: 20px;

}


.chalet-mini {

    position: relative;

    flex: 1;

    min-height: 250px;

    padding: 25px;

    overflow: hidden;

    border-radius: 30px;

    color: var(--white);

    background: var(--green-dark);

}


.chalet-mini img {

    position: absolute;

    inset: 0;

    width: 100%;
    height: 100%;

    object-fit: cover;

    opacity: .65;

}


.chalet-mini::after {

    content: "";

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            135deg,
            rgba(38,56,45,.9),
            rgba(38,56,45,.2)
        );

}


.chalet-mini > div {

    position: relative;

    z-index: 2;

}


.chalet-mini h3 {

    font-size: 20px;

    margin-top: 120px;

}


.chalet-mini p {

    color: rgba(255,255,255,.7);

    font-size: 12px;

}


.chalet-info-card {

    flex: 1;

    min-height: 250px;

    padding: 30px;

    border-radius: 30px;

    color: var(--green-dark);

    background: var(--white);

    box-shadow: var(--shadow-sm);

}


.chalet-info-card > i {

    display: flex;

    width: 50px;
    height: 50px;

    align-items: center;

    justify-content: center;

    margin-bottom: 15px;

    border-radius: 15px;

    color: var(--green);

    background: var(--cream);

    font-size: 20px;

}


.chalet-info-card h3 {

    font-size: 18px;

}


.chalet-info-card p {

    color: var(--text-light);

    font-size: 12px;

    line-height: 2;

    margin: 7px 0 15px;

}


.chalet-info-card a {

    display: inline-flex;

    align-items: center;

    gap: 7px;

    color: var(--green);

    font-size: 11px;

    font-weight: 800;

}


/* =========================================================
   POOL
========================================================= */

.pool-section {

    position: relative;

    min-height: 600px;

    display: flex;

    align-items: center;

    overflow: hidden;

    color: var(--white);

}


.pool-background {

    position: absolute;

    inset: 0;

}


.pool-background img {

    width: 100%;
    height: 100%;

    object-fit: cover;

}


.pool-overlay {

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(20,48,55,.92),
            rgba(25,83,100,.60),
            rgba(25,83,100,.20)
        );

}


.pool-content {

    position: relative;

    z-index: 2;

    max-width: 600px;

    padding: 100px 0;

}


.eyebrow.light {

    color: var(--sand);

}


.pool-content h2 {

    font-family: "Marhey", "Cairo", sans-serif;

    font-size: clamp(45px, 6vw, 75px);

    font-weight: 500;

    line-height: 1.2;

    margin-bottom: 10px;

}


.pool-content p {

    max-width: 520px;

    color: rgba(255,255,255,.78);

    font-size: 15px;

    line-height: 2;

    margin-bottom: 25px;

}


/* =========================================================
   GALLERY
========================================================= */

.gallery-section {

    background: var(--white);

}


.gallery-grid {

    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    grid-auto-rows: 220px;

    gap: 12px;

}


.gallery-item {

    position: relative;

    overflow: hidden;

    border-radius: 18px;

    cursor: pointer;

    background: var(--cream);

}


.gallery-item.gallery-large {

    grid-column: span 2;

    grid-row: span 2;

}


.gallery-item img {

    width: 100%;
    height: 100%;

    object-fit: cover;

    transition:
        transform .6s ease;

}


.gallery-item:hover img {

    transform: scale(1.07);

}


.gallery-overlay {

    position: absolute;

    inset: 0;

    display: flex;

    align-items: center;

    justify-content: center;

    background: rgba(38,56,45,.40);

    opacity: 0;

    transition: var(--transition);

}


.gallery-overlay i {

    width: 48px;
    height: 48px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 50%;

    color: var(--green-dark);

    background: var(--white);

    transform: scale(.7);

    transition: var(--transition);

}


.gallery-item:hover .gallery-overlay {

    opacity: 1;

}


.gallery-item:hover .gallery-overlay i {

    transform: scale(1);

}


.empty-gallery {

    min-height: 350px;

    display: flex;

    align-items: center;

    justify-content: center;

    border: 2px dashed var(--cream-dark);

    border-radius: 25px;

    text-align: center;

}


.empty-gallery i {

    color: var(--green);

    font-size: 45px;

    margin-bottom: 15px;

}


.empty-gallery h3 {

    font-size: 18px;

    margin-bottom: 5px;

}


.empty-gallery p {

    color: var(--text-light);

    font-size: 12px;

}


/* =========================================================
   LOCATION
========================================================= */

.location-section {

    background: var(--cream);

}


.location-grid {

    display: grid;

    grid-template-columns:
        .9fr
        1.1fr;

    gap: 70px;

    align-items: center;

}


.location-content {

    max-width: 550px;

}


.location-content h2 {

    font-family: "Marhey", "Cairo", sans-serif;

    color: var(--green-dark);

    font-size: clamp(32px, 4vw, 48px);

    font-weight: 500;

    margin-bottom: 15px;

}


.location-content h2 span {

    color: var(--green);

}


.location-content > p {

    color: var(--text-light);

    font-size: 14px;

    margin-bottom: 28px;

}


.location-content > p strong {

    color: var(--green);

}


.location-info {

    display: flex;

    flex-direction: column;

    gap: 15px;

    margin-bottom: 28px;

}


.location-info-item {

    display: flex;

    align-items: center;

    gap: 15px;

}


.location-info-item > div {

    width: 48px;
    height: 48px;

    display: flex;

    align-items: center;

    justify-content: center;

    flex-shrink: 0;

    border-radius: 15px;

    color: var(--green);

    background: var(--white);

    box-shadow: var(--shadow-sm);

}


.location-info-item span {

    color: var(--text-light);

    font-size: 12px;

    line-height: 1.9;

}


/* =========================================================
   MAP BOX
========================================================= */

.map-box {

    position: relative;

    min-height: 480px;

    overflow: hidden;

    border-radius: 35px;

    background:
        linear-gradient(
            135deg,
            #b7d5c7,
            #dcece7
        );

    box-shadow: var(--shadow);

}


.map-pattern {

    position: absolute;

    inset: 0;

    opacity: .35;

    background-image:
        linear-gradient(
            30deg,
            transparent 45%,
            rgba(38,56,45,.08) 46%,
            transparent 47%
        ),
        linear-gradient(
            120deg,
            transparent 45%,
            rgba(38,56,45,.08) 46%,
            transparent 47%
        );

    background-size: 90px 90px;

}


.map-box::before {

    content: "";

    position: absolute;

    width: 400px;
    height: 400px;

    border-radius: 50%;

    top: -150px;
    right: -120px;

    border: 70px solid rgba(59,167,199,.13);

}


.map-content {

    position: absolute;

    top: 50%;
    left: 50%;

    transform: translate(-50%, -50%);

    width: min(80%, 360px);

    padding: 35px;

    text-align: center;

    border-radius: 28px;

    background: rgba(255,255,255,.90);

    backdrop-filter: blur(15px);

    box-shadow:
        0 20px 50px rgba(38,56,45,.13);

}


.map-pin {

    width: 65px;
    height: 65px;

    margin: 0 auto 15px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 50%;

    color: var(--white);

    background: var(--green);

    box-shadow:
        0 0 0 12px rgba(80,107,79,.10);

    font-size: 24px;

}


.map-content h3 {

    color: var(--green-dark);

    font-size: 18px;

}


.map-content p {

    color: var(--text-light);

    font-size: 11px;

    margin: 5px 0 15px;

}


.map-content a {

    display: inline-flex;

    align-items: center;

    gap: 8px;

    color: var(--green);

    font-size: 11px;

    font-weight: 800;

}


/* =========================================================
   CONTACT
========================================================= */

.contact-section {

    background: var(--white);

}


.contact-box {

    position: relative;

    display: grid;

    grid-template-columns:
        1.5fr
        .8fr;

    overflow: hidden;

    border-radius: 35px;

    color: var(--white);

    background:
        linear-gradient(
            135deg,
            var(--green-dark),
            var(--green)
        );

    box-shadow: var(--shadow-lg);

}


.contact-box::before {

    content: "";

    position: absolute;

    width: 500px;
    height: 500px;

    border-radius: 50%;

    left: -250px;
    bottom: -300px;

    border: 1px solid rgba(255,255,255,.10);

    box-shadow:
        0 0 0 70px rgba(255,255,255,.025),
        0 0 0 140px rgba(255,255,255,.018);

}


.contact-content {

    position: relative;

    z-index: 2;

    padding: 60px;

}


.contact-content h2 {

    max-width: 600px;

    font-family: "Marhey", "Cairo", sans-serif;

    font-size: clamp(30px, 4vw, 47px);

    font-weight: 500;

    line-height: 1.5;

    margin-bottom: 10px;

}


.contact-content h2 span {

    color: var(--sand);

}


.contact-content > p {

    max-width: 580px;

    color: rgba(255,255,255,.68);

    font-size: 13px;

    line-height: 2;

    margin-bottom: 28px;

}


.contact-details {

    display: flex;

    gap: 15px;

    flex-wrap: wrap;

}


.contact-detail {

    display: flex;

    align-items: center;

    gap: 10px;

    padding: 12px 16px;

    border: 1px solid rgba(255,255,255,.12);

    border-radius: 15px;

    background: rgba(255,255,255,.06);

    transition: var(--transition);

}


.contact-detail:hover {

    background: rgba(255,255,255,.12);

    transform: translateY(-3px);

}


.contact-detail > i {

    width: 35px;
    height: 35px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 10px;

    color: var(--green-dark);

    background: var(--sand);

}


.contact-detail small {

    display: block;

    color: rgba(255,255,255,.50);

    font-size: 9px;

}


.contact-detail strong {

    display: block;

    color: var(--white);

    font-size: 12px;

}


.contact-action {

    position: relative;

    z-index: 2;

    padding: 50px 35px;

    display: flex;

    align-items: center;

    justify-content: center;

    flex-direction: column;

    text-align: center;

    background: rgba(0,0,0,.10);

}


.contact-circle {

    width: 65px;
    height: 65px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 50%;

    color: var(--green-dark);

    background: var(--sand);

    font-size: 23px;

    margin-bottom: 15px;

}


.contact-action h3 {

    font-size: 20px;

}


.contact-action p {

    color: rgba(255,255,255,.62);

    font-size: 11px;

    margin: 5px 0 18px;

}


/* =========================================================
   FOOTER
========================================================= */

.footer {

    padding: 70px 0 25px;

    color: rgba(255,255,255,.65);

    background: #17231c;

}


.footer-main {

    display: grid;

    grid-template-columns:
        1.5fr
        .8fr
        .9fr
        1.1fr;

    gap: 45px;

    padding-bottom: 50px;

    border-bottom:
        1px solid rgba(255,255,255,.08);

}


.footer-logo .logo-text strong {

    color: var(--white);

}


.footer-logo .logo-text span {

    color: rgba(255,255,255,.45);

}


.footer-brand > p {

    max-width: 280px;

    color: rgba(255,255,255,.50);

    font-size: 12px;

    line-height: 2;

    margin: 18px 0;

}


.social-links {

    display: flex;

    gap: 8px;

}


.social-links a {

    width: 38px;
    height: 38px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 11px;

    color: rgba(255,255,255,.65);

    background: rgba(255,255,255,.06);

    transition: var(--transition);

}


.social-links a:hover {

    color: var(--green-dark);

    background: var(--sand);

    transform: translateY(-3px);

}


.footer-column {

    display: flex;

    align-items: flex-start;

    flex-direction: column;

}


.footer-column h3 {

    color: var(--white);

    font-size: 14px;

    margin-bottom: 17px;

}


.footer-column > a {

    display: flex;

    align-items: center;

    gap: 7px;

    color: rgba(255,255,255,.50);

    font-size: 11px;

    margin-bottom: 10px;

    transition: var(--transition);

}


.footer-column > a:hover {

    color: var(--sand);

    transform: translateX(-4px);

}


.footer-column > a i {

    color: var(--green-light);

}


.footer-cta p {

    color: rgba(255,255,255,.50);

    font-size: 11px;

    line-height: 2;

    margin-bottom: 15px;

}


.footer-button {

    display: inline-flex !important;

    align-items: center;

    gap: 10px;

    padding: 11px 16px;

    border-radius: 12px;

    color: var(--green-dark) !important;

    background: var(--sand);

    font-weight: 800;

}


.footer-button:hover {

    background: var(--white);

    transform: translateY(-3px) !important;

}


.footer-bottom {

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 15px;

    padding-top: 22px;

    color: rgba(255,255,255,.35);

    font-size: 9px;

}


/* =========================================================
   FLOATING WHATSAPP
========================================================= */

.floating-whatsapp {

    position: fixed;

    z-index: 1100;

    right: 22px;

    bottom: 22px;

    width: 58px;
    height: 58px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 50%;

    color: var(--white);

    background: #25D366;

    font-size: 27px;

    box-shadow:
        0 12px 30px rgba(37,211,102,.30);

    transition: var(--transition);

}


.floating-whatsapp::before {

    content: "";

    position: absolute;

    inset: -5px;

    border: 1px solid rgba(37,211,102,.30);

    border-radius: 50%;

    animation:
        whatsappPulse 2s infinite;

}


@keyframes whatsappPulse {

    0% {

        transform: scale(1);

        opacity: .8;

    }

    100% {

        transform: scale(1.25);

        opacity: 0;

    }

}


.floating-whatsapp:hover {

    transform: translateY(-5px) scale(1.05);

}


.whatsapp-tooltip {

    position: absolute;

    right: 70px;

    top: 50%;

    transform:
        translateY(-50%)
        translateX(10px);

    width: max-content;

    padding: 7px 12px;

    border-radius: 8px;

    color: var(--white);

    background: var(--green-dark);

    font-size: 10px;

    opacity: 0;

    pointer-events: none;

    transition: var(--transition);

}


.floating-whatsapp:hover .whatsapp-tooltip {

    opacity: 1;

    transform:
        translateY(-50%)
        translateX(0);

}


/* =========================================================
   BACK TO TOP
========================================================= */

.back-to-top {

    position: fixed;

    z-index: 1090;

    left: 22px;

    bottom: 22px;

    width: 45px;
    height: 45px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 13px;

    color: var(--green-dark);

    background: var(--white);

    box-shadow: var(--shadow);

    opacity: 0;

    visibility: hidden;

    transform: translateY(15px);

    transition: var(--transition);

}


.back-to-top.show {

    opacity: 1;

    visibility: visible;

    transform: translateY(0);

}


.back-to-top:hover {

    color: var(--white);

    background: var(--green);

}


/* =========================================================
   LIGHTBOX
========================================================= */

.lightbox {

    position: fixed;

    z-index: 3000;

    inset: 0;

    display: flex;

    align-items: center;

    justify-content: center;

    padding: 30px;

    background: rgba(10,18,13,.94);

    opacity: 0;

    visibility: hidden;

    transition: var(--transition);

}


.lightbox.active {

    opacity: 1;

    visibility: visible;

}


.lightbox-image-wrapper {

    max-width: min(90vw, 1100px);

    max-height: 85vh;

    border-radius: 20px;

    overflow: hidden;

    box-shadow:
        0 30px 80px rgba(0,0,0,.40);

}


.lightbox-image-wrapper img {

    max-width: 100%;

    max-height: 85vh;

    width: auto;
    height: auto;

    object-fit: contain;

}


.lightbox-close,
.lightbox-prev,
.lightbox-next {

    position: absolute;

    width: 48px;
    height: 48px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 50%;

    color: var(--white);

    background: rgba(255,255,255,.10);

    transition: var(--transition);

}


.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {

    color: var(--green-dark);

    background: var(--white);

}


.lightbox-close {

    top: 25px;

    left: 25px;

}


.lightbox-prev {

    right: 25px;

    top: 50%;

    transform: translateY(-50%);

}


.lightbox-next {

    left: 25px;

    top: 50%;

    transform: translateY(-50%);

}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 1100px) {

    .main-nav {

        gap: 0;

    }


    .main-nav a {

        padding: 8px 8px;

        font-size: 11px;

    }


    .hero-container {

        gap: 40px;

    }


    .features-grid {

        grid-template-columns:
            repeat(2, 1fr);

    }


    .footer-main {

        grid-template-columns:
            repeat(2, 1fr);

    }

}


@media (max-width: 900px) {

    .main-header {

        padding: 12px 0;

    }


    .header-whatsapp span {

        display: none;

    }


    .header-whatsapp {

        width: 42px;
        height: 42px;

        padding: 0;

        justify-content: center;

        border-radius: 12px;

    }


    .menu-toggle {

        display: flex;

    }


    .main-nav {

        position: absolute;

        top: calc(100% + 10px);

        right: 20px;
        left: 20px;

        display: flex;

        align-items: stretch;

        flex-direction: column;

        padding: 12px;

        border-radius: 20px;

        background: var(--white);

        box-shadow: var(--shadow-lg);

        opacity: 0;

        visibility: hidden;

        transform: translateY(-10px);

        transition: var(--transition);

    }


    .main-nav.active {

        opacity: 1;

        visibility: visible;

        transform: translateY(0);

    }


    .main-nav a {

        padding: 12px 15px;

        font-size: 13px;

        color: var(--text);

    }


    .main-nav a:hover,
    .main-nav a.active {

        color: var(--red);

    }


    .main-nav a::after {

        display: none;

    }


    .hero {

        min-height: 850px;

    }


    .hero-container {

        grid-template-columns: 1fr;

        padding-top: 120px;

        padding-bottom: 100px;

    }


    .hero-card {

        display: none;

    }


    .hero-content {

        max-width: 700px;

    }


    .quick-info {

        margin-top: -35px;

    }


    .quick-info-grid {

        grid-template-columns:
            repeat(2, 1fr);

    }


    .quick-item:nth-child(2) {

        border-left: 0;

    }


    .quick-item:nth-child(-n+2) {

        border-bottom: 1px solid var(--border);

    }


    .about-grid {

        grid-template-columns: 1fr;

        gap: 70px;

    }


    .about-content {

        max-width: 100%;

    }


    .location-grid {

        grid-template-columns: 1fr;

        gap: 45px;

    }


    .location-content {

        max-width: 100%;

    }


    .contact-box {

        grid-template-columns: 1fr;

    }


    .contact-action {

        padding: 45px 30px;

    }

}


@media (max-width: 700px) {

    .container {

        width: min(
            calc(100% - 28px),
            var(--container)
        );

    }


    .section {

        padding: 75px 0;

    }


    .hero {

        min-height: 780px;

    }


    .hero h1 {

        font-size: clamp(48px, 15vw, 70px);

        letter-spacing: -2px;

    }


    .hero-subtitle {

        font-size: 20px;

    }


    .hero-description {

        font-size: 13px;

    }


    .hero-features {

        gap: 14px;

    }


    .hero-feature {

        font-size: 10px;

    }


    .quick-info-grid {

        grid-template-columns: 1fr;

    }


    .quick-item {

        border-left: 0 !important;

        border-bottom: 1px solid var(--border);

    }


    .quick-item:last-child {

        border-bottom: 0;

    }


    .about-images {

        min-height: 430px;

    }


    .about-image-main {

        width: 85%;

        height: 350px;

    }


    .about-image-small {

        width: 48%;

        height: 160px;

    }


    .about-points {

        grid-template-columns: 1fr;

    }


    .features-grid {

        grid-template-columns: 1fr;

    }


    .feature-card {

        min-height: 250px;

    }


    .chalets-layout {

        grid-template-columns: 1fr;

    }


    .chalet-large {

        min-height: 430px;

    }


    .chalet-large > img {

        min-height: 430px;

    }


    .chalet-side {

        display: grid;

        grid-template-columns: 1fr 1fr;

    }


    .chalet-mini,
    .chalet-info-card {

        min-height: 270px;

    }


    .gallery-grid {

        grid-template-columns:
            repeat(2, 1fr);

        grid-auto-rows: 180px;

    }


    .gallery-item.gallery-large {

        grid-column: span 2;

        grid-row: span 1;

    }


    .map-box {

        min-height: 400px;

    }


    .contact-content {

        padding: 40px 25px;

    }


    .contact-details {

        flex-direction: column;

        align-items: stretch;

    }


    .footer-main {

        grid-template-columns: 1fr;

        gap: 35px;

    }


    .footer-bottom {

        align-items: flex-start;

        flex-direction: column;

    }


    .floating-whatsapp {

        right: 15px;

        bottom: 15px;

        width: 54px;
        height: 54px;

    }


    .back-to-top {

        left: 15px;

        bottom: 15px;

    }


    .lightbox {

        padding: 15px;

    }


    .lightbox-prev {

        right: 10px;

    }


    .lightbox-next {

        left: 10px;

    }


    .lightbox-close {

        top: 15px;

        left: 15px;

    }

}


@media (max-width: 480px) {

    .logo-text span {

        display: none;

    }


    .logo-icon {

        width: 42px;
        height: 42px;

        border-radius: 12px;

    }


    .hero {

        min-height: 750px;

    }


    .hero-buttons {

        width: 100%;

    }


    .hero-buttons .btn {

        flex: 1;

        padding: 0 15px;

    }


    .hero-features {

        display: grid;

        grid-template-columns:
            1fr 1fr;

    }


    .section-heading {

        margin-bottom: 35px;

    }


    .section-heading h2 {

        font-size: 30px;

    }


    .chalet-side {

        grid-template-columns: 1fr;

    }


    .gallery-grid {

        grid-auto-rows: 160px;

    }


    .contact-action {

        padding: 40px 20px;

    }

}


/* =========================================================
   REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {

    html {

        scroll-behavior: auto;

    }


    *,
    *::before,
    *::after {

        animation-duration: .01ms !important;

        animation-iteration-count: 1 !important;

        transition-duration: .01ms !important;

    }

}