/* ===== ROOT VARIABLES ===== */
:root {
    --gold: #D4AF37;
    --gold-light: #F4E4A0;
    --gold-dark: #B8960C;
    --gold-gradient: linear-gradient(135deg, #D4AF37, #F4E4A0, #D4AF37);
    --black: #0A0A0A;
    --black-light: #1A1A1A;
    --black-medium: #2A2A2A;
    --black-soft: #333333;
    --white: #FFFFFF;
    --gray: #AAAAAA; /* بهبود کنتراست از #888 به #AAA */
    --gray-light: #CCCCCC;
    --shadow-gold: 0 0 30px rgba(212, 175, 55, 0.3);
    --shadow-dark: 0 20px 60px rgba(0, 0, 0, 0.5);
    --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ===== RESET & BASE ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    direction: rtl;
    scroll-behavior: smooth;
    scrollbar-width: thin;
    scrollbar-color: var(--gold) var(--black);
}

::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--black);
}

::-webkit-scrollbar-thumb {
    background: var(--gold);
    border-radius: 10px;
}

body {
    font-family: 'Poppins', sans-serif;
    background: var(--black);
    color: var(--white);
    overflow-x: hidden;
}

/* ===== ACCESSIBILITY ===== */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
    outline: 2px solid var(--gold);
    outline-offset: 4px;
}

/* ===== LOADING SCREEN ===== */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--black);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    transition: opacity 0.8s ease, visibility 0.8s ease;
}

.loading-screen.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.loader {
    text-align: center;
}

.loader-logo {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: pulse 1.5s ease-in-out infinite;
}

.loader-bar {
    width: 200px;
    height: 2px;
    background: var(--black-medium);
    margin: 30px auto;
    border-radius: 10px;
    overflow: hidden;
}

.loader-bar::after {
    content: '';
    display: block;
    width: 0%;
    height: 100%;
    background: var(--gold-gradient);
    animation: loading 2s ease-in-out forwards;
}

@keyframes loading {
    to {
        width: 100%;
    }
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

/* ===== CURSOR ===== */
.custom-cursor {
    width: 20px;
    height: 20px;
    border: 2px solid var(--gold);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 99998;
    transition: transform 0.2s ease, background 0.2s ease;
    mix-blend-mode: difference;
    will-change: transform;
}

.custom-cursor.hover {
    transform: scale(2);
    background: rgba(212, 175, 55, 0.2);
}

.cursor-dot {
    width: 5px;
    height: 5px;
    background: var(--gold);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 99998;
    will-change: transform;
}

/* ===== PARTICLES ===== */
#particles-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.particle {
    position: absolute;
    background: var(--gold);
    border-radius: 50%;
    opacity: 0;
    animation: float-particle linear infinite;
    will-change: transform, opacity;
}

@keyframes float-particle {
    0% {
        opacity: 0;
        transform: translateY(100vh) rotate(0deg);
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        transform: translateY(-10vh) rotate(720deg);
    }
}

/* ===== NAVIGATION ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 1000;
    transition: var(--transition);
}

.navbar.scrolled {
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 15px 60px;
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

.nav-logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 700;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-decoration: none;
    letter-spacing: 2px;
}

.nav-logo span {
    font-weight: 400;
    font-size: 0.9rem;
    display: block;
    text-align: center;
    letter-spacing: 5px;
    text-transform: uppercase;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 40px;
}

.nav-links a {
    color: var(--white);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 400;
    letter-spacing: 1px;
    position: relative;
    transition: var(--transition);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    right: 0;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: var(--transition);
}

.nav-links a:hover {
    color: var(--gold);
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-cta {
    padding: 12px 30px;
    background: transparent;
    border: 1px solid var(--gold);
    color: var(--gold) !important;
    font-size: 0.85rem !important;
    letter-spacing: 2px !important;
    text-transform: uppercase;
    cursor: pointer;
    transition: var(--transition);
}

.nav-cta:hover {
    background: var(--gold) !important;
    color: var(--black) !important;
}

.nav-cta::after {
    display: none !important;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    z-index: 1001;
    background: none;
    border: none;
    padding: 5px;
}

.hamburger span {
    width: 30px;
    height: 2px;
    background: var(--gold);
    transition: var(--transition);
    display: block;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 6px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -6px);
}

/* ===== MOBILE MENU ===== */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100%;
    background: rgba(10, 10, 10, 0.98);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 30px;
    z-index: 999;
    transition: right 0.5s cubic-bezier(0.77, 0, 0.175, 1);
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu a {
    color: var(--white);
    text-decoration: none;
    font-size: 1.5rem;
    font-family: 'Playfair Display', serif;
    letter-spacing: 3px;
    transition: var(--transition);
}

