/* ═══════════════════════════════════════════════
   ICO OHRID — Main Stylesheet
   ═══════════════════════════════════════════════ */

:root {
    --primary:    #0a4d68;
    --secondary:  #088395;
    --accent:     #05bfdb;
    --light:      #f1f6f9;
    --alt-bg:     #eaf4f7;
    --dark:       #1a2530;
    --white:      #ffffff;
    --success:    #28a745;
    --warning:    #ffc107;
    --danger:     #dc3545;
    --text-muted: #6c757d;
    --font-main:  'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --shadow:     0 4px 20px rgba(0,0,0,0.08);
    --shadow-md:  0 8px 30px rgba(0,0,0,0.12);
    --transition: all 0.3s ease;
    --radius:     14px;
    --radius-sm:  8px;
}

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

html { scroll-behavior: smooth; }

body {
    font-family: var(--font-main);
    line-height: 1.65;
    color: var(--dark);
    background: var(--light);
    overflow-x: hidden;
}

a { text-decoration: none; color: inherit; transition: var(--transition); }
ul { list-style: none; }
img { max-width: 100%; display: block; }

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ══════════════════════════════════════════
   HEADER & NAV
══════════════════════════════════════════ */
header {
    background: var(--white);
    padding: 0.85rem 0;
    box-shadow: 0 2px 12px rgba(0,0,0,0.07);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo a { display: flex; align-items: center; gap: 10px; }

.logo h1 {
    font-size: 1.45rem;
    color: var(--primary);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.logo h1 span { color: var(--accent); }

.logo-circle {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;
    background: white;
    border: 2px solid white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.15);
    flex-shrink: 0;
}
@media (max-width: 768px) {
    .logo-circle { width: 36px; height: 36px; }
}

/* Desktop nav links */
.nav-links {
    display: flex;
    gap: 0.2rem;
    align-items: center;
    flex: 1;
    justify-content: center;
}

.nav-links li a {
    padding: 8px 14px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 0.92rem;
    color: var(--dark);
    transition: var(--transition);
}

.nav-links li a:hover,
.nav-links li a.active {
    color: var(--secondary);
    background: var(--alt-bg);
}

/* Header right cluster */
.nav-right {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.lang-switcher { display: flex; gap: 6px; }

.lang-btn {
    padding: 5px 10px;
    border: 1.5px solid var(--primary);
    border-radius: var(--radius-sm);
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--primary);
    transition: var(--transition);
}

.lang-btn:hover,
.lang-btn.active {
    background: var(--primary);
    color: var(--white);
}

.admin-link a {
    color: var(--text-muted);
    font-size: 1rem;
    padding: 6px 10px;
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

.admin-link a:hover { color: var(--primary); background: var(--alt-bg); }

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 6px;
    border-radius: var(--radius-sm);
    background: none;
    border: none;
    transition: var(--transition);
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2.5px;
    background: var(--primary);
    border-radius: 2px;
    transition: var(--transition);
}

.hamburger.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* Mobile nav overlay */
.mobile-nav {
    display: none;
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(10, 77, 104, 0.97);
    z-index: 999;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    opacity: 0;
    transform: translateY(-10px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.mobile-nav.open {
    display: flex;
    opacity: 1;
    transform: translateY(0);
}

.mobile-nav a {
    color: var(--white);
    font-size: 1.6rem;
    font-weight: 700;
    padding: 10px 30px;
    border-radius: 50px;
    transition: var(--transition);
}

.mobile-nav a:hover { background: rgba(255,255,255,0.15); }

.mobile-nav-close {
    position: absolute;
    top: 20px; right: 20px;
    color: var(--white);
    font-size: 1.8rem;
    cursor: pointer;
    background: none;
    border: none;
    padding: 8px;
    line-height: 1;
}

.mobile-nav-langs {
    display: flex;
    gap: 12px;
    margin-top: 10px;
}

.mobile-nav-langs a {
    font-size: 1rem;
    border: 2px solid rgba(255,255,255,0.5);
    border-radius: 8px;
    padding: 8px 20px !important;
}

/* ══════════════════════════════════════════
   HERO
══════════════════════════════════════════ */
.hero {
    min-height: 88vh;
    background:
        linear-gradient(rgba(10, 77, 104, 0.62), rgba(5, 30, 50, 0.75)),
        url('../images/hero-bg.jpg') center/cover no-repeat;
    background-attachment: fixed;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    position: relative;
    padding: 60px 20px;
}

.hero-badge {
    display: inline-block;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 50px;
    padding: 6px 18px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 1.2rem;
    text-transform: uppercase;
}

.hero-content { max-width: 720px; }

.hero-content h2 {
    font-size: clamp(2.2rem, 6vw, 4rem);
    font-weight: 800;
    margin-bottom: 1rem;
    line-height: 1.15;
    text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.hero-content p {
    font-size: clamp(1rem, 2.5vw, 1.25rem);
    margin-bottom: 2.5rem;
    opacity: 0.9;
}

.hero-btns {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-hero {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 36px;
    background: var(--accent);
    color: var(--dark) !important;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    border: 2px solid transparent;
    transition: var(--transition);
}

.btn-hero:hover {
    background: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(5,191,219,0.45);
}

.btn-hero-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 36px;
    background: transparent;
    color: var(--white) !important;
    border: 2px solid rgba(255,255,255,0.6);
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    transition: var(--transition);
}

.btn-hero-outline:hover {
    background: rgba(255,255,255,0.15);
    border-color: var(--white);
    transform: translateY(-3px);
}

.hero-scroll-hint {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255,255,255,0.6);
    font-size: 1.2rem;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(8px); }
}

/* ══════════════════════════════════════════
   BUTTONS (General)
══════════════════════════════════════════ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 11px 26px;
    background: var(--secondary);
    color: var(--white);
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    border: 2px solid transparent;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
}

.btn:hover {
    background: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(8,131,149,0.35);
}

.btn-block { width: 100%; margin-top: 14px; }

.btn-outline {
    background: transparent;
    border-color: var(--secondary);
    color: var(--secondary);
}

.btn-outline:hover {
    background: var(--secondary);
    color: var(--white);
}

/* ══════════════════════════════════════════
   SECTIONS
══════════════════════════════════════════ */
.section { padding: 90px 0; }

.section-alt { background: var(--alt-bg); }

.section-title {
    text-align: center;
    margin-bottom: 55px;
}

.section-title h2 {
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    color: var(--primary);
    margin-bottom: 8px;
    font-weight: 800;
}

.section-title p {
    color: var(--text-muted);
    font-size: 1.05rem;
    margin-bottom: 14px;
}

.section-title .underline {
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--secondary), var(--accent));
    margin: 0 auto;
    border-radius: 2px;
}

