/* ===========================
   ROOT VARIABLES
=========================== */
:root {
    --primary: #1E68B2;
    --primary-dark: #155190;
    --accent: #86A131;
    --accent-dark: #637622;
    --secondary: #343638;
    --light: #F8FAFC;
    --white: #ffffff;
    --dark: #1a1a2e;
    --gray: #6c757d;
    --gray-light: #e9ecef;
    --shadow-sm: 0 2px 12px rgba(30, 104, 178, .08);
    --shadow-md: 0 8px 32px rgba(30, 104, 178, .13);
    --shadow-lg: 0 16px 56px rgba(30, 104, 178, .18);
    --radius: 16px;
    --radius-lg: 24px;
    --transition: all .35s cubic-bezier(.4, 0, .2, 1);
}

/* ===========================
   RESET & BASE
=========================== */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

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

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

/* ===========================
   UTILITY
=========================== */
.container {
    width: 100%;
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 24px;
}

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

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

.section-eyebrow {
    display: inline-block;
    font-size: .85rem;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--primary);
    background: rgba(30, 104, 178, .08);
    padding: .35rem 1.1rem;
    border-radius: 50px;
    margin-bottom: 1rem;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900;
    color: var(--secondary);
    line-height: 1.2;
    margin-bottom: 1rem;
}

.section-title span {
    color: var(--primary);
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--gray);
    max-width: 620px;
    margin: 0 auto;
    line-height: 1.9;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    padding: .85rem 2rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
}

.btn-primary {
    background: var(--primary);
    color: #fff;
    box-shadow: 0 6px 24px rgba(30, 104, 178, .30);
}

.btn-primary:hover {
    background: var(--accent);
    box-shadow: 0 10px 32px rgba(134, 161, 49, .35);
    transform: translateY(-2px);
}

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

.btn-outline:hover {
    background: var(--primary);
    color: #fff;
    transform: translateY(-2px);
}

.btn-white {
    background: #fff;
    color: var(--primary) !important;
    box-shadow: 0 6px 24px rgba(0, 0, 0, .15);
}

.btn-white:hover {
    background: var(--accent);
    color: #fff !important;
    transform: translateY(-2px);
}

/* Fade-in animation */
.fade-in {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity .7s ease, transform .7s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.fade-in-left {
    opacity: 0;
    transform: translateX(-28px);
    transition: opacity .7s ease, transform .7s ease;
}

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

.fade-in-right {
    opacity: 0;
    transform: translateX(28px);
    transition: opacity .7s ease, transform .7s ease;
}

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

/* ===========================
   NAVBAR
=========================== */
#navbar {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 1000;
    padding: 14px 0;
    transition: var(--transition);
    background: transparent;
}

#navbar.scrolled {
    background: #fff;
    box-shadow: 0 2px 20px rgba(0, 0, 0, .10);
    padding: 8px 0;
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
}

.nav-logo img {
    height: 56px;
    width: auto;
    transition: var(--transition);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 1.8rem;
    list-style: none;
}

.nav-links a {
    font-weight: 600;
    font-size: .97rem;
    color: #fff;
    transition: var(--transition);
    position: relative;
    padding-bottom: 4px;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: width .3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-links a:hover {
    color: var(--accent);
}

#navbar.scrolled .nav-links a {
    color: var(--secondary);
}

#navbar.scrolled .nav-links a:hover {
    color: var(--primary);
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.book-btn{
    padding:.65rem 1.5rem; font-size:.9rem;
}
.lang-btn {
    display: flex;
    align-items: center;
    gap: .5rem;
    background: rgba(255, 255, 255, .18);
    border: 1.5px solid rgba(255, 255, 255, .5);
    color: #fff;
    padding: .45rem 1rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: .88rem;
    cursor: pointer;
    transition: var(--transition);
}

.lang-btn:hover {
    background: var(--accent);
    border-color: var(--accent);
}

#navbar.scrolled .lang-btn {
    background: var(--gray-light);
    border-color: var(--gray-light);
    color: var(--secondary);
}