.mobile-menu a:hover {
    color: var(--gold);
}

/* ===== HERO SECTION ===== */
.hero {
    height: 100vh;
    min-height: 600px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(ellipse at 20% 50%, rgba(212, 175, 55, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 50%, rgba(212, 175, 55, 0.05) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 0%, rgba(212, 175, 55, 0.03) 0%, transparent 70%);
}

.hero-grid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(rgba(212, 175, 55, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(212, 175, 55, 0.03) 1px, transparent 1px);
    background-size: 80px 80px;
}

.hero-content {
    text-align: center;
    z-index: 2;
    padding: 0 20px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 25px;
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 50px;
    font-size: 0.75rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 30px;
    animation: fadeInDown 1s ease 0.5s both;
}

.hero-badge i {
    font-size: 0.6rem;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(3rem, 8vw, 7rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 25px;
    animation: fadeInUp 1s ease 0.8s both;
}

.hero-title .gold {
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-title .outline {
    -webkit-text-stroke: 1px var(--gold);
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: var(--gray);
    max-width: 600px;
    margin: 0 auto 50px;
    line-height: 1.8;
    font-weight: 300;
    animation: fadeInUp 1s ease 1.1s both;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease 1.4s both;
}

.btn-primary {
    padding: 18px 45px;
    background: var(--gold);
    color: var(--black);
    border: none;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    text-decoration: none;
    font-family: 'Poppins', sans-serif;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: 0.5s;
}

.btn-primary:hover::before {
    right: 100%;
}

.btn-primary:hover {
    box-shadow: var(--shadow-gold);
    transform: translateY(-2px);
}

.btn-secondary {
    padding: 18px 45px;
    background: transparent;
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 0.85rem;
    font-weight: 400;
    letter-spacing: 3px;
    text-transform: uppercase;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    font-family: 'Poppins', sans-serif;
}

.btn-secondary:hover {
    border-color: var(--gold);
    color: var(--gold);
}

.hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: var(--gold);
    font-size: 0.7rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    animation: fadeInUp 1s ease 1.7s both;
}

.scroll-line {
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, var(--gold), transparent);
    animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
    0%, 100% {
        opacity: 0;
        transform: scaleY(0);
        transform-origin: top;
    }
    50% {
        opacity: 1;
        transform: scaleY(1);
    }
}

.hero-stats {
    position: absolute;
    bottom: 60px;
    left: 60px;
    display: flex;
    gap: 40px;
    animation: fadeInRight 1s ease 2s both;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: var(--gold);
    font-weight: 700;
}

.stat-label {
    font-size: 0.7rem;
    color: var(--gray);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-top: 5px;
}

/* ===== MARQUEE ===== */
.marquee-section {
    padding: 30px 0;
    border-top: 1px solid rgba(212, 175, 55, 0.1);
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
    overflow: hidden;
    background: var(--black-light);
}

.marquee {
    display: flex;
    animation: marquee 30s linear infinite;
    white-space: nowrap;
}

.marquee-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 0 40px;
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: rgba(212, 175, 55, 0.3);
    flex-shrink: 0;
}

