/* 
   AL-FAKHAMA EVENT RENTALS - CSS STYLE SYSTEM
   Custom responsive stylesheet for premium luxury event furniture rentals.
*/

/* --- Google Fonts --- */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400..900;1,400..900&family=Plus+Jakarta+Sans:ital,wght@0,200..800;1,200..800&display=swap');

/* --- Custom Variables & Theme --- */
:root {
    --primary-gold: hsl(43, 60%, 53%);
    --primary-gold-dark: hsl(43, 60%, 40%);
    --primary-gold-light: hsl(43, 80%, 75%);
    --bg-dark: hsl(0, 1%, 27%);
    --bg-dark-gray: hsl(210, 15%, 12%);
    --bg-card: rgba(20, 20, 20, 0.7);
    --text-light: hsl(30, 20%, 97%);
    --text-muted: hsl(210, 10%, 70%);
    --border-color: rgba(212, 175, 55, 0.15);
    --glass-bg: rgba(15, 15, 15, 0.6);
    --glass-border: rgba(255, 255, 255, 0.08);
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --shadow-premium: 0 20px 40px rgba(0, 0, 0, 0.5);
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;
}

/* --- Base Reset & Setup --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-light);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-smooth);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul {
    list-style: none;
}

button,
.btn {
    font-family: var(--font-body);
    cursor: pointer;
    border: none;
    background: none;
    transition: var(--transition-smooth);
}

/* --- Typography --- */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    letter-spacing: 0.5px;
}

.section-title {
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 1rem;
    position: relative;
    background: linear-gradient(135deg, var(--text-light) 30%, var(--primary-gold-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--primary-gold);
    text-transform: uppercase;
    letter-spacing: 3px;
    text-align: center;
    margin-bottom: 3.5rem;
    font-weight: 500;
}

/* --- Common Components --- */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-gold) 0%, var(--primary-gold-dark) 100%);
    color: var(--bg-dark);
    padding: 0.8rem 2rem;
    border-radius: 4px;
    font-weight: 600;
    letter-spacing: 1px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.2);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-gold-light) 0%, var(--primary-gold) 100%);
    opacity: 0;
    transition: var(--transition-smooth);
    z-index: -1;
}

.btn-primary:hover::before {
    opacity: 1;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
}

.btn-outline {
    border: 1px solid var(--primary-gold);
    color: var(--primary-gold);
    padding: 0.8rem 2rem;
    border-radius: 4px;
    font-weight: 600;
    letter-spacing: 1px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: transparent;
}

.btn-outline:hover {
    background-color: var(--primary-gold);
    color: var(--bg-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.2);
}

.btn-whatsapp {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: #fff;
    padding: 0.8rem 2rem;
    border-radius: 4px;
    font-weight: 600;
    letter-spacing: 1px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.2);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-whatsapp::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #34d973 0%, #25D366 100%);
    opacity: 0;
    transition: var(--transition-smooth);
    z-index: -1;
}

.btn-whatsapp:hover::before {
    opacity: 1;
}

.btn-whatsapp:hover {
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

.btn-call {
    background: linear-gradient(135deg, var(--primary-gold) 0%, var(--primary-gold-dark) 100%);
    color: var(--bg-dark);
    padding: 0.8rem 2rem;
    border-radius: 4px;
    font-weight: 600;
    letter-spacing: 1px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.2);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-call::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-gold-light) 0%, var(--primary-gold) 100%);
    opacity: 0;
    transition: var(--transition-smooth);
    z-index: -1;
}

.btn-call:hover::before {
    opacity: 1;
}

.btn-call:hover {
    color: var(--bg-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
}

/* --- Header & Navigation --- */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(10, 10, 12, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    transition: var(--transition-smooth);
    padding: 0;
}

header.scrolled {
    background: rgba(8, 8, 10, 0.85);
    border-bottom: 1px solid rgba(212, 175, 55, 0.15);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.4);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 75px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    background: transparent;
    transition: var(--transition-smooth);
}

header.scrolled .nav-container {
    height: 60px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex: 1 1 0%;
    justify-content: flex-start;
}

nav {
    flex: 0 0 auto;
    display: flex;
    justify-content: center;
}

/* --- Language Switch Component --- */
.lang-switch {
    flex: 1 1 0%;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.lang-btn-group {
    display: inline-flex;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 30px;
    padding: 3px;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.3);
    transition: var(--transition-smooth);
}

