/* =============================================
   DESERT EXPERIENCE - EXACT MATCH TO EXAMPLE
   ============================================= */

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

:root {
    --red: #C41E3A;
    --red-light: #E53935;
    --black: #1a1a1a;
    --dark: #2d2d2d;
    --gray: #666666;
    --gray-light: #999999;
    --white: #ffffff;
    --cream: #FFF9F5;
    --border: #e0e0e0;
}

html {
    scroll-behavior: smooth;
}

a:focus-visible,
button:focus-visible {
    outline: 3px solid var(--red);
    outline-offset: 3px;
    border-radius: 4px;
}

.text-center {
    text-align: center;
}

body {
    font-family: 'Heebo', sans-serif;
    background: var(--white);
    color: var(--black);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 30px;
}

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

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

/* =============================================
   WHATSAPP FLOAT
   ============================================= */
.whatsapp-float {
    position: fixed;
    bottom: 25px;
    left: 25px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 30px;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 9999;
    transition: all 0.3s ease;
}

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

@keyframes whatsapp-pulse {
    0% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4), 0 0 0 0 rgba(37, 211, 102, 0.4); }
    70% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4), 0 0 0 14px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4), 0 0 0 0 rgba(37, 211, 102, 0); }
}

.whatsapp-float {
    animation: whatsapp-pulse 2.5s infinite;
}

/* =============================================
   HEADER - Transparent over Hero
   ============================================= */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 15px 0;
    background: transparent;
    transition: all 0.3s ease;
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

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

.logo img {
    height: 50px;
    width: auto;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 50px;
}

.nav-links a {
    color: var(--black);
    font-size: 16px;
    font-weight: 500;
    padding: 8px 0;
    position: relative;
    transition: color 0.3s;
}

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

.nav-links a:hover,
.nav-links a.active {
    color: var(--red);
}

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

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

.mobile-toggle span {
    width: 25px;
    height: 3px;
    background: var(--black);
    border-radius: 2px;
    transition: 0.3s;
}

/* =============================================
   HERO - Full Background with Content on Right
   ============================================= */
.hero {
    position: relative;
    min-height: 100vh;
    min-height: 100svh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: #f5e6d3;
}

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

.hero-bg-img {
    width: 100%;
    height: 100%;
    max-width: none;
    object-fit: cover;
    object-position: left center;
    position: absolute;
    left: 0;
    top: 0;
}

/* Gradient overlay - transparent on left (image), white on right (content) */
.hero-background::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to right,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.1) 30%,
        rgba(255, 255, 255, 0.5) 45%,
        rgba(255, 255, 255, 0.85) 55%,
        rgba(255, 255, 255, 0.98) 70%,
        rgba(255, 255, 255, 1) 100%
    );
}

.hero-wrapper {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
    margin: 0;
    padding: 100px 80px 60px;
}

/* Content on RIGHT over white area */
.hero-content-side {
    width: 50%;
    max-width: 700px;
    text-align: center;
    margin-right: 0;
    animation: hero-fade-up 0.9s ease both;
}

@keyframes hero-fade-up {
    from {
        opacity: 0;
        transform: translateY(25px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Text Design Image - Large */
.hero-title-img {
    margin-bottom: 30px;
}

.hero-title-img img {
    max-width: 650px;
    width: 100%;
    height: auto;
}

.hero-desc {
    font-size: 1.6rem;
    color: var(--black);
    margin-bottom: 40px;
    font-weight: 500;
    line-height: 1.5;
}

/* Hero Buttons */
.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    justify-content: center;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--red);
    color: white;
    padding: 14px 35px;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(196, 30, 58, 0.3);
}

.btn-primary:hover {
    background: #a51830;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(196, 30, 58, 0.4);
}

.btn-primary i {
    font-size: 12px;
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--white);
    color: var(--black);
    padding: 14px 35px;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 600;
    border: 2px solid var(--border);
    transition: all 0.3s ease;
}

.btn-outline:hover {
    border-color: var(--red);
    color: var(--red);
    transform: translateY(-2px);
}

