/* ==========================================================================
   Heart Flower - أزهار قلب الورد
   Luxury Boutique Florist & Event Planning Stylesheet
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. CSS Custom Properties / Variables
   -------------------------------------------------------------------------- */
:root {
    /* Color Palette */
    --clr-primary-gold: #C5A059;
    --clr-primary-gold-hover: #b08c45;
    --clr-gold-light: #F4E8D1;
    --clr-rose-velvet: #8B263E;
    --clr-rose-soft: #E0A96D;
    --clr-blush-pink: #FFF0F5;
    --clr-blush-accent: #FCE4EC;
    --clr-bg-cream: #FDFBF7;
    --clr-bg-white: #FFFFFF;
    --clr-bg-light: #F8F6F2;
    
    /* Typography Colors */
    --clr-text-dark: #1A1918;
    --clr-text-body: #4A4744;
    --clr-text-muted: #7D7873;
    --clr-text-white: #FFFFFF;

    /* Fonts */
    --font-arabic: 'Cairo', system-ui, -apple-system, sans-serif;
    --font-heading-en: 'Playfair Display', Georgia, serif;

    /* Shadows & Effects */
    --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.05);
    --shadow-medium: 0 15px 35px rgba(197, 160, 89, 0.12);
    --shadow-hover: 0 20px 40px rgba(139, 38, 62, 0.15);
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-full: 999px;

    /* Transitions */
    --transition-fast: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* --------------------------------------------------------------------------
   2. Reset & Base Styles
   -------------------------------------------------------------------------- */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

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

body {
    font-family: var(--font-arabic);
    background-color: var(--clr-bg-cream);
    color: var(--clr-text-body);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

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

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

ul {
    list-style: none;
}

button, input, textarea {
    font-family: inherit;
    border: none;
    outline: none;
    background: none;
}

/* --------------------------------------------------------------------------
   3. Utility Classes & Layout
   -------------------------------------------------------------------------- */
.container {
    width: 100%;
    max-width: 1240px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

.section-padding {
    padding-top: 5rem;
    padding-bottom: 5rem;
}

.bg-light {
    background-color: var(--clr-bg-light);
}

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

/* Section Header Component */
.section-header {
    margin-bottom: 3.5rem;
}

.section-header .subtitle {
    display: inline-block;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--clr-primary-gold);
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
}

.section-header .section-title {
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--clr-text-dark);
    margin-bottom: 0.75rem;
}

.title-line {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-top: 0.5rem;
}

.title-line::before,
.title-line::after {
    content: '';
    width: 60px;
    height: 1.5px;
    background: linear-gradient(90deg, transparent, var(--clr-primary-gold), transparent);
}

.title-line span {
    font-size: 1.2rem;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    padding: 0.85rem 1.8rem;
    font-size: 1rem;
    font-weight: 700;
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: var(--transition-smooth);
}