#navbar.scrolled .lang-btn:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: #fff;
}

.fi {
    width: 20px;
    height: 15px;
    border-radius: 2px;
    box-shadow: 0 0 0 1px rgba(0, 0, 0, .1);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 6px;
    z-index: 1002;
    background: none;
    border: none;
}

.hamburger span {
    width: 26px;
    height: 3px;
    background: #fff;
    border-radius: 4px;
    transition: var(--transition);
}

#navbar.scrolled .hamburger span {
    background: var(--secondary);
}

.hamburger.open span:nth-child(1) {
    transform: rotate(45deg) translate(5.5px, 5.5px);
}

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

.hamburger.open span:nth-child(3) {
    transform: rotate(-45deg) translate(5.5px, -5.5px);
}

/* Mobile menu */
.mobile-menu {
    display: none;
    position: fixed;
    inset: 0;
    background: var(--secondary);
    z-index: 1001;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    opacity: 0;
    transition: opacity .3s ease;
}

.mobile-menu.open {
    display: flex;
    opacity: 1;
}

.mobile-menu a {
    color: #fff;
    font-size: 1.4rem;
    font-weight: 700;
    transition: var(--transition);
}

.mobile-menu a:hover {
    color: var(--accent);
}

.mobile-menu .close-btn {
    position: absolute;
    top: 20px;
    background: none;
    border: none;
    color: #fff;
    font-size: 1.8rem;
    cursor: pointer;
}

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

.hero-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.2s ease;
}

.hero-slide.active {
    opacity: 1;
}

.hero-slide::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(26, 35, 50, .82) 0%, rgba(30, 104, 178, .45) 100%);
}

.hero-content {
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    padding: 0 24px;
    max-width: 900px;
    margin: 0 auto;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    background: rgba(134, 161, 49, .25);
    border: 1.5px solid rgba(134, 161, 49, .5);
    color: #c8e07e;
    padding: .45rem 1.2rem;
    border-radius: 50px;
    font-size: .9rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    animation: fadeSlideDown .8s ease both;
}

.hero-title {
    font-size: clamp(2.2rem, 5vw, 4.2rem);
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    animation: fadeSlideUp 1s ease .2s both;
    text-shadow: 0 4px 24px rgba(0, 0, 0, .3);
}

.hero-sub {
    font-size: 1.2rem;
    opacity: .9;
    margin-bottom: 2.5rem;
    animation: fadeSlideUp 1s ease .4s both;
    max-width: 600px;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
    animation: fadeSlideUp 1s ease .6s both;
}

.hero-dots {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: .7rem;
    z-index: 10;
}

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

.hero-dot.active {
    background: var(--accent);
    width: 32px;
    border-radius: 5px;
}

@keyframes fadeSlideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

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

@keyframes fadeSlideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

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

/* ===========================
   TRUST BAR
=========================== */
.trust-bar {
    background: var(--secondary);
    padding: 40px 0;
}

.trust-grid {
    display: flex;
    align-items: center;
    justify-content: space-around;
    gap: 2rem;
    flex-wrap: wrap;
}

.trust-item {
    text-align: center;
    color: #fff;
}

.trust-num {
    font-size: 2.8rem;
    font-weight: 900;
    color: var(--accent);
    line-height: 1;
    margin-bottom: .3rem;
}

.trust-label {
    font-size: 1rem;
    opacity: .85;
}

.trust-divider {
    width: 1px;
    height: 50px;
    background: rgba(255, 255, 255, .15);
}

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

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

.about-card {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1.5px solid transparent;
}

.about-card:hover {
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
    transform: translateY(-6px);
}

.about-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    color: #fff;
    margin-bottom: 1.4rem;
}

.about-card h3 {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--secondary);
    margin-bottom: .7rem;
}

.about-card p {
    color: var(--gray);
    line-height: 1.9;
    font-size: .97rem;
}

.info-box {
    margin-top: 2.5rem;
    background: var(--secondary);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.info-box-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    color: #fff;
    flex: 1;
    min-width: 220px;
}

