/* ===== SHARED STYLES - Hotel Website ===== */
/* نظام تصميم موحد لجميع صفحات الموقع */

/* ---- CSS Variables - HMM Group Brand ---- */
:root {
    /* Brand Colors */
    --brand-orange: #f97316;
    --brand-orange-dark: #ea6c10;
    --brand-orange-light: #fb923c;
    --brand-orange-pale: rgba(249,115,22,0.12);

    --primary: #f97316;
    --primary-dark: #ea6c10;
    --primary-light: #fb923c;
    --secondary: #1e293b;
    --accent: #f59e0b;
    --gold: #d4af37;
    --success: #10b981;
    --danger: #ef4444;
    --text-dark: #1a1a2e;
    --text-muted: #64748b;
    --text-light: #94a3b8;
    --bg: #f8fafc;
    --white: #ffffff;
    --border: rgba(0,0,0,0.07);
    --shadow-sm: 0 2px 10px rgba(0,0,0,0.07);
    --shadow-md: 0 8px 28px rgba(0,0,0,0.11);
    --shadow-lg: 0 20px 50px rgba(0,0,0,0.16);
    --shadow-xl: 0 32px 64px rgba(0,0,0,0.20);
    --shadow-orange: 0 8px 28px rgba(249,115,22,0.35);
    --grad-primary: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
    --grad-dark-bg: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    --grad-hero: linear-gradient(135deg, #1e293b 0%, #0f172a 60%, #1c1917 100%);
    --grad-accent: linear-gradient(135deg, #fb923c 0%, #f97316 100%);
    --grad-warm: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    --grad-dark: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    --radius-sm: 10px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    --radius-full: 9999px;
    --transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
}

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

html { scroll-behavior: smooth; }

body {
    font-family: 'Cairo', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background: var(--grad-primary);
    min-height: 100vh;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; }

/* ---- Animated Background - HMM Brand Dark ---- */
.animated-bg {
    position: fixed;
    inset: 0;
    z-index: -1;
    background: var(--grad-hero);
    overflow: hidden;
}
.animated-bg::before {
    content: '';
    position: absolute;
    width: 700px; height: 700px;
    background: radial-gradient(circle, rgba(249,115,22,0.18) 0%, transparent 65%);
    border-radius: 50%;
    top: -200px; left: -100px;
    animation: bg-blob1 22s ease-in-out infinite;
}
.animated-bg::after {
    content: '';
    position: absolute;
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(249,115,22,0.1) 0%, transparent 70%);
    border-radius: 50%;
    bottom: -150px; right: -100px;
    animation: bg-blob2 18s ease-in-out infinite;
}
@keyframes bg-blob1 {
    0%,100% { transform: translate(0,0) scale(1); }
    33%  { transform: translate(60px, 40px) scale(1.08); }
    66%  { transform: translate(-30px, 60px) scale(0.95); }
}
@keyframes bg-blob2 {
    0%,100% { transform: translate(0,0) scale(1); }
    50% { transform: translate(-40px, -30px) scale(1.06); }
}

/* ---- Header / Nav ---- */
header {
    background: rgba(15,23,42,0.92);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-bottom: 1px solid rgba(249,115,22,0.15);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: var(--transition);
}
header.scrolled {
    background: rgba(15,23,42,0.98);
    border-bottom-color: rgba(249,115,22,0.25);
    box-shadow: 0 4px 24px rgba(0,0,0,0.4);
}

nav {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0.75rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1.5rem;
}

/* Logo with image */
.logo {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    text-decoration: none;
    flex-shrink: 0;
}
.logo-img {
    width: 46px; height: 46px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(249,115,22,0.5);
    box-shadow: 0 0 12px rgba(249,115,22,0.3);
    transition: var(--transition);
}
.logo:hover .logo-img {
    border-color: var(--brand-orange);
    box-shadow: 0 0 20px rgba(249,115,22,0.5);
    transform: scale(1.05);
}
.logo-text {
    display: flex; flex-direction: column; line-height: 1.1;
}
.logo-name {
    font-size: 1.2rem; font-weight: 800; color: white;
    letter-spacing: 0.02em;
}
.logo-tagline {
    font-size: 0.68rem; font-weight: 500;
    color: var(--brand-orange);
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

nav ul {
    display: flex;
    gap: 0.3rem;
    align-items: center;
}
nav ul a {
    color: rgba(255,255,255,0.75);
    font-weight: 600;
    font-size: 0.9rem;
    padding: 0.5rem 1rem;
    border-radius: var(--radius-full);
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 0.4rem;
    white-space: nowrap;
}
nav ul a:hover {
    color: white;
    background: rgba(249,115,22,0.15);
}
nav ul a.active {
    color: var(--brand-orange);
    background: rgba(249,115,22,0.12);
}
nav ul a i { font-size: 0.85rem; }

/* Mobile hamburger */
.mobile-menu-btn {
    display: none;
    background: rgba(249,115,22,0.12);
    border: 1px solid rgba(249,115,22,0.3);
    font-size: 1.2rem;
    color: var(--brand-orange);
    cursor: pointer;
    padding: 0.5rem 0.7rem;
    border-radius: var(--radius-sm);
    transition: var(--transition);
    flex-shrink: 0;
}
.mobile-menu-btn:hover { background: rgba(249,115,22,0.22); }

/* Mobile menu overlay */
.mobile-nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    z-index: 998;
    backdrop-filter: blur(4px);
}
.mobile-nav-overlay.open { display: block; }

/* Mobile nav drawer */
.mobile-nav-drawer {
    position: fixed;
    top: 0;
    right: -300px;
    width: 290px;
    height: 100%;
    background: #0f172a;
    z-index: 999;
    transition: right 0.35s cubic-bezier(0.4,0,0.2,1);
    padding: 1.5rem;
    box-shadow: -8px 0 40px rgba(0,0,0,0.6);
    overflow-y: auto;
    border-left: 1px solid rgba(249,115,22,0.2);
}
.mobile-nav-drawer.open { right: 0; }
.mobile-nav-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(249,115,22,0.2);
}
.mobile-nav-close {
    background: rgba(249,115,22,0.12);
    border: 1px solid rgba(249,115,22,0.25);
    font-size: 1.1rem;
    color: var(--brand-orange);
    cursor: pointer;
    padding: 0.4rem 0.6rem;
    border-radius: var(--radius-sm);
    transition: var(--transition);
}
.mobile-nav-close:hover { background: rgba(249,115,22,0.25); }
.mobile-nav-drawer ul { flex-direction: column; gap: 0.2rem; display: flex; }
.mobile-nav-drawer ul a {
    font-size: 1rem;
    padding: 0.85rem 1rem;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: rgba(255,255,255,0.75);
    font-weight: 600;
    transition: var(--transition);
    border: 1px solid transparent;
}
.mobile-nav-drawer ul a:hover {
    color: white;
    background: rgba(249,115,22,0.1);
    border-color: rgba(249,115,22,0.2);
}
.mobile-nav-drawer ul a.active {
    color: var(--brand-orange);
    background: rgba(249,115,22,0.12);
    border-color: rgba(249,115,22,0.3);
}
.mobile-nav-drawer ul a i { width: 20px; text-align: center; color: var(--brand-orange); }

