:root {
    --primary: #c29b62; /* Gold/Wood Accent */
    --primary-dark: #9e7b48;
    --dark-bg: #121212;
    --dark-surface: #1e1e1e;
    --text-light: #f5f5f5;
    --text-muted: #aaaaaa;
    --glass-bg: rgba(30, 30, 30, 0.7);
    --glass-border: rgba(194, 155, 98, 0.2);
    --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    
    /* English Font */
    --font-en-primary: 'Cinzel', serif;
    --font-en-body: 'Inter', sans-serif;
    
    /* Arabic Font */
    --font-ar: 'Tajawal', sans-serif;
}

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

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--dark-bg);
    color: var(--text-light);
    font-family: var(--font-en-body);
    line-height: 1.6;
    overflow-x: hidden;
}

/* RTL Support */
html[dir="rtl"] body {
    font-family: var(--font-ar);
}
html[dir="rtl"] .hero-title,
html[dir="rtl"] .section-title,
html[dir="rtl"] .logo-text,
html[dir="rtl"] h1, html[dir="rtl"] h2, html[dir="rtl"] h3 {
    font-family: var(--font-ar);
    font-weight: 700;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-en-primary);
    font-weight: 600;
    color: var(--primary);
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

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

.section-padding {
    padding: 6rem 0;
}

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

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

.bg-dark {
    background-color: #0a0a0a;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    font-size: 1rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    border: none;
    border-radius: 4px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-primary {
    background-color: var(--primary);
    color: var(--dark-bg);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background-color: var(--primary-dark);
    transition: var(--transition);
    z-index: -1;
}

.btn-primary:hover::before {
    width: 100%;
}

.btn-primary:hover {
    color: white;
}

.btn-block {
    display: block;
    width: 100%;
}

/* Typography & Titles */
.section-title {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.title-underline {
    height: 3px;
    width: 60px;
    background-color: var(--primary);
    margin-bottom: 2rem;
}

.title-underline.center {
    margin: 0 auto 2rem auto;
}

.section-desc {
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto 3rem auto;
    font-size: 1.1rem;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 1.5rem 0;
    z-index: 1000;
    transition: var(--transition);
    background: transparent;
}

.navbar.scrolled {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--glass-border);
    padding: 1rem 0;
}

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

.logo-text {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary);
    letter-spacing: 2px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-links a {
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary);
    transition: var(--transition);
}

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

.lang-btn {
    background: transparent;
    border: 1px solid var(--primary);
    color: var(--primary);
    padding: 0.4rem 1rem;
    border-radius: 20px;
    cursor: pointer;
    font-family: var(--font-ar);
    transition: var(--transition);
}

.lang-btn:hover {
    background: var(--primary);
    color: var(--dark-bg);
}

.mobile-menu-btn {
    display: none;
    font-size: 1.5rem;
    color: var(--primary);
    cursor: pointer;
}

/* Hero Section */
.hero {
    height: 100vh;
    background-image: url('assets/hero_new.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    display: flex;
    align-items: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(10, 10, 10, 0.9) 0%, rgba(10, 10, 10, 0.4) 100%);
}

html[dir="rtl"] .hero-overlay {
    background: linear-gradient(to left, rgba(10, 10, 10, 0.9) 0%, rgba(10, 10, 10, 0.4) 100%);
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 800px;
}