.lang-btn-group:hover {
    border-color: rgba(212, 175, 55, 0.25);
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.05), inset 0 2px 4px rgba(0, 0, 0, 0.3);
}

.lang-btn {
    padding: 6px 14px;
    border-radius: 30px;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    color: var(--text-muted);
    transition: var(--transition-smooth);
    background: transparent;
    border: none;
    cursor: pointer;
    text-transform: uppercase;
}

.lang-btn:hover {
    color: var(--text-light);
}

.lang-btn.active {
    background: linear-gradient(135deg, var(--primary-gold) 0%, var(--primary-gold-dark) 100%);
    color: var(--bg-dark) !important;
    box-shadow: 0 2px 8px rgba(212, 175, 55, 0.35);
}


.logo-text {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    background: linear-gradient(135deg, var(--text-light) 0%, var(--primary-gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: var(--transition-smooth);
}

header.scrolled .logo-text {
    font-size: 1.45rem;
}

.logo-sub {
    font-size: 0.7rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--primary-gold);
    font-weight: 600;
    margin-top: -3px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2.2rem;
}

.nav-item {
    position: relative;
}

.nav-link {
    font-size: 0.92rem;
    font-weight: 600;
    letter-spacing: 1px;
    padding: 0.5rem 1rem;
    color: var(--text-light);
    opacity: 0.85;
    position: relative;
    display: inline-block;
    border-radius: 8px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-gold);
    opacity: 1;
    background: rgba(212, 175, 55, 0.05);
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.2);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary-gold), transparent);
    transition: var(--transition-smooth);
    transform: translateX(-50%);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 80%;
}

/* Services Dropdown Menu (VIP Glass Card) */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(15px);
    background: rgba(10, 12, 16, 0.95);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border: 1px solid rgba(212, 175, 55, 0.25);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.6), 0 0 20px rgba(212, 175, 55, 0.05);
    border-radius: 12px;
    padding: 0.75rem 0;
    min-width: 240px;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-smooth);
    z-index: 10;
}

.nav-item.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(5px);
}

.dropdown-item {
    display: block;
    padding: 0.75rem 1.75rem;
    font-size: 0.9rem;
    color: var(--text-muted);
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.dropdown-item:hover {
    background-color: rgba(212, 175, 55, 0.06);
    color: var(--primary-gold);
    padding-left: 2.2rem;
}

.dropdown-item::before {
    content: '';
    position: absolute;
    left: 1.1rem;
    top: 50%;
    transform: translateY(-50%) scale(0);
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: var(--primary-gold);
    box-shadow: 0 0 8px var(--primary-gold);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.dropdown-item:hover::before {
    transform: translateY(-50%) scale(1);
}

/* Mobile Menu Trigger Button (VIP Gold Bars) */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 26px;
    height: 18px;
    cursor: pointer;
}

.mobile-menu-btn span {
    width: 100%;
    height: 2px;
    background-color: var(--primary-gold);
    border-radius: 2px;
    box-shadow: 0 0 6px rgba(212, 175, 55, 0.4);
    transition: var(--transition-smooth);
}

/* --- Hero Section --- */
.hero {
    height: 100vh;
    min-height: 700px;
    position: relative;
    display: flex;
    align-items: center;
    background-color: var(--bg-dark);
    overflow: hidden;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    width: 100%;
    height: 100%;
    align-items: stretch;
}

.hero-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-left: 10%;
    padding-right: 5%;
    padding-top: 120px;
    padding-bottom: 60px;
    z-index: 2;
}

.hero-badge {
    color: var(--primary-gold);
    text-transform: uppercase;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 4px;
    margin-bottom: 1.5rem;
    display: inline-block;
}

.hero-title {
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 2rem;
    font-weight: 700;
}

.hero-title span {
    color: var(--primary-gold);
}

.hero-desc {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    max-width: 95%;
}

.hero-actions {
    display: flex;
    gap: 1.5rem;
}

/* Slider (Right Side - Full Half Bleed) */
.hero-slider-container {
    position: relative;
    height: 100%;
    width: 100%;
    overflow: hidden;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1.2s ease-in-out;
    background-size: cover;
    background-position: center;
}

.hero-slide.active {
    opacity: 1;
}

.hero-slide::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(8, 10, 12, 0.4) 0%, rgba(8, 10, 12, 0) 100%);
}