/* ══════════════════════════════════════════
   ROOM CARDS (Homepage)
══════════════════════════════════════════ */
.rooms-grid {
    display: grid;
    gap: 24px;
}

/* Row 1: exactly 2 equal columns */
.rooms-grid-2 {
    grid-template-columns: 1fr 1fr;
}

/* Row 2: exactly 3 equal columns */
.rooms-grid-3 {
    grid-template-columns: 1fr 1fr 1fr;
}

.room-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.room-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
}

.room-card-img {
    height: 190px;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.room-card-overlay {
    width: 100%;
    height: 100%;
    background: rgba(10, 40, 60, 0.45);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.room-card:hover .room-card-overlay { background: rgba(10, 40, 60, 0.25); }

.room-card-icon {
    font-size: 3rem;
    color: rgba(255,255,255,0.9);
    filter: drop-shadow(0 2px 8px rgba(0,0,0,0.4));
}

.room-card-body {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.room-card-body h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 8px;
}

.room-card-body p {
    font-size: 0.88rem;
    color: var(--text-muted);
    flex: 1;
    margin-bottom: 12px;
    line-height: 1.55;
}

.room-card-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 4px;
    font-size: 0.82rem;
    color: var(--text-muted);
}

.room-price {
    font-weight: 700;
    color: var(--secondary);
    font-size: 0.95rem;
}

/* ══════════════════════════════════════════
   SERVICES SECTION
══════════════════════════════════════════ */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 24px;
}

.service-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

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

/* Fixed / cover image banner */
.service-banner {
    height: 180px;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* If a real image is set as background-image, we still show the icon */
.service-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.18);
}

.service-icon {
    position: relative;
    z-index: 1;
    font-size: 3.5rem;
    color: rgba(255,255,255,0.9);
    filter: drop-shadow(0 3px 10px rgba(0,0,0,0.35));
    transition: var(--transition);
}