/* ---- Buttons ---- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.8rem 1.8rem;
    border-radius: var(--radius-full);
    font-size: 1rem;
    font-weight: 700;
    font-family: inherit;
    cursor: pointer;
    border: none;
    transition: var(--transition);
    text-decoration: none;
    white-space: nowrap;
    position: relative;
    overflow: hidden;
}
.btn::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255,255,255,0);
    transition: background 0.2s;
}
.btn:hover::after { background: rgba(255,255,255,0.1); }
.btn:active { transform: scale(0.97); }

.btn-primary   { background: var(--brand-orange); color: white; box-shadow: 0 4px 16px rgba(249,115,22,0.4); }
.btn-primary:hover   { background: var(--brand-orange-dark); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(249,115,22,0.5); }
.btn-secondary { background: var(--text-muted); color: white; }
.btn-secondary:hover { background: #4b5563; transform: translateY(-2px); }
.btn-outline   { background: transparent; color: white; border: 2px solid rgba(255,255,255,0.6); }
.btn-outline:hover { background: rgba(255,255,255,0.12); border-color: white; transform: translateY(-2px); }
.btn-white     { background: white; color: var(--primary); box-shadow: var(--shadow-md); }
.btn-white:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.btn-success   { background: var(--success); color: white; }
.btn-success:hover { background: #059669; transform: translateY(-2px); }
.btn-danger    { background: var(--danger); color: white; }
.btn-danger:hover  { background: #dc2626; transform: translateY(-2px); }
.btn-sm  { padding: 0.5rem 1.2rem; font-size: 0.85rem; }
.btn-lg  { padding: 1.1rem 2.4rem; font-size: 1.1rem; }
.btn-full { width: 100%; }
.btn i   { font-size: 0.95em; }

/* ---- Cards ---- */
.card {
    background: rgba(255,255,255,0.97);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transition: transform 0.4s cubic-bezier(0.175,0.885,0.32,1.275), box-shadow 0.4s ease;
    border: 1px solid rgba(255,255,255,0.3);
    backdrop-filter: blur(20px);
}
.card:hover {
    transform: translateY(-12px) scale(1.01);
    box-shadow: var(--shadow-xl);
}