.hero-title {
    font-size: 4.5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.hero-subtitle {
    font-size: 1.2rem;
    color: #ddd;
    margin-bottom: 2.5rem;
    max-width: 600px;
}

/* About Section */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text p {
    margin-bottom: 1.5rem;
    color: var(--text-muted);
    font-size: 1.1rem;
}

.stats-row {
    display: flex;
    gap: 3rem;
    margin-top: 2rem;
}

.stat-box {
    border-left: 3px solid var(--primary);
    padding-left: 1.5rem;
}

html[dir="rtl"] .stat-box {
    border-left: none;
    border-right: 3px solid var(--primary);
    padding-left: 0;
    padding-right: 1.5rem;
}

.stat-num {
    font-size: 2rem;
    margin-bottom: 0.2rem;
}

.image-wrapper {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
}

.image-wrapper img {
    width: 100%;
    display: block;
    transition: transform 0.8s ease;
}

.image-wrapper:hover img {
    transform: scale(1.05);
}

.experience-badge {
    position: absolute;
    bottom: -1px;
    right: -1px;
    background: var(--primary);
    color: var(--dark-bg);
    padding: 2rem;
    font-family: var(--font-en-primary);
    font-weight: 700;
    text-align: center;
    border-top-left-radius: 8px;
    line-height: 1.2;
}

html[dir="rtl"] .experience-badge {
    right: auto;
    left: -1px;
    border-top-left-radius: 0;
    border-top-right-radius: 8px;
}

.experience-badge span {
    font-size: 1.5rem;
}

/* Gallery Section */
.gallery-filters {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.filter-btn {
    background: transparent;
    border: 1px solid var(--glass-border);
    color: var(--text-light);
    padding: 0.5rem 1.5rem;
    border-radius: 30px;
    cursor: pointer;
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
}

.filter-btn:hover, .filter-btn.active {
    background: var(--primary);
    color: var(--dark-bg);
    border-color: var(--primary);
}

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

.gallery-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 4/5;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(0,0,0,0.4);
    border: 1px solid rgba(194, 155, 98, 0.15);
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    background-color: #1a1a1a;
    background-image: linear-gradient(90deg, #1a1a1a 0px, #2a2a2a 40px, #1a1a1a 80px);
    background-size: 200% 100%;
    animation: skeleton-loading 1.5s infinite;
}

@keyframes skeleton-loading {
    0% { background-position: 100% 50%; }
    100% { background-position: 0 50%; }
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.5s ease, transform 0.8s ease;
}

.gallery-item img.loaded {
    opacity: 1;
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10, 10, 10, 0.95) 0%, rgba(194, 155, 98, 0.2) 50%, rgba(0,0,0,0.1) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 2rem;
    opacity: 0;
    transform: translateY(20px);
    transition: var(--transition);
}

.overlay-icon {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    color: var(--primary);
    align-self: center;
    margin-top: auto; /* Push down to bottom along with text */
    margin-bottom: 1rem;
    filter: drop-shadow(0 0 10px rgba(194,155,98,0.5));
}

.video-icon {
    color: #fff;
}

.gallery-item:hover {
    box-shadow: 0 15px 40px rgba(194, 155, 98, 0.25);
    border-color: rgba(194, 155, 98, 0.6);
    transform: translateY(-10px);
}

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

.gallery-item:hover .gallery-overlay {
    opacity: 1;
    transform: translateY(0);
}

.gallery-overlay h3 {
    color: white;
    font-size: 1.5rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.gallery-overlay h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--primary);
}

html[dir="rtl"] .gallery-overlay h3::after {
    left: auto;
    right: 0;
}

/* Lightbox Modal */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 2000;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

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

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    color: white;
    font-size: 40px;
    cursor: pointer;
    z-index: 2010;
    transition: var(--transition);
}

.lightbox-close:hover {
    color: var(--primary);
}

.lightbox-content-wrapper {
    max-width: 90%;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transform: scale(0.8);
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
}

.lightbox.active .lightbox-content-wrapper {
    transform: scale(1);
}

.lightbox-content-wrapper img, .lightbox-content-wrapper video {
    max-width: 100%;
    max-height: 80vh;
    border-radius: 8px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.6), 0 0 20px rgba(194, 155, 98, 0.3);
    outline: none;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.lightbox-title {
    margin-top: 1.5rem;
    color: var(--primary);
    font-size: 1.8rem;
    font-family: var(--font-en-primary);
    text-align: center;
    text-shadow: 0 2px 10px rgba(0,0,0,0.8);
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease 0.2s, transform 0.5s ease 0.2s;
}