.service-card:hover .service-icon { transform: scale(1.1); }

.service-body {
    padding: 20px;
    text-align: center;
}

.service-body h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 8px;
}

.service-body p {
    font-size: 0.87rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* ══════════════════════════════════════════
   AMENITIES SECTION
══════════════════════════════════════════ */
.amenities-section { background: var(--primary); }
.amenities-section .section-title h2 { color: var(--white); }
.amenities-section .section-title p { color: rgba(255,255,255,0.7); }
.amenities-section .underline { background: linear-gradient(90deg, var(--accent), rgba(255,255,255,0.4)); }

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

.amenity-box {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.12);
    backdrop-filter: blur(6px);
    border-radius: var(--radius);
    padding: 36px 28px;
    text-align: center;
    color: var(--white);
    transition: var(--transition);
}

.amenity-box:hover {
    background: rgba(255,255,255,0.14);
    transform: translateY(-4px);
}

.amenity-icon-wrap {
    width: 72px;
    height: 72px;
    background: var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
    font-size: 1.7rem;
    color: var(--dark);
    box-shadow: 0 4px 18px rgba(5,191,219,0.45);
}

.amenity-box h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.amenity-box p {
    font-size: 0.9rem;
    opacity: 0.82;
    line-height: 1.6;
}

/* ══════════════════════════════════════════
   CTA STRIP
══════════════════════════════════════════ */
.cta-strip {
    background: linear-gradient(135deg, var(--secondary), var(--accent));
    padding: 60px 0;
}

.cta-strip-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    flex-wrap: wrap;
    color: var(--white);
}

.cta-strip-inner h2 {
    font-size: clamp(1.4rem, 3vw, 2rem);
    font-weight: 800;
    margin-bottom: 6px;
}

.cta-strip-inner p { opacity: 0.88; font-size: 1rem; }

.cta-strip-btns {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    flex-shrink: 0;
}

.cta-strip .btn-hero { background: var(--white); color: var(--primary) !important; }
.cta-strip .btn-hero:hover { background: var(--dark); color: var(--white) !important; }

/* ══════════════════════════════════════════
   GENERAL CARD (used on accommodations/single)
══════════════════════════════════════════ */
.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 28px;
}

.card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

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

.card-img {
    height: 210px;
    background-color: var(--secondary);
    position: relative;
    overflow: hidden;
}

.card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.card-content { padding: 22px; }

.card-content h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 8px;
}

.card-desc {
    font-size: 0.88rem;
    color: var(--text-muted);
    margin: 8px 0;
    line-height: 1.55;
}

.card-price {
    color: var(--secondary);
    font-weight: 700;
    font-size: 1.1rem;
    margin: 10px 0;
}

/* ══════════════════════════════════════════
   FOOTER
══════════════════════════════════════════ */
footer {
    background: var(--dark);
    color: rgba(255,255,255,0.85);
    padding: 60px 0 24px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr;
    gap: 50px;
    margin-bottom: 50px;
}

.footer-col h3 {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 14px;
}

.footer-col h4 {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 14px;
}

.footer-col p {
    font-size: 0.9rem;
    line-height: 1.8;
    opacity: 0.8;
    margin-bottom: 6px;
}

.footer-col ul li { margin-bottom: 8px; }

.footer-col ul li a {
    font-size: 0.9rem;
    opacity: 0.8;
    transition: var(--transition);
}

.footer-col ul li a:hover { opacity: 1; color: var(--accent); padding-left: 4px; }

.footer-col .fa {
    color: var(--accent);
    width: 18px;
    margin-right: 6px;
}

.footer-bottom {
    text-align: center;
    padding-top: 24px;
    border-top: 1px solid rgba(255,255,255,0.08);
    font-size: 0.85rem;
    opacity: 0.6;
}

/* ══════════════════════════════════════════
   NASTANI NAV BUTTON
══════════════════════════════════════════ */
.nav-links .nav-btn-nastani,
.mobile-nav .nav-btn-nastani {
    background: var(--secondary);
    color: white !important;
    padding: 7px 18px !important;
    border-radius: 20px;
    font-weight: 700 !important;
    font-size: 0.88rem;
    transition: background 0.2s, transform 0.15s;
}
.nav-links .nav-btn-nastani:hover,
.mobile-nav .nav-btn-nastani:hover {
    background: var(--primary);
    transform: translateY(-1px);
}