.btn-outline i {
    font-size: 12px;
}

/* =============================================
   FEATURES BAR - White with Bordered Boxes
   ============================================= */
.features-bar {
    background: var(--white);
    padding: 30px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.features-list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.feature-item:hover {
    border-color: var(--red);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.feature-icon {
    width: 50px;
    height: 50px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.feature-text {
    text-align: right;
}

.feature-text strong {
    display: block;
    font-size: 14px;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 3px;
}

.feature-text span {
    font-size: 12px;
    color: var(--gray-light);
}

/* =============================================
   ABOUT SECTION
   ============================================= */
.about-section {
    padding: 60px 0;
    background: var(--white);
}

.about-layout {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    align-items: start;
}

.section-title {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--black);
    margin-bottom: 20px;
}

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

.about-decoration {
    margin-bottom: 20px;
}

.about-decoration img {
    max-width: 150px;
    opacity: 0.8;
}

.about-content p {
    color: var(--gray);
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 15px;
}

/* Gallery Grid in About Section */
.gallery-grid-small {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    margin-bottom: 20px;
}

.gallery-item-small {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s;
}

.gallery-item-small:hover {
    transform: translateY(-5px);
}

.gallery-item-small img {
    width: 100%;
    height: 140px;
    object-fit: cover;
    transition: transform 0.4s ease;
}

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

.gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    color: white;
    padding: 30px 10px 10px;
    font-size: 12px;
    text-align: center;
}

.btn-gallery {
    display: inline-block;
    background: var(--black);
    color: white;
    padding: 12px 30px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-gallery:hover {
    background: var(--red);
    transform: translateY(-2px);
}

/* =============================================
   FOOTER
   ============================================= */
.site-footer {
    background: var(--black);
    padding: 30px 0;
}

.footer-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.footer-contact-main {
    display: flex;
    align-items: center;
    gap: 20px;
}

.footer-cta {
    color: var(--gray-light);
    font-size: 16px;
}

.footer-phone {
    color: white;
    font-size: 2.5rem;
    font-weight: 800;
    letter-spacing: 2px;
    transition: color 0.3s;
}

.footer-phone:hover {
    color: var(--red);
}

.footer-phone-icon a {
    width: 55px;
    height: 55px;
    background: var(--red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 22px;
    transition: all 0.3s ease;
}

.footer-phone-icon a:hover {
    transform: scale(1.1);
    box-shadow: 0 5px 20px rgba(196, 30, 58, 0.4);
}

.footer-socials {
    display: flex;
    gap: 25px;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--gray-light);
    font-size: 14px;
    transition: color 0.3s;
}

.social-link:hover {
    color: white;
}

.social-link i {
    font-size: 18px;
}

/* =============================================
   INNER PAGES STYLES
   ============================================= */

/* Header Dark for Inner Pages */
.header-dark {
    background: var(--black);
}

.header-dark .nav-links a {
    color: white;
}

.header-dark .nav-links a:hover,
.header-dark .nav-links a.active {
    color: var(--red);
}

.header-dark .mobile-toggle span {
    background: white;
}

/* Nav styles for inner pages */
.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 0;
}

.nav-logo img {
    height: 50px;
    width: auto;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 50px;
}

.nav-link {
    color: white;
    font-size: 16px;
    font-weight: 500;
    padding: 8px 0;
    position: relative;
    transition: color 0.3s;
}

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

.nav-link:hover,
.nav-link.active {
    color: var(--red);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-phone {
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--red);
    color: white;
    padding: 10px 22px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
}

.nav-phone:hover {
    background: #a51830;
    transform: translateY(-2px);
}

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

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: white;
    border-radius: 2px;
    transition: 0.3s;
}

/* Page Header */
.page-header {
    padding: 140px 0 60px;
    background: linear-gradient(135deg, var(--black) 0%, var(--dark) 100%);
    text-align: center;
    color: white;
}

.page-header h1 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 10px;
}