.marquee-item i {
    font-size: 0.5rem;
    color: var(--gold);
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* ===== SECTIONS COMMON ===== */
.section {
    padding: 120px 60px;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-tag {
    display: inline-block;
    font-size: 0.75rem;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 20px;
    position: relative;
}

.section-tag::before,
.section-tag::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 40px;
    height: 1px;
    background: var(--gold);
}

.section-tag::before {
    right: calc(100% + 15px);
}

.section-tag::after {
    left: calc(100% + 15px);
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 700;
    margin-bottom: 20px;
}

.section-title .gold {
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-desc {
    color: var(--gray);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.8;
    font-weight: 300;
}

/* ===== ABOUT SECTION ===== */
.about {
    background: var(--black-light);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-images {
    position: relative;
    height: 600px;
}

.about-img-main {
    width: 70%;
    height: 80%;
    position: absolute;
    top: 0;
    right: 0;
    overflow: hidden;
    border: 1px solid rgba(212, 175, 55, 0.15);
    border-radius: 12px;
    background: #111;
}

.about-main-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.about-img-main:hover .about-main-photo {
    transform: scale(1.05);
}

.about-img-secondary {
    width: 55%;
    height: 50%;
    background: linear-gradient(135deg, var(--gold-dark), var(--gold));
    position: absolute;
    bottom: 0;
    left: 0;
    opacity: 0.9;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    border-radius: 12px;
}

.about-img-secondary .experience-box {
    text-align: center;
    color: var(--black);
}

.experience-box .number {
    font-family: 'Playfair Display', serif;
    font-size: 5rem;
    font-weight: 900;
    line-height: 1;
}

.experience-box .text {
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.about-content {
    padding-right: 20px;
}

.about-content .section-tag {
    text-align: right;
}

.about-content .section-tag::before {
    display: none;
}

.about-content .section-title {
    text-align: right;
}

.about-text {
    color: var(--gray);
    line-height: 2;
    margin-bottom: 30px;
    text-align: right;
    font-weight: 300;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    margin-bottom: 40px;
}

.about-feature {
    display: flex;
    align-items: center;
    gap: 12px;
}

.about-feature i {
    color: var(--gold);
    font-size: 1.2rem;
}

.about-feature span {
    font-size: 0.9rem;
    font-weight: 300;
}

/* ===== SERVICES SECTION ===== */
.services {
    background: var(--black);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-card {
    background: var(--black-light);
    border: 1px solid rgba(212, 175, 55, 0.05);
    padding: 50px 35px;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
    will-change: transform;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--gold-gradient);
    transform: scaleX(0);
    transition: var(--transition);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    border-color: rgba(212, 175, 55, 0.2);
    transform: translateY(-10px);
    box-shadow: var(--shadow-dark);
}

.service-number {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    font-weight: 900;
    color: rgba(212, 175, 55, 0.05);
    position: absolute;
    top: 15px;
    right: 25px;
    transition: var(--transition);
}

.service-card:hover .service-number {
    color: rgba(212, 175, 55, 0.1);
}

.service-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(212, 175, 55, 0.2);
    margin-bottom: 25px;
    transition: var(--transition);
}

.service-icon i {
    font-size: 1.5rem;
    color: var(--gold);
}

.service-card:hover .service-icon {
    background: var(--gold);
    border-color: var(--gold);
}

.service-card:hover .service-icon i {
    color: var(--black);
}

.service-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    margin-bottom: 15px;
    text-align: right;
}

.service-desc {
    color: var(--gray);
    font-size: 0.9rem;
    line-height: 1.8;
    margin-bottom: 25px;
    text-align: right;
    font-weight: 300;
}

.service-price {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.price {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: var(--gold);
}

.price small {
    font-size: 0.7rem;
    color: var(--gray);
    font-family: 'Poppins', sans-serif;
}

.service-link {
    color: var(--gold);
    text-decoration: none;
    font-size: 0.8rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}

.service-link:hover {
    gap: 15px;
}

/* ===== GALLERY SECTION ===== */
.gallery {
    background: var(--black-light);
    overflow: hidden;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 300px);
    gap: 15px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    background: var(--black-medium);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    will-change: transform;
}

.gallery-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.gallery-item:hover .gallery-photo {
    transform: scale(1.08);
}

.gallery-item::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10, 10, 10, 0.88), rgba(10, 10, 10, 0.15));
    opacity: 0.7;
    transition: var(--transition);
    z-index: 1;
}

.gallery-item:hover::before {
    opacity: 1;
}