.slider-dots {
    position: absolute;
    bottom: 3rem;
    right: 3rem;
    display: flex;
    gap: 0.8rem;
    z-index: 5;
}

.slider-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: var(--transition-smooth);
}

.slider-dot.active {
    background-color: var(--primary-gold);
    transform: scale(1.5);
}

/* --- Services Section --- */
.services-section {
    padding: 8rem 0;
    background-color: var(--bg-dark-gray);
    position: relative;
}

.services-grid {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    max-width: 950px;
    margin: 0 auto;
}

.service-card {
    transition: var(--transition-smooth);
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 3rem;
    align-items: center;
}

.service-card:nth-child(even) {
    grid-template-columns: 1.2fr 1fr;
}

.service-card:nth-child(even) .service-img-wrapper {
    order: 2;
}

.service-img-wrapper {
    position: relative;
    height: 280px;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    overflow: hidden;
    background-color: var(--bg-card);
    transition: var(--transition-smooth);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.service-card:hover .service-img-wrapper {
    transform: translateY(-5px);
    border-color: var(--primary-gold);
    box-shadow: 0 12px 30px rgba(212, 175, 55, 0.15);
}

.service-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.service-card:hover img {
    transform: scale(1.05);
}

.service-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-card-title {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    color: var(--text-light);
    transition: var(--transition-smooth);
}

.service-card:hover .service-card-title {
    color: var(--primary-gold);
}

.service-card-desc {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 1.25rem;
    line-height: 1.6;
}

.service-card .btn-card {
    color: var(--primary-gold);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    align-self: flex-start;
}

.service-card .btn-card i {
    transition: var(--transition-smooth);
}

.service-card:hover .btn-card i {
    transform: translateX(5px);
}

@media (max-width: 768px) {
    .service-card {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        text-align: center;
    }

    .service-card:nth-child(even) {
        grid-template-columns: 1fr;
    }

    .service-card:nth-child(even) .service-img-wrapper {
        order: 0;
    }

    .service-card .btn-card {
        align-self: center;
    }
}

/* --- Home About Section --- */
.home-about-section {
    padding: 8rem 0;
    background-color: var(--bg-dark-gray);
    border-bottom: 1px solid var(--border-color);
}

.home-about-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 5rem;
    align-items: center;
}

.home-about-text .sub-title {
    color: var(--primary-gold);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 3px;
    margin-bottom: 0.5rem;
    display: block;
}

.home-about-text p {
    color: var(--text-muted);
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.home-about-img-wrapper {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-premium);
    height: 400px;
}

.home-about-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.home-about-img-wrapper:hover .home-about-img {
    transform: scale(1.05);
}

@media (max-width: 992px) {
    .home-about-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .home-about-img-wrapper {
        height: 350px;
    }
}

/* --- Gallery Section --- */
.gallery-section {
    padding: 8rem 0;
    background-color: var(--bg-dark);
}

.gallery-filters {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 3.5rem;
}

.filter-btn {
    padding: 0.6rem 1.5rem;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-muted);
    border: 1px solid var(--border-color);
    transition: var(--transition-smooth);
}

.filter-btn.active,
.filter-btn:hover {
    background-color: var(--primary-gold);
    color: var(--bg-dark);
    border-color: var(--primary-gold);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.gallery-item {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    height: 350px;
    border: 1px solid var(--border-color);
    transition: var(--transition-smooth);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.gallery-item-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(8, 10, 12, 0.95) 0%, rgba(8, 10, 12, 0.2) 60%, rgba(8, 10, 12, 0) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 2rem;
    opacity: 0;
    transform: translateY(20px);
    transition: var(--transition-smooth);
}

.gallery-item:hover .gallery-item-overlay {
    opacity: 1;
    transform: translateY(0);
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-item-city {
    color: var(--primary-gold);
    text-transform: uppercase;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
}

.gallery-item-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-light);
}

/* --- FAQs Section --- */
.faq-section {
    padding: 8rem 0;
    background-color: var(--bg-dark-gray);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid var(--border-color);
    padding: 1.5rem 0;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.2rem;
    font-weight: 600;
    cursor: pointer;
    font-family: var(--font-heading);
    transition: var(--transition-smooth);
}

.faq-question:hover,
.faq-item.active .faq-question {
    color: var(--primary-gold);
}

.faq-toggle-icon {
    font-size: 1.5rem;
    transition: var(--transition-smooth);
}