.page-header h1 .text-red {
    color: var(--red);
}

.page-header p {
    color: var(--gray-light);
    font-size: 1.1rem;
}

/* About Page */
.about-page {
    padding: 60px 0;
}

.about-page .about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 60px;
}

.about-text h2 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: var(--black);
}

.about-text .lead {
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--dark);
    margin-bottom: 15px;
}

.about-text p {
    color: var(--gray);
    margin-bottom: 15px;
}

.about-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.why-section {
    margin-top: 60px;
}

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

.why-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: 15px;
    padding: 30px 20px;
    text-align: center;
    transition: all 0.3s ease;
}

.why-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    border-color: transparent;
}

.card-icon-img {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
}

.card-icon-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.why-card h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: var(--black);
}

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

/* Gallery Page */
.gallery-page {
    padding: 60px 0;
    background: var(--cream);
}

.gallery-page .gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.gallery-page .gallery-item {
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.gallery-page .gallery-item:hover {
    transform: translateY(-8px);
}

.gallery-page .gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.4s ease;
}

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

/* =============================================
   LIGHTBOX
   ============================================= */
.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.92);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.lightbox.open {
    opacity: 1;
    visibility: visible;
}

.lightbox img {
    max-width: 90vw;
    max-height: 82vh;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.5);
}

.lightbox-caption {
    position: absolute;
    bottom: 30px;
    left: 0;
    right: 0;
    text-align: center;
    color: white;
    font-size: 16px;
    padding: 0 20px;
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
    position: absolute;
    background: rgba(255, 255, 255, 0.12);
    border: none;
    color: white;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s;
}

.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
    background: var(--red);
}

.lightbox-close {
    top: 20px;
    left: 20px;
}

.lightbox-prev {
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
}

.lightbox-next {
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
}

/* Contact Page */
.contact-page {
    padding: 60px 0;
    background: var(--cream);
}

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

.contact-info-section h2 {
    font-size: 1.6rem;
    margin-bottom: 30px;
    color: var(--black);
}

.contact-card {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 25px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    margin-bottom: 20px;
    transition: transform 0.3s;
}

.contact-card:hover {
    transform: translateX(-8px);
}

.contact-icon {
    width: 55px;
    height: 55px;
    background: var(--red);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 22px;
    flex-shrink: 0;
}

.contact-icon.whatsapp {
    background: #25D366;
}

.contact-details h3 {
    font-size: 12px;
    color: var(--gray-light);
    margin-bottom: 5px;
}

.contact-details a,
.contact-details span {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--black);
}

.contact-details a:hover {
    color: var(--red);
}

.contact-decoration {
    text-align: center;
    margin-bottom: 30px;
}

.contact-decoration img {
    max-width: 150px;
    opacity: 0.8;
}

.contact-icon-img {
    width: 60px;
    height: 60px;
    flex-shrink: 0;
}

.contact-icon-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.contact-image {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    position: relative;
}

.contact-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 350px;
}

.contact-image-overlay {
    position: absolute;
    bottom: 20px;
    right: 20px;
}

.contact-image-overlay .deco-overlay {
    width: 80px;
    height: auto;
    min-height: auto;
    opacity: 0.9;
}

.contact-map {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    height: 100%;
    min-height: 350px;
    background: #e0e0e0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.map-placeholder {
    text-align: center;
    color: var(--gray);
}

.map-placeholder i {
    font-size: 4rem;
    color: var(--red);
    margin-bottom: 15px;
    display: block;
}

.social-section {
    margin-top: 30px;
}

.social-section h3 {
    font-size: 1rem;
    color: var(--black);
    margin-bottom: 15px;
}

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

.social-links .social-link {
    width: 45px;
    height: 45px;
    background: var(--black);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 18px;
    transition: all 0.3s ease;
}

.social-links .social-link span {
    display: none;
}

.social-links .social-link:hover {
    transform: translateY(-5px);
}