.gallery-item:nth-child(1) {
    grid-column: span 2;
    background: linear-gradient(135deg, #1a1510, #2a2015);
}

.gallery-item:nth-child(4) {
    grid-row: span 2;
    background: linear-gradient(135deg, #15130e, #25200a);
}

.gallery-overlay {
    position: absolute;
    bottom: 20px;
    right: 20px;
    z-index: 2;
    text-align: right;
    opacity: 0;
    transform: translateY(20px);
    transition: var(--transition);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
    transform: translateY(0);
}

.gallery-overlay h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    margin-bottom: 5px;
    color: var(--white);
}

.gallery-overlay p {
    color: var(--gold);
    font-size: 0.75rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* ===== PRICING SECTION ===== */
.pricing {
    background: var(--black);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.pricing-card {
    background: var(--black-light);
    border: 1px solid rgba(212, 175, 55, 0.05);
    padding: 50px 40px;
    text-align: center;
    transition: var(--transition);
    position: relative;
    will-change: transform;
}

.pricing-card.featured {
    border-color: var(--gold);
    transform: scale(1.05);
}

.pricing-card.featured::before {
    content: 'محبوب‌ترین';
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gold);
    color: var(--black);
    padding: 5px 20px;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    white-space: nowrap;
}

.pricing-card:hover {
    border-color: rgba(212, 175, 55, 0.3);
    transform: translateY(-10px);
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.pricing-icon {
    font-size: 2rem;
    color: var(--gold);
    margin-bottom: 20px;
}

.pricing-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.pricing-price {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--gold);
    margin: 20px 0;
}

.pricing-price span {
    font-size: 1rem;
    color: var(--gray);
    font-family: 'Poppins', sans-serif;
    font-weight: 300;
}

.pricing-features {
    list-style: none;
    margin: 30px 0;
}

.pricing-features li {
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--gray-light);
    font-size: 0.9rem;
    font-weight: 300;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.pricing-features li i {
    color: var(--gold);
    font-size: 0.7rem;
}

.pricing-features li.disabled {
    color: var(--gray);
    opacity: 0.4;
}

.pricing-features li.disabled i {
    color: var(--gray);
}

/* ===== TEAM SECTION ===== */
.team {
    background: var(--black-light);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.team-card {
    text-align: center;
    transition: var(--transition);
    will-change: transform;
}

.team-card:hover {
    transform: translateY(-10px);
}

.team-avatar {
    width: 200px;
    height: 200px;
    margin: 0 auto 25px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid rgba(212, 175, 55, 0.3);
    transition: var(--transition);
    background: var(--black-medium);
}

.team-card:hover .team-avatar {
    border-color: var(--gold);
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.3);
    transform: scale(1.05);
}

.team-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: grayscale(30%);
    transition: filter 0.4s ease;
}

.team-card:hover .team-photo {
    filter: grayscale(0%);
}

.team-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    margin-bottom: 5px;
}

.team-role {
    color: var(--gold);
    font-size: 0.8rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.team-social {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.team-social a {
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--gray);
    text-decoration: none;
    transition: var(--transition);
    font-size: 0.85rem;
}

.team-social a:hover {
    border-color: var(--gold);
    color: var(--gold);
    background: rgba(212, 175, 55, 0.1);
}

/* ===== TESTIMONIALS ===== */
.testimonials {
    background: var(--black);
    overflow: hidden;
}

.testimonial-slider {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.testimonial-card {
    display: none;
    text-align: center;
    padding: 40px;
    animation: fadeIn 0.5s ease;
}

.testimonial-card.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.testimonial-quote {
    font-size: 3rem;
    color: var(--gold);
    margin-bottom: 20px;
    font-family: 'Playfair Display', serif;
}

.testimonial-text {
    font-size: 1.2rem;
    line-height: 2;
    color: var(--gray-light);
    font-weight: 300;
    font-style: italic;
    margin-bottom: 30px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.testimonial-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold-dark), var(--gold));
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    color: var(--black);
    font-weight: 700;
    flex-shrink: 0;
}

.testimonial-info h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
}

.testimonial-info p {
    color: var(--gold);
    font-size: 0.8rem;
    letter-spacing: 1px;
}

.testimonial-stars {
    color: var(--gold);
    margin-bottom: 20px;
    font-size: 0.9rem;
    letter-spacing: 5px;
}

.testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 40px;
}

.testimonial-dot {
    width: 12px;
    height: 12px;
    border: 1px solid var(--gold);
    background: transparent;
    cursor: pointer;
    transition: var(--transition);
    padding: 0;
}

.testimonial-dot.active {
    background: var(--gold);
}

/* ===== BOOKING SECTION ===== */
.booking {
    background: var(--black-light);
    position: relative;
}

.booking::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(ellipse at 0% 50%, rgba(212, 175, 55, 0.05) 0%, transparent 50%),
        radial-gradient(ellipse at 100% 50%, rgba(212, 175, 55, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.booking-container {
    position: relative;
    z-index: 2;
}

.booking-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.booking-info {
    padding: 20px;
}

.booking-info .section-tag {
    text-align: right;
}

.booking-info .section-tag::before {
    display: none;
}

.booking-info .section-title {
    text-align: right;
    margin-bottom: 20px;
}

.booking-info p {
    color: var(--gray);
    line-height: 2;
    text-align: right;
    margin-bottom: 40px;
    font-weight: 300;
}

.booking-details {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.booking-detail {
    display: flex;
    align-items: center;
    gap: 20px;
}

.booking-detail-icon {
    width: 50px;
    height: 50px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.booking-detail-icon i {
    color: var(--gold);
}

.booking-detail-text h4 {
    font-size: 0.95rem;
    margin-bottom: 3px;
}

.booking-detail-text p {
    color: var(--gray) !important;
    font-size: 0.85rem;
    margin: 0 !important;
    text-align: right;
}

.booking-form-container {
    background: var(--black);
    border: 1px solid rgba(212, 175, 55, 0.1);
    padding: 50px;
}

.booking-form-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    text-align: center;
    margin-bottom: 30px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 0;
}

.form-group.full {
    grid-column: span 2;
}

.form-group label {
    display: block;
    font-size: 0.8rem;
    color: var(--gray);
    margin-bottom: 8px;
    letter-spacing: 1px;
    text-align: right;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px;
    background: var(--black-light);
    border: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--white);
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    transition: var(--transition);
    direction: rtl;
    outline: none;
    border-radius: 0;
    -webkit-appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--gold);
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--gray);
    opacity: 0.6;
}

.form-group textarea {
    height: 120px;
    resize: none;
}

.form-group select option {
    background: var(--black);
}

.form-submit {
    width: 100%;
    margin-top: 20px;
}

/* ===== INSTAGRAM FEED ===== */
.instagram {
    background: var(--black);
    padding: 80px 0;
}

.instagram .section-header {
    margin-bottom: 50px;
}

.insta-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 5px;
}

.insta-item {
    aspect-ratio: 1;
    background: var(--black-light);
    position: relative;
    overflow: hidden;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.insta-item::before {
    content: '\f16d';
    font-family: 'Font Awesome 6 Brands';
    position: absolute;
    font-size: 1.5rem;
    color: var(--white);
    opacity: 0;
    z-index: 2;
    transition: var(--transition);
}

.insta-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(212, 175, 55, 0.3);
    opacity: 0;
    transition: var(--transition);
}

.insta-item:hover::before,
.insta-item:hover::after {
    opacity: 1;
}

.insta-item .insta-placeholder {
    font-size: 2rem;
    opacity: 0.1;
}