.info-box-item i {
    font-size: 1.4rem;
    color: var(--accent);
    margin-top: 3px;
}

.info-box-item p {
    opacity: .85;
    font-size: .97rem;
}

.info-box-item strong {
    color: var(--accent);
    display: block;
    margin-bottom: .2rem;
}

/* ===========================
   WHY
=========================== */
.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 2rem;
}

.why-card {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 2.2rem;
    border: 2px solid var(--gray-light);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.why-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(30, 104, 178, .05), rgba(134, 161, 49, .05));
    opacity: 0;
    transition: var(--transition);
}

.why-card:hover {
    border-color: var(--primary);
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.why-card:hover::before {
    opacity: 1;
}

.why-icon {
    width: 60px;
    height: 60px;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #fff;
    margin-bottom: 1.2rem;
}

.why-card h3 {
    font-size: 1.25rem;
    font-weight: 800;
    margin-bottom: .5rem;
}

.why-card p {
    color: var(--gray);
    font-size: .95rem;
}

/* ===========================
   SPACES
=========================== */
.spaces {
    background: var(--secondary);
}

.spaces .section-title {
    color: #fff;
}

.spaces .section-subtitle {
    color: rgba(255, 255, 255, .75);
}

.spaces .section-eyebrow {
    background: rgba(255, 255, 255, .12);
    color: #c8e07e;
}

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

.space-card {
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .12);
    transition: var(--transition);
}

.space-card:hover {
    transform: translateY(-8px);
    border-color: var(--accent);
    box-shadow: 0 20px 50px rgba(134, 161, 49, .2);
}

.space-thumb {
    height: 220px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3.5rem;
    color: rgba(255, 255, 255, .85);
    position: relative;
    overflow: hidden;
}

.space-thumb img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: .35;
}

.space-thumb i {
    position: relative;
    z-index: 1;
}

.space-body {
    padding: 2rem;
    color: #fff;
}

.space-body h3 {
    font-size: 1.4rem;
    font-weight: 800;
    margin-bottom: .7rem;
}

.space-body p {
    opacity: .8;
    font-size: .95rem;
    margin-bottom: 1.2rem;
}

.space-features {
    display: flex;
    flex-direction: column;
    gap: .6rem;
}

.space-feature {
    display: flex;
    align-items: center;
    gap: .7rem;
    font-size: .92rem;
    opacity: .9;
}

.space-feature i {
    color: var(--accent);
    font-size: 1rem;
}

/* ===========================
   SERVICES
=========================== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.8rem;
}

.service-card {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 2.2rem;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1.5px solid transparent;
}

.service-card:hover {
    border-color: var(--primary);
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
}

.service-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #fff;
    margin: 0 auto 1.2rem;
}

.service-card h3 {
    font-size: 1.15rem;
    font-weight: 800;
    margin-bottom: .5rem;
}

.service-card p {
    color: var(--gray);
    font-size: .92rem;
}

/* ===========================
   PRICING
=========================== */
.pricing {
    background: var(--light);
}

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

.pricing-card {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    box-shadow: var(--shadow-sm);
    border: 2px solid transparent;
    transition: var(--transition);
    position: relative;
}

.pricing-card:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-lg);
    transform: translateY(-8px);
}

.pricing-card.featured {
    background: linear-gradient(135deg, var(--primary), #2a80d4);
    border-color: transparent;
    color: #fff;
}

.pricing-badge {
    position: absolute;
    top: -14px;
    right: 50%;
    transform: translateX(50%);
    background: var(--accent);
    color: #fff;
    font-size: .82rem;
    font-weight: 800;
    padding: .35rem 1.2rem;
    border-radius: 50px;
}

.pricing-name {
    font-size: 1.6rem;
    font-weight: 900;
    margin-bottom: .5rem;
}

.pricing-desc {
    color: var(--gray);
    font-size: .93rem;
    margin-bottom: 1.8rem;
}

.pricing-features {
    display: flex;
    flex-direction: column;
    gap: .8rem;
    margin-bottom: 2rem;
}

.pricing-feature {
    display: flex;
    align-items: center;
    gap: .7rem;
    font-size: .94rem;
}

.pricing-feature i {
    color: var(--accent);
}

.pricing-card.featured .pricing-feature i {
    color: #c8e07e !important;
}

.pricing-note {
    text-align: center;
    margin-top: 2.5rem;
    padding: 1.2rem;
    background: #fff;
    border-radius: var(--radius);
    font-size: .92rem;
    color: var(--gray);
    box-shadow: var(--shadow-sm);
}

/* ===========================
   REGISTRATION FORM
=========================== */
.registration {
    background: #fff;
}

.reg-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    align-items: start;
}

