/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --copper: #704538;
    --terracotta: #E07A5F;
    --dark: #0B0D10;
    --light: #F5F5F0;
    --white: #FFFFFF;
    --gray: #9CA3AF;
    --copper-light: #8B5E52;
    --copper-dark: #4A2F26;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: 'Roboto', 'Georgia', 'Times New Roman', serif;
    line-height: 1.6;
    color: var(--dark);
    background: var(--light);
}

body.lang-ar {
    font-family: 'Cairo', 'Arial', sans-serif;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(11, 13, 16, 0.95);
    backdrop-filter: blur(10px);
    padding: 16px 0;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.header.scrolled {
    background: rgba(11, 13, 16, 0.98);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
    padding: 12px 0;
}

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

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

/* Navigation Menu */
.nav-menu {
    display: flex;
    align-items: center;
    gap: 32px;
    flex: 1;
}

.nav-link {
    color: var(--white);
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    padding: 8px 0;
}

.nav-link:hover {
    color: var(--copper);
}

.nav-link:focus {
    outline: 2px solid var(--copper);
    outline-offset: 4px;
    border-radius: 4px;
}

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

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

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

.btn-book {
    padding: 10px 28px;
    background: linear-gradient(135deg, var(--copper), var(--terracotta));
    color: var(--white);
    border: none;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(112, 69, 56, 0.3);
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-book:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(112, 69, 56, 0.5);
}

.btn-book:focus {
    outline: 2px solid var(--copper);
    outline-offset: 2px;
}

.btn-book:active {
    transform: translateY(0);
}

/* Mobile Menu Book Now Button */
.mobile-menu-cta {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-book-mobile {
    display: block;
    width: 100%;
    padding: 16px;
    background: linear-gradient(135deg, var(--copper), var(--terracotta));
    color: var(--white);
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(112, 69, 56, 0.3);
    min-height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-book-mobile:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(112, 69, 56, 0.5);
}

.btn-book-mobile:focus {
    outline: 2px solid var(--copper);
    outline-offset: 2px;
}

.btn-book-mobile:active {
    transform: translateY(0);
}

/* Language Toggle */
.lang-toggle {
    display: flex;
    gap: 8px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 6px;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.lang-btn {
    padding: 6px 16px;
    border: none;
    background: transparent;
    color: rgba(255, 255, 255, 0.6);
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 20px;
}

.lang-btn:hover {
    color: var(--white);
}

.lang-btn.active {
    background: var(--copper);
    color: var(--white);
}

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

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--white);
    font-size: 20px;
    cursor: pointer;
    padding: 10px 12px;
    border-radius: 8px;
    transition: all 0.3s ease;
    min-width: 44px;
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-menu-toggle:hover {
    background: rgba(255, 255, 255, 0.2);
}

.mobile-menu-toggle:focus {
    outline: 2px solid var(--copper);
    outline-offset: 2px;
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 320px;
    height: 100vh;
    background: linear-gradient(135deg, rgba(11, 13, 16, 0.98), rgba(112, 69, 56, 0.95));
    backdrop-filter: blur(20px);
    z-index: 1001;
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 100px 30px 40px;
    overflow-y: auto;
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.5);
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="40" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></svg>');
    background-size: 200px;
    pointer-events: none;
}

.mobile-menu-close {
    position: absolute;
    top: 25px;
    right: 25px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--white);
    font-size: 22px;
    cursor: pointer;
    padding: 12px;
    border-radius: 50%;
    transition: all 0.3s ease;
    width: 48px;
    height: 48px;
}

.mobile-menu-close:hover {
    background: rgba(112, 69, 56, 0.8);
    border-color: var(--copper);
    transform: rotate(90deg);
}

.mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 8px;
    position: relative;
    z-index: 1;
}

.mobile-nav-link {
    color: var(--white);
    text-decoration: none;
    font-size: 20px;
    font-weight: 600;
    padding: 16px 20px;
    border-radius: 12px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    gap: 12px;
    min-height: 48px;
}