/* ══════════════════════════════════════════
   WHATSAPP FLOATING BUTTON
══════════════════════════════════════════ */
.whatsapp-float {
    position: fixed;
    bottom: 28px;
    right: 28px;
    width: 58px;
    height: 58px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.6rem;
    box-shadow: 0 4px 18px rgba(37,211,102,0.45);
    z-index: 9999;
    transition: transform 0.2s, box-shadow 0.2s;
    text-decoration: none;
}
.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 24px rgba(37,211,102,0.6);
    color: white;
}
@media (max-width: 600px) {
    .whatsapp-float { bottom: 18px; right: 18px; width: 52px; height: 52px; font-size: 1.4rem; }
}

/* ══════════════════════════════════════════
   FORM STYLING
══════════════════════════════════════════ */
.form-group { margin-bottom: 18px; }

.form-group label {
    display: block;
    margin-bottom: 7px;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--dark);
}

.form-control {
    width: 100%;
    padding: 11px 15px;
    border: 1.5px solid #dde3ea;
    border-radius: var(--radius-sm);
    font-family: inherit;
    font-size: 0.93rem;
    background: var(--white);
    transition: var(--transition);
    color: var(--dark);
}

.form-control:focus {
    outline: none;
    border-color: var(--secondary);
    box-shadow: 0 0 0 3px rgba(8,131,149,0.12);
}

textarea.form-control { resize: vertical; }

/* Alert boxes */
.alert {
    padding: 14px 18px;
    border-radius: var(--radius-sm);
    margin-bottom: 18px;
    font-size: 0.93rem;
    font-weight: 500;
}

.alert-success { background: #d4edda; color: #155724; border: 1px solid #c3e6cb; }
.alert-danger  { background: #f8d7da; color: #721c24; border: 1px solid #f5c6cb; }

/* ══════════════════════════════════════════
   ACCOMMODATIONS PAGE
══════════════════════════════════════════ */
.page-hero {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: var(--white);
    padding: 60px 0 50px;
    text-align: center;
}

.page-hero h1 { font-size: clamp(1.8rem, 4vw, 2.8rem); font-weight: 800; }
.page-hero p  { font-size: 1.05rem; opacity: 0.85; margin-top: 8px; }

.type-filters {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.filter-btn {
    padding: 9px 20px;
    border-radius: 50px;
    border: 2px solid var(--secondary);
    color: var(--secondary);
    font-weight: 600;
    font-size: 0.88rem;
    transition: var(--transition);
    cursor: pointer;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--secondary);
    color: var(--white);
}

.empty-state {
    text-align: center;
    padding: 80px 20px;
    color: var(--text-muted);
}

.empty-state .fa {
    font-size: 4rem;
    color: var(--accent);
    margin-bottom: 20px;
}

.empty-state h3 {
    font-size: 1.4rem;
    color: var(--primary);
    margin-bottom: 12px;
}

/* ══════════════════════════════════════════
   SINGLE PAGE
══════════════════════════════════════════ */
.single-layout {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 40px;
    align-items: start;
}

.single-img {
    width: 100%;
    border-radius: var(--radius);
    margin-bottom: 24px;
    max-height: 440px;
    object-fit: cover;
}

.single-info-bar {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    background: var(--white);
    padding: 20px 24px;
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow);
    margin-top: 20px;
}

.single-info-bar span {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--dark);
}

.single-info-bar .fa { color: var(--secondary); }

.booking-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 30px;
    box-shadow: var(--shadow);
    position: sticky;
    top: 90px;
}

.booking-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 18px;
    padding-bottom: 14px;
    border-bottom: 1px solid #eee;
}

.date-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

/* ══════════════════════════════════════════
   IMAGE CAROUSEL
══════════════════════════════════════════ */
.carousel {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    background: #111;
    margin-bottom: 24px;
    user-select: none;
}

.carousel-slide {
    display: none;
    aspect-ratio: 16 / 9;
}

.carousel-slide.active { display: block; }

.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

/* Prev / Next arrows */
.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.45);
    color: white;
    border: none;
    border-radius: 50%;
    width: 44px;
    height: 44px;
    font-size: 1rem;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    backdrop-filter: blur(4px);
}

.carousel-btn:hover { background: rgba(0,0,0,0.75); }
.carousel-prev { left: 14px; }
.carousel-next { right: 14px; }