.zoom-hint {
    position: absolute;
    top: 20px;
    left: 30px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    background: rgba(0, 0, 0, 0.5);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    pointer-events: none;
    z-index: 2010;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

html[dir="rtl"] .zoom-hint {
    left: auto;
    right: 30px;
}

.lightbox.active .zoom-hint {
    opacity: 1;
}

.lightbox.active .lightbox-title {
    opacity: 1;
    transform: translateY(0);
}

@keyframes slideInRight {
    from { opacity: 0; transform: translateX(50px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes slideInLeft {
    from { opacity: 0; transform: translateX(-50px); }
    to { opacity: 1; transform: translateX(0); }
}

.slide-right {
    animation: slideInRight 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

.slide-left {
    animation: slideInLeft 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

/* Lightbox Controls */
.lightbox-controls {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 5%;
    transform: translateY(-50%);
    z-index: 2010;
    pointer-events: none;
}

.lightbox-prev, .lightbox-next {
    background: rgba(0,0,0,0.5);
    color: white;
    border: 1px solid rgba(255,255,255,0.2);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5rem;
    cursor: pointer;
    pointer-events: auto;
    transition: var(--transition);
}

.lightbox-prev:hover, .lightbox-next:hover {
    background: var(--primary);
    color: var(--dark-bg);
}

.lightbox-counter {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    font-size: 1.2rem;
    z-index: 2010;
    font-family: var(--font-en-primary);
    background: rgba(0,0,0,0.5);
    padding: 0.2rem 1rem;
    border-radius: 20px;
}

/* Contact Section */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-desc {
    margin-bottom: 3rem;
    color: var(--text-muted);
}

.info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
    gap: 1.5rem;
}

.icon-box {
    width: 50px;
    height: 50px;
    background: rgba(194, 155, 98, 0.1);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.info-text h4 {
    color: var(--text-light);
    margin-bottom: 0.3rem;
}

.info-text p {
    color: var(--text-muted);
}

.contact-form {
    background: var(--dark-surface);
    padding: 3rem;
    border-radius: 8px;
    border: 1px solid var(--glass-border);
}

.form-group {
    position: relative;
    margin-bottom: 2rem;
}

.form-control {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(255,255,255,0.2);
    padding: 0.8rem 0;
    color: white;
    font-size: 1rem;
    font-family: inherit;
    transition: var(--transition);
}

.form-control:focus {
    outline: none;
    border-bottom-color: var(--primary);
}

.form-group label {
    position: absolute;
    top: 0.8rem;
    left: 0;
    color: var(--text-muted);
    transition: var(--transition);
    pointer-events: none;
}

html[dir="rtl"] .form-group label {
    left: auto;
    right: 0;
}

.form-control:focus ~ label,
.form-control:not(:placeholder-shown) ~ label {
    top: -1.2rem;
    font-size: 0.85rem;
    color: var(--primary);
}

textarea.form-control {
    resize: none;
}

/* Footer */
.footer {
    background: #050505;
    padding: 4rem 0 2rem 0;
    border-top: 1px solid rgba(255,255,255,0.05);
}

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

.footer-logo h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.footer-logo p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.footer-social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
}

.footer-social a:hover {
    background: var(--primary);
    color: var(--dark-bg);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* WhatsApp Styles */
.wa-link {
    color: inherit;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}

.wa-link:hover {
    color: #25D366;
}

.floating-wa {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25D366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 35px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    transition: var(--transition);
}

html[dir="rtl"] .floating-wa {
    right: auto;
    left: 30px;
}

.floating-wa:hover {
    background-color: #1ebc5a;
    transform: scale(1.1);
    color: white;
}

/* WhatsApp Modal */
.wa-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    z-index: 3000;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.wa-modal.active {
    opacity: 1;
    visibility: visible;
}

.wa-modal-content {
    background: var(--dark-surface);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    padding: 3rem 2rem;
    width: 90%;
    max-width: 450px;
    position: relative;
    text-align: center;
    box-shadow: 0 15px 40px rgba(0,0,0,0.5);
    transform: translateY(20px);
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.wa-modal.active .wa-modal-content {
    transform: translateY(0);
}

.wa-modal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 2rem;
    color: var(--text-muted);
    cursor: pointer;
    transition: var(--transition);
    line-height: 1;
}

.wa-modal-close:hover {
    color: var(--primary);
}

.wa-modal-content h3 {
    margin-bottom: 0.5rem;
    color: var(--text-light);
}

.wa-modal-content p {
    color: var(--text-muted);
    margin-bottom: 2rem;
    font-size: 0.95rem;
}

.wa-options {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.wa-option-btn {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    background: rgba(37, 211, 102, 0.1);
    border: 1px solid rgba(37, 211, 102, 0.3);
    padding: 1rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    transition: var(--transition);
}

.wa-option-btn i {
    font-size: 2.5rem;
    color: #25D366;
    transition: var(--transition);
}

.wa-option-text {
    text-align: left;
    display: flex;
    flex-direction: column;
}

html[dir="rtl"] .wa-option-text {
    text-align: right;
}

.wa-name {
    color: var(--text-light);
    font-weight: 500;
    font-size: 1.1rem;
    transition: var(--transition);
}

.wa-number {
    color: var(--text-muted);
    font-size: 0.9rem;
    transition: var(--transition);
}

.wa-option-btn:hover {
    background: #25D366;
    border-color: #25D366;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(37, 211, 102, 0.3);
}

.wa-option-btn:hover .wa-name,
.wa-option-btn:hover .wa-number,
.wa-option-btn:hover i {
    color: white;
}

/* Animations */
.animate-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

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

html[dir="rtl"] .fade-in-right {
    transform: translateX(-40px);
}

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

html[dir="rtl"] .fade-in-left {
    transform: translateX(40px);
}

.show {
    opacity: 1;
    transform: translateY(0) translateX(0);
}

.delay-1 { transition-delay: 0.2s; }
.delay-2 { transition-delay: 0.4s; }
.delay-3 { transition-delay: 0.6s; }
.delay-4 { transition-delay: 0.8s; }

/* Responsive */
@media (max-width: 992px) {
    .section-padding { padding: 4rem 0; }
    .hero-title { font-size: clamp(2.5rem, 6vw, 3.5rem); }
    .about-grid, .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
    .image-wrapper { max-width: 100%; margin: 0 auto; }
    .gallery-grid { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.5rem; }
}

@media (max-width: 768px) {
    .hero { background-attachment: scroll; } /* Better performance on mobile */
    .hero-title { font-size: clamp(2rem, 8vw, 2.8rem); margin-bottom: 1rem; }
    .hero-subtitle { font-size: 1rem; margin-bottom: 2rem; }
    .section-title { font-size: 1.8rem; }
    
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 75%;
        max-width: 300px;
        height: 100vh;
        height: 100dvh; /* For iPhone Safari */
        background: rgba(20, 20, 20, 0.98);
        backdrop-filter: blur(15px);
        -webkit-backdrop-filter: blur(15px);
        flex-direction: column;
        justify-content: center;
        transition: right 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), left 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        box-shadow: -10px 0 30px rgba(0,0,0,0.5);
    }
    
    html[dir="rtl"] .nav-links {
        right: auto;
        left: -100%;
        box-shadow: 10px 0 30px rgba(0,0,0,0.5);
    }
    
    .nav-links.active {
        right: 0;
    }
    
    html[dir="rtl"] .nav-links.active {
        left: 0;
    }
    
    .mobile-menu-btn {
        display: block;
        z-index: 1001;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }
    
    .stats-row {
        gap: 1.5rem;
        flex-wrap: wrap;
    }
    
    .floating-wa {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
        font-size: 28px;
    }

    html[dir="rtl"] .floating-wa {
        left: 20px;
        right: auto;
    }
    
    .wa-modal-content {
        padding: 2.5rem 1.5rem;
    }
    
    .wa-option-btn {
        padding: 0.8rem 1rem;
        gap: 1rem;
    }
    
    .wa-option-btn i {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .container { padding: 0 1.5rem; }
    .gallery-grid { grid-template-columns: 1fr; }
    .gallery-item { aspect-ratio: auto; height: 350px; }
    .btn { padding: 0.8rem 2rem; width: 100%; text-align: center; }
    .hero-content { text-align: center; }
    
    /* Support for iPhone safe areas */
    .footer { padding-bottom: calc(2rem + env(safe-area-inset-bottom)); }
}