.mobile-nav-link:focus {
    outline: 2px solid var(--copper);
    outline-offset: 2px;
}

.mobile-nav-link::before {
    content: '';
    width: 4px;
    height: 4px;
    background: var(--copper);
    border-radius: 50%;
    opacity: 0;
    transition: all 0.3s ease;
}

.mobile-nav-link:hover {
    background: rgba(112, 69, 56, 0.3);
    border-color: var(--copper);
    color: var(--white);
    transform: translateX(4px);
}

.mobile-nav-link:hover::before {
    opacity: 1;
}

/* Mobile Menu Backdrop */
.mobile-menu-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(5px);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.mobile-menu-backdrop.active {
    opacity: 1;
    visibility: visible;
}

/* Responsive Design */
@media (max-width: 968px) {
    .nav-menu {
        display: none;
    }

    .mobile-menu-toggle {
        display: block;
    }

    .btn-book-desktop {
        display: none !important;
    }

    .header-actions {
        gap: 8px;
    }

    .lang-toggle {
        padding: 5px;
        gap: 6px;
    }

    .lang-btn {
        padding: 5px 12px;
        font-size: 12px;
    }
}

@media (max-width: 640px) {
    .logo img {
        height: 35px;
    }

    .header {
        padding: 12px 0;
    }

    .btn-book {
        padding: 6px 16px;
        font-size: 12px;
    }

    .contact-location-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .contact-item {
        padding: 20px;
    }

    .contact-form-container {
        padding: 24px;
    }

    .directions-list {
        grid-template-columns: 1fr;
    }
}

/* Arabic Language Support */
body.lang-ar {
    direction: rtl;
    font-family: 'Arial', 'Tahoma', sans-serif;
}

body.lang-ar .lang-toggle {
    right: auto;
    left: 20px;
}

/* Hide/Show Language Elements */
body.lang-en .ar { display: none !important; }
body.lang-ar .en { display: none !important; }

/* Offers Section */
.offers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
}

.offer-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.offer-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.offer-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    cursor: pointer;
    transition: all 0.3s ease;
}

.offer-card:focus-within {
    outline: 2px solid var(--copper);
    outline-offset: 4px;
}

/* Offer Lightbox */
.offer-lightbox {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    z-index: 2000;
    display: none;
    justify-content: center;
    align-items: center;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.offer-lightbox.active {
    display: flex;
    opacity: 1;
}

.lightbox-content {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 16px;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.5);
}

.lightbox-close {
    position: absolute;
    top: -50px;
    right: 0;
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: var(--white);
    font-size: 28px;
    cursor: pointer;
    padding: 12px;
    border-radius: 50%;
    transition: all 0.3s ease;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-close:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: rotate(90deg);
}

.lightbox-close:focus {
    outline: 2px solid var(--copper);
    outline-offset: 2px;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    padding-top: 80px;
    background: linear-gradient(135deg, rgba(112, 69, 56, 0.85), rgba(11, 13, 16, 0.92)),
                url('https://images.unsplash.com/photo-1504674900247-0877df9cc836?w=1920') center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    overflow: hidden;
}

.hero-background {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 50%, rgba(112, 69, 56, 0.3) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(224, 122, 95, 0.2) 0%, transparent 50%);
    animation: heroPulse 8s ease-in-out infinite;
}

@keyframes heroPulse {
    0%, 100% {
        opacity: 0.5;
        transform: scale(1);
    }
    50% {
        opacity: 0.7;
        transform: scale(1.05);
    }
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.4) 100%);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

.hero-content {
    max-width: 900px;
    position: relative;
    z-index: 2;
    animation: fadeInUp 0.8s ease-out;
}

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

.hero-badges {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-bottom: 28px;
    flex-wrap: wrap;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(10px);
    padding: 8px 18px;
    border-radius: 25px;
    color: var(--white);
    font-size: 0.85rem;
    font-weight: 600;
    border: 1px solid rgba(255, 255, 255, 0.2);
    animation: fadeInDown 0.6s ease-out 0.2s backwards;
}