.reg-info {
    display: flex;
    flex-direction: column;
    gap: 1.8rem;
}

.reg-info-card {
    display: flex;
    align-items: flex-start;
    gap: 1.2rem;
    background: var(--light);
    border-radius: var(--radius);
    padding: 1.5rem;
    transition: var(--transition);
}

.reg-info-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
}

.reg-info-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: #fff;
}

.reg-info-text h4 {
    font-size: 1rem;
    font-weight: 800;
    margin-bottom: .25rem;
}

.reg-info-text p,
.reg-info-text a {
    font-size: .92rem;
    color: var(--gray);
    text-decoration: none;
    transition: var(--transition);
}

.reg-info-text a:hover {
    color: var(--primary);
}

.reg-form-card {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 3rem;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(30, 104, 178, .1);
}

.reg-form-card h3 {
    font-size: 1.7rem;
    font-weight: 900;
    margin-bottom: .4rem;
}

.reg-form-card .sub {
    color: var(--gray);
    font-size: .95rem;
    margin-bottom: 2rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.2rem;
    margin-bottom: 1.2rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: .4rem;
}

.form-group.full {
    grid-column: 1 / -1;
}

.form-group label {
    font-weight: 700;
    font-size: .9rem;
    color: var(--secondary);
}

.form-group label .req {
    color: var(--primary);
}

.form-control {
    padding: .85rem 1.1rem;
    border: 2px solid var(--gray-light);
    border-radius: 12px;
    font-size: .97rem;
    color: var(--secondary);
    background: var(--light);
    transition: var(--transition);
    outline: none;
    width: 100%;
}

.form-control:focus {
    border-color: var(--primary);
    background: #fff;
    box-shadow: 0 0 0 4px rgba(30, 104, 178, .1);
}

.form-control.error {
    border-color: #e53e3e;
}

.error-msg {
    display: none;
    font-size: .8rem;
    color: #e53e3e;
    margin-top: .25rem;
}

.error-msg.show {
    display: block;
}

textarea.form-control {
    resize: vertical;
    min-height: 110px;
}

.reg-submit {
    width: 100%;
    padding: 1rem;
    background: linear-gradient(135deg, var(--primary), #2a80d4);
    color: #fff;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 800;
    cursor: pointer;
    transition: var(--transition);
    margin-top: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .6rem;
}

.reg-submit:hover {
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(134, 161, 49, .35);
}

.reg-submit:disabled {
    opacity: .7;
    cursor: not-allowed;
    transform: none;
}

.form-success {
    display: none;
    text-align: center;
    padding: 3rem 2rem;
    animation: fadeSlideUp .6s ease;
}

.form-success.show {
    display: block;
}

.success-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    color: #fff;
    margin: 0 auto 1.5rem;
}

.form-success h3 {
    font-size: 1.5rem;
    font-weight: 900;
    margin-bottom: .6rem;
}

.form-success p {
    color: var(--gray);
}

/* ===========================
   GALLERY
=========================== */
.gallery-tabs {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: .8rem;
    margin-bottom: 2.5rem;
}

.gallery-tab {
    padding: .55rem 1.5rem;
    border-radius: 50px;
    border: 2px solid var(--gray-light);
    font-weight: 700;
    font-size: .9rem;
    cursor: pointer;
    transition: var(--transition);
    background: #fff;
}

.gallery-tab:hover,
.gallery-tab.active {
    background: var(--primary);
    border-color: var(--primary);
    color: #fff;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
}

