/* ============================================================
   Prima Casa Travel & Tourism — Main Stylesheet
   Color Palette:
     --green-deep : #004433  (Deep Forest Green)
     --gold       : #D4AF37  (Antique Gold)
     --white      : #FFFFFF
   ============================================================ */

/* ---- Google Fonts ---- */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Upright:ital,wght@0,400;0,600;1,400&family=Montserrat:wght@300;400;600;700&family=Cairo:wght@300;400;600;700&display=swap');

/* ---- CSS Custom Properties ---- */
:root {
    --green-deep: #004433;
    --green-mid: #005544;
    --green-light: #006655;
    --gold: #D4AF37;
    --gold-light: #e8c84d;
    --gold-dark: #b8941e;
    --white: #FFFFFF;
    --off-white: #F8F6F0;
    --text-dark: #1a1a1a;
    --text-muted: #6c757d;

    --font-en-heading: 'Cormorant Upright', serif;
    --font-en-body: 'Montserrat', sans-serif;
    --font-ar: 'Cairo', sans-serif;

    --transition-smooth: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --shadow-gold: 0 4px 24px rgba(212, 175, 55, 0.22);
    --shadow-green: 0 8px 32px rgba(0, 68, 51, 0.3);
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-en-body);
    background-color: var(--white);
    color: var(--text-dark);
    line-height: 1.7;
    overflow-x: hidden;
}

/* Arabic language body override */
body[dir="rtl"] {
    font-family: var(--font-ar);
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-smooth);
}

/* ============================================================
   UTILITY CLASSES
   ============================================================ */
.text-gold {
    color: var(--gold);
}

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

.text-green {
    color: var(--green-deep);
}

.bg-green {
    background-color: var(--green-deep);
}

.section-pad {
    padding: 90px 0;
}

/* Gold divider line */
.gold-divider {
    width: 60px;
    height: 2px;
    background: var(--gold);
    margin: 16px auto 28px;
}

/* Section heading style */
.section-title {
    font-family: var(--font-en-heading);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 600;
    color: var(--green-deep);
    text-align: center;
    line-height: 1.2;
}

body[dir="rtl"] .section-title {
    font-family: var(--font-ar);
}

.section-subtitle {
    font-family: var(--font-en-body);
    font-size: 1rem;
    color: var(--text-muted);
    text-align: center;
    max-width: 560px;
    margin: 0 auto 48px;
}

body[dir="rtl"] .section-subtitle {
    font-family: var(--font-ar);
}

/* Gold CTA Button */
.btn-gold {
    display: inline-block;
    padding: 14px 38px;
    border: 2px solid var(--gold);
    color: var(--gold);
    background: transparent;
    font-family: var(--font-en-body);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: var(--transition-smooth);
    z-index: 1;
}

body[dir="rtl"] .btn-gold {
    font-family: var(--font-ar);
    letter-spacing: 0;
}

.btn-gold::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gold);
    transform: scaleY(0);
    transform-origin: bottom;
    transition: transform 0.35s ease;
    z-index: -1;
}

.btn-gold:hover {
    color: var(--green-deep);
}

.btn-gold:hover::before {
    transform: scaleY(1);
}

/* Solid gold button variant */
.btn-gold-solid {
    background: var(--gold);
    color: var(--green-deep);
    border-color: var(--gold);
}

.btn-gold-solid::before {
    background: var(--gold-light);
}

.btn-gold-solid:hover {
    color: var(--green-deep);
}

/* ============================================================
   NAVBAR
   ============================================================ */
#main-navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    padding: 18px 0;
    background: transparent;
    transition: background 0.4s ease, padding 0.4s ease, box-shadow 0.4s ease;
}

#main-navbar.scrolled {
    background: var(--green-deep);
    padding: 10px 0;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.25);
}

.navbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 28px;
}

/* Native RTL flex handled by dir="rtl" */
body[dir="rtl"] .navbar-inner {
    flex-direction: row;
}

.navbar-brand {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3px;
    text-align: center;
}

/* Logo */
.navbar-logo {
    height: 54px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.3));
    transition: height 0.4s ease;
}

.brand-name {
    font-family: var(--font-en-heading);
    font-size: 0.62rem;
    font-weight: 600;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transition: all 0.4s ease;
    white-space: nowrap;
}