.btn-primary.btn-gold {
    background: linear-gradient(135deg, var(--clr-primary-gold), #D4AF37);
    color: #FFF;
    box-shadow: 0 8px 20px rgba(197, 160, 89, 0.35);
}

.btn-primary.btn-gold:hover {
    background: linear-gradient(135deg, #b08c45, #C5A059);
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(197, 160, 89, 0.45);
}

.btn-social {
    background-color: rgba(255, 255, 255, 0.15);
    color: var(--clr-text-white);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn-social:hover {
    background-color: var(--clr-bg-white);
    color: var(--clr-text-dark);
    transform: translateY(-3px);
}

.btn-google-review {
    background-color: rgba(255, 255, 255, 0.22);
    border: 1.5px solid #FFD700;
    color: #FFF;
}

.btn-google-review:hover {
    background-color: var(--clr-bg-white);
    color: #4285F4;
    border-color: #4285F4;
    box-shadow: 0 8px 20px rgba(255, 215, 0, 0.35);
}

.btn-nav {
    background-color: var(--clr-rose-velvet);
    color: var(--clr-text-white);
    padding: 0.6rem 1.3rem;
    font-size: 0.9rem;
}

.btn-nav:hover {
    background-color: #6d1b2f;
    box-shadow: var(--shadow-hover);
}

/* --------------------------------------------------------------------------
   4. Top Announcement Bar
   -------------------------------------------------------------------------- */
.top-bar {
    background-color: var(--clr-rose-velvet);
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.85rem;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.top-bar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.top-info .divider {
    opacity: 0.5;
}

.top-phone:hover {
    color: var(--clr-gold-light);
}

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

.top-social a {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.95rem;
}

.top-social a:hover {
    color: var(--clr-gold-light);
    transform: scale(1.15);
}

/* --------------------------------------------------------------------------
   5. Navbar & Navigation
   -------------------------------------------------------------------------- */
.navbar {
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(253, 251, 247, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    transition: var(--transition-smooth);
    border-bottom: 1px solid rgba(197, 160, 89, 0.12);
}

.navbar.scrolled {
    background-color: rgba(255, 255, 255, 0.96);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
}

/* Brand Logo */
.brand-logo {
    display: flex;
    align-items: center;
    gap: 0.85rem;
}

.logo-img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--clr-primary-gold);
    box-shadow: 0 2px 8px rgba(197, 160, 89, 0.2);
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.brand-name-en {
    font-family: var(--font-heading-en);
    font-weight: 700;
    font-size: 1.15rem;
    letter-spacing: 1px;
    color: var(--clr-text-dark);
    line-height: 1.1;
}

.brand-name-ar {
    font-size: 0.75rem;
    color: var(--clr-primary-gold);
    font-weight: 700;
}

/* Nav Menu Links */
.nav-list {
    display: flex;
    gap: 1.75rem;
}

.nav-link {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--clr-text-dark);
    position: relative;
    padding: 0.4rem 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 0%;
    height: 2px;
    background-color: var(--clr-primary-gold);
    transition: var(--transition-fast);
}

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

.nav-link:hover,
.nav-link.active {
    color: var(--clr-primary-gold);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

/* Hamburger Trigger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 6px;
    z-index: 1100;
}

.hamburger .bar {
    width: 26px;
    height: 2.5px;
    background-color: var(--clr-text-dark);
    border-radius: 2px;
    transition: var(--transition-fast);
}

.hamburger.active .bar:nth-child(1) {
    transform: translateY(7.5px) rotate(45deg);
}

.hamburger.active .bar:nth-child(2) {
    opacity: 0;
}

.hamburger.active .bar:nth-child(3) {
    transform: translateY(-7.5px) rotate(-45deg);
}

/* Mobile Drawer Overlay */
.mobile-overlay {
    position: fixed;
    top: 0;
    right: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-fast);
}

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

/* --------------------------------------------------------------------------
   6. Hero Section
   -------------------------------------------------------------------------- */
.hero {
    position: relative;
    min-height: calc(100vh - 120px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: url('assets/images/image5.jpg') center center / cover no-repeat;
    color: var(--clr-text-white);
    padding-top: 4rem;
    padding-bottom: 6rem;
    overflow: hidden;
}

/* Fallback if hero_bg is missing or overlaying */
.hero-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 25, 24, 0.72) 0%, rgba(139, 38, 62, 0.55) 50%, rgba(26, 25, 24, 0.75) 100%);
    z-index: 1;
}

.hero-container {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 860px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background-color: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 0.4rem 1.2rem;
    border-radius: var(--radius-full);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    backdrop-filter: blur(6px);
}

.hero-title-en {
    font-family: var(--font-heading-en);
    font-size: 3.5rem;
    letter-spacing: 4px;
    color: #F8E9D2;
    margin-bottom: 0.5rem;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.hero-title-ar {
    font-size: 2.75rem;
    font-weight: 800;
    color: #FFFFFF;
    margin-bottom: 1.25rem;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.hero-desc {
    font-size: 1.2rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.92);
    margin-bottom: 2.5rem;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
}

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

/* Hero Highlights Strip */
.hero-highlights {
    position: relative;
    z-index: 2;
    margin-top: 3rem;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(12px);
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    padding: 1.2rem 0;
}

.highlights-container {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    color: #FFF;
    font-weight: 600;
    font-size: 0.95rem;
}

.highlight-item i {
    color: var(--clr-gold-light);
    font-size: 1.25rem;
}

/* --------------------------------------------------------------------------
   7. About Section
   -------------------------------------------------------------------------- */
.about-quote {
    position: relative;
    background: var(--clr-bg-white);
    border-right: 4px solid var(--clr-primary-gold);
    border-radius: var(--radius-md);
    padding: 2.5rem;
    box-shadow: var(--shadow-soft);
    margin-bottom: 3.5rem;
    text-align: center;
}

.quote-icon {
    font-size: 2rem;
    color: var(--clr-gold-light);
    margin-bottom: 1rem;
}

.about-text {
    font-size: 1.3rem;
    font-weight: 700;
    line-height: 1.8;
    color: var(--clr-rose-velvet);
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.75rem;
}

.category-card {
    background-color: var(--clr-bg-white);
    padding: 2rem 1.5rem;
    border-radius: var(--radius-md);
    border: 1px solid rgba(197, 160, 89, 0.15);
    text-align: center;
    box-shadow: var(--shadow-soft);
    transition: var(--transition-smooth);
}

.category-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-medium);
    border-color: var(--clr-primary-gold);
}

