/* ========================================
   Hotel Nada - Responsive CSS
   Mobile-First Design | Compact Buttons
   ======================================== */

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

:root {
    --gold: #c9a84c;
    --gold-light: #d4b76a;
    --gold-dark: #a88a3a;
    --dark: #1a1a1a;
    --dark-light: #2a2a2a;
    --cream: #faf8f5;
    --white: #ffffff;
    --gray: #666666;
    --radius: 12px;
    --radius-lg: 20px;
    --transition: all 0.3s ease;
}

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

body {
    font-family: 'Cairo', 'Segoe UI', sans-serif;
    background: var(--cream);
    color: var(--dark);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', 'Georgia', serif;
    font-weight: 700;
    line-height: 1.2;
}

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

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

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

.navbar.scrolled {
    background: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(10px);
    padding: 10px 0;
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

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

.logo-img {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--gold);
}

.logo-text {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 50%, var(--gold-dark) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-link {
    color: rgba(255,255,255,0.8);
    font-size: 0.85rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    padding: 5px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: var(--transition);
}

.nav-link:hover { color: var(--gold); }
.nav-link:hover::after { width: 100%; }

.nav-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.lang-dropdown {
    position: relative;
}

.lang-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 50px;
    color: white;
    font-size: 0.8rem;
    cursor: pointer;
    font-family: 'Cairo', sans-serif;
    transition: var(--transition);
}

.lang-btn:hover {
    background: rgba(255,255,255,0.2);
    border-color: var(--gold);
}

.lang-dropdown-content {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    margin-top: 8px;
    background: var(--dark);
    border: 1px solid var(--dark-light);
    border-radius: var(--radius);
    overflow: hidden;
    min-width: 140px;
}

.lang-dropdown-content a {
    display: block;
    padding: 12px 16px;
    color: rgba(255,255,255,0.8);
    font-size: 0.85rem;
    transition: var(--transition);
}

.lang-dropdown-content a:hover,
.lang-dropdown-content a.active {
    background: var(--gold);
    color: white;
}

.lang-dropdown.show .lang-dropdown-content { display: block; }

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-toggle span {
    display: block;
    width: 25px;
    height: 2px;
    background: white;
    transition: var(--transition);
}

/* ========================================
   BUTTONS - COMPACT
   ======================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 10px 20px;
    border-radius: var(--radius);
    font-size: 0.85rem;
    font-weight: 600;
    font-family: 'Cairo', sans-serif;
    cursor: pointer;
    transition: var(--transition);
    border: none;
}

.btn-lg {
    padding: 12px 24px;
    font-size: 0.9rem;
}

.btn-full { width: 100%; }

.btn-gold {
    background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 50%, var(--gold-dark) 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(201, 168, 76, 0.3);
}

.btn-gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(201, 168, 76, 0.4);
}

.btn-outline {
    background: transparent;
    border: 1px solid rgba(255,255,255,0.3);
    color: white;
}

.btn-outline:hover {
    background: rgba(255,255,255,0.1);
    border-color: var(--gold);
}

/* ========================================
   HERO SECTION
   ======================================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.5) 50%, rgba(0,0,0,0.85) 100%);
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 800px;
    padding: 0 20px;
    padding-top: 80px;
}

.stars {
    display: flex;
    justify-content: center;
    gap: 5px;
    margin-bottom: 15px;
}

.star {
    width: 18px;
    height: 18px;
    color: var(--gold);
}

.hero-welcome {
    color: rgba(255,255,255,0.8);
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 12px;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: white;
    margin-bottom: 12px;
    background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 50%, var(--gold-dark) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    color: var(--gold);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 12px;
}

.hero-desc {
    color: rgba(255,255,255,0.7);
    font-size: 0.95rem;
    max-width: 600px;
    margin: 0 auto 25px;
    line-height: 1.8;
}

.hero-btns {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

/* COMPACT CONTACT PILLS - HERO */
.hero-contact {
    display: flex;
    gap: 8px;
    justify-content: center;
    flex-wrap: wrap;
}