/* ---- Hotel Card - Magazine Style ---- */
.hotel-card {
    background: #fff;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0,0,0,0.14);
    transition: transform 0.4s cubic-bezier(0.175,0.885,0.32,1.275), box-shadow 0.4s ease;
    border: 1px solid rgba(255,255,255,0.4);
    position: relative;
}
.hotel-card:hover {
    transform: translateY(-10px) scale(1.015);
    box-shadow: 0 28px 56px rgba(0,0,0,0.22), 0 0 0 1px rgba(249,115,22,0.15);
}

/* Image wrapper: tall cinematic crop */
.hotel-image-wrap {
    position: relative;
    height: 240px;
    overflow: hidden;
    background: linear-gradient(135deg, #1e293b, #0f172a);
}
.hotel-image-wrap img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25,0.46,0.45,0.94);
}
.hotel-card:hover .hotel-image-wrap img { transform: scale(1.09); }

/* Gradient overlay: transparent → dark bottom for text legibility */
.hotel-image-wrap::after {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(to bottom,
        rgba(0,0,0,0) 30%,
        rgba(0,0,0,0.55) 70%,
        rgba(0,0,0,0.82) 100%);
    pointer-events: none;
}

/* Stars badge on image top-right */
.hotel-stars-badge {
    position: absolute;
    top: 0.9rem; right: 0.9rem;
    z-index: 2;
    background: rgba(15,23,42,0.72);
    backdrop-filter: blur(6px);
    border: 1px solid rgba(249,115,22,0.35);
    color: #fbbf24;
    padding: 0.3rem 0.75rem;
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    font-weight: 700;
    display: flex; align-items: center; gap: 0.2rem;
    letter-spacing: 0.04em;
}

/* City badge on image top-left */
.hotel-city-badge {
    position: absolute;
    top: 0.9rem; left: 0.9rem;
    z-index: 2;
    background: var(--brand-orange);
    color: white;
    padding: 0.28rem 0.8rem;
    border-radius: var(--radius-full);
    font-size: 0.78rem;
    font-weight: 700;
    display: flex; align-items: center; gap: 0.3rem;
    box-shadow: 0 2px 12px rgba(249,115,22,0.45);
}

