:root {
    --black: #0a0a0a;
    --black-light: #111111;
    --black-card: #1a1a1a;
    --gold: #D4AF37;
    --gold-light: #F5E6A3;
    --gold-dark: #B8860B;
    --gold-glow: rgba(212, 175, 55, 0.4);
    --gold-glow-soft: rgba(212, 175, 55, 0.15);
    --white: #ffffff;
    --text-light: #cccccc;
    --text-muted: #888888;
    --font-heading: 'Cairo', sans-serif;
    --font-body: 'Tajawal', sans-serif;
    --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: var(--font-body);
    background: var(--black);
    color: var(--white);
    overflow-x: hidden;
    line-height: 1.8;
}

::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--black);
}
::-webkit-scrollbar-thumb {
    background: var(--gold-dark);
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--gold);
}

::selection {
    background: var(--gold);
    color: var(--black);
}

/* Preloader */
#preloader {
    position: fixed;
    inset: 0;
    z-index: 99999;
    background: var(--black);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    transition: opacity 0.8s, visibility 0.8s;
}
#preloader.hidden {
    opacity: 0;
    visibility: hidden;
}
.preloader-logo {
    width: 100px;
    height: auto;
    margin-bottom: 30px;
    animation: pulseGold 1.5s ease-in-out infinite;
}
.preloader-bar {
    width: 200px;
    height: 3px;
    background: rgba(212, 175, 55, 0.2);
    border-radius: 3px;
    overflow: hidden;
    position: relative;
}
.preloader-bar::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    animation: preloadBar 1.5s ease-in-out infinite;
}
@keyframes preloadBar {
    to { left: 100%; }
}
@keyframes pulseGold {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.05); opacity: 0.8; }
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 50px;
    display: flex;
    align-items: center;
    transition: var(--transition);
    background: transparent;
}
.navbar.scrolled {
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 12px 50px;
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}
.nav-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-right: 20px;
}
[dir="ltr"] .nav-actions { margin-right: 0; margin-left: 20px; }
.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}
.nav-logo img {
    height: 50px;
    width: auto;
    transition: var(--transition);
}
.navbar.scrolled .nav-logo img {
    height: 40px;
}
.nav-logo span {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 800;
    color: var(--gold);
    letter-spacing: 1px;
}
.nav-links {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 12px;
    margin-right: auto;
}
[dir="ltr"] .nav-links { margin-right: 0; margin-left: auto; }
.lang-toggle {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.15), rgba(212, 175, 55, 0.05));
    border: 1px solid rgba(212, 175, 55, 0.25);
    color: var(--gold);
    font-family: var(--font-heading);
    font-size: 12px;
    font-weight: 800;
    padding: 5px 12px;
    border-radius: 6px;
    cursor: pointer;
    transition: var(--transition);
    letter-spacing: 0.5px;
    text-transform: uppercase;
    line-height: 1.4;
}
.lang-toggle:hover {
    background: var(--gold);
    color: var(--black);
    border-color: var(--gold);
}
.nav-links a {
    color: var(--white);
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    position: relative;
    padding: 5px 0;
    transition: var(--transition);
}
.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: var(--transition);
}
.nav-links a:hover {
    color: var(--gold);
}
.nav-links a:hover::after {
    width: 100%;
}
.nav-cta {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--black) !important;
    padding: 10px 25px !important;
    border-radius: 50px;
    font-weight: 700 !important;
    font-size: 14px !important;
    transition: var(--transition) !important;
    box-shadow: 0 4px 20px rgba(212, 175, 55, 0.3);
}
.nav-cta::after {
    display: none !important;
}
.nav-cta:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 8px 30px rgba(212, 175, 55, 0.5) !important;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
}
.nav-toggle span {
    width: 28px;
    height: 2px;
    background: var(--gold);
    transition: var(--transition);
}
.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}
.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}
.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.hero-bg {
    position: absolute;
    inset: -5%;
    background: url('../images/hero.jpg') center center / cover no-repeat;
    animation: heroZoom 20s ease-in-out infinite alternate;
}
@keyframes heroZoom {
    0% { background-size: 120%; }
    100% { background-size: 100%; }
}
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.92) 0%, rgba(0,0,0,0.7) 40%, rgba(0,0,0,0.5) 100%);
    z-index: 1;
}
.hero-overlay::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, transparent 0%, rgba(0,0,0,0.6) 100%);
}
.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    padding: 0 20px;
}
.hero-badge {
    display: inline-block;
    padding: 8px 25px;
    border: 1px solid var(--gold);
    border-radius: 50px;
    font-size: 13px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 30px;
    font-weight: 600;
    animation: fadeInDown 1s ease-out;
}
.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(48px, 8vw, 100px);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 10px;
    animation: fadeInUp 1s ease-out 0.2s both;
}
.hero-title .gold-text {
    background: linear-gradient(135deg, var(--gold-light), var(--gold), var(--gold-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.hero-title .gold-shimmer {
    background: linear-gradient(90deg, var(--gold-dark), var(--gold-light), var(--gold), var(--gold-light), var(--gold-dark));
    background-size: 300% 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmerGold 4s ease-in-out infinite;
}
@keyframes shimmerGold {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}
.hero-subtitle {
    font-family: var(--font-heading);
    font-size: clamp(24px, 3vw, 42px);
    font-weight: 300;
    color: var(--white);
    line-height: 1.4;
    margin-bottom: 25px;
    animation: fadeInUp 1s ease-out 0.4s both;
}
.hero-title .outline-text {
    -webkit-text-fill-color: transparent;
    -webkit-text-stroke: 2px var(--gold);
    background: none;
}
.hero-sub {
    font-size: clamp(18px, 2vw, 24px);
    color: var(--text-light);
    margin-bottom: 40px;
    font-weight: 300;
    animation: fadeInUp 1s ease-out 0.4s both;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
}
.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease-out 0.6s both;
}
.btn {
    padding: 16px 45px;
    border: none;
    border-radius: 50px;
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}
.btn-gold {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--black);
    box-shadow: 0 4px 25px rgba(212, 175, 55, 0.4);
}
.btn-gold:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 40px rgba(212, 175, 55, 0.6);
}
.btn-outline {
    background: transparent;
    color: var(--gold);
    border: 2px solid var(--gold);
}
.btn-outline:hover {
    background: var(--gold);
    color: var(--black);
    transform: translateY(-3px);
}

.hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    animation: bounceDown 2s ease-in-out infinite;
}
.hero-scroll a {
    color: var(--gold);
    font-size: 24px;
    opacity: 0.7;
    transition: var(--transition);
}
.hero-scroll a:hover {
    opacity: 1;
}
@keyframes bounceDown {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(10px); }
}
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(40px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Sections Common */
.section {
    padding: 120px 50px;
    position: relative;
}
.section-header {
    text-align: center;
    margin-bottom: 70px;
}
.section-tag {
    display: inline-block;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 4px;
    color: var(--gold);
    text-transform: uppercase;
    margin-bottom: 15px;
    position: relative;
}
.section-tag::before,
.section-tag::after {
    content: '';
    display: inline-block;
    width: 40px;
    height: 1px;
    background: var(--gold);
    vertical-align: middle;
    margin: 0 10px;
}
.section-title {
    font-family: var(--font-heading);
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 900;
    color: var(--white);
}
.section-title .gold-text {
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.section-sub {
    font-size: 18px;
    color: var(--text-muted);
    max-width: 600px;
    margin: 15px auto 0;
}

.container {
    max-width: 1300px;
    margin: 0 auto;
}

/* Services */
.services {
    background: linear-gradient(180deg, var(--black) 0%, var(--black-light) 100%);
}
/* Category Filters */
.category-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin-bottom: 35px;
}
.filter-btn {
    padding: 10px 22px;
    border-radius: 50px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    background: rgba(212, 175, 55, 0.05);
    color: var(--text-muted);
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
}
.filter-btn:hover {
    border-color: rgba(212, 175, 55, 0.4);
    color: var(--gold);
    background: rgba(212, 175, 55, 0.1);
}
.filter-btn.active {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--black);
    border-color: var(--gold);
    box-shadow: 0 4px 20px rgba(212, 175, 55, 0.3);
}
.category-group {
    display: contents;
}
.category-group.hidden {
    display: none;
}
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}
.category-group:not(.hidden) .service-card,
.category-group:not(.hidden) .category-header {
    animation: fadeInUp 0.45s ease forwards;
}
.category-group:not(.hidden) .service-card:nth-child(2) { animation-delay: 0.05s; }
.category-group:not(.hidden) .service-card:nth-child(3) { animation-delay: 0.1s; }
.category-group:not(.hidden) .service-card:nth-child(4) { animation-delay: 0.15s; }
.category-group:not(.hidden) .service-card:nth-child(5) { animation-delay: 0.2s; }
.category-group:not(.hidden) .service-card:nth-child(6) { animation-delay: 0.25s; }
.category-group:not(.hidden) .service-card:nth-child(7) { animation-delay: 0.3s; }
.category-group:not(.hidden) .service-card:nth-child(8) { animation-delay: 0.35s; }
.category-group:not(.hidden) .service-card:nth-child(9) { animation-delay: 0.4s; }
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}
.service-card {
    background: rgba(26, 26, 26, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(212, 175, 55, 0.1);
    border-radius: 20px;
    padding: 32px 22px 28px;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, transparent, rgba(212, 175, 55, 0.05));
    opacity: 0;
    transition: var(--transition);
}
.service-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(212, 175, 55, 0.08), transparent 60%);
    opacity: 0;
    transition: var(--transition);
}
.service-card:hover {
    border-color: rgba(212, 175, 55, 0.4);
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.5), 0 0 40px rgba(212, 175, 55, 0.1);
}
.service-card:hover::before,
.service-card:hover::after {
    opacity: 1;
}
.service-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.15), rgba(212, 175, 55, 0.05));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    color: var(--gold);
    transition: var(--transition);
    position: relative;
    z-index: 1;
}
.service-card:hover .service-icon {
    transform: scale(1.1);
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.2);
}
.service-card h3 {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
    position: relative;
    z-index: 1;
}
.service-card p {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.7;
    position: relative;
    z-index: 1;
    flex: 1;
}
.service-card .card-number {
    position: absolute;
    top: 12px;
    left: 12px;
    font-family: var(--font-heading);
    font-size: 11px;
    font-weight: 700;
    color: rgba(212, 175, 55, 0.2);
    letter-spacing: 1px;
}
.service-price {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 900;
    color: var(--gold);
    margin-top: auto;
    padding: 6px 20px;
    background: rgba(212, 175, 55, 0.08);
    border-radius: 30px;
    position: relative;
    z-index: 1;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.12), rgba(212, 175, 55, 0.05));
}
.service-card .service-hover-line {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    transition: var(--transition);
}
.service-card:hover .service-hover-line {
    width: 100%;
}