body[dir="rtl"] .brand-name {
    font-family: var(--font-ar);
    font-size: 0.75rem;
    letter-spacing: 0;
}

#main-navbar.scrolled .navbar-logo {
    height: 42px;
}

#main-navbar.scrolled .brand-name {
    font-size: 0.55rem;
    opacity: 0.9;
}

/* Nav Links */
.navbar-links {
    display: flex;
    align-items: center;
    list-style: none;
    gap: 36px;
}

/* Native RTL flex handled by dir="rtl" */
body[dir="rtl"] .navbar-links {
    flex-direction: row;
}

.navbar-links li a {
    font-family: var(--font-en-body);
    font-size: 0.88rem;
    font-weight: 500;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.88);
    position: relative;
    padding-bottom: 4px;
}

body[dir="rtl"] .navbar-links li a {
    font-family: var(--font-ar);
    letter-spacing: 0;
    font-size: 0.95rem;
    text-transform: none;
}

.navbar-links li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: width 0.3s ease;
}

body[dir="rtl"] .navbar-links li a::after {
    left: auto;
    right: 0;
}

.navbar-links li a:hover,
.navbar-links li a.active {
    color: var(--gold);
}

.navbar-links li a:hover::after,
.navbar-links li a.active::after {
    width: 100%;
}

/* Language Toggle */
.lang-toggle {
    display: flex;
    align-items: center;
    gap: 8px;
}

.lang-btn {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.5);
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 1px;
    padding: 5px 14px;
    border-radius: 20px;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.lang-btn:hover,
.lang-btn.active {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--green-deep);
}

/* Hamburger (mobile) */
.nav-hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 4px;
}

.nav-hamburger span {
    width: 26px;
    height: 2px;
    background: var(--white);
    display: block;
    border-radius: 2px;
    transition: var(--transition-smooth);
}

.nav-hamburger.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.nav-hamburger.open span:nth-child(2) {
    opacity: 0;
}

.nav-hamburger.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* ============================================================
   HERO SLIDER
   ============================================================ */
#hero-slider {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
}

/* Individual Slides */
.slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    z-index: 1;
}

.slide.active {
    opacity: 1;
    z-index: 2;
}

/* Overlay gradient */
.slide::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,
            rgba(0, 68, 51, 0.72) 0%,
            rgba(0, 30, 20, 0.55) 50%,
            rgba(0, 0, 0, 0.30) 100%);
    z-index: 1;
}

/* Slide Content */
.slide-content {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px 24px;
}

.slide-tagline {
    font-family: var(--font-en-heading);
    font-size: clamp(1rem, 2vw, 1.15rem);
    font-weight: 400;
    font-style: italic;
    color: var(--gold);
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 8px;
    opacity: 0;
    transform: translateY(20px);
    animation: none;
}

body[dir="rtl"] .slide-tagline {
    font-family: var(--font-ar);
    letter-spacing: 0;
    font-style: normal;
}

.slide-heading {
    font-family: var(--font-en-heading);
    font-size: clamp(2.4rem, 5.5vw, 5rem);
    font-weight: 600;
    color: var(--white);
    line-height: 1.15;
    max-width: 800px;
    margin-bottom: 20px;
    opacity: 0;
    transform: translateY(24px);
}

body[dir="rtl"] .slide-heading {
    font-family: var(--font-ar);
}

.slide-body {
    font-family: var(--font-en-body);
    font-size: clamp(0.9rem, 1.8vw, 1.1rem);
    color: rgba(255, 255, 255, 0.85);
    max-width: 580px;
    line-height: 1.85;
    margin-bottom: 36px;
    opacity: 0;
    transform: translateY(24px);
}

body[dir="rtl"] .slide-body {
    font-family: var(--font-ar);
}

.slide-cta {
    opacity: 0;
    transform: translateY(24px);
}

/* Animate content when slide is active */
.slide.active .slide-tagline {
    animation: slideUp 0.7s ease 0.2s forwards;
}

.slide.active .slide-heading {
    animation: slideUp 0.7s ease 0.4s forwards;
}

.slide.active .slide-body {
    animation: slideUp 0.7s ease 0.6s forwards;
}

.slide.active .slide-cta {
    animation: slideUp 0.7s ease 0.8s forwards;
}