/* Counter badge */
.carousel-counter {
    position: absolute;
    top: 14px;
    right: 14px;
    background: rgba(0,0,0,0.5);
    color: white;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 0.78rem;
    font-weight: 600;
    backdrop-filter: blur(4px);
    pointer-events: none;
}

/* Dot indicators */
.carousel-dots {
    position: absolute;
    bottom: 56px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 6px;
    z-index: 10;
}

.carousel-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    border: none;
    cursor: pointer;
    transition: var(--transition);
    padding: 0;
}

.carousel-dot.active { background: white; transform: scale(1.3); }

/* Thumbnails strip */
.carousel-thumbs {
    display: flex;
    gap: 6px;
    padding: 8px 10px;
    background: rgba(0,0,0,0.65);
    overflow-x: auto;
    scrollbar-width: thin;
}

.carousel-thumb {
    flex-shrink: 0;
    width: 60px;
    height: 42px;
    border-radius: 6px;
    overflow: hidden;
    cursor: pointer;
    opacity: 0.55;
    border: 2px solid transparent;
    transition: var(--transition);
}

.carousel-thumb img { width: 100%; height: 100%; object-fit: cover; }

.carousel-thumb.active,
.carousel-thumb:hover { opacity: 1; border-color: var(--accent); }

/* ── Google Maps section ── */
.maps-section {
    margin-top: 28px;
}

.maps-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.maps-title .fa { color: var(--danger); }

.maps-wrapper {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.maps-wrapper iframe {
    display: block;
    width: 100%;
    height: 320px;
    border: 0;
}

/* ══════════════════════════════════════════
   CONTACT PAGE
══════════════════════════════════════════ */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 50px;
    align-items: start;
}

.contact-info h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 16px;
}

.contact-info p {
    color: var(--text-muted);
    margin-bottom: 24px;
    line-height: 1.7;
}

.contact-detail {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 18px;
}

.contact-detail-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    flex-shrink: 0;
    background: var(--alt-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--secondary);
    font-size: 1rem;
    line-height: 1;
    font-size: 1rem;
    flex-shrink: 0;
}

.contact-detail-text strong {
    display: block;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text-muted);
    margin-bottom: 2px;
}

.contact-detail-text span { font-weight: 600; color: var(--dark); }

/* Footer overrides for contact details */
footer .contact-detail-icon {
    background: rgba(255,255,255,0.12);
    color: var(--accent);
}

footer .contact-detail-text span,
footer .contact-detail-text a {
    color: rgba(255,255,255,0.9);
    font-weight: 500;
}

/* ══════════════════════════════════════════
   ABOUT PAGE
══════════════════════════════════════════ */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-img {
    width: 100%;
    border-radius: var(--radius);
    box-shadow: var(--shadow-md);
}

.check-list { margin-top: 20px; }

.check-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 0;
    border-bottom: 1px solid #eee;
    font-size: 0.95rem;
}

.check-list li .fa { color: var(--secondary); font-size: 1rem; }

/* ══════════════════════════════════════════
   ADMIN PANEL
══════════════════════════════════════════ */
.admin-layout {
    display: flex;
    min-height: 100vh;
}

.sidebar {
    width: 240px;
    background: var(--primary);
    color: var(--white);
    padding: 24px 16px;
    flex-shrink: 0;
}

.sidebar h2 {
    font-size: 1.1rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(255,255,255,0.15);
}

.sidebar a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 14px;
    color: rgba(255,255,255,0.85);
    border-radius: var(--radius-sm);
    margin-bottom: 4px;
    font-weight: 500;
    font-size: 0.93rem;
    transition: var(--transition);
}

.sidebar a:hover,
.sidebar a.active { background: rgba(255,255,255,0.12); color: var(--white); }

.main-content { flex: 1; padding: 40px; background: #f4f6f8; }

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.stat-card {
    background: var(--white);
    padding: 28px 24px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    border-left: 4px solid var(--accent);
}

.stat-card h3 {
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
    margin-bottom: 10px;
}

.stat-card .stat-num {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--primary);
}

.admin-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.admin-table th {
    background: var(--light);
    padding: 14px 18px;
    text-align: left;
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text-muted);
    border-bottom: 1px solid #eee;
}

.admin-table td {
    padding: 14px 18px;
    border-bottom: 1px solid #f0f0f0;
    font-size: 0.92rem;
    vertical-align: middle;
}