.contact-pill {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 5px 12px;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 50px;
    color: var(--gold);
    font-size: 0.7rem;
    font-weight: 500;
    transition: var(--transition);
}

.contact-pill:hover {
    background: rgba(255,255,255,0.2);
    color: white;
    border-color: var(--gold);
}

.contact-pill svg,
.contact-pill span:first-child {
    width: 12px;
    height: 12px;
    font-size: 10px;
}

.whatsapp-pill {
    background: rgba(37, 211, 102, 0.8);
    color: white;
    border-color: rgba(37, 211, 102, 0.5);
}

.whatsapp-pill:hover { background: #25d366; }

/* RTL number fix */
.ltr-num {
    direction: ltr;
    display: inline-block;
    unicode-bidi: embed;
}

.scroll-indicator {
    position: absolute;
    bottom: 25px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
    color: rgba(255,255,255,0.5);
    animation: float 2s ease-in-out infinite;
}

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

/* ========================================
   SECTIONS COMMON
   ======================================== */
.section { padding: 60px 0; }

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

.section-label {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.section-label.center { justify-content: center; }

.section-label .line {
    width: 35px;
    height: 1px;
    background: var(--gold);
}

.section-label .label {
    color: var(--gold);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.section-title {
    font-size: 2.2rem;
    color: var(--dark);
    margin-bottom: 8px;
}

.section-title.light { color: white; }

.section-desc {
    color: var(--gray);
    max-width: 600px;
    margin: 0 auto;
    font-size: 0.9rem;
}

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

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-image { position: relative; }

.about-image img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    border-radius: var(--radius-lg);
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
}

.about-badge {
    position: absolute;
    bottom: -15px;
    right: -15px;
    background: white;
    padding: 15px;
    border-radius: var(--radius);
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
    display: flex;
    align-items: center;
    gap: 12px;
}

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

.badge-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.3rem;
    font-weight: 700;
}

.badge-title {
    display: block;
    color: var(--gold);
    font-weight: 700;
    font-size: 0.9rem;
}

.badge-sub {
    display: block;
    color: var(--gray);
    font-size: 0.8rem;
}

.about-desc {
    color: var(--gray);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 25px;
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.feature-icon {
    width: 42px;
    height: 42px;
    background: rgba(201, 168, 76, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    flex-shrink: 0;
}

.feature-item h4 {
    font-size: 0.9rem;
    color: var(--dark);
    margin-bottom: 3px;
}

.feature-item p {
    font-size: 0.8rem;
    color: var(--gray);
}

/* ========================================
   RESERVATION SECTION
   ======================================== */
.reservation-grid {
    display: grid;
    grid-template-columns: 3fr 2fr;
    gap: 35px;
}

.reservation-form-wrapper {
    background: white;
    padding: 30px;
    border-radius: var(--radius-lg);
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.booking-form .form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

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

.form-group label {
    font-weight: 600;
    color: var(--dark);
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 6px;
}

.form-group label svg { color: var(--gold); }

.form-group input,
.form-group select,
.form-group textarea {
    padding: 10px 14px;
    border: 1px solid #e5e5e5;
    border-radius: var(--radius);
    font-family: 'Cairo', sans-serif;
    font-size: 0.85rem;
    background: white;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.1);
}

.reservation-info {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.info-card {
    background: white;
    padding: 25px;
    border-radius: var(--radius-lg);
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.info-card.dark {
    background: var(--dark);
    color: white;
}

.info-card.dark h3 {
    color: var(--gold);
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.info-card.dark p {
    color: rgba(255,255,255,0.7);
    margin-bottom: 15px;
    font-size: 0.85rem;
}

.info-card h3 {
    font-size: 1.1rem;
    margin-bottom: 12px;
    color: var(--dark);
}

.checklist {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.checklist li {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--gray);
    font-size: 0.85rem;
}

.checklist li svg {
    color: var(--gold);
    flex-shrink: 0;
    width: 16px;
    height: 16px;
}

/* COMPACT WHATSAPP BUTTON IN RESERVATION */
.btn-whatsapp {
    background: #25d366;
    color: white;
    padding: 10px 20px;
    font-size: 0.85rem;
    gap: 6px;
}

.btn-whatsapp svg {
    width: 16px;
    height: 16px;
}

.btn-whatsapp:hover { background: #1fa855; }

/* ========================================
   GALLERY SECTION
   ======================================== */
.gallery { background: var(--dark); }

.gallery-tabs {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

.tab-btn {
    padding: 8px 20px;
    border-radius: 50px;
    border: none;
    background: rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.7);
    font-family: 'Cairo', sans-serif;
    font-size: 0.8rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
}

.tab-btn:hover {
    background: rgba(255,255,255,0.2);
    color: white;
}

.tab-btn.active {
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    color: white;
    box-shadow: 0 4px 15px rgba(201, 168, 76, 0.3);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}

.gallery-item {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    cursor: pointer;
    height: 0;
    padding-bottom: 100%; /* Square aspect ratio */
}

.gallery-item img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img { transform: scale(1.1); }

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    z-index: 2;
}

.gallery-item:hover .gallery-overlay { background: rgba(0,0,0,0.5); }

.gallery-overlay svg {
    color: white;
    opacity: 0;
    transition: var(--transition);
    width: 24px;
    height: 24px;
}

.gallery-item:hover .gallery-overlay svg { opacity: 1; }

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 2000;
    background: rgba(0,0,0,0.95);
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.lightbox.active { display: flex; }

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    color: white;
    cursor: pointer;
    z-index: 2001;
}

.lightbox img {
    max-width: 90vw;
    max-height: 90vh;
    object-fit: contain;
    border-radius: var(--radius);
}

/* ========================================
   CONTACT SECTION
   ======================================== */
.contact { background: var(--cream); }

.contact-grid {
    display: grid;
    grid-template-columns: 2fr 3fr;
    gap: 35px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.contact-info .info-card {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 18px;
}

.info-icon {
    width: 42px;
    height: 42px;
    background: rgba(201, 168, 76, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    flex-shrink: 0;
}

.contact-info .info-card h4 {
    font-size: 0.9rem;
    margin-bottom: 4px;
}

.contact-info .info-card a {
    color: var(--gray);
    font-size: 0.85rem;
}

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

.map-container {
    border-radius: var(--radius);
    overflow: hidden;
    height: 180px;
    position: relative;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.map-link-btn {
    position: absolute;
    bottom: 8px;
    right: 8px;
    background: white;
    padding: 5px 10px;
    border-radius: 6px;
    font-size: 0.75rem;
    color: var(--dark);
    box-shadow: 0 2px 6px rgba(0,0,0,0.15);
    display: flex;
    align-items: center;
    gap: 4px;
    transition: var(--transition);
    z-index: 2;
}

.map-link-btn:hover {
    background: var(--gold);
    color: white;
}

[dir="rtl"] .map-link-btn {
    right: auto;
    left: 8px;
}

.contact-form-wrapper {
    background: white;
    padding: 30px;
    border-radius: var(--radius-lg);
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
    background: var(--dark-light);
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 50px 0 0;
}

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

.footer-brand .logo { margin-bottom: 12px; }

.footer-brand p {
    color: rgba(255,255,255,0.6);
    font-size: 0.85rem;
    line-height: 1.6;
    margin-bottom: 15px;
}

.social-links {
    display: flex;
    gap: 8px;
}

.social-link {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.05);
    color: rgba(255,255,255,0.6);
    transition: var(--transition);
}

.social-link svg {
    width: 16px;
    height: 16px;
}

.social-link:hover {
    color: white;
    transform: translateY(-2px);
}

.social-link.facebook:hover { background: #1877f2; }
.social-link.instagram:hover { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }
.social-link.whatsapp:hover { background: #25d366; }
.social-link.tiktok:hover { background: #000000; border: 1px solid rgba(255,255,255,0.2); }

.footer-links h4,
.footer-contact h4 {
    color: white;
    font-size: 0.95rem;
    margin-bottom: 18px;
}

.footer-links ul,
.footer-contact ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links a,
.footer-contact a,
.footer-contact li {
    color: rgba(255,255,255,0.6);
    font-size: 0.85rem;
    transition: var(--transition);
}

.footer-links a:hover,
.footer-contact a:hover { color: var(--gold); }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 18px 0;
    text-align: center;
}

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

/* ========================================
   WHATSAPP FLOAT BUTTON - COMPACT
   ======================================== */
.whatsapp-float {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 50px;
    height: 50px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    z-index: 1000;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    transition: var(--transition);
}

[dir="rtl"] .whatsapp-float {
    right: auto;
    left: 25px;
}

.whatsapp-float svg {
    width: 24px;
    height: 24px;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
}

.whatsapp-pulse {
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    background: rgba(37, 211, 102, 0.3);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); opacity: 1; }
    100% { transform: scale(1.5); opacity: 0; }
}

/* ========================================
   MOBILE RESPONSIVE
   ======================================== */
@media (max-width: 1024px) {
    .about-grid { grid-template-columns: 1fr; gap: 35px; }
    .reservation-grid { grid-template-columns: 1fr; }
    .contact-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .gallery-grid { grid-template-columns: repeat(3, 1fr); gap: 10px; }
    .gallery-item { padding-bottom: 100%; }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: rgba(26, 26, 26, 0.98);
        flex-direction: column;
        padding: 20px;
        gap: 12px;
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: var(--transition);
    }

    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .mobile-toggle { display: flex; }
    .lang-dropdown { display: none; }

    .hero-title { font-size: 2.5rem; }
    .hero-subtitle { font-size: 0.95rem; }
    .hero-desc { font-size: 0.85rem; }

    .hero-btns {
        flex-direction: column;
        gap: 10px;
    }

    .hero-btns .btn-lg {
        width: 100%;
        padding: 10px 20px;
        font-size: 0.85rem;
    }

    .hero-contact {
        flex-direction: row;
        gap: 6px;
    }

    .contact-pill {
        padding: 4px 10px;
        font-size: 0.65rem;
    }

    .section { padding: 40px 0; }
    .section-title { font-size: 1.8rem; }

    .about-image img { height: 300px; }
    .about-badge {
        position: relative;
        bottom: auto;
        right: auto;
        margin-top: 12px;
        padding: 12px;
    }
    [dir="rtl"] .about-badge { left: auto; }

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

    .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }

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

    .reservation-form-wrapper,
    .contact-form-wrapper { padding: 20px; }

    .footer-grid { grid-template-columns: 1fr; gap: 25px; }
    .footer { padding: 35px 0 0; }

    .whatsapp-float {
        width: 45px;
        height: 45px;
        bottom: 20px;
        right: 20px;
    }
    .whatsapp-float svg { width: 20px; height: 20px; }
    [dir="rtl"] .whatsapp-float { left: 20px; }
}

@media (max-width: 480px) {
    .hero-title { font-size: 2rem; }
    .hero-welcome { font-size: 0.85rem; letter-spacing: 2px; }
    .stars { margin-bottom: 10px; }
    .star { width: 14px; height: 14px; }

    .hero-contact {
        flex-direction: column;
        align-items: center;
        width: 100%;
    }

    .contact-pill {
        width: auto;
        min-width: 140px;
        justify-content: center;
        padding: 5px 12px;
    }

    .section-title { font-size: 1.5rem; }
    .section-label .line { width: 25px; }

    .about-image img { height: 250px; }

    .info-card { padding: 18px; }

    .gallery-grid { grid-template-columns: 1fr 1fr; }
    .gallery-item { padding-bottom: 100%; }

    .map-container { height: 150px; }

    .social-link {
        width: 32px;
        height: 32px;
    }
    .social-link svg { width: 14px; height: 14px; }
}

/* RTL Specific Fixes */
[dir="rtl"] .lang-dropdown-content {
    right: auto;
    left: 0;
}

[dir="rtl"] .nav-link::after {
    left: auto;
    right: 0;
}

[dir="rtl"] a[href^="tel:"] {
    direction: ltr;
    unicode-bidi: embed;
}

/* Animation Classes */
.animate-fade-in {
    animation: fadeIn 0.6s ease forwards;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}