@keyframes slideUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Hero Slide Backgrounds */
#slide-1 {
    background-image: url('slide1.png');
}

#slide-2 {
    background-image: url('slide2.png');
}

/* --- Slider Navigation Arrows --- */
.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    background: rgba(0, 0, 0, 0.28);
    border: 1px solid rgba(212, 175, 55, 0.55);
    color: var(--gold);
    width: 54px;
    height: 54px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.2rem;
    transition: var(--transition-smooth);
    backdrop-filter: blur(4px);
}

.slider-arrow:hover {
    background: var(--gold);
    color: var(--green-deep);
    border-color: var(--gold);
    transform: translateY(-50%) scale(1.08);
}

#arrow-prev {
    left: 28px;
}

#arrow-next {
    right: 28px;
}

body[dir="rtl"] #arrow-prev {
    left: auto;
    right: 28px;
}

body[dir="rtl"] #arrow-next {
    right: auto;
    left: 28px;
}

/* --- Slider Dots --- */
.slider-dots {
    position: absolute;
    bottom: 36px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    gap: 12px;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.45);
    border: 1.5px solid rgba(255, 255, 255, 0.6);
    cursor: pointer;
    transition: var(--transition-smooth);
}

.dot.active {
    background: var(--gold);
    border-color: var(--gold);
    transform: scale(1.3);
}

/* Scroll indicator */
.scroll-indicator {
    position: absolute;
    bottom: 42px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

.scroll-indicator span {
    display: block;
    width: 22px;
    height: 36px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 12px;
    position: relative;
    margin: 0 auto;
}

.scroll-indicator span::after {
    content: '';
    position: absolute;
    top: 5px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    border-radius: 2px;
    background: var(--gold);
    animation: scrollBounce 1.6s infinite;
}

@keyframes scrollBounce {

    0%,
    100% {
        top: 5px;
        opacity: 1;
    }

    50% {
        top: 14px;
        opacity: 0.4;
    }
}

/* ============================================================
   ABOUT SECTION
   ============================================================ */
#about {
    padding: 100px 0;
    background: var(--off-white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 28px;
}

body[dir="rtl"] .about-grid {
    direction: rtl;
}

.about-img-wrap {
    position: relative;
}

.about-img-main {
    width: 100%;
    height: 460px;
    object-fit: cover;
    border-radius: 2px;
    box-shadow: var(--shadow-green);
}

.about-img-badge {
    position: absolute;
    bottom: -24px;
    right: -24px;
    width: 130px;
    height: 130px;
    background: var(--green-deep);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 3px solid var(--gold);
    box-shadow: var(--shadow-gold);
}

body[dir="rtl"] .about-img-badge {
    right: auto;
    left: -24px;
}

.about-img-badge .badge-num {
    font-family: var(--font-en-heading);
    font-size: 2.2rem;
    font-weight: 600;
    color: var(--gold);
    line-height: 1;
}

body[dir="rtl"] .about-img-badge .badge-num {
    font-family: var(--font-ar);
    font-size: 1.8rem;
}

.about-img-badge .badge-text {
    font-size: 0.65rem;
    color: rgba(255, 255, 255, 0.8);
    letter-spacing: 1px;
    text-transform: uppercase;
    text-align: center;
    padding: 0 10px;
}

.about-text .eyebrow {
    font-family: var(--font-en-body);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 14px;
}

body[dir="rtl"] .about-text .eyebrow {
    font-family: var(--font-ar);
    letter-spacing: 0;
}

.about-text h2 {
    font-family: var(--font-en-heading);
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    font-weight: 600;
    color: var(--green-deep);
    line-height: 1.25;
    margin-bottom: 20px;
}

body[dir="rtl"] .about-text h2 {
    font-family: var(--font-ar);
}

.about-text p {
    font-size: 0.97rem;
    color: var(--text-muted);
    margin-bottom: 16px;
    line-height: 1.85;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin: 28px 0 36px;
}

.about-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--text-dark);
}

.about-feature i {
    color: var(--gold);
    font-size: 1rem;
    flex-shrink: 0;
}

/* RTL Divider Polish */
.about-text .gold-divider {
    margin: 16px 0 24px;
}

body[dir="rtl"] .about-text .gold-divider {
    margin: 16px 0 24px auto;
}

/* ============================================================
   SERVICES SECTION
   ============================================================ */