.gallery-item {
    height: 260px;
    border-radius: var(--radius-lg);
    background: linear-gradient(135deg, var(--primary), var(--accent));
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.gallery-item::after {
    content: '\f00e';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #fff;
    background: rgba(0, 0, 0, .35);
    opacity: 0;
    transition: var(--transition);
}

.gallery-item:hover::after {
    opacity: 1;
}

/* ===========================
   LOCATION
=========================== */
.location {
    background: var(--secondary);
    color: #fff;
}

.location .section-title {
    color: #fff;
}

.location .section-eyebrow {
    background: rgba(255, 255, 255, .1);
    color: #c8e07e;
}

.location-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.location-info {
    display: flex;
    flex-direction: column;
    gap: 1.8rem;
}

.location-item {
    display: flex;
    align-items: flex-start;
    gap: 1.2rem;
}

.location-item i {
    font-size: 1.6rem;
    color: var(--accent);
    margin-top: 4px;
}

.location-item h4 {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--accent);
    margin-bottom: .25rem;
}

.location-item p {
    opacity: .85;
    font-size: .95rem;
    line-height: 1.7;
}

.location-map-box {
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.map-embed {
    width: 100%;
    height: 420px;
}

.map-embed iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

/* ===========================
   FAQ
=========================== */
.faq {
    background: var(--light);
}

.faq-wrapper {
    display: grid;
    grid-template-columns: 420px 1fr;
    gap: 3rem;
    align-items: start;
}

.faq-image {
    position: sticky;
    top: 120px;
}

.faq-image img {
    width: 100%;
    height: auto;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    object-fit: cover;
}

.faq-list {
    max-width: 100%;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background: #fff;
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    border: 1.5px solid transparent;
    transition: var(--transition);
}

.faq-item.open {
    border-color: var(--primary);
}

.faq-q {
    padding: 1.4rem 1.8rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 700;
    font-size: 1.05rem;
    gap: 1rem;
    user-select: none;
}

.faq-q i {
    color: var(--primary);
    font-size: 1.1rem;
    transition: transform .35s ease;
    flex-shrink: 0;
}

.faq-item.open .faq-q i {
    transform: rotate(180deg);
    color: var(--accent);
}

.faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height .45s ease;
}

.faq-item.open .faq-a {
    max-height: 500px;
}

.faq-a-inner {
    padding: 1rem 1.8rem 1.4rem;
    color: var(--gray);
    font-size: .96rem;
    line-height: 1.9;
    border-top: 1px solid var(--gray-light);
}

/* ===========================
   CTA SECTION
=========================== */
.cta-section {
    background: linear-gradient(135deg, var(--primary) 0%, #2a80d4 50%, var(--accent) 100%);
    padding: 100px 0;
    text-align: center;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .04);
    top: -200px;
    left: -100px;
}

.cta-section::after {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .04);
    bottom: -150px;
    right: -50px;
}

.cta-inner {
    position: relative;
    z-index: 1;
}

.cta-section h2 {
    font-size: clamp(1.8rem, 3.5vw, 3rem);
    font-weight: 900;
    margin-bottom: 1rem;
}

.cta-section p {
    font-size: 1.2rem;
    opacity: .9;
    margin-bottom: 2.5rem;
}

.cta-actions {
    display: flex;
    gap: 1.2rem;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.cta-wa {
    display: flex;
    align-items: center;
    gap: .6rem;
    font-size: 1.05rem;
    font-weight: 700;
    color: #fff;
    opacity: .9;
}

.cta-wa i {
    font-size: 1.4rem;
    color: #25d366;
}

/* ===========================
   FOOTER
=========================== */
.footer {
    background: #1a1f2e;
    color: rgba(255, 255, 255, .8);
    padding: 72px 0 28px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr repeat(3, 1fr);
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-logo img {
    height: 64px;
    width: auto;
    filter: brightness(0) invert(1);
    margin-bottom: 1.2rem;
}

.footer-desc {
    font-size: .93rem;
    line-height: 1.9;
    margin-bottom: 1.5rem;
}

.footer-socials {
    display: flex;
    gap: .7rem;
}

.footer-socials a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, .7);
    font-size: 1rem;
    transition: var(--transition);
}