/* Price badge overlaid on bottom of image */
.hotel-price-overlay {
    position: absolute;
    bottom: 0.85rem; left: 0.9rem;
    z-index: 2;
    display: flex; flex-direction: column; line-height: 1.1;
}
.hotel-price-overlay .price-label { font-size: 0.7rem; color: rgba(255,255,255,0.7); font-weight: 500; }
.hotel-price-overlay .price-val {
    font-size: 1.5rem;
    font-weight: 800;
    color: white;
    text-shadow: 0 2px 8px rgba(0,0,0,0.5);
    line-height: 1;
}
.hotel-price-overlay .price-night { font-size: 0.72rem; color: rgba(255,255,255,0.65); }

/* Booking platforms logos on bottom-right */
.hotel-platforms {
    position: absolute;
    bottom: 0.85rem; right: 0.9rem;
    z-index: 2;
    display: flex; gap: 0.3rem;
}
.platform-dot {
    width: 28px; height: 28px;
    border-radius: 50%;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255,255,255,0.3);
    display: flex; align-items: center; justify-content: center;
    font-size: 0.7rem; color: white; font-weight: 700;
    transition: var(--transition);
}
.platform-dot:hover { background: var(--brand-orange); border-color: var(--brand-orange); }

/* Card body */
.hotel-body {
    padding: 1.4rem 1.5rem 1.2rem;
    background: white;
    position: relative;
}

/* Thin orange top border accent */
.hotel-body::before {
    content: '';
    position: absolute;
    top: 0; right: 1.5rem; left: 1.5rem;
    height: 2px;
    background: var(--grad-primary);
    border-radius: 0 0 4px 4px;
    opacity: 0;
    transition: opacity 0.3s ease;
}
.hotel-card:hover .hotel-body::before { opacity: 1; }