#services {
    padding: 100px 0;
    background: var(--white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 28px;
}

/* Service Card */
.service-card {
    background: var(--white);
    border: 1px solid rgba(0, 68, 51, 0.1);
    border-radius: 2px;
    padding: 44px 32px 36px;
    text-align: center;
    position: relative;
    transition: var(--transition-smooth);
    overflow: hidden;
    cursor: pointer;
}

.service-card::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gold);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-green);
    border-color: transparent;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-icon-wrap {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: rgba(0, 68, 51, 0.07);
    border: 1.5px solid rgba(212, 175, 55, 0.35);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    transition: var(--transition-smooth);
}

.service-card:hover .service-icon-wrap {
    background: var(--green-deep);
    border-color: var(--gold);
}

.service-icon-wrap i {
    font-size: 1.6rem;
    color: var(--green-deep);
    transition: var(--transition-smooth);
}

.service-card:hover .service-icon-wrap i {
    color: var(--gold);
}

.service-title {
    font-family: var(--font-en-heading);
    font-size: 1.35rem;
    font-weight: 600;
    color: var(--green-deep);
    margin-bottom: 14px;
}

body[dir="rtl"] .service-title {
    font-family: var(--font-ar);
}

.service-desc {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.75;
    margin-bottom: 24px;
}

.service-link {
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    color: var(--gold);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

body[dir="rtl"] .service-link {
    letter-spacing: 0;
    flex-direction: row;
}

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

.service-card:hover .service-link i {
    transform: translateX(4px);
}

body[dir="rtl"] .service-card:hover .service-link i {
    transform: translateX(-4px);
}

/* ============================================================
   OFFERS / SPECIAL SECTION
   ============================================================ */
#offers {
    padding: 100px 0;
    background: var(--off-white);
}

.offers-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 28px;
}

.offer-card {
    position: relative;
    height: 360px;
    overflow: hidden;
    border-radius: 2px;
    cursor: pointer;
}

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

.offer-card:hover img {
    transform: scale(1.08);
}

.offer-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 50, 30, 0.85) 0%, transparent 60%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 28px 24px;
    color: var(--white);
}

.offer-tag {
    display: inline-block;
    background: var(--gold);
    color: var(--green-deep);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 4px 12px;
    margin-bottom: 10px;
    width: fit-content;
}

.offer-title {
    font-family: var(--font-en-heading);
    font-size: 1.45rem;
    font-weight: 600;
    margin-bottom: 6px;
}

body[dir="rtl"] .offer-title {
    font-family: var(--font-ar);
}

.offer-meta {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.75);
}

/* ============================================================
   STATS SECTION
   ============================================================ */
#stats {
    padding: 90px 0;
    background: var(--green-deep);
    position: relative;
    overflow: hidden;
}

#stats::before {
    content: '';
    position: absolute;
    top: -60px;
    right: -60px;
    width: 350px;
    height: 350px;
    border-radius: 50%;
    border: 1px solid rgba(212, 175, 55, 0.12);
}

#stats::after {
    content: '';
    position: absolute;
    bottom: -80px;
    left: -40px;
    width: 280px;
    height: 280px;
    border-radius: 50%;
    border: 1px solid rgba(212, 175, 55, 0.12);
}

.stats-inner {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 28px;
    position: relative;
    z-index: 2;
}

.stat-item {
    text-align: center;
    padding: 36px 16px;
    border: 1px solid rgba(212, 175, 55, 0.28);
    border-radius: 2px;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(4px);
    transition: var(--transition-smooth);
}

.stat-item:hover {
    border-color: var(--gold);
    background: rgba(212, 175, 55, 0.06);
    transform: translateY(-4px);
}

.stat-number {
    font-family: var(--font-en-heading);
    font-size: clamp(3rem, 5vw, 4.5rem);
    font-weight: 600;
    color: var(--gold);
    line-height: 1;
    display: block;
}

body[dir="rtl"] .stat-number {
    font-family: var(--font-ar);
}

.stat-suffix {
    font-size: 1.8rem;
    color: var(--gold);
}

.stat-label {
    font-family: var(--font-en-body);
    font-size: 0.82rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 10px;
    display: block;
}

body[dir="rtl"] .stat-label {
    font-family: var(--font-ar);
    letter-spacing: 0;
    font-size: 0.9rem;
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
#testimonials {
    padding: 100px 0;
    background: var(--white);
}