/* Category Headers */
.category-header {
    grid-column: 1 / -1;
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 0 10px;
    margin-top: 20px;
}
.category-header:first-of-type { margin-top: 0; }
.category-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.15), rgba(212, 175, 55, 0.05));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: var(--gold);
    flex-shrink: 0;
}
.category-title {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 800;
    color: var(--gold);
    white-space: nowrap;
}
.category-line {
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, var(--gold), transparent);
    opacity: 0.3;
}

/* Modal Price Badge */
.modal-price-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 12px 28px;
    border-radius: 60px;
    background: linear-gradient(135deg, #D4AF37, #D4AF37cc) !important;
    margin: 0 auto 20px;
    font-family: var(--font-heading);
    box-shadow: 0 8px 32px rgba(0,0,0,0.3);
    position: sticky;
    top: 0;
    z-index: 5;
    width: fit-content;
}
.modal-price-badge i {
    font-size: 22px;
    color: #fff;
}
.modal-price-value {
    font-size: 28px;
    font-weight: 900;
    color: #fff;
    letter-spacing: 1px;
}

/* Modal */
.modal-overlay {
    position: fixed;
    inset: 0;
    z-index: 10000;
    background: rgba(0,0,0,0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.4s;
}
.modal-overlay.active {
    display: flex;
    opacity: 1;
}
.modal {
    background: var(--black-card);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 25px;
    max-width: 700px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    transform: scale(0.9) translateY(30px);
    transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.4s;
    opacity: 0;
}
.modal-overlay.active .modal {
    transform: scale(1) translateY(0);
    opacity: 1;
}
.modal-close {
    position: absolute;
    top: 15px;
    left: 15px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(212, 175, 55, 0.3);
    background: rgba(0,0,0,0.6);
    color: var(--gold);
    font-size: 18px;
    cursor: pointer;
    transition: var(--transition);
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
}
.modal-close:hover {
    background: var(--gold);
    color: var(--black);
}
.modal-body {
    padding: 35px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.modal-body .modal-desc {
    color: var(--text-light);
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 25px;
}
.modal-features {
    background: rgba(212, 175, 55, 0.05);
    border-radius: 15px;
    padding: 25px;
    margin-bottom: 25px;
    border: 1px solid rgba(212, 175, 55, 0.1);
}
.modal-features h4 {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 15px;
}
.modal-features ul {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}
.modal-features ul li {
    font-size: 15px;
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 10px;
}
.modal-features ul li i {
    color: var(--gold);
    font-size: 14px;
}
.modal-body .btn {
    width: 100%;
    justify-content: center;
}

/* About */
.about {
    background: var(--black-light);
    overflow: hidden;
}
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}
.about-image {
    position: relative;
    border-radius: 25px;
    overflow: hidden;
    height: 550px;
}
.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}
.about-image:hover img {
    transform: scale(1.05);
}
.about-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), transparent);
}
.about-image .exp-badge {
    position: absolute;
    bottom: 30px;
    right: 30px;
    background: rgba(10, 10, 10, 0.9);
    backdrop-filter: blur(10px);
    padding: 20px 30px;
    border-radius: 15px;
    border: 1px solid rgba(212, 175, 55, 0.3);
    z-index: 2;
    text-align: center;
}
.about-image .exp-badge .number {
    font-family: var(--font-heading);
    font-size: 36px;
    font-weight: 900;
    color: var(--gold);
    display: block;
    line-height: 1;
}
.about-image .exp-badge .label {
    font-size: 14px;
    color: var(--text-light);
    margin-top: 5px;
}
.about-content h2 {
    font-family: var(--font-heading);
    font-size: 44px;
    font-weight: 900;
    margin-bottom: 20px;
}
.about-content p {
    color: var(--text-muted);
    font-size: 17px;
    line-height: 1.9;
    margin-bottom: 30px;
}
.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 40px;
}
.about-stat {
    text-align: center;
    padding: 20px;
    background: rgba(212, 175, 55, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(212, 175, 55, 0.1);
}
.about-stat .num {
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 900;
    color: var(--gold);
}
.about-stat .lbl {
    font-size: 14px;
    color: var(--text-muted);
}

/* Gallery */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}
.gallery-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 1;
}
.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}
.gallery-item:hover img {
    transform: scale(1.1);
}
.gallery-item .overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    opacity: 0;
    transition: var(--transition);
    display: flex;
    align-items: flex-end;
    padding: 20px;
}
.gallery-item:hover .overlay {
    opacity: 1;
}
.gallery-item .overlay i {
    color: var(--gold);
    font-size: 20px;
}
.gallery-item:nth-child(1) { grid-column: span 2; grid-row: span 2; }/* Testimonials */
.testimonials {
    background: var(--black);
}
.testimonials-slider {
    max-width: 800px;
    margin: 0 auto;
}
.testimonial-card {
    background: rgba(26, 26, 26, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(212, 175, 55, 0.1);
    border-radius: 25px;
    padding: 45px 40px;
    text-align: center;
}
.testimonial-card .stars {
    color: var(--gold);
    font-size: 18px;
    margin-bottom: 20px;
}
.testimonial-card .quote {
    font-size: 18px;
    color: var(--text-light);
    line-height: 1.9;
    margin-bottom: 25px;
    position: relative;
}
.testimonial-card .quote i {
    color: var(--gold);
    font-size: 30px;
    opacity: 0.3;
    display: block;
    margin-bottom: 15px;
}
.testimonial-card .author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}
.testimonial-card .author img {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--gold);
}
.testimonial-card .author .name {
    font-weight: 700;
    font-size: 17px;
}
.testimonial-card .author .role {
    font-size: 13px;
    color: var(--text-muted);
}