.category-icon-box {
    width: 64px;
    height: 64px;
    margin: 0 auto 1.25rem;
    background-color: var(--clr-blush-pink);
    color: var(--clr-rose-velvet);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    transition: var(--transition-smooth);
}

.category-card:hover .category-icon-box {
    background-color: var(--clr-primary-gold);
    color: var(--clr-bg-white);
    transform: rotateY(180deg);
}

.category-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--clr-text-dark);
    margin-bottom: 0.5rem;
}

.category-card p {
    font-size: 0.9rem;
    color: var(--clr-text-muted);
}

/* --------------------------------------------------------------------------
   8. Services Section
   -------------------------------------------------------------------------- */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.service-card {
    background-color: var(--clr-bg-white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: var(--transition-smooth);
    border: 1px solid rgba(0, 0, 0, 0.04);
    display: flex;
    flex-direction: column;
}

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

.service-img-wrapper {
    position: relative;
    height: 240px;
    overflow: hidden;
}

.service-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.service-card:hover .service-img {
    transform: scale(1.08);
}

.service-tag {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background-color: rgba(255, 255, 255, 0.92);
    color: var(--clr-rose-velvet);
    padding: 0.35rem 0.9rem;
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 700;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(4px);
}

.service-body {
    padding: 1.75rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.service-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--clr-text-dark);
    margin-bottom: 0.6rem;
}

.service-desc {
    font-size: 0.92rem;
    color: var(--clr-text-muted);
    margin-bottom: 1.5rem;
    line-height: 1.6;
    flex-grow: 1;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--clr-primary-gold);
}

.service-link:hover {
    color: var(--clr-rose-velvet);
    gap: 0.75rem;
}

/* --------------------------------------------------------------------------
   9. Gallery Section & Lightbox
   -------------------------------------------------------------------------- */
.gallery-filter {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 2.5rem;
}

.filter-btn {
    padding: 0.6rem 1.4rem;
    border-radius: var(--radius-full);
    background-color: var(--clr-bg-white);
    color: var(--clr-text-body);
    font-size: 0.92rem;
    font-weight: 600;
    cursor: pointer;
    border: 1px solid rgba(0, 0, 0, 0.08);
    transition: var(--transition-fast);
}

.filter-btn:hover,
.filter-btn.active {
    background-color: var(--clr-rose-velvet);
    color: var(--clr-text-white);
    border-color: var(--clr-rose-velvet);
    box-shadow: 0 4px 12px rgba(139, 38, 62, 0.25);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
}