.testimonials-track {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 28px;
}

.testimonial-card {
    background: var(--off-white);
    border-left: 3px solid var(--gold);
    padding: 32px 28px;
    border-radius: 2px;
    transition: var(--transition-smooth);
}

body[dir="rtl"] .testimonial-card {
    border-left: none;
    border-right: 3px solid var(--gold);
}

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

.testimonial-stars {
    color: var(--gold);
    font-size: 0.85rem;
    margin-bottom: 16px;
    letter-spacing: 2px;
}

.testimonial-text {
    font-size: 0.95rem;
    color: var(--text-muted);
    font-style: italic;
    line-height: 1.8;
    margin-bottom: 22px;
}

body[dir="rtl"] .testimonial-text {
    font-style: normal;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 14px;
}

body[dir="rtl"] .testimonial-author {
    flex-direction: row;
}

.author-avatar {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--gold);
}

.author-name {
    font-weight: 600;
    font-size: 0.92rem;
    color: var(--text-dark);
}

.author-origin {
    font-size: 0.78rem;
    color: var(--text-muted);
}

/* ============================================================
   FOOTER
   ============================================================ */
#footer {
    background: #002a1f;
    color: rgba(255, 255, 255, 0.78);
    padding: 72px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.4fr;
    gap: 48px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 28px;
}

.footer-brand .logo-img {
    height: 64px;
    width: auto;
    margin-bottom: 18px;
    filter: brightness(1.2);
}

.footer-company-name {
    font-family: var(--font-en-heading);
    font-size: 1.3rem;
    color: var(--gold);
    display: block;
    line-height: 1.3;
}

.footer-company-ar {
    font-family: var(--font-ar);
    font-size: 1rem;
    color: rgba(212, 175, 55, 0.75);
    display: block;
    direction: rtl;
    margin-top: 4px;
}

.footer-tagline {
    font-size: 0.85rem;
    margin-top: 16px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.6);
}

.footer-social {
    display: flex;
    gap: 12px;
    margin-top: 22px;
}

.social-link {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid rgba(212, 175, 55, 0.35);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.85rem;
    transition: var(--transition-smooth);
}

.social-link:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--green-deep);
    transform: translateY(-3px);
}

.footer-col h4 {
    font-family: var(--font-en-body);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 22px;
    position: relative;
    padding-bottom: 12px;
}

body[dir="rtl"] .footer-col h4 {
    font-family: var(--font-ar);
    letter-spacing: 0;
    text-align: right;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 1px;
    background: var(--gold);
}

body[dir="rtl"] .footer-col h4::after {
    left: auto;
    right: 0;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 11px;
}

.footer-links li a {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.65);
    transition: var(--transition-smooth);
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Native RTL flex handled by dir="rtl" */
body[dir="rtl"] .footer-links li a {
    flex-direction: row;
}

.footer-links li a i {
    font-size: 0.65rem;
    color: var(--gold);
}

.footer-links li a:hover {
    color: var(--gold);
    padding-left: 6px;
}

body[dir="rtl"] .footer-links li a:hover {
    padding-left: 0;
    padding-right: 6px;
}

/* Contact info */
.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 18px;
}


.contact-item i {
    color: var(--gold);
    font-size: 0.95rem;
    margin-top: 3px;
    flex-shrink: 0;
}