.hero-badge i {
    color: var(--white) !important;
}

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

.hero-title {
    font-size: clamp(2rem, 4.5vw, 3.5rem);
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 20px;
    text-shadow: 2px 2px 12px rgba(0, 0, 0, 0.4);
    animation: fadeInUp 0.8s ease-out 0.3s backwards;
}

.hero-subtitle {
    font-size: clamp(1rem, 1.8vw, 1.25rem);
    margin-bottom: 28px;
    opacity: 0.92;
    line-height: 1.7;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeInUp 0.8s ease-out 0.4s backwards;
}

.hero-features {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 36px;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease-out 0.5s backwards;
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: all 0.3s ease;
}

.hero-feature:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.hero-feature i {
    font-size: 1.1rem;
    color: var(--white) !important;
}

.hero-feature span {
    font-size: 0.9rem;
    font-weight: 500;
}

.hero-cta {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease-out 0.6s backwards;
}

/* Buttons */
.btn {
    padding: 14px 32px;
    border: none;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
}

.btn:focus {
    outline: 2px solid var(--copper);
    outline-offset: 2px;
}

.btn:active {
    transform: translateY(0);
}

.btn-primary {
    background: var(--white);
    color: var(--copper);
}

.btn-primary:hover {
    background: var(--copper);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(112, 69, 56, 0.4);
}

.btn-primary:focus {
    outline: 2px solid var(--copper);
    outline-offset: 2px;
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-secondary:hover {
    background: var(--white);
    color: var(--copper);
    transform: translateY(-2px);
}

.btn-secondary:focus {
    outline: 2px solid var(--copper);
    outline-offset: 2px;
}

.btn-cta {
    background: var(--copper);
    color: var(--white);
    font-size: 18px;
    padding: 18px 48px;
}

.btn-cta:hover {
    background: var(--terracotta);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(224, 122, 95, 0.4);
}

.btn-cta:focus {
    outline: 2px solid var(--copper);
    outline-offset: 2px;
}

.btn-whatsapp {
    background: #25D366;
    color: var(--white);
    font-size: 18px;
    padding: 18px 48px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-whatsapp:hover {
    background: #20BA59;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
}

.btn-whatsapp:focus {
    outline: 2px solid var(--copper);
    outline-offset: 2px;
}

.btn-whatsapp i {
    font-size: 20px;
}

/* Hero Badge */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 10px 20px;
    border-radius: 30px;
    color: var(--white);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 24px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    animation: fadeInUp 0.6s ease forwards;
}

.hero-badge i {
    color: var(--white) !important;
}

/* Hero Features */
.hero-features {
    display: flex;
    gap: 32px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--white);
    font-size: 1rem;
    opacity: 0.9;
}

.hero-feature i {
    color: var(--white) !important;
    font-size: 1.1rem;
}

/* Sections */
.section {
    padding: 100px 0;
}

.section-breakfast {
    background: var(--white);
}

.section-dinner {
    background: var(--light);
}

.section-story {
    background: var(--white);
}

.section-map {
    background: var(--light);
}

.section-reviews {
    background: var(--white);
}

.section-faqs {
    background: var(--light);
}

.section-cta {
    background: linear-gradient(135deg, var(--copper), var(--terracotta));
    color: var(--white);
}

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

.section-kicker {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--copper);
    margin-bottom: 16px;
    display: block;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--dark);
}

.section-dinner .section-title {
    color: var(--dark);
}

.section-cta .section-title {
    color: var(--white);
}

.section-desc {
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto;
    color: var(--gray);
    line-height: 1.8;
}

.section-cta .section-desc {
    color: var(--white);
    opacity: 0.95;
}

/* Grid */
.grid {
    display: grid;
    gap: 40px;
}

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