/* ===== BLOG SECTION ===== */
.blog {
    background: var(--black-light);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.blog-card {
    background: var(--black);
    border: 1px solid rgba(212, 175, 55, 0.05);
    overflow: hidden;
    transition: var(--transition);
    will-change: transform;
}

.blog-card:hover {
    border-color: rgba(212, 175, 55, 0.2);
    transform: translateY(-10px);
}

.blog-image {
    height: 250px;
    background: linear-gradient(135deg, var(--black-medium), var(--black-soft));
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.blog-image i {
    font-size: 3rem;
    opacity: 0.1;
}

.blog-date {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--gold);
    color: var(--black);
    padding: 10px 15px;
    text-align: center;
    line-height: 1.2;
}

.blog-date .day {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    display: block;
}

.blog-date .month {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.blog-content {
    padding: 30px;
}

.blog-category {
    color: var(--gold);
    font-size: 0.7rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.blog-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    margin-bottom: 15px;
    text-align: right;
    line-height: 1.6;
}

.blog-excerpt {
    color: var(--gray);
    font-size: 0.85rem;
    line-height: 1.8;
    text-align: right;
    font-weight: 300;
    margin-bottom: 20px;
}

.blog-link {
    color: var(--gold);
    text-decoration: none;
    font-size: 0.8rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}

.blog-link:hover {
    gap: 15px;
}

/* ===== FAQ SECTION ===== */
.faq {
    background: var(--black);
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border: 1px solid rgba(212, 175, 55, 0.05);
    margin-bottom: 10px;
    transition: var(--transition);
}

.faq-item.active {
    border-color: rgba(212, 175, 55, 0.2);
}

.faq-question {
    padding: 25px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: var(--transition);
}

.faq-question:hover {
    background: rgba(212, 175, 55, 0.03);
}

.faq-question h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    font-weight: 500;
}

.faq-question i {
    color: var(--gold);
    transition: var(--transition);
    flex-shrink: 0;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.faq-answer p {
    padding: 0 30px 25px;
    color: var(--gray);
    line-height: 2;
    font-weight: 300;
    text-align: right;
}

/* ===== CONTACT MAP SECTION ===== */
.map-section {
    height: 400px;
    background: var(--black-medium);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.map-overlay {
    text-align: center;
}

.map-overlay i {
    font-size: 3rem;
    color: var(--gold);
    margin-bottom: 20px;
    display: block;
}

.map-overlay p {
    color: var(--gray);
    font-size: 1.1rem;
}

/* ===== FOOTER ===== */
.footer {
    background: var(--black-light);
    border-top: 1px solid rgba(212, 175, 55, 0.1);
}

.footer-main {
    padding: 80px 60px;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
}

.footer-brand .nav-logo {
    display: inline-block;
    margin-bottom: 20px;
}

.footer-brand p {
    color: var(--gray);
    line-height: 2;
    font-weight: 300;
    font-size: 0.9rem;
    text-align: right;
    margin-bottom: 25px;
}

.footer-social {
    display: flex;
    gap: 15px;
}

.footer-social a {
    width: 45px;
    height: 45px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    text-decoration: none;
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--gold);
    color: var(--black);
}

.footer-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    margin-bottom: 25px;
    color: var(--gold);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: var(--gray);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 300;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-links a:hover {
    color: var(--gold);
    padding-right: 5px;
}

.footer-contact {
    list-style: none;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 15px;
    color: var(--gray);
    font-size: 0.9rem;
    font-weight: 300;
}

.footer-contact li i {
    color: var(--gold);
    margin-top: 4px;
    flex-shrink: 0;
}

.footer-newsletter {
    margin-top: 20px;
}

.newsletter-form {
    display: flex;
    gap: 0;
}

.newsletter-form input {
    flex: 1;
    padding: 12px 15px;
    background: var(--black);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--white);
    font-family: 'Poppins', sans-serif;
    font-size: 0.85rem;
    outline: none;
    direction: rtl;
    min-width: 0;
}

.newsletter-form input:focus {
    border-color: var(--gold);
}

.newsletter-form button {
    padding: 12px 20px;
    background: var(--gold);
    border: none;
    color: var(--black);
    cursor: pointer;
    transition: var(--transition);
    font-family: 'Poppins', sans-serif;
    flex-shrink: 0;
}

.newsletter-form button:hover {
    background: var(--gold-light);
}

.footer-bottom {
    padding: 25px 60px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    color: var(--gray);
    font-size: 0.8rem;
    font-weight: 300;
}

.footer-bottom-links {
    display: flex;
    gap: 25px;
}

.footer-bottom-links a {
    color: var(--gray);
    text-decoration: none;
    font-size: 0.8rem;
    transition: var(--transition);
}

.footer-bottom-links a:hover {
    color: var(--gold);
}

/* ===== BACK TO TOP ===== */
.back-to-top {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 50px;
    height: 50px;
    background: var(--gold);
    color: var(--black);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 999;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-gold);
}

/* ===== WHATSAPP FLOAT ===== */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
}