.admin-table tbody tr:hover { background: var(--light); }
.admin-table tbody tr:last-child td { border-bottom: none; }

.status-badge {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.badge-pending   { background: #fff3cd; color: #856404; }
.badge-confirmed { background: #d4edda; color: #155724; }
.badge-cancelled { background: #f8d7da; color: #721c24; }

/* Legacy class names for existing admin files */
.pending   { background: #fff3cd; color: #856404; }
.confirmed { background: #d4edda; color: #155724; }
.cancelled { background: #f8d7da; color: #721c24; }

.admin-form-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 12px;
    align-items: end;
}

/* ══════════════════════════════════════════
   UTILITIES
══════════════════════════════════════════ */
.text-center { text-align: center; }
.text-muted  { color: var(--text-muted); }
.mt-20 { margin-top: 20px; }
.mb-20 { margin-bottom: 20px; }

/* ══════════════════════════════════════════
   RESPONSIVE — Tablet (≤ 992px)
══════════════════════════════════════════ */
@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 36px;
    }

    .single-layout {
        grid-template-columns: 1fr;
    }

    .booking-card { position: static; }

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

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

    .cta-strip-inner {
        flex-direction: column;
        text-align: center;
    }

    .cta-strip-btns { justify-content: center; }

    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    }

    .rooms-grid {
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    }

    .hero { background-attachment: scroll; }
}

/* ══════════════════════════════════════════
   RESPONSIVE — Mobile (≤ 768px)
══════════════════════════════════════════ */
@media (max-width: 768px) {
    /* Hide desktop nav, show hamburger */
    .nav-links { display: none; }
    .hamburger { display: flex; }

    /* Lang switcher stays visible in header on mobile */
    .lang-switcher { gap: 4px; }
    .lang-btn { padding: 4px 8px; font-size: 0.72rem; }

    /* Hero */
    .hero { min-height: 75vh; background-attachment: scroll; }
    .hero-btns { flex-direction: column; align-items: center; }
    .btn-hero, .btn-hero-outline { width: 100%; max-width: 260px; justify-content: center; }

    /* Rooms grid */
    .rooms-grid-2,
    .rooms-grid-3 {
        grid-template-columns: 1fr 1fr;
        gap: 14px;
    }

    .room-card-img { height: 140px; }
    .room-card-icon { font-size: 2.2rem; }
    .room-card-body { padding: 14px; }
    .room-card-body h3 { font-size: 0.92rem; }

    /* Services */
    .services-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .service-banner { height: 140px; }
    .service-icon { font-size: 2.8rem; }

    /* Amenities */
    .amenities-grid { grid-template-columns: 1fr; gap: 16px; }

    /* Footer */
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    /* Section padding */
    .section { padding: 60px 0; }
    .section-title { margin-bottom: 36px; }

    /* Accommodations */
    .grid { grid-template-columns: 1fr; }

    /* Single page */
    .single-layout { grid-template-columns: 1fr; }
    .date-grid { grid-template-columns: 1fr; }

    /* Contact page */
    .contact-grid { grid-template-columns: 1fr; }

    /* CTA strip */
    .cta-strip { padding: 40px 0; }
    .cta-strip-inner { flex-direction: column; text-align: center; }
    .cta-strip-btns { flex-direction: column; align-items: center; width: 100%; }
    .cta-strip-btns .btn-hero,
    .cta-strip-btns .btn-hero-outline { width: 100%; max-width: 260px; }

    /* Admin */
    .admin-layout { flex-direction: column; }
    .sidebar { width: 100%; padding: 16px; min-height: auto; }
    .main-content { padding: 20px; }
    .admin-form-grid { grid-template-columns: 1fr; }

    /* Type filters */
    .type-filters { gap: 6px; }
    .filter-btn { padding: 7px 14px; font-size: 0.82rem; }
}

/* ══════════════════════════════════════════
   RESPONSIVE — Small Mobile (≤ 480px)
══════════════════════════════════════════ */
@media (max-width: 480px) {
    .rooms-grid-2,
    .rooms-grid-3 { grid-template-columns: 1fr; }
    .hero-badge { font-size: 0.75rem; }
    .hero-scroll-hint { display: none; }
    .booking-card { padding: 20px; }
    nav { gap: 0.5rem; }
}