/* Cards */
.card {
    background: var(--white);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.card:focus-within {
    outline: 2px solid var(--copper);
    outline-offset: 4px;
}

/* Breakfast & Grill Details */
.breakfast-details,
.grill-details {
    margin-top: 60px;
    padding: 40px;
    background: var(--light);
    border-radius: 24px;
}

.detail-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--copper);
}

.detail-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--gray);
    margin-bottom: 30px;
}

.breakfast-features,
.grill-features {
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.feature {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 20px;
    background: var(--white);
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.feature:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.feature-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.feature-text {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--dark);
}

/* Story Section */
.story-content {
    max-width: 900px;
    margin: 0 auto;
}

.story-text {
    font-size: 1.2rem;
    line-height: 1.9;
    color: var(--gray);
    margin-bottom: 24px;
}

.story-text:last-child {
    margin-bottom: 0;
}

/* Map Section */
.map-container {
    margin-bottom: 30px;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

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

.location-address,
.location-phone {
    font-size: 1.1rem;
    color: var(--dark);
    margin-bottom: 8px;
}

/* Directions Section */
.directions-section {
    margin-top: 40px;
}

.directions-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--copper);
    margin-bottom: 24px;
    text-align: center;
}

.directions-list {
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.direction-item {
    background: var(--white);
    padding: 24px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.direction-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.direction-area {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--copper);
    margin-bottom: 12px;
}

.direction-text {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--gray);
}

/* Parking Section */
.parking-section {
    margin-top: 40px;
    background: var(--white);
    padding: 32px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.parking-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--copper);
    margin-bottom: 16px;
}

.parking-text {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--gray);
}

/* Nearby Section */
.nearby-section {
    margin-top: 30px;
    background: var(--white);
    padding: 32px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.nearby-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--copper);
    margin-bottom: 16px;
}

.nearby-text {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--gray);
}

/* Contact Section */
.contact-location-grid {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

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

.contact-info {
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    background: var(--white);
    padding: 24px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.contact-item i {
    font-size: 24px;
    color: var(--copper);
    margin-top: 4px;
}

.contact-label {
    font-size: 1rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 8px;
}

.contact-value {
    font-size: 1rem;
    color: var(--gray);
    line-height: 1.6;
}

.contact-form-container {
    background: var(--white);
    padding: 32px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

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

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

.form-label {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--dark);
}

.form-input {
    padding: 12px 16px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
}

.form-input:focus {
    outline: none;
    border-color: var(--copper);
    box-shadow: 0 0 0 3px rgba(112, 69, 56, 0.1);
}

.form-input:focus-visible {
    outline: 2px solid var(--copper);
    outline-offset: 2px;
}

.form-textarea {
    resize: vertical;
    min-height: 100px;
}

.form-textarea:focus-visible {
    outline: 2px solid var(--copper);
    outline-offset: 2px;
}

.form-success {
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.3);
    border-radius: 12px;
    padding: 20px;
    margin-top: 20px;
}

.success-text {
    font-size: 1rem;
    line-height: 1.6;
    color: #22c55e;
}

.btn-primary {
    padding: 14px 32px;
    background: linear-gradient(135deg, var(--copper), var(--terracotta));
    color: var(--white);
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(112, 69, 56, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(112, 69, 56, 0.5);
}

/* Reviews Section */
.rating-summary {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.rating-stars {
    color: #FFD700;
    font-size: 1.5rem;
    letter-spacing: 2px;
}

.rating-score {
    font-size: 2rem;
    font-weight: 700;
    color: var(--copper);
}

.rating-count {
    font-size: 1rem;
    color: var(--gray);
}

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

.review-card {
    background: var(--light);
    padding: 32px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.review-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    border-color: rgba(112, 69, 56, 0.2);
}

.review-stars {
    color: #FFD700;
    font-size: 1.3rem;
    margin-bottom: 16px;
    letter-spacing: 2px;
}

.review-text {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--gray);
    margin-bottom: 16px;
    font-style: italic;
}

.review-author {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--copper);
}

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

/* Floating Buttons */
.floating-buttons {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.floating-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    color: var(--white);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    text-decoration: none;
}

.whatsapp-btn {
    background: #25D366;
}

.call-btn {
    background: var(--copper);
}

.floating-btn:hover {
    transform: translateY(-4px) scale(1.1);
    box-shadow: 0 6px 30px rgba(0, 0, 0, 0.4);
}

.floating-btn:focus {
    outline: 2px solid var(--copper);
    outline-offset: 2px;
}

.floating-btn:active {
    transform: translateY(0) scale(1.05);
}

/* FAQs Section */
.faqs-grid {
    display: grid;
    gap: 24px;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
}

.faq-card {
    background: var(--white);
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.faq-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.faq-card:focus-within {
    outline: 2px solid var(--copper);
    outline-offset: 4px;
}

.faq-question {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--copper);
}

.faq-answer {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--gray);
}