.whatsapp-btn {
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.8rem;
    text-decoration: none;
    box-shadow: 0 5px 20px rgba(37, 211, 102, 0.3);
    animation: whatsappPulse 2s ease-in-out infinite;
    transition: var(--transition);
}

.whatsapp-btn:hover {
    transform: scale(1.1);
}

@keyframes whatsappPulse {
    0%, 100% {
        box-shadow: 0 5px 20px rgba(37, 211, 102, 0.3);
    }
    50% {
        box-shadow: 0 5px 40px rgba(37, 211, 102, 0.5);
    }
}

/* ===== LIGHTBOX ===== */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 99999;
}

.lightbox.active {
    display: flex;
}

.lightbox-close {
    position: absolute;
    top: 30px;
    right: 30px;
    color: var(--gold);
    font-size: 2rem;
    cursor: pointer;
    transition: var(--transition);
    background: none;
    border: none;
    padding: 10px;
}

.lightbox-close:hover {
    transform: rotate(90deg);
}

.lightbox-content {
    text-align: center;
    max-width: 90%;
    max-height: 90%;
}

.lightbox-image {
    max-width: 100%;
    max-height: 80vh;
    border-radius: 12px;
    border: 2px solid rgba(212, 175, 55, 0.2);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
    display: block;
    margin: 0 auto 15px;
}

#lightboxCaption {
    color: var(--gray-light);
    font-size: 0.95rem;
}

/* ===== NOTIFICATION TOAST ===== */
.toast {
    position: fixed;
    top: 30px;
    right: 30px;
    background: var(--black-light);
    border: 1px solid var(--gold);
    padding: 20px 30px;
    display: flex;
    align-items: center;
    gap: 15px;
    z-index: 99999;
    transform: translateX(120%);
    transition: transform 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    border-radius: 4px;
}

.toast.show {
    transform: translateX(0);
}

.toast i {
    color: var(--gold);
    font-size: 1.5rem;
    flex-shrink: 0;
}

.toast-message h4 {
    font-size: 0.9rem;
    margin-bottom: 3px;
}

.toast-message p {
    color: var(--gray);
    font-size: 0.8rem;
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* ===== REDUCED MOTION ===== */
@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;
    }

    .particle {
        display: none;
    }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1200px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .footer-main {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .section {
        padding: 80px 30px;
    }
    .navbar {
        padding: 15px 30px;
    }
    .navbar.scrolled {
        padding: 12px 30px;
    }

    .nav-links {
        display: none;
    }
    .hamburger {
        display: flex;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .about-images {
        height: 400px;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }
    .pricing-card.featured {
        transform: none;
    }
    .pricing-card.featured:hover {
        transform: translateY(-10px);
    }

    .booking-grid {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(3, 250px);
    }
    .gallery-item:nth-child(1) {
        grid-column: span 2;
    }
    .gallery-item:nth-child(4) {
        grid-row: span 1;
    }

    .blog-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }

    .hero-stats {
        display: none;
    }

    .insta-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .footer-main {
        padding: 60px 30px;
    }
    .footer-bottom {
        padding: 20px 30px;
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
    .team-grid {
        grid-template-columns: 1fr;
        max-width: 300px;
        margin: 0 auto;
    }
    .about-features {
        grid-template-columns: 1fr;
    }
    .form-row {
        grid-template-columns: 1fr;
    }
    .form-group.full {
        grid-column: span 1;
    }
    .booking-form-container {
        padding: 30px 20px;
    }
    .footer-main {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    .gallery-item:nth-child(1) {
        grid-column: span 1;
    }
    .insta-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero-title {
        font-size: 2.5rem !important;
    }
    .hero-subtitle {
        font-size: 0.95rem;
    }

    .custom-cursor,
    .cursor-dot {
        display: none;
    }
}

@media (max-width: 480px) {
    .section {
        padding: 60px 20px;
    }
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    .btn-primary,
    .btn-secondary {
        width: 100%;
        text-align: center;
    }
    .footer-main {
        padding: 40px 20px;
    }
    .about-images {
        height: 300px;
    }
    .experience-box .number {
        font-size: 3.5rem;
    }
}