.faq-item.active .faq-toggle-icon {
    transform: rotate(45deg);
    color: var(--primary-gold);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: var(--transition-smooth);
    color: var(--text-muted);
    font-size: 0.95rem;
}

.faq-item.active .faq-answer {
    max-height: 200px;
    margin-top: 1rem;
}

/* --- CTA Section --- */
.cta-section {
    padding: 8rem 0;
    background: linear-gradient(rgba(8, 10, 12, 0.85), rgba(8, 10, 12, 0.85)), url('../images/wedding.png') center/cover fixed;
    text-align: center;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.cta-box {
    max-width: 700px;
    margin: 0 auto;
}

.cta-title {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: var(--text-light);
}

.cta-desc {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
}

/* --- Footer --- */
footer {
    background-color: #000000;
    padding: 5rem 0 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-info .logo {
    margin-bottom: 1.5rem;
}

.footer-desc {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 2rem;
    max-width: 90%;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    transition: var(--transition-smooth);
}

.social-link:hover {
    color: var(--bg-dark);
    background-color: var(--primary-gold);
    border-color: var(--primary-gold);
    transform: translateY(-3px);
}

.footer-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 2rem;
    color: var(--text-light);
    position: relative;
    display: inline-block;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 30px;
    height: 2px;
    background-color: var(--primary-gold);
}

.footer-links li {
    margin-bottom: 1rem;
}

.footer-links a {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: var(--primary-gold);
    padding-left: 5px;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.25rem;
    color: var(--text-muted);
    font-size: 0.95rem;
}

.footer-contact li i {
    color: var(--primary-gold);
    margin-top: 4px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-muted);
    font-size: 0.85rem;
}

