/* 
 * Royal Spa - High-Converting Google Ads Landing Page Stylesheet
 * Theme: Dark Gold Luxury (Sub-second page load optimized)
 */

:root {
    --bg-dark: #070913;
    --bg-card: #111424;
    --bg-card-hover: #171c33;
    --gold: #d4af37;
    --gold-bright: #f3e5ab;
    --gold-dark: #aa7c11;
    --gold-gradient: linear-gradient(135deg, #aa7c11 0%, #d4af37 50%, #f3e5ab 100%);
    --gold-gradient-hover: linear-gradient(135deg, #d4af37 0%, #f3e5ab 50%, #aa7c11 100%);
    --text-light: #f8fafc;
    --text-muted: #94a3b8;
    --text-dark: #0f172a;
    --whatsapp-color: #25D366;
    --whatsapp-hover: #20BA5A;
    --phone-color: #3b82f6;
    --phone-hover: #2563eb;
    
    --font-heading: 'Playfair Display', 'Georgia', serif;
    --font-body: 'Inter', 'Outfit', 'Montserrat', sans-serif;
    --font-arabic: 'Tajawal', sans-serif;
    --font-arabic-nav: 'Cairo', sans-serif;
}

/* Base resets & styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-text-size-adjust: 100%;
}

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

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    html {
        scroll-behavior: auto;
    }
}

body.rtl {
    font-family: var(--font-arabic), var(--font-body);
    direction: rtl;
    text-align: right;
}

/* Typography styles */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    color: #ffffff;
    letter-spacing: 0.03em;
}

body.rtl h1, body.rtl h2, body.rtl h3, body.rtl h4, body.rtl h5, body.rtl h6 {
    font-family: var(--font-arabic);
}

.text-gold {
    color: var(--gold);
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.text-gradient {
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--bg-dark);
}
::-webkit-scrollbar-thumb {
    background: var(--gold-dark);
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--gold);
}

/* Containers */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    border-radius: 50px;
    font-family: var(--font-body);
    font-weight: 700;
    text-decoration: none;
    transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
    cursor: pointer;
    border: none;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-size: 0.9rem;
    gap: 10px;
}

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

body.rtl .btn {
    font-family: var(--font-arabic);
    text-transform: none;
}

.btn-gold {
    background: var(--gold-gradient);
    color: var(--bg-dark) !important;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}
.btn-gold:hover {
    background: var(--gold-gradient-hover);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.5);
}

.btn-outline {
    background: transparent;
    color: #ffffff;
    border: 2px solid var(--gold);
    box-shadow: inset 0 0 0 0 rgba(212, 175, 55, 0.2);
}
.btn-outline:hover {
    background: rgba(212, 175, 55, 0.1);
    border-color: var(--gold-bright);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.15);
}

.btn-whatsapp {
    background-color: var(--whatsapp-color);
    color: #ffffff !important;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}
.btn-whatsapp:hover {
    background-color: var(--whatsapp-hover);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.5);
}

.btn-phone {
    background-color: var(--phone-color);
    color: #ffffff !important;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
}
.btn-phone:hover {
    background-color: var(--phone-hover);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.5);
}

/* Floating Actions Bar for Mobile View (Extremely high converting!) */
.mobile-floating-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(11, 14, 28, 0.95);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    padding: 10px 15px;
    z-index: 999;
    display: flex;
    justify-content: space-between;
    gap: 12px;
}

@media (min-width: 768px) {
    .mobile-floating-bar {
        display: none;
    }
}

/* Mobile Offer FAB - right center vertical pill */
.mobile-offer-fab {
    display: none;
    position: fixed;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 997;
    background: var(--gold-gradient);
    color: var(--bg-dark);
    border: none;
    border-radius: 12px 0 0 12px;
    padding: 14px 10px;
    cursor: pointer;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    font-weight: 700;
    font-size: 0.7rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    box-shadow: -4px 0 20px rgba(212, 175, 55, 0.4);
    transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
    writing-mode: vertical-rl;
    writing-mode: initial;
}

.mobile-offer-fab i {
    font-size: 1.1rem;
}

.mobile-offer-fab span {
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 0.08em;
}

.mobile-offer-fab:hover {
    padding-right: 14px;
    box-shadow: -6px 0 25px rgba(212, 175, 55, 0.6);
}

@media (max-width: 767px) {
    .mobile-offer-fab {
        display: flex;
    }
}

body.rtl .mobile-offer-fab {
    right: auto;
    left: 0;
    border-radius: 0 12px 12px 0;
    box-shadow: 4px 0 20px rgba(212, 175, 55, 0.4);
}