.gallery-item {
    border-radius: var(--radius-md);
    overflow: hidden;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.gallery-item.hide {
    display: none;
}

.gallery-img-box {
    position: relative;
    aspect-ratio: 4 / 5;
    overflow: hidden;
}

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

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(26, 25, 24, 0.85) 0%, rgba(26, 25, 24, 0.1) 70%);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 1.5rem;
    opacity: 0;
    transition: var(--transition-fast);
}

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

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

.gallery-zoom {
    align-self: flex-end;
    width: 42px;
    height: 42px;
    background-color: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(8px);
    color: #FFF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
}

.gallery-info h4 {
    color: var(--clr-gold-light);
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.2rem;
}

.gallery-info p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.85rem;
}

/* Lightbox Modal */
.lightbox-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.88);
    backdrop-filter: blur(12px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-fast);
}

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

.lightbox-content {
    position: relative;
    max-width: 900px;
    max-height: 85vh;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.lightbox-close {
    position: absolute;
    top: -45px;
    left: 0;
    font-size: 2.5rem;
    color: #FFF;
    cursor: pointer;
    line-height: 1;
}

#lightboxImg {
    max-width: 100%;
    max-height: 70vh;
    border-radius: var(--radius-sm);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    object-fit: contain;
}

.lightbox-caption {
    margin-top: 1rem;
    text-align: center;
    color: #FFF;
}

.lightbox-caption h4 {
    font-size: 1.25rem;
    color: var(--clr-primary-gold);
    margin-bottom: 0.25rem;
}

.lightbox-caption p {
    font-size: 0.9rem;
    opacity: 0.8;
}

/* --------------------------------------------------------------------------
   10. Why Choose Us Section
   -------------------------------------------------------------------------- */
.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
}

.why-card {
    background-color: var(--clr-bg-white);
    padding: 2rem 1.5rem;
    border-radius: var(--radius-md);
    text-align: center;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: var(--shadow-soft);
    transition: var(--transition-smooth);
}

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

.why-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.25rem;
    background: linear-gradient(135deg, var(--clr-primary-gold), var(--clr-rose-soft));
    color: #FFF;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: 0 6px 15px rgba(197, 160, 89, 0.25);
}

.why-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--clr-text-dark);
    margin-bottom: 0.5rem;
}

.why-card p {
    font-size: 0.88rem;
    color: var(--clr-text-muted);
    line-height: 1.6;
}

/* --------------------------------------------------------------------------
   11. Contact Section
   -------------------------------------------------------------------------- */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    align-items: stretch;
}

.contact-info-card {
    background-color: var(--clr-bg-white);
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(197, 160, 89, 0.15);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.contact-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 1.25rem;
    border-bottom: 1px solid var(--clr-bg-light);
}

.contact-logo {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 2px solid var(--clr-primary-gold);
}

.contact-header h3 {
    font-family: var(--font-heading-en);
    font-size: 1.3rem;
    color: var(--clr-text-dark);
    line-height: 1.2;
}

.contact-header span {
    font-size: 0.85rem;
    color: var(--clr-primary-gold);
    font-weight: 700;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.contact-details li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.detail-icon {
    width: 44px;
    height: 44px;
    background-color: var(--clr-blush-pink);
    color: var(--clr-rose-velvet);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.detail-text strong {
    display: block;
    font-size: 0.95rem;
    color: var(--clr-text-dark);
}

.detail-text p {
    font-size: 0.92rem;
    color: var(--clr-text-muted);
}

.contact-buttons-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.85rem;
}

.btn-contact {
    padding: 0.75rem 1rem;
    font-size: 0.85rem;
    border-radius: var(--radius-sm);
    font-weight: 700;
    text-align: center;
    color: #FFF;
}

.btn-wa {
    background-color: #25D366;
}

.btn-call {
    background-color: var(--clr-rose-velvet);
}

.btn-map {
    background-color: #4285F4;
}

.btn-insta {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.btn-fb {
    background-color: #1877F2;
}

.btn-contact:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}

.contact-map-card {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(0, 0, 0, 0.05);
    min-height: 400px;
}

.map-container {
    width: 100%;
    height: 100%;
    min-height: 400px;
}

/* --------------------------------------------------------------------------
   12. Footer
   -------------------------------------------------------------------------- */
.footer {
    background-color: #151413;
    color: rgba(255, 255, 255, 0.8);
    padding-top: 4rem;
    border-top: 3px solid var(--clr-primary-gold);
}

.footer-container {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr;
    gap: 3rem;
    padding-bottom: 3rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    margin-bottom: 1rem;
}

.footer-logo img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
}