.swiper-pagination-bullet {
    background: rgba(212, 175, 55, 0.3) !important;
    width: 12px !important;
    height: 12px !important;
}
.swiper-pagination-bullet-active {
    background: var(--gold) !important;
}

/* Social */
.social {
    background: linear-gradient(135deg, var(--black-light), var(--black));
}
.social-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 18px;
}
.social-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(26, 26, 26, 0.8);
    border: 1px solid rgba(212, 175, 55, 0.15);
    text-decoration: none;
    transition: var(--transition);
    font-size: 24px;
}
.social-icon i {
    background: linear-gradient(135deg, var(--gold-light), var(--gold), var(--gold-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: var(--transition);
}
.social-icon:hover {
    border-color: var(--gold);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.2);
}
.social-icon:hover i {
    transform: scale(1.15);
}

/* Hours */
.hours {
    background: var(--black);
}
.hours-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    align-items: start;
}
.branch-card {
    background: rgba(26, 26, 26, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(212, 175, 55, 0.1);
    border-radius: 25px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.branch-name {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 800;
    color: var(--gold);
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}
.branch-name i { font-size: 18px; }
.hours-info {
    padding: 0;
    border: none;
    border-radius: 0;
    background: none;
    backdrop-filter: none;
}
.hours-info h3 {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 30px;
    text-align: center;
}
.hours-row {
    display: flex;
    justify-content: space-between;
    padding: 15px 0;
    border-bottom: 1px solid rgba(212, 175, 55, 0.08);
}
.hours-row:last-child {
    border-bottom: none;
}
.hours-row .day {
    font-weight: 600;
    color: var(--text-light);
}
.hours-row .time {
    font-weight: 700;
    color: var(--gold);
}
.hours-row .time .closed {
    color: #ff4444;
}
.hours-addr {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid rgba(212, 175, 55, 0.08);
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.7;
}
.hours-addr i {
    color: var(--gold);
    font-size: 16px;
    margin-top: 3px;
    flex-shrink: 0;
}
.hours-note {
    text-align: center;
    margin-top: 20px;
    color: var(--text-muted);
    font-size: 14px;
}
.hours-map {
    border-radius: 15px;
    overflow: hidden;
    height: 250px;
    border: 1px solid rgba(212, 175, 55, 0.1);
}
.hours-map iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Footer */
.footer {
    background: var(--black-light);
    border-top: 1px solid rgba(212, 175, 55, 0.1);
    padding: 80px 50px 30px;
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
    max-width: 1300px;
    margin: 0 auto;
    margin-bottom: 50px;
}
.footer-brand img {
    height: 60px;
    margin-bottom: 20px;
}
.footer-brand h3 {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 800;
    color: var(--gold);
    margin-bottom: 15px;
}
.footer-brand p {
    color: var(--text-muted);
    font-size: 15px;
    line-height: 1.8;
    max-width: 350px;
}
.footer h4 {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 25px;
}
.footer ul {
    list-style: none;
}
.footer ul li {
    margin-bottom: 12px;
}
.footer ul li a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 15px;
    transition: var(--transition);
}
.footer ul li a:hover {
    color: var(--gold);
    padding-right: 5px;
}
.footer-contact li {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-muted);
    font-size: 15px;
}
.footer-contact li i {
    color: var(--gold);
    width: 20px;
}
.footer-bottom {
    max-width: 1300px;
    margin: 0 auto;
    padding-top: 30px;
    border-top: 1px solid rgba(212, 175, 55, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}
.footer-bottom p {
    color: var(--text-muted);
    font-size: 14px;
}
.footer-bottom .social-links {
    display: flex;
    gap: 15px;
}
.footer-bottom .social-links a {
    color: var(--text-muted);
    font-size: 18px;
    transition: var(--transition);
}
.footer-bottom .social-links a:hover {
    color: var(--gold);
    transform: translateY(-3px);
}

/* Floating WhatsApp */
.floating-wa {
    position: fixed;
    bottom: 30px;
    left: 30px;
    z-index: 999;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #25D366;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    color: white;
    text-decoration: none;
    box-shadow: 0 4px 25px rgba(37, 211, 102, 0.4);
    transition: var(--transition);
    animation: waPulse 2s ease-in-out infinite;
}
.floating-wa:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 40px rgba(37, 211, 102, 0.6);
}
.floating-wa .wa-tooltip {
    position: absolute;
    left: 70px;
    background: var(--black-card);
    color: var(--white);
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    border: 1px solid rgba(212, 175, 55, 0.2);
    font-family: var(--font-body);
}
.floating-wa:hover .wa-tooltip {
    opacity: 1;
    visibility: visible;
}
@keyframes waPulse {
    0%, 100% { box-shadow: 0 4px 25px rgba(37, 211, 102, 0.4); }
    50% { box-shadow: 0 4px 40px rgba(37, 211, 102, 0.7); }
}