body.rtl .mobile-offer-fab:hover {
    padding-left: 14px;
    padding-right: 10px;
}

/* Mobile 9:16 Video Lightbox */
.mobile-video-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.97);
    z-index: 10000;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mobile-video-modal.active {
    display: flex;
    opacity: 1;
}

.mobile-video-content {
    position: relative;
    width: 100%;
    max-width: 360px;
    background: var(--bg-dark);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8);
    transform: scale(0.9) translateY(20px);
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    border: 1px solid rgba(212, 175, 55, 0.3);
}

.mobile-video-modal.active .mobile-video-content {
    transform: scale(1) translateY(0);
}

.mobile-close-btn {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 36px;
    height: 36px;
    background: rgba(0, 0, 0, 0.6);
    border: 1.5px solid var(--gold);
    border-radius: 50%;
    color: var(--gold);
    font-size: 1rem;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.mobile-close-btn:hover {
    background: var(--gold);
    color: var(--bg-dark);
}

/* 9:16 aspect ratio wrapper */
.mobile-video-wrapper {
    position: relative;
    width: 100%;
    padding-top: 177.78%;
}

.mobile-video-wrapper video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.mobile-video-footer {
    padding: 16px;
    background: var(--bg-card);
    border-top: 1px solid rgba(212, 175, 55, 0.2);
}

.mobile-video-label {
    color: var(--gold);
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    text-align: center;
    margin-bottom: 12px;
}

body.rtl .mobile-close-btn {
    right: auto;
    left: 12px;
}

/* Floating CTA Buttons for Desktop */
.floating-cta {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 998;
}

body.rtl .floating-cta {
    right: auto;
    left: 30px;
}

.floating-cta .btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    padding: 0;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.floating-cta .btn:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
}

.floating-cta .btn-whatsapp {
    background-color: var(--whatsapp-color);
    color: #ffffff !important;
}

.floating-cta .btn-phone {
    background-color: var(--phone-color);
    color: #ffffff !important;
}

.floating-cta .btn-offer {
    background: var(--gold-gradient);
    color: var(--bg-dark) !important;
    box-shadow: 0 4px 20px rgba(212, 175, 55, 0.4);
}

.floating-cta .btn-offer:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 30px rgba(212, 175, 55, 0.6);
}

@media (max-width: 767px) {
    .floating-cta {
        display: none;
    }
}

/* Video Lightbox Modal */
.video-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 9999;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.video-modal.active {
    display: flex;
    opacity: 1;
}