.card-image {
    height: 250px;
    overflow: hidden;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.card:hover .card-image img {
    transform: scale(1.1);
}

.card-content {
    padding: 30px;
}

.card-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--dark);
}

.card-desc {
    font-size: 1rem;
    color: var(--gray);
    margin-bottom: 16px;
    line-height: 1.6;
}

.card-price {
    display: inline-block;
    background: var(--copper);
    color: var(--white);
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
}

/* CTA Section */
.cta-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.cta-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    margin-bottom: 20px;
}

.cta-desc {
    font-size: 1.2rem;
    margin-bottom: 40px;
    line-height: 1.8;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, var(--dark) 0%, #1a1a1a 100%);
    color: var(--white);
    padding: 80px 0 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 60px;
}

.footer-column {
    display: flex;
    flex-direction: column;
}

.footer-brand {
    grid-column: span 1;
}

.footer-logo-img {
    width: 150px;
    height: auto;
    margin-bottom: 24px;
}

.footer-tagline {
    font-size: 0.95rem;
    line-height: 1.6;
    opacity: 0.9;
    margin-bottom: 24px;
}

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

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: var(--white);
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--copper);
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(207, 116, 93, 0.4);
}

.social-link:focus {
    outline: 2px solid var(--copper);
    outline-offset: 2px;
}

.footer-heading {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--copper);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-text {
    font-size: 0.95rem;
    line-height: 1.8;
    opacity: 0.85;
    margin-bottom: 12px;
}

.footer-link {
    display: inline-block;
    color: var(--white);
    text-decoration: none;
    font-size: 0.95rem;
    margin-bottom: 12px;
    transition: all 0.3s ease;
    opacity: 0.85;
}

.footer-link:hover {
    color: var(--copper);
    opacity: 1;
    transform: translateX(4px);
}

.footer-link:focus {
    outline: 2px solid var(--copper);
    outline-offset: 2px;
}

.footer-btn {
    display: inline-block;
    background: var(--copper);
    color: var(--white);
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    margin-top: 12px;
    transition: all 0.3s ease;
    text-align: center;
}

.footer-btn:hover {
    background: var(--terracotta);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(207, 116, 93, 0.4);
}

.footer-btn:focus {
    outline: 2px solid var(--copper);
    outline-offset: 2px;
}

.footer-btn:active {
    transform: translateY(0);
}

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

.copyright {
    font-size: 0.9rem;
    opacity: 0.6;
}

@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px;
    }

    .footer-brand {
        grid-column: span 2;
    }
}

@media (max-width: 640px) {
    .footer {
        padding: 60px 0 30px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .footer-brand {
        grid-column: span 1;
    }

    .footer-logo-img {
        width: 120px;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-cta {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        max-width: 300px;
    }

    .section {
        padding: 60px 0;
    }

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

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

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

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

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.card {
    animation: fadeInUp 0.6s ease forwards;
}

.card:nth-child(2) {
    animation-delay: 0.2s;
}

.card:nth-child(3) {
    animation-delay: 0.4s;
}

/* Hero Icon Color Override */
.hero .hero-badges i,
.hero .hero-features i,
.hero-badge i,
.hero-feature i {
    color: var(--white) !important;
}