.footer-brand-title {
    font-family: var(--font-heading-en);
    font-weight: 700;
    font-size: 1.2rem;
    color: #FFF;
    display: block;
}

.footer-brand-sub {
    font-size: 0.8rem;
    color: var(--clr-primary-gold);
    display: block;
}

.footer-bio {
    font-size: 0.9rem;
    line-height: 1.7;
    max-width: 380px;
}

.footer-nav h4,
.footer-social-box h4 {
    color: #FFF;
    font-size: 1.1rem;
    margin-bottom: 1.25rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-nav h4::after,
.footer-social-box h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 35px;
    height: 2px;
    background-color: var(--clr-primary-gold);
}

.footer-nav ul {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.footer-nav a {
    font-size: 0.9rem;
}

.footer-nav a:hover {
    color: var(--clr-gold-light);
    padding-right: 0.4rem;
}

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

.footer-social-icons a {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.08);
    color: #FFF;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
}

.footer-social-icons a:hover {
    background-color: var(--clr-primary-gold);
    color: #FFF;
    transform: translateY(-4px);
}

.footer-bottom {
    background-color: #0E0D0C;
    padding: 1.25rem 0;
    font-size: 0.85rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

/* --------------------------------------------------------------------------
   13. Floating Action Buttons
   -------------------------------------------------------------------------- */
.float-btn {
    position: fixed;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #FFF;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
    z-index: 990;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.float-whatsapp {
    bottom: 2rem;
    left: 2rem;
    background-color: #25D366;
}

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

.float-totop {
    bottom: 2rem;
    right: 2rem;
    background-color: var(--clr-rose-velvet);
    opacity: 0;
    visibility: hidden;
}

.float-totop.active {
    opacity: 1;
    visibility: visible;
}

.float-totop:hover {
    background-color: var(--clr-primary-gold);
    transform: translateY(-4px);
}

/* --------------------------------------------------------------------------
   14. Entrance Animations & Scroll Reveal
   -------------------------------------------------------------------------- */
.reveal-up {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-down {
    opacity: 0;
    transform: translateY(-30px);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

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

/* --------------------------------------------------------------------------
   15. Responsive Breakpoints
   -------------------------------------------------------------------------- */
@media (max-width: 992px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
    }
    
    .footer-container {
        grid-template-columns: 1fr 1fr;
    }
    
    .hero-title-en {
        font-size: 2.75rem;
    }
    
    .hero-title-ar {
        font-size: 2.2rem;
    }
}

@media (max-width: 768px) {
    .top-bar-container {
        flex-direction: column;
        gap: 0.4rem;
        text-align: center;
    }
    
    .btn-nav {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background-color: var(--clr-bg-white);
        box-shadow: -5px 0 25px rgba(0, 0, 0, 0.15);
        padding: 5rem 2rem 2rem;
        z-index: 1050;
        transition: right 0.4s ease;
    }

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

    .nav-list {
        flex-direction: column;
        gap: 1.5rem;
    }

    .hero-title-en {
        font-size: 2.25rem;
    }

    .hero-title-ar {
        font-size: 1.75rem;
    }

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

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

    .footer-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}