.video-modal-content {
    position: relative;
    width: 90%;
    max-width: 900px;
    background: var(--bg-dark);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
    transform: scale(0.9);
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.video-modal.active .video-modal-content {
    transform: scale(1);
}

.close-modal {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 40px;
    height: 40px;
    background: rgba(0, 0, 0, 0.5);
    border: 2px solid var(--gold);
    border-radius: 50%;
    color: var(--gold);
    font-size: 1.2rem;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.close-modal:hover {
    background: var(--gold);
    color: var(--bg-dark);
    transform: rotate(90deg);
}

.video-wrapper {
    position: relative;
    width: 100%;
    padding-top: 56.25%; /* 16:9 aspect ratio */
}

.video-wrapper video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

body.rtl .close-modal {
    right: auto;
    left: 15px;
}

.mobile-floating-bar .btn {
    flex: 1;
    padding: 12px 15px;
    font-size: 0.85rem;
    border-radius: 8px;
    text-transform: none;
    letter-spacing: 0;
}

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

.fade-in-up {
    animation: fadeInUp 0.3s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

/* Navigation */
header {
    background: rgba(7, 9, 19, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    gap: 12px;
}

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

.logo span {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 0.05em;
}

.logo span b {
    color: var(--gold);
}

.nav-links {
    display: flex;
    align-items: center;
    list-style: none;
    gap: 30px;
}

.nav-links a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: color 0.3s;
}

body.rtl .nav-links a {
    font-family: var(--font-arabic-nav);
}

.nav-links a:hover {
    color: var(--gold);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.lang-switch {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #ffffff;
    font-weight: 700;
    font-size: 0.9rem;
    border: 1px solid rgba(212, 175, 55, 0.3);
    padding: 6px 12px;
    border-radius: 4px;
    transition: all 0.3s;
    gap: 5px;
}

.lang-switch:hover {
    border-color: var(--gold);
    background: rgba(212, 175, 55, 0.1);
    color: var(--gold);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: #ffffff;
    font-size: 2rem;
    cursor: pointer;
}

@media (max-width: 991px) {
    .nav-links {
        display: none;
    }
    .mobile-menu-btn {
        display: block;
    }
}

/* Mobile Nav Drawer */
.mobile-nav {
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    background: var(--bg-dark);
    border-bottom: 2px solid var(--gold);
    padding: 20px;
    z-index: 99;
    display: none;
    flex-direction: column;
    gap: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.mobile-nav.active {
    display: flex;
}

.mobile-nav a {
    color: #ffffff;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 600;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

/* Sections Base */
section {
    padding: 80px 0;
    position: relative;
}

@media (max-width: 767px) {
    section {
        padding: 50px 0;
    }
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    text-transform: uppercase;
}

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

/* Hero Section */
.hero {
    min-height: calc(100vh - 80px);
    display: flex;
    align-items: center;
    background: linear-gradient(to right, rgba(7, 9, 19, 0.9) 30%, rgba(7, 9, 19, 0.4) 100%), 
                url('../assets/images/massage-room-1.jpg') no-repeat center center / cover;
    padding: 100px 0;
}

body.rtl .hero {
    background: linear-gradient(to left, rgba(7, 9, 19, 0.9) 30%, rgba(7, 9, 19, 0.4) 100%), 
                url('../assets/images/massage-room-1.jpg') no-repeat center center / cover;
}

.hero-content {
    max-width: 650px;
}

.hero h1 {
    font-size: 4rem;
    margin-bottom: 20px;
    line-height: 1.1;
}

.hero .tagline {
    font-size: 1.4rem;
    color: var(--gold);
    font-weight: 600;
    margin-bottom: 15px;
    font-family: var(--font-body);
}

.hero .description {
    font-size: 1.15rem;
    color: var(--text-muted);
    margin-bottom: 35px;
}

.hero-cta {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.hero-stats {
    display: flex;
    gap: 40px;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    padding-top: 25px;
}

.stat-item h3 {
    font-size: 1.8rem;
    color: var(--gold);
    margin-bottom: 2px;
}

.stat-item p {
    color: var(--text-muted);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

@media (max-width: 767px) {
    .hero {
        text-align: center;
        padding: 60px 0;
        min-height: auto;
    }
    .hero-content {
        max-width: 100%;
    }
    .hero h1 {
        font-size: 2.5rem;
    }
    .hero-cta {
        justify-content: center;
    }
    .hero-stats {
        justify-content: center;
        gap: 20px;
    }
}

/* About Us Section */
.about {
    background: var(--bg-card);
    border-top: 1px solid rgba(212, 175, 55, 0.1);
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

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

.about-img {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.about-img img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.6s;
}

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

.about-badge {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: var(--bg-dark);
    border: 2px solid var(--gold);
    padding: 15px 25px;
    border-radius: 8px;
    text-align: center;
}

body.rtl .about-badge {
    right: auto;
    left: 20px;
}

.about-badge h4 {
    color: var(--gold);
    font-size: 1.8rem;
    line-height: 1;
}

.about-badge p {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.about-content h3 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #ffffff;
}

.about-content p {
    color: var(--text-muted);
    margin-bottom: 25px;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.feature-item i {
    color: var(--gold);
    font-size: 1.4rem;
}

.feature-item h5 {
    font-family: var(--font-body);
    font-size: 1rem;
    margin-bottom: 4px;
}

.feature-item p {
    font-size: 0.85rem;
    margin-bottom: 0;
}

@media (max-width: 991px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

/* Services Sections Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
}

@media (max-width: 480px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
}

.service-item-card {
    background: var(--bg-card);
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(212, 175, 55, 0.1);
    transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.service-item-card:focus-within {
    outline: 2px solid var(--gold);
    outline-offset: 2px;
}

.service-item-card:hover {
    transform: translateY(-5px);
    border-color: var(--gold);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5), 0 0 15px rgba(212, 175, 55, 0.1);
}

.card-img-wrap {
    height: 230px;
    position: relative;
    overflow: hidden;
}

.card-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.3s;
}

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

.card-price-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--bg-dark);
    border: 1px solid var(--gold);
    color: var(--gold);
    padding: 6px 14px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

body.rtl .card-price-badge {
    right: auto;
    left: 15px;
}

.card-content {
    padding: 25px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.card-meta {
    display: flex;
    gap: 15px;
    font-size: 0.85rem;
    color: var(--gold);
    margin-bottom: 12px;
}

.card-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.card-content h3 {
    font-size: 1.4rem;
    margin-bottom: 10px;
}

.card-content p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 20px;
    flex-grow: 1;
}

.card-benefits-title {
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 700;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 8px;
}

.card-benefits {
    list-style: none;
    margin-bottom: 25px;
}

.card-benefits li {
    font-size: 0.82rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 4px;
}

.card-benefits li i {
    color: var(--gold);
    font-size: 0.9rem;
}

.card-action {
    margin-top: auto;
}

/* Reviews Section */
.reviews {
    background: var(--bg-card);
    border-top: 1px solid rgba(212, 175, 55, 0.1);
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

.reviews-carousel-container {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    overflow: hidden;
}

.reviews-track {
    display: flex;
    transition: transform 0.5s ease;
    width: 100%;
}

.review-slide {
    min-width: 100%;
    padding: 10px;
    box-sizing: border-box;
}

.review-card {
    background: var(--bg-dark);
    border-radius: 12px;
    border: 1px solid rgba(212, 175, 55, 0.15);
    padding: 40px;
    text-align: center;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.review-card .quote-icon {
    font-size: 2.5rem;
    color: rgba(212, 175, 55, 0.15);
    margin-bottom: 15px;
    line-height: 1;
}

.review-stars {
    color: #f59e0b;
    font-size: 1.4rem;
    margin-bottom: 15px;
}

.review-text {
    font-size: 1.15rem;
    line-height: 1.7;
    margin-bottom: 25px;
    color: var(--text-light);
    font-style: italic;
}

.review-author {
    font-weight: 700;
    font-size: 1rem;
    color: var(--gold);
    font-family: var(--font-body);
}

.carousel-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(17, 20, 36, 0.8);
    border: 1px solid var(--gold);
    color: var(--gold);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s;
}

.carousel-nav-btn:hover {
    background: var(--gold);
    color: var(--bg-dark);
}

.carousel-prev {
    left: -60px;
}

.carousel-next {
    right: -60px;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 30px;
}

.carousel-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(212, 175, 55, 0.3);
    cursor: pointer;
    transition: background 0.3s;
}

.carousel-dot.active {
    background: var(--gold);
}

@media (max-width: 1024px) {
    .carousel-prev {
        left: 10px;
    }
    .carousel-next {
        right: 10px;
    }
    .review-card {
        padding: 30px 20px;
    }
}

/* CTA Campaign Section */
.cta {
    background: linear-gradient(135deg, rgba(7, 9, 19, 0.9) 0%, rgba(20, 24, 46, 0.95) 100%), 
                url('../assets/images/branch-reception.jpg') no-repeat center center / cover;
    text-align: center;
    border-bottom: 1px solid rgba(212, 175, 55, 0.15);
}

.cta-box {
    max-width: 800px;
    margin: 0 auto;
    border: 1px solid rgba(212, 175, 55, 0.2);
    padding: 60px 40px;
    border-radius: 16px;
    background: rgba(17, 20, 36, 0.85);
    backdrop-filter: blur(10px);
}

.cta h2 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.cta p {
    font-size: 1.15rem;
    color: var(--text-muted);
    margin-bottom: 35px;
}

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

@media (max-width: 767px) {
    .cta-box {
        padding: 40px 20px;
    }
    .cta h2 {
        font-size: 2rem;
    }
}

/* Footer Section */
footer {
    background: #04050a;
    padding: 50px 0 100px 0; /* Add bottom padding for mobile floating bar spacing */
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

@media (min-width: 768px) {
    footer {
        padding: 50px 0;
    }
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h4 {
    font-family: var(--font-body);
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.footer-col p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 12px;
}

.footer-col p i {
    color: var(--gold);
    margin-right: 8px;
    width: 20px;
}

body.rtl .footer-col p i {
    margin-right: 0;
    margin-left: 8px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s;
}

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

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-muted);
    font-size: 0.85rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
}

.footer-logo img {
    height: 32px;
}

.footer-logo span {
    font-family: var(--font-heading);
    font-weight: 700;
    color: #ffffff;
    font-size: 1.1rem;
}

@media (max-width: 767px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
}

/* Desktop Optimizations */
@media (min-width: 992px) {
    .container {
        max-width: 1400px;
        padding: 0 40px;
    }
    
    .hero h1 {
        font-size: 4.5rem;
        font-weight: 800;
    }
    
    .section-title h2 {
        font-size: 3rem;
        font-weight: 800;
    }
    
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 40px;
    }
    
    .service-item-card {
        border-width: 2px;
    }
    
    .service-item-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6), 0 0 20px rgba(212, 175, 55, 0.2);
    }
    
    .card-content h3 {
        font-size: 1.6rem;
        font-weight: 700;
    }
    
    .btn {
        padding: 16px 32px;
        font-size: 1rem;
    }
    
    .btn-large {
        padding: 18px 40px;
        font-size: 1.1rem;
    }
    
    .nav-links a {
        font-size: 1rem;
        font-weight: 700;
    }
    
    .logo span {
        font-size: 1.6rem;
    }
    
    .logo img {
        height: 56px;
    }
}