.hotel-name {
    font-size: 1.22rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 0.35rem;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.hotel-location {
    display: flex; align-items: center; gap: 0.4rem;
    color: var(--text-muted);
    font-size: 0.87rem;
    margin-bottom: 0.85rem;
}
.hotel-location i { color: var(--brand-orange); font-size: 0.8rem; }

.hotel-description {
    color: #64748b;
    font-size: 0.88rem;
    line-height: 1.55;
    margin-bottom: 1rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Amenity pills */
.hotel-amenities {
    display: flex; flex-wrap: wrap; gap: 0.4rem;
    margin-bottom: 1.1rem;
}
.amenity-pill {
    background: rgba(249,115,22,0.08);
    border: 1px solid rgba(249,115,22,0.18);
    color: #c2410c;
    padding: 0.25rem 0.7rem;
    border-radius: var(--radius-full);
    font-size: 0.76rem;
    font-weight: 600;
    display: flex; align-items: center; gap: 0.25rem;
    transition: var(--transition);
}
.amenity-pill:hover { background: rgba(249,115,22,0.14); }
.amenity-pill i { font-size: 0.7rem; color: var(--brand-orange); }

/* Card footer */
.hotel-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 0.9rem;
    border-top: 1px solid rgba(0,0,0,0.06);
}
.hotel-rating {
    display: flex; align-items: center; gap: 0.35rem;
    font-size: 0.88rem;
}
.rating-score {
    background: var(--grad-primary);
    color: white;
    font-weight: 800;
    font-size: 0.82rem;
    padding: 0.2rem 0.55rem;
    border-radius: 6px;
}
.rating-label { color: var(--text-muted); font-size: 0.8rem; }

/* Legacy aliases for backward compat */
.hotel-image-container { position: relative; overflow: hidden; height: 240px; background: linear-gradient(135deg, #1e293b, #0f172a); }
.hotel-image-container img { width: 100%; height: 100%; object-fit: cover; }
.hotel-badge {
    position: absolute; top: 0.9rem; right: 0.9rem; z-index: 2;
    background: var(--brand-orange); color: white;
    padding: 0.3rem 0.9rem; border-radius: var(--radius-full);
    font-size: 0.8rem; font-weight: 700;
    box-shadow: 0 2px 12px rgba(249,115,22,0.4);
}
.hotel-price-badge {
    position: absolute; bottom: 0.9rem; left: 0.9rem; z-index: 2;
    background: rgba(0,0,0,0.72); backdrop-filter: blur(8px);
    color: white; padding: 0.4rem 0.9rem; border-radius: var(--radius-full);
    font-size: 0.9rem; font-weight: 700;
}
.hotel-content { padding: 1.4rem 1.5rem; }
.hotel-meta { display: grid; grid-template-columns: repeat(2,1fr); gap: 0.5rem; margin-bottom: 1rem; }
.meta-item {
    background: #f8fafc; border: 1px solid #e2e8f0;
    border-radius: var(--radius-sm); padding: 0.5rem 0.7rem;
    font-size: 0.8rem; display: flex; align-items: center; gap: 0.35rem;
    color: var(--text-dark); transition: var(--transition);
}
.meta-item:hover { background: rgba(249,115,22,0.06); border-color: rgba(249,115,22,0.2); }
.meta-item i { color: var(--brand-orange); font-size: 0.82rem; flex-shrink: 0; }
.hotel-footer {
    display: flex; justify-content: space-between; align-items: center;
    padding-top: 0.9rem; border-top: 1px solid rgba(0,0,0,0.06);
}
.price-main { font-size: 1.35rem; font-weight: 800; color: var(--brand-orange); }
.price-unit { font-size: 0.78rem; color: var(--text-muted); font-weight: 400; }

/* Stars */
.stars { color: var(--accent); font-size: 0.85rem; display: flex; gap: 0.1rem; }

/* ---- Skeleton Loader ---- */
.skeleton {
    background: linear-gradient(90deg, #e2e8f0 25%, #f1f5f9 50%, #e2e8f0 75%);
    background-size: 200% 100%;
    animation: skeleton-shine 1.5s ease-in-out infinite;
    border-radius: var(--radius-sm);
}
@keyframes skeleton-shine {
    0%   { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}
.skeleton-card {
    background: rgba(255,255,255,0.95);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}
.skeleton-img  { height: 260px; border-radius: 0; }
.skeleton-body { padding: 1.6rem; display: flex; flex-direction: column; gap: 0.8rem; }
.skeleton-line { height: 14px; border-radius: 7px; }
.skeleton-line.w-80 { width: 80%; }
.skeleton-line.w-60 { width: 60%; }
.skeleton-line.w-40 { width: 40%; }
.skeleton-line.w-100 { width: 100%; }
.skeleton-line.h-20 { height: 20px; }
.skeleton-line.h-24 { height: 24px; }

/* ---- Spinner ---- */
.spinner {
    width: 44px; height: 44px;
    border: 4px solid rgba(255,255,255,0.3);
    border-top-color: white;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
    flex-shrink: 0;
}
@keyframes spin { to { transform: rotate(360deg); } }

.loading-state {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 4rem 2rem;
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
}

/* ---- Section Headers ---- */
.section-header { text-align: center; margin-bottom: 3rem; color: white; }
.section-title  { font-size: 2.6rem; font-weight: 800; margin-bottom: 0.8rem; text-shadow: 0 2px 8px rgba(0,0,0,0.25); }
.section-subtitle { font-size: 1.15rem; opacity: 0.88; max-width: 560px; margin: 0 auto; }

/* ---- Glassmorphism Panel ---- */
.glass-panel {
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
    border: 1px solid rgba(255,255,255,0.4);
}

/* ---- Badge ---- */
.badge {
    display: inline-flex; align-items: center; gap: 0.3rem;
    padding: 0.3rem 0.8rem;
    border-radius: var(--radius-full);
    font-size: 0.8rem; font-weight: 700;
}
.badge-primary { background: rgba(249,115,22,0.12); color: var(--brand-orange); }
.badge-success { background: rgba(16,185,129,0.12); color: var(--success); }
.badge-accent  { background: rgba(245,158,11,0.12); color: var(--accent); }

/* ---- Amenity Tags ---- */
.amenity-list { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.amenity-tag {
    background: var(--grad-primary);
    color: white;
    padding: 0.35rem 0.9rem;
    border-radius: var(--radius-full);
    font-size: 0.82rem;
    font-weight: 600;
    display: flex; align-items: center; gap: 0.3rem;
    transition: var(--transition);
    cursor: default;
}
.amenity-tag:hover { transform: translateY(-2px); box-shadow: var(--shadow-sm); }

/* ---- Footer ---- */
footer {
    background: var(--grad-dark);
    color: white;
    margin-top: 6rem;
    position: relative;
    overflow: hidden;
}
footer::before {
    content: '';
    position: absolute; inset: 0;
    background: radial-gradient(ellipse at top right, rgba(249,115,22,0.12) 0%, transparent 60%);
    pointer-events: none;
}
.footer-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 4rem 2rem 2rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 3rem;
    position: relative;
}
.footer-section h3 {
    font-size: 1.1rem; font-weight: 700;
    color: var(--accent);
    margin-bottom: 1.2rem;
    display: flex; align-items: center; gap: 0.5rem;
}
.footer-section p { color: #9ca3af; line-height: 1.7; font-size: 0.93rem; }
.footer-links { display: flex; flex-direction: column; gap: 0.6rem; }
.footer-links a {
    color: #d1d5db; font-size: 0.93rem;
    display: flex; align-items: center; gap: 0.5rem;
    transition: var(--transition);
}
.footer-links a:hover { color: var(--accent); transform: translateX(-4px); }
.footer-links a i { font-size: 0.8rem; color: var(--primary-light); width: 16px; }

.social-links { display: flex; gap: 0.8rem; margin-top: 1rem; }
.social-links a {
    width: 44px; height: 44px;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.1rem;
    color: white;
    transition: var(--transition);
}
.social-links a:hover { background: var(--grad-primary); border-color: transparent; transform: translateY(-4px); }

.newsletter-form { display: flex; flex-direction: column; gap: 0.7rem; margin-top: 0.8rem; }
.newsletter-form input {
    padding: 0.8rem 1rem;
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: var(--radius-full);
    background: rgba(255,255,255,0.08);
    color: white;
    font-family: inherit; font-size: 0.9rem;
    outline: none;
    transition: var(--transition);
}
.newsletter-form input::placeholder { color: rgba(255,255,255,0.4); }
.newsletter-form input:focus { border-color: rgba(249,115,22,0.6); background: rgba(255,255,255,0.12); }

.footer-bottom {
    text-align: center;
    padding: 1.5rem 2rem;
    border-top: 1px solid rgba(255,255,255,0.08);
    background: rgba(0,0,0,0.2);
    position: relative;
    font-size: 0.88rem;
    color: #6b7280;
}

/* ---- Scroll Animations ---- */
.fade-in { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* ---- Scrollbar ---- */
::-webkit-scrollbar { width: 7px; }
::-webkit-scrollbar-track { background: #f1f5f9; }
::-webkit-scrollbar-thumb { background: var(--grad-primary); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--primary); }

/* ---- Responsive ---- */
@media (max-width: 1024px) {
    .section-title { font-size: 2.2rem; }
}
@media (max-width: 768px) {
    nav ul { display: none; }
    .mobile-menu-btn { display: flex; align-items: center; }
    .logo { font-size: 1.5rem; }
    nav { padding: 0.8rem 1rem; }
    .section-title { font-size: 1.9rem; }
    .section-subtitle { font-size: 1rem; }
    .footer-inner { grid-template-columns: 1fr 1fr; gap: 2rem; }
    .hotel-meta { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
    .section-title { font-size: 1.6rem; }
    .footer-inner { grid-template-columns: 1fr; }
    .footer-links a:hover { transform: none; }
}