/* Gallery Lightbox */
.gallery-lightbox {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
}
.gallery-lightbox-img {
    max-width: 100%;
    max-height: 85vh;
    border-radius: 15px;
    object-fit: contain;
    border: 1px solid rgba(212, 175, 55, 0.2);
    box-shadow: 0 20px 60px rgba(0,0,0,0.8);
}
.gallery-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 1px solid rgba(212, 175, 55, 0.3);
    background: rgba(10, 10, 10, 0.8);
    color: var(--gold);
    font-size: 20px;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}
.gallery-nav:hover {
    background: var(--gold);
    color: var(--black);
}
.gallery-prev { right: -60px; }
.gallery-next { left: -60px; }
.gallery-counter {
    position: absolute;
    bottom: -35px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--gold);
    font-size: 14px;
    font-weight: 600;
    font-family: var(--font-body);
}
@media (max-width: 768px) {
    .gallery-nav { width: 40px; height: 40px; font-size: 16px; }
    .gallery-prev { right: -50px; }
    .gallery-next { left: -50px; }
}

/* Back to top */
.back-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--gold);
    color: var(--black);
    border: none;
    font-size: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    box-shadow: 0 4px 20px rgba(212, 175, 55, 0.3);
}
.back-top.visible {
    opacity: 1;
    visibility: visible;
}
.back-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(212, 175, 55, 0.5);
}