.social-links .social-link.whatsapp:hover { background: #25D366; }
.social-links .social-link.facebook:hover { background: #1877F2; }
.social-links .social-link.instagram:hover { background: linear-gradient(45deg, #f09433, #dc2743); }

.whatsapp-cta {
    background: linear-gradient(135deg, #25D366, #128C7E);
    border-radius: 15px;
    padding: 35px;
}

.whatsapp-cta-content {
    display: flex;
    align-items: center;
    gap: 25px;
    color: white;
}

.whatsapp-cta-content > i {
    font-size: 3.5rem;
}

.whatsapp-cta-content h3 {
    font-size: 1.3rem;
    margin-bottom: 5px;
}

.whatsapp-cta-content p {
    opacity: 0.9;
    font-size: 15px;
}

.whatsapp-cta-content .btn {
    margin-right: auto;
    background: white;
    color: #128C7E;
    padding: 12px 25px;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.whatsapp-cta-content .btn:hover {
    background: var(--black);
    color: white;
}

/* Contact Strip */
.contact-strip {
    background: var(--red);
    padding: 25px 0;
}

.contact-strip-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.contact-strip .contact-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.contact-strip .contact-label {
    color: rgba(255, 255, 255, 0.9);
    font-size: 18px;
}

.contact-strip .contact-phone {
    color: white;
    font-size: 2rem;
    font-weight: 800;
    letter-spacing: 2px;
}

.contact-social {
    display: flex;
    gap: 12px;
}

.social-btn {
    width: 45px;
    height: 45px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--black);
    font-size: 20px;
    transition: all 0.3s ease;
}

.social-btn:hover {
    transform: scale(1.1);
}

/* Footer for Inner Pages */
.footer {
    background: var(--black);
    color: white;
    padding: 40px 0 25px;
}

.footer-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 25px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 25px;
}

.footer .footer-logo {
    display: none;
}

.footer-links {
    display: flex;
    gap: 35px;
}

.footer-links a {
    color: var(--gray-light);
    font-size: 14px;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--red);
}

.footer-contact a {
    color: white;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-bottom {
    text-align: center;
    color: var(--gray);
    font-size: 13px;
}

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

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1024px) {
    .hero {
        min-height: 100vh;
        background: #fff;
    }

    .hero-background {
        height: 65vh;
        inset: auto;
        top: 0;
        left: 0;
        right: 0;
    }

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

    .hero-background::after {
        background: linear-gradient(
            to top,
            rgba(255, 255, 255, 1) 0%,
            rgba(255, 255, 255, 0.9) 30%,
            rgba(255, 255, 255, 0.5) 60%,
            rgba(255, 255, 255, 0) 100%
        ) !important;
    }

    .hero-wrapper {
        padding: 20px 30px 40px;
        align-items: center;
    }

    .hero-content-side {
        width: 100%;
        text-align: center;
    }

    .hero-title-img img {
        max-width: 400px;
        margin: 0 auto;
    }

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

    .about-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

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

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

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

    .footer-content {
        flex-direction: column;
        gap: 25px;
        text-align: center;
    }
}

@media (max-width: 768px) {
    /* Solid header on mobile - readable over the hero image */
    .header {
        background: rgba(255, 255, 255, 0.97);
        box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
        padding: 10px 0;
    }

    .header-dark {
        background: var(--black);
        box-shadow: 0 2px 15px rgba(0, 0, 0, 0.25);
    }

    .logo img,
    .nav-logo img {
        height: 42px;
        width: auto;
    }

    /* Dark overlay behind the open mobile menu */
    body.menu-open::before {
        content: '';
        position: fixed;
        inset: 0;
        background: rgba(0, 0, 0, 0.5);
        z-index: 999;
    }

    .nav-links,
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 320px;
        height: 100vh;
        height: 100dvh;
        background: var(--black);
        flex-direction: column;
        padding: 90px 30px 30px;
        gap: 5px;
        transition: right 0.3s ease;
        box-shadow: -5px 0 30px rgba(0, 0, 0, 0.3);
        overflow-y: auto;
    }

    .nav-links.active,
    .nav-menu.active {
        right: 0;
    }

    .nav-links a,
    .nav-menu a {
        color: white;
        display: block;
        width: 100%;
        padding: 16px 0;
        font-size: 17px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }

    .nav-links a::after,
    .nav-menu a::after {
        display: none;
    }

    .nav-links li,
    .nav-menu li {
        width: 100%;
    }

    .mobile-toggle,
    .nav-toggle {
        position: relative;
        z-index: 1001;
    }

    .mobile-toggle.active span,
    .nav-toggle.active span {
        background: white;
    }

    .mobile-toggle,
    .nav-toggle {
        display: flex;
    }

    .mobile-toggle.active span:nth-child(1),
    .nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 6px);
    }

    .mobile-toggle.active span:nth-child(2),
    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .mobile-toggle.active span:nth-child(3),
    .nav-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -6px);
    }

    .hero {
        min-height: 100vh;
        min-height: 100svh;
        background: #fff;
    }

    .hero-background {
        height: 60vh;
        height: 60svh;
        inset: auto;
        top: 0;
        left: 0;
        right: 0;
    }

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

    .hero-background::after {
        background: linear-gradient(
            to top,
            rgba(255, 255, 255, 1) 0%,
            rgba(255, 255, 255, 0.9) 30%,
            rgba(255, 255, 255, 0.5) 60%,
            rgba(255, 255, 255, 0) 100%
        ) !important;
    }

    .hero {
        align-items: flex-end;
    }

    .hero-wrapper {
        justify-content: center;
        padding: 20px 20px 45px;
    }

    .hero-content-side {
        width: 100%;
        max-width: 100%;
        text-align: center;
        padding: 0 15px;
    }

    .hero-title-img {
        margin-bottom: 20px;
    }

    .hero-title-img img {
        max-width: 320px;
        margin: 0 auto;
    }

    .hero-desc {
        font-size: 1.2rem;
        margin-bottom: 28px;
    }

    .hero-buttons {
        justify-content: center;
    }

    /* Compact 2-column features on mobile */
    .features-list {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .feature-item {
        flex-direction: column;
        text-align: center;
        gap: 10px;
        padding: 15px 10px;
    }

    .feature-icon {
        width: 42px;
        height: 42px;
    }

    .feature-text {
        text-align: center;
    }

    .feature-text strong {
        font-size: 13px;
    }

    .feature-text span {
        font-size: 11px;
    }

    .about-section {
        padding: 45px 0;
    }

    .page-header {
        padding: 115px 0 45px;
    }

    .page-header h1 {
        font-size: 2rem;
    }

    .about-page,
    .gallery-page,
    .contact-page {
        padding: 45px 0;
    }

    .gallery-grid-small {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }

    .gallery-item-small img {
        height: 120px;
    }

    .footer-phone {
        font-size: 1.8rem;
        letter-spacing: 1px;
    }

    .footer-socials {
        flex-wrap: wrap;
        justify-content: center;
    }

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

    .gallery-page .gallery-item img {
        height: 180px;
    }

    .contact-strip .contact-phone {
        font-size: 1.7rem;
        letter-spacing: 1px;
    }

    .whatsapp-float {
        width: 55px;
        height: 55px;
        font-size: 27px;
        bottom: calc(20px + env(safe-area-inset-bottom, 0px));
        left: 20px;
    }

    .lightbox-prev,
    .lightbox-next {
        width: 42px;
        height: 42px;
        font-size: 17px;
    }

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

    .whatsapp-cta-content {
        flex-direction: column;
        text-align: center;
    }

    .whatsapp-cta-content .btn {
        margin: 0;
    }

    .contact-strip-content {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .nav-phone {
        display: none;
    }
}

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

    .hero-title-img img {
        max-width: 270px;
    }

    .hero-desc {
        font-size: 1.05rem;
    }

    .btn-primary,
    .btn-outline {
        padding: 14px 25px;
        font-size: 15px;
        width: 100%;
        max-width: 320px;
        margin: 0 auto;
        justify-content: center;
    }

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

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

    .page-header h1 {
        font-size: 1.7rem;
    }

    .footer-phone {
        font-size: 1.6rem;
    }

    .gallery-page .gallery-grid {
        grid-template-columns: 1fr;
    }

    .gallery-page .gallery-item img {
        height: 220px;
    }

    .whatsapp-cta {
        padding: 25px 20px;
    }

    .contact-card {
        padding: 18px;
        gap: 15px;
    }
}