.contact-item p {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

.contact-item a {
    color: rgba(255, 255, 255, 0.7);
}

.contact-item a:hover {
    color: var(--gold);
}

/* Footer bottom bar */
.footer-bottom {
    margin-top: 52px;
    border-top: 1px solid rgba(212, 175, 55, 0.18);
    padding: 20px 28px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
}

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

.footer-bottom p span {
    color: var(--gold);
}

/* ============================================================
   SCROLL REVEAL ANIMATIONS
   ============================================================ */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.reveal-right {
    opacity: 0;
    transform: translateX(40px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-right.visible {
    opacity: 1;
    transform: translateX(0);
}

body[dir="rtl"] .reveal-left {
    transform: translateX(40px);
}

body[dir="rtl"] .reveal-left.visible {
    transform: translateX(0);
}

body[dir="rtl"] .reveal-right {
    transform: translateX(-40px);
}

body[dir="rtl"] .reveal-right.visible {
    transform: translateX(0);
}

/* ============================================================
   RESPONSIVE — TABLET (≤ 992px)
   ============================================================ */
@media (max-width: 992px) {
    .about-grid {
        grid-template-columns: 1fr;
    }

    .about-img-main {
        height: 320px;
    }

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

    .stats-inner {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .testimonials-track {
        grid-template-columns: 1fr 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 36px;
    }
}

/* ============================================================
   RESPONSIVE — MOBILE (≤ 768px)
   ============================================================ */
@media (max-width: 768px) {
    #main-navbar {
        padding: 14px 0;
    }

    .navbar-links {
        position: fixed;
        top: 0;
        left: -100%;
        width: 80%;
        max-width: 320px;
        height: 100vh;
        background: var(--green-deep);
        flex-direction: column;
        justify-content: center;
        padding: 80px 40px;
        gap: 28px;
        transition: left 0.4s ease;
        box-shadow: 4px 0 32px rgba(0, 0, 0, 0.3);
        z-index: 100;
    }

    body[dir="rtl"] .navbar-links {
        left: auto;
        right: -100%;
        flex-direction: column;
        transition: right 0.4s ease;
    }

    .navbar-links.open {
        left: 0;
    }

    body[dir="rtl"] .navbar-links.open {
        left: auto;
        right: 0;
    }

    .nav-hamburger {
        display: flex;
        z-index: 200;
    }

    .services-grid,
    .offers-grid,
    .testimonials-track {
        grid-template-columns: 1fr;
    }

    .stats-inner {
        grid-template-columns: 1fr 1fr;
    }

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

    .slide-heading {
        font-size: 2rem;
    }

    .slider-arrow {
        width: 42px;
        height: 42px;
        font-size: 1rem;
    }

    #arrow-prev {
        left: 12px;
    }

    #arrow-next {
        right: 12px;
    }

    .about-img-badge {
        bottom: -16px;
        right: -8px;
        width: 100px;
        height: 100px;
    }

    body[dir="rtl"] .about-img-badge {
        right: auto;
        left: -8px;
    }

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

@media (max-width: 480px) {
    .stats-inner {
        grid-template-columns: 1fr;
    }

    .section-pad {
        padding: 64px 0;
    }
}

/* Nav overlay for mobile */
.nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    z-index: 99;
}

.nav-overlay.open {
    display: block;
}

/* ============================================================
   HERO SCROLL-DOWN ARROW
   ============================================================ */
/* Move dots up to make room for the arrow */
.slider-dots {
    bottom: 72px;
    /* moved up from 36px */
}

.hero-scroll-arrow {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 2px solid rgba(212, 175, 55, 0.7);
    background: rgba(0, 0, 0, 0.25);
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 0.95rem;
    text-decoration: none;
    animation: arrowBounce 1.8s ease-in-out infinite;
    transition: background 0.3s ease, border-color 0.3s ease;
}

.hero-scroll-arrow:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--green-deep);
    animation: none;
}

@keyframes arrowBounce {

    0%,
    100% {
        transform: translateX(-50%) translateY(0);
        opacity: 1;
    }

    50% {
        transform: translateX(-50%) translateY(8px);
        opacity: 0.6;
    }
}

/* ============================================================
   CONTACT / BOOKING INQUIRY SECTION
   ============================================================ */
#contact {
    padding: 90px 0;
    background: var(--off-white);
}

.contact-section-inner {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 28px;
    gap: 0;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: var(--shadow-green);
}

/* ---- Left info panel ---- */
.contact-info-panel {
    background: var(--green-deep);
    padding: 56px 44px;
    position: relative;
    overflow: hidden;
}

.contact-eyebrow {
    font-family: var(--font-en-body);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 16px;
}

body[dir="rtl"] .contact-eyebrow {
    font-family: var(--font-ar);
    letter-spacing: 0;
}

.contact-panel-title {
    font-family: var(--font-en-heading);
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    font-weight: 600;
    color: var(--white);
    line-height: 1.25;
    margin-bottom: 18px;
}

body[dir="rtl"] .contact-panel-title {
    font-family: var(--font-ar);
}

.contact-panel-sub {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.75;
    margin-bottom: 40px;
}