/* Responsive */
@media (max-width: 1024px) {
    .about-grid { gap: 40px; }
    .about-image { height: 400px; }
    .gallery-grid { grid-template-columns: repeat(3, 1fr); }
    .gallery-item:nth-child(1) { grid-column: span 2; grid-row: span 1; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    .navbar { padding: 15px 20px; }
    .navbar.scrolled { padding: 12px 20px; }
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: rgba(10, 10, 10, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        padding: 50px;
        transition: var(--transition);
        border-left: 1px solid rgba(212, 175, 55, 0.1);
    }
    .nav-links.active { right: 0; }
    .nav-toggle { display: flex; }
    .section { padding: 80px 20px; }

    .about-grid { grid-template-columns: 1fr; }
    .about-image { height: 350px; }
    .about-content h2 { font-size: 32px; }
    .about-stats { grid-template-columns: repeat(3, 1fr); gap: 10px; }
    .about-stat { padding: 15px; }
    .about-stat .num { font-size: 26px; }

    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
    .gallery-item:nth-child(1) { grid-column: span 2; grid-row: span 1; }

    .hours-grid { grid-template-columns: 1fr; gap: 24px; }
    .hours-map { height: 220px; }

    .footer-grid { grid-template-columns: 1fr; gap: 30px; }
    .footer { padding: 50px 20px 30px; }
    .footer-bottom { flex-direction: column; text-align: center; }

    .services-grid { grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); }
    .category-filters { gap: 8px; margin-bottom: 25px; }
    .filter-btn { font-size: 13px; padding: 8px 16px; }
    .modal-body { padding: 25px; }
    .modal-features ul { grid-template-columns: 1fr; }

    .floating-wa { width: 50px; height: 50px; font-size: 24px; bottom: 20px; left: 20px; }
    .back-top { width: 45px; height: 45px; font-size: 18px; bottom: 20px; right: 20px; }
    .social-icon { width: 50px; height: 50px; font-size: 20px; }
}

@media (max-width: 480px) {
    .services-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    .service-card { padding: 24px 16px; }
    .service-card h3 { font-size: 16px; }
    .service-card p { font-size: 13px; }
    .service-icon { width: 50px; height: 50px; font-size: 22px; margin-bottom: 12px; }
    .category-filters { gap: 6px; margin-bottom: 20px; }
    .filter-btn { font-size: 12px; padding: 6px 12px; }
    .gallery-grid { grid-template-columns: 1fr; }
    .gallery-item:nth-child(1) { grid-column: span 1; }
    .hero-title { font-size: 38px; }
    .btn { padding: 14px 30px; font-size: 14px; }
    .branch-card { padding: 20px; }
    .social-icon { width: 44px; height: 44px; font-size: 17px; }
    .social-grid { gap: 12px; }
}

/* LTR Overrides */
[dir="ltr"] body { direction: ltr; }
[dir="ltr"] .nav-links { right: auto; left: -100%; }
[dir="ltr"] .nav-links.active { right: auto; left: 0; }
[dir="ltr"] .nav-links { border-left: none; border-right: 1px solid rgba(212, 175, 55, 0.1); }
[dir="ltr"] .card-number { left: auto; right: 12px; }
[dir="ltr"] .modal-close { left: auto; right: 15px; }
[dir="ltr"] .gallery-prev { right: auto; left: -60px; }
[dir="ltr"] .gallery-next { left: auto; right: -60px; }
[dir="ltr"] .floating-wa { left: auto; right: 30px; }
[dir="ltr"] .back-top { right: auto; left: 30px; }
[dir="ltr"] .category-line { background: linear-gradient(270deg, var(--gold), transparent); }

@media (max-width: 768px) {
    [dir="ltr"] .gallery-prev { right: auto; left: -50px; }
    [dir="ltr"] .gallery-next { left: auto; right: -50px; }
    [dir="ltr"] .floating-wa { left: auto; right: 20px; }
    [dir="ltr"] .back-top { right: auto; left: 20px; }
}