/* =============================================
   SKIP LINK (accessibility)
   ============================================= */
.skip-link {
    position: absolute;
    top: -100px;
    right: 10px;
    z-index: 10001;
    background: var(--red);
    color: #fff;
    padding: 10px 22px;
    border-radius: 0 0 8px 8px;
    font-weight: 600;
    transition: top 0.2s ease;
}

.skip-link:focus {
    top: 0;
}

[dir="ltr"] .skip-link {
    right: auto;
    left: 10px;
}

/* =============================================
   ENGLISH (LTR) OVERRIDES
   ============================================= */
[dir="ltr"] .hero-wrapper {
    justify-content: flex-end;
}

[dir="ltr"] .feature-text {
    text-align: left;
}

[dir="ltr"] .nav-links a::after,
[dir="ltr"] .nav-link::after {
    right: auto;
    left: 0;
}

[dir="ltr"] .whatsapp-cta-content .btn {
    margin-right: 0;
    margin-left: auto;
}

[dir="ltr"] .contact-card:hover {
    transform: translateX(8px);
}

@media (max-width: 768px) {
    [dir="ltr"] .whatsapp-cta-content .btn {
        margin: 0;
    }
}

/* English hero title (text instead of Hebrew title image) */
.hero-title-en {
    font-size: 4rem;
    font-weight: 900;
    line-height: 1.1;
    color: var(--black);
    margin-bottom: 8px;
}