/* --- Responsive Media Queries --- */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 3rem;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    header {
        padding: 0;
    }

    header.scrolled {
        padding: 0;
    }

    .container {
        padding: 0 1.25rem;
    }

    .nav-container {
        height: 65px;
        padding: 0 1.25rem;
        margin: 0;
        max-width: 100%;
        border-radius: 0;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    header.scrolled .nav-container {
        height: 55px;
    }

    .logo {
        flex: none;
    }

    nav {
        flex: none;
    }

    .lang-switch {
        flex: 0 0 auto;
        margin-inline-start: auto;
        margin-inline-end: 1rem;
    }


    .logo-text {
        font-size: 1.35rem;
    }

    header.scrolled .logo-text {
        font-size: 1.25rem;
    }

    .logo-sub {
        font-size: 0.65rem;
        letter-spacing: 2px;
    }

    .nav-links {
        position: fixed;
        top: 65px;
        left: -70%;
        width: 70%;
        margin: 0;
        height: calc(100vh - 65px);
        background-color: rgba(8, 10, 12, 0.98);
        backdrop-filter: blur(25px);
        -webkit-backdrop-filter: blur(25px);
        border: none;
        border-right: 1px solid rgba(212, 175, 55, 0.2);
        border-top: 1px solid rgba(255, 255, 255, 0.08);
        border-radius: 0;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        gap: 1.75rem;
        padding: 3rem 1.5rem;
        overflow-y: auto;
        transition: var(--transition-smooth);
        z-index: 999;
        box-shadow: 10px 0 30px rgba(0, 0, 0, 0.5);
    }

    header.scrolled .nav-links {
        top: 55px;
        height: calc(100vh - 55px);
    }

    .nav-links.active {
        left: 0;
    }

    .nav-item {
        width: 100%;
        text-align: center;
    }

    .nav-link {
        font-size: 1.05rem;
        padding: 0.5rem 0;
        display: block;
        width: 100%;
    }

    /* Inline mobile dropdown menu for optimal mobile responsiveness (Hidden by default, open on click) */
    .dropdown-menu {
        display: none !important;
        opacity: 0;
        visibility: hidden;
        position: static;
        transform: none;
        background: rgba(255, 255, 255, 0.02);
        border: 1px solid rgba(212, 175, 55, 0.15);
        box-shadow: none;
        width: 90%;
        margin: 0.5rem auto 0;
        border-radius: 8px;
        padding: 0.50rem 0;
        flex-direction: column;
        gap: 0.25rem;
        transition: opacity 0.3s ease;
    }

    .dropdown-menu.active {
        display: flex !important;
        opacity: 1 !important;
        visibility: visible !important;
    }

    .nav-item.dropdown:hover .dropdown-menu {
        transform: none;
        opacity: 0;
        visibility: hidden;
    }

    .nav-item.dropdown:hover .dropdown-menu.active {
        opacity: 1;
        visibility: visible;
    }

    .dropdown-item {
        padding: 0.6rem 1rem !important;
        font-size: 0.85rem !important;
        color: var(--text-muted) !important;
        text-align: center !important;
        display: block !important;
        width: 100% !important;
    }

    .dropdown-item::before {
        display: none !important;
    }

    .dropdown-item:hover {
        padding-left: 1rem !important;
        background-color: rgba(212, 175, 55, 0.08) !important;
        color: var(--primary-gold) !important;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .mobile-menu-btn.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .mobile-menu-btn.active span:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu-btn.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }

    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero {
        height: auto;
    }

    .hero-content {
        padding: 120px 1.25rem 40px;
    }

    .hero-title {
        font-size: 2.25rem;
        line-height: 1.2;
        margin-bottom: 1.5rem;
    }

    .hero-desc {
        max-width: 100%;
        font-size: 0.95rem;
        margin-bottom: 2rem;
    }

    .hero-actions {
        flex-direction: column;
        gap: 1rem;
        width: 100%;
    }

    .hero-actions .btn {
        width: 100%;
        padding: 0.9rem 1.5rem;
    }

    .hero-slider-container {
        height: 320px;
    }

    .services-grid {
        gap: 2.5rem;
    }

    .service-card {
        grid-template-columns: 1fr !important;
        gap: 1.5rem;
    }

    .service-card:nth-child(even) .service-img-wrapper {
        order: 0;
    }

    .service-img-wrapper {
        height: 240px;
        min-height: auto;
    }

    .service-info {
        padding: 0.5rem 0 1.5rem;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .section-subtitle {
        font-size: 0.95rem;
        margin-bottom: 2.5rem;
        letter-spacing: 2px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        text-align: center;
    }

    .footer-info {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .footer-info .logo {
        justify-content: center;
    }

    .footer-desc {
        margin: 0 auto 2rem;
    }

    .social-links {
        justify-content: center;
    }

    .footer-col {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .footer-title::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-contact li {
        justify-content: center;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    /* Compact Locations List for Mobile (2-column layout - each card covers 50% width) */
    .locations-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 0.5rem !important;
        margin-top: 1rem !important;
    }

    .location-card {
        padding: 0.6rem 0.5rem !important;
        display: flex !important;
        flex-direction: row !important;
        align-items: center !important;
        justify-content: flex-start !important;
        text-align: left !important;
        gap: 0.4rem !important;
        border-radius: 6px !important;
    }

    .location-card::before {
        display: none !important;
    }

    .location-icon {
        font-size: 0.9rem !important;
        margin-bottom: 0 !important;
        flex-shrink: 0;
    }

    .location-name {
        font-size: 0.8rem !important;
        margin-bottom: 0 !important;
        white-space: nowrap;
    }

    .location-name-ar {
        font-size: 0.65rem !important;
        display: inline !important;
        margin-left: auto !important;
        margin-bottom: 0 !important;
        white-space: nowrap;
        opacity: 0.8;
    }

    .location-desc {
        display: none !important;
    }
}

/* --- Event Footprint / Locations Section --- */
.locations-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.75rem;
    margin-top: 1.5rem;
}

.location-card {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 6px;
    padding: 0.85rem 0.6rem;
    text-align: center;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.location-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: transparent;
    transition: var(--transition-smooth);
}

.location-card:hover::before {
    background-color: var(--primary-gold);
}

.location-card:hover {
    transform: translateY(-3px);
    border-color: var(--primary-gold);
    box-shadow: 0 6px 12px rgba(212, 175, 55, 0.05);
}

.location-icon {
    font-size: 1.25rem;
    color: var(--primary-gold);
    margin-bottom: 0.5rem;
    transition: var(--transition-smooth);
}

.location-card:hover .location-icon {
    transform: scale(1.1);
}

.location-name {
    font-size: 0.95rem;
    color: var(--text-light);
    margin-bottom: 0.1rem;
    font-weight: 600;
}

.location-name-ar {
    font-size: 0.75rem;
    color: var(--primary-gold);
    display: block;
    margin-bottom: 0.4rem;
    font-weight: 500;
}

.location-desc {
    font-size: 0.73rem;
    color: var(--text-muted);
    line-height: 1.35;
}

/* --- Google Reviews Section --- */
.reviews-section {
    padding: 7rem 0;
    background-color: var(--bg-dark);
    border-top: 1px solid var(--border-color);
}

.google-reviews-widget {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 2rem;
    margin-top: 2.5rem;
    box-shadow: var(--shadow-premium);
}

.widget-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 1.25rem;
    margin-bottom: 1.5rem;
}

.header-left {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.google-brand {
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: -1.2px;
    display: flex;
    align-items: center;
}

.g-blue {
    color: #4285F4;
}

.g-red {
    color: #EA4335;
}

.g-yellow {
    color: #FBBC05;
}

.g-green {
    color: #34A853;
}

.brand-rating-title {
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-muted);
    margin-left: 0.4rem;
    letter-spacing: normal;
}

.rating-summary {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.rating-value {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-light);
}

.rating-stars {
    color: #FBBC05;
    font-size: 1.1rem;
    display: flex;
    gap: 0.15rem;
}

.reviews-count {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.btn-review {
    background-color: #4285F4;
    color: #ffffff;
    padding: 0.6rem 1.2rem;
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 600;
    transition: var(--transition-smooth);
    display: inline-block;
}

.btn-review:hover {
    background-color: #357ae8;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(66, 133, 244, 0.3);
}

.reviews-slider-container {
    overflow: hidden;
    position: relative;
    width: 100%;
    padding: 0.5rem 0;
}

.reviews-slider-track {
    display: flex;
    gap: 1.5rem;
    width: max-content;
    animation: slideReviewsRightToLeft 35s linear infinite;
}

.reviews-slider-track:hover {
    animation-play-state: paused;
}

/* 6 cards, each width is 300px, gap is 1.5rem (24px).
   Total width of 6 cards = (300px + 24px) * 6 = 1944px.
   Since it slides RIGHT TO LEFT, we start from 0 and translate to -1944px. */
@keyframes slideReviewsRightToLeft {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-1944px);
    }
}