/* Info list rows */
.contact-info-list {
    display: flex;
    flex-direction: column;
    gap: 26px;
    position: relative;
    z-index: 2;
}

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


.cinfo-icon {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(212, 175, 55, 0.18);
    border: 1px solid rgba(212, 175, 55, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--gold);
    font-size: 0.88rem;
}

.cinfo-label {
    display: block;
    font-family: var(--font-en-body);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 4px;
}

body[dir="rtl"] .cinfo-label {
    font-family: var(--font-ar);
    letter-spacing: 0;
}

.cinfo-value {
    display: block;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.82);
    line-height: 1.5;
}

.cinfo-value:hover {
    color: var(--gold);
}

/* Decorative circles */
.contact-circle {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(212, 175, 55, 0.14);
    pointer-events: none;
}

.contact-circle-1 {
    width: 260px;
    height: 260px;
    bottom: -80px;
    right: -60px;
}

.contact-circle-2 {
    width: 140px;
    height: 140px;
    top: -40px;
    right: 40px;
}

/* ---- Right form panel ---- */
.contact-form-panel {
    background: var(--white);
    padding: 52px 48px;
}

.contact-form-title {
    font-family: var(--font-en-heading);
    font-size: 1.65rem;
    font-weight: 600;
    color: var(--green-deep);
    margin-bottom: 8px;
}

body[dir="rtl"] .contact-form-title {
    font-family: var(--font-ar);
}

.contact-gold-line {
    width: 48px;
    height: 2px;
    background: var(--gold);
    margin-bottom: 28px;
}

/* Form grid rows */
.cform-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
    margin-bottom: 18px;
}

.cform-group {
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.cform-full {
    margin-bottom: 18px;
}

.cform-group label {
    font-family: var(--font-en-body);
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--green-deep);
    letter-spacing: 0.5px;
}

body[dir="rtl"] .cform-group label {
    font-family: var(--font-ar);
    text-align: right;
}

.cform-group input,
.cform-group textarea {
    width: 100%;
    padding: 11px 15px;
    border: 1.5px solid rgba(0, 68, 51, 0.18);
    border-radius: 3px;
    font-family: var(--font-en-body);
    font-size: 0.9rem;
    color: var(--text-dark);
    background: var(--off-white);
    outline: none;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    resize: none;
}

body[dir="rtl"] .cform-group input,
body[dir="rtl"] .cform-group textarea {
    font-family: var(--font-ar);
    text-align: right;
    direction: rtl;
}

.cform-group input:focus,
.cform-group textarea:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.14);
    background: var(--white);
}

.cform-group input::placeholder,
.cform-group textarea::placeholder {
    color: #aaa;
    font-size: 0.85rem;
}

/* Submit button */
.cform-submit {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 15px 28px;
    background: var(--green-deep);
    color: var(--white);
    border: 2px solid var(--green-deep);
    border-radius: 3px;
    font-family: var(--font-en-body);
    font-size: 0.92rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: var(--transition-smooth);
    margin-top: 4px;
}

body[dir="rtl"] .cform-submit {
    font-family: var(--font-ar);
    letter-spacing: 0;
    flex-direction: row;
}

.cform-submit::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gold);
    transform: scaleY(0);
    transform-origin: bottom;
    transition: transform 0.35s ease;
    z-index: 0;
}

.cform-submit span,
.cform-submit i {
    position: relative;
    z-index: 1;
}

.cform-submit:hover {
    color: var(--green-deep);
    border-color: var(--gold);
}

.cform-submit:hover::before {
    transform: scaleY(1);
}

/* Success message */
.cform-success {
    margin-top: 12px;
    font-size: 0.88rem;
    color: var(--green-deep);
    font-weight: 600;
    text-align: center;
    min-height: 20px;
}

/* ============================================================
   CONTACT SECTION — RESPONSIVE
   ============================================================ */
@media (max-width: 992px) {
    .contact-section-inner {
        grid-template-columns: 1fr;
    }

    .contact-info-panel {
        padding: 44px 36px;
    }

    .contact-form-panel {
        padding: 44px 36px;
    }
}

@media (max-width: 600px) {
    .cform-row {
        grid-template-columns: 1fr;
    }

    .contact-info-panel,
    .contact-form-panel {
        padding: 36px 24px;
    }

    .contact-section-inner {
        padding: 0 16px;
    }
}