.footer-socials a:hover {
    background: var(--primary);
    color: #fff;
    transform: translateY(-3px);
}

.footer-col h4 {
    font-size: 1rem;
    font-weight: 800;
    color: var(--accent);
    margin-bottom: 1.2rem;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: .7rem;
}

.footer-links a {
    color: rgba(255, 255, 255, .7);
    font-size: .93rem;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: .5rem;
}

.footer-links a i {
    font-size: .8rem;
    color: var(--accent);
}

.footer-contact a,
.footer-contact p {
    display: flex;
    align-items: flex-start;
    gap: .7rem;
    color: rgba(255, 255, 255, .7);
    font-size: .9rem;
    margin-bottom: .8rem;
    text-decoration: none;
    transition: var(--transition);
    line-height: 1.6;
}

.footer-contact a:hover {
    color: var(--accent);
}

.footer-contact i {
    color: var(--accent);
    font-size: 1rem;
    margin-top: 2px;
    flex-shrink: 0;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, .08);
    padding-top: 1.8rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: .85rem;
    opacity: .6;
    gap: 0.5rem;
}

/* ===========================
   FLOATING ELEMENTS
=========================== */
.wa-float {
    position: fixed;
    bottom: 28px;
    left: 28px;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: #25d366;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    color: #fff;
    box-shadow: 0 6px 24px rgba(37, 211, 102, .4);
    z-index: 999;
    transition: var(--transition);
    text-decoration: none;
    animation: pulse 2s infinite;
}

.wa-float:hover {
    transform: scale(1.12);
    box-shadow: 0 10px 32px rgba(37, 211, 102, .5);
}

@keyframes pulse {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, .5);
    }

    50% {
        box-shadow: 0 0 0 14px rgba(37, 211, 102, 0);
    }
}

.scroll-top {
    position: fixed;
    bottom: 28px;
    right: 28px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--primary);
    color: #fff;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    box-shadow: var(--shadow-md);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(12px);
    transition: var(--transition);
}

.scroll-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-top:hover {
    background: var(--accent);
    transform: translateY(-3px);
}

/* ===========================
   RESPONSIVE
=========================== */
@media (max-width:1024px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .reg-wrapper {
        grid-template-columns: 1fr;
    }

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

    .faq-image {
        position: relative;
        top: auto;
        order: -1;
    }
}

@media (max-width:768px) {
    .section-pad {
        padding: 64px 0;
    }

    .nav-links,
    .nav-right {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .trust-divider {
        display: none;
    }

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

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

    .form-row {
        grid-template-columns: 1fr;
    }

    .hero-actions {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width:480px) {
    .container {
        padding: 0 16px;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .about-grid,
    .why-grid,
    .spaces-grid,
    .services-grid,
    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .reg-form-card {
        padding: 1.8rem;
    }
}


/* ===========================
   Mobile Navbar Layout Fix
=========================== */

@media (max-width: 992px) {

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

    /* نخفي اللينكات لأنها هتظهر في القائمة */
    .nav-links {
        display: none;
    }

    /* نخلّي العناصر جنب بعض */
    .nav-right {
        display: flex;
        align-items: center;
        /* gap: .4rem; */
        margin-inline-start: auto;
    }


    /* ترتيب العناصر */
    .nav-logo {
        order: 0;
    }

    .book-btn {
        order: 2;
        padding: .45rem 1.5rem;
        font-size: .7rem;
        white-space: nowrap;
    }

    .lang-btn {
        order: 3;
        padding: .35rem .55rem 0rem;
        font-size: .75rem;
    }

    .hamburger {
        order: 4;
        margin-inline-start: .4rem;
    }

    /* تصغير اللوجو عشان المساحة */
    .nav-logo img {
        height: 38px;
    }

    /* تصغير العلم */
    .lang-btn .fi {
        width: 18px;
        height: 13px;
    }
}