.review-card {
    background-color: var(--bg-dark-gray);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
    width: 300px;
    flex-shrink: 0;
    transition: var(--transition-smooth);
}

.review-card:hover {
    border-color: var(--primary-gold);
    transform: translateY(-4px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.25);
}

.review-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.reviewer-meta {
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.reviewer-avatar {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1rem;
    color: #ffffff;
}

.avatar-orange {
    background-color: #E65100;
}

.avatar-blue {
    background-color: #0D47A1;
}

.avatar-green {
    background-color: #1B5E20;
}

.avatar-pink {
    background-color: #D81B60;
}

.avatar-purple {
    background-color: #8E24AA;
}

.avatar-teal {
    background-color: #00897B;
}

.reviewer-name {
    font-size: 0.9rem;
    color: var(--text-light);
    font-weight: 600;
}

.reviewer-guide {
    font-size: 0.7rem;
    color: #10b981;
    display: flex;
    align-items: center;
    gap: 0.2rem;
    margin-top: 0.1rem;
}

.google-card-logo {
    width: 16px;
    height: 16px;
    object-fit: contain;
    opacity: 0.8;
}

.review-rating {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    margin-bottom: 0.75rem;
}

.review-rating .stars {
    color: #FBBC05;
    font-size: 0.8rem;
    display: flex;
    gap: 0.1rem;
}

.review-date {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.review-text {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.55;
    font-style: italic;
}

/* --- Mobile Responsiveness --- */
@media (max-width: 992px) {
    .locations-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.8rem;
    }

    .widget-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.5rem;
    }

    .header-left {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.5rem;
    }
}

@media (max-width: 576px) {
    .google-reviews-widget {
        padding: 1.5rem 1.25rem;
    }
}

/* --- Developer Section --- */
.developer-section {
    padding: 6rem 0;
    background-color: var(--bg-dark);
    display: flex;
    justify-content: center;
}

.developer-card {
    background: var(--bg-dark-gray);
    border-radius: 24px;
    padding: 3rem;
    width: 100%;
    max-width: 1000px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5), 0 5px 15px rgba(0, 176, 80, 0.03);
    border: 1px solid rgba(0, 176, 80, 0.15);
    position: relative;
    overflow: hidden;
}

.developer-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(0, 176, 80, 0.08) 0%, rgba(0, 0, 0, 0) 70%);
    pointer-events: none;
}

.developer-header {
    margin-bottom: 2.5rem;
}