.hero-subtitle-en {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark);
    letter-spacing: 1px;
    margin-bottom: 25px;
}

@media (max-width: 768px) {
    .hero-title-en {
        font-size: 2.5rem;
    }

    .hero-subtitle-en {
        font-size: 1.15rem;
    }
}

/* =============================================
   FOOTER LEGAL LINKS
   ============================================= */
.footer-legal {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 8px;
    font-size: 12px;
    color: var(--gray);
}

.footer-legal a {
    color: var(--gray-light);
    transition: color 0.3s;
}

.footer-legal a:hover {
    color: var(--red);
}

.site-footer .footer-bottom {
    margin-top: 22px;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* =============================================
   LEGAL PAGES (accessibility / privacy / terms)
   ============================================= */
.legal-page {
    padding: 60px 0;
    background: var(--white);
}

.legal-content {
    max-width: 800px;
    margin: 0 auto;
}

.legal-content h2 {
    font-size: 1.35rem;
    color: var(--black);
    margin: 32px 0 12px;
}

.legal-content p,
.legal-content li {
    color: var(--gray);
    font-size: 15px;
    line-height: 1.9;
    margin-bottom: 12px;
}

.legal-content ul {
    padding-right: 22px;
}

[dir="ltr"] .legal-content ul {
    padding-right: 0;
    padding-left: 22px;
}

.legal-content a {
    color: var(--red);
    font-weight: 600;
}

.legal-content a:hover {
    text-decoration: underline;
}

.legal-updated {
    margin-top: 35px;
    font-size: 13px;
    color: var(--gray-light);
}

/* =============================================
   404 PAGE
   ============================================= */
.error-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 40px 20px;
}

.error-page h1 {
    font-size: 2rem;
    font-weight: 800;
    margin: 20px 0 10px;
}

.error-page p {
    color: var(--gray);
    margin-bottom: 8px;
}

.error-logo {
    margin: 0 auto 10px;
}

.error-buttons {
    justify-content: center;
    margin-top: 25px;
}

/* Respect users who prefer less motion */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    html {
        scroll-behavior: auto;
    }
}