.dev-title {
    font-family: var(--font-body);
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-light);
    margin: 0;
    letter-spacing: -0.5px;
    text-align: left;
}

.dev-title .highlight {
    color: #00B050;
}

.dev-underline {
    width: 60px;
    height: 4px;
    background-color: #00B050;
    margin-top: 0.75rem;
    border-radius: 2px;
}

.developer-content {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-bottom: 3rem;
}

.developer-quote {
    background-color: rgba(0, 176, 80, 0.06);
    border-left: 4px solid #00B050;
    padding: 1.25rem 1.75rem;
    border-radius: 12px;
    flex-grow: 1;
    width: 100%;
}

.developer-quote p {
    color: var(--text-light);
    font-size: 1.05rem;
    line-height: 1.6;
    margin: 0;
    font-weight: 500;
}

.developer-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.stat-card {
    background-color: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 16px;
    padding: 1.75rem;
    text-align: center;
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    background-color: rgba(255, 255, 255, 0.04);
    border-color: rgba(0, 176, 80, 0.3);
}

.stat-number {
    font-family: var(--font-body);
    font-size: 2.2rem;
    font-weight: 800;
    color: #00B050;
    margin: 0 0 0.5rem 0;
}

.stat-label {
    font-family: var(--font-body);
    color: var(--text-muted);
    font-size: 0.95rem;
    font-weight: 600;
    margin: 0;
}

/* Responsiveness for Developer Section */
@media (max-width: 768px) {
    .developer-section {
        padding: 4rem 0;
    }

    .developer-card {
        padding: 2.5rem 1.5rem;
    }

    .developer-content {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }

    .developer-quote {
        border-left: none;
        border-top: 4px solid #00B050;
        border-radius: 12px;
        padding: 1.25rem;
    }

    .developer-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .dev-title {
        font-size: 2rem;
        text-align: center;
    }

    .dev-underline {
        margin: 0.75rem auto 0 auto;
    }
}

/* Floating Actions: Call (Left) and WhatsApp (Right) */
.float-btn-left {
    position: fixed;
    bottom: 30px;
    left: 30px;
    z-index: 9999;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: #fff !important;
    transition: all 0.3s ease;
    text-decoration: none;
    background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
    box-shadow: 0 4px 15px rgba(0, 123, 255, 0.4);
}

.float-btn-left::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px solid #007bff;
    animation: float-pulse 1.8s infinite;
    box-sizing: border-box;
    opacity: 0;
}

.float-btn-right {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9999;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: #fff !important;
    transition: all 0.3s ease;
    text-decoration: none;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
}

.float-btn-right::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px solid #25D366;
    animation: float-pulse 1.8s infinite;
    box-sizing: border-box;
    opacity: 0;
}

.float-btn-left:hover, .float-btn-right:hover {
    transform: translateY(-5px) scale(1.05);
}

@keyframes float-pulse {
    0% {
        transform: scale(1);
        opacity: 0.8;
    }
    100% {
        transform: scale(1.4);
        opacity: 0;
    }
}

/* Responsive adjustment */
@media (max-width: 768px) {
    .float-btn-left {
        bottom: 20px;
        left: 20px;
        width: 50px;
        height: 50px;
        font-size: 24px;
    }
    .float-btn-right {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
        font-size: 24px;
    }
}

/* Bilingual Location Display helpers */
html[lang="en"] .location-name-ar {
    display: none !important;
}
html[lang="ar"] .location-name {
    display: none !important;
}

/* Floating Language Toggle */
.floating-lang-switch {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 9998;
    animation: fadeInFloat 0.5s ease-out;
}

.lang-btn-group {
    display: flex;
    flex-direction: row;
    gap: 0;
    background: rgba(15, 15, 25, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.lang-btn {
    padding: 10px 16px;
    border: none;
    background: transparent;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: var(--font-heading);
}

.lang-btn:hover {
    color: #fff;
    background: rgba(212, 175, 55, 0.15);
}

.lang-btn.active {
    background: linear-gradient(135deg, var(--primary-gold) 0%, #c9982e 100%);
    color: #0a0a14;
    font-weight: 700;
}

@keyframes fadeInFloat {
    from {
        opacity: 0;
        transform: translateX(20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .floating-lang-switch {
        bottom: 20px;
    }
    .lang-btn {
        padding: 8px 12px;
        font-size: 0.7rem;
    }
}