:root {
    --primary-gold: #d4af37;
    --gold-light: #f4e4bc;
    --gold-dark: #b8960c;
    --bg-dark: #0a0a0a;
    --bg-darker: #050505;
    --bg-card: #111111;
    --bg-card-hover: #1a1a1a;
    --text-primary: #ffffff;
    --text-secondary: #b3b3b3;
    --text-muted: #666666;
    --gradient-gold: linear-gradient(135deg, #d4af37 0%, #f4e4bc 50%, #d4af37 100%);
    --gradient-dark: linear-gradient(180deg, #0a0a0a 0%, #1a1a1a 100%);
    --shadow-gold: 0 0 30px rgba(212, 175, 55, 0.3);
    --shadow-card: 0 10px 40px rgba(0, 0, 0, 0.5);
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Tajawal', sans-serif;
    background: var(--bg-dark);
    color: var(--text-primary);
    line-height: 1.8;
    overflow-x: hidden;
    direction: rtl;
}

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

ul {
    list-style: none;
}

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

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.main-nav {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 1000;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
    transition: var(--transition);
}

.main-nav.scrolled {
    background: rgba(5, 5, 5, 0.98);
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.5);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 2rem;
    font-weight: 900;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 2px;
}

.nav-links {
    display: flex;
    gap: 40px;
}

.nav-links a {
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-secondary);
    position: relative;
    padding: 5px 0;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-gold);
    transition: var(--transition);
}

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

.nav-links a:hover::after {
    width: 100%;
}

.nav-book-btn {
    background: var(--gradient-gold);
    color: var(--bg-dark) !important;
    padding: 10px 25px !important;
    border-radius: 50px;
    font-weight: 600 !important;
    box-shadow: 0 3px 15px rgba(212, 175, 55, 0.3);
}

.nav-book-btn::after {
    display: none !important;
}

.nav-book-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 25px rgba(212, 175, 55, 0.5);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
}

.nav-toggle span {
    width: 28px;
    height: 3px;
    background: var(--primary-gold);
    transition: var(--transition);
    border-radius: 2px;
}

.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(7px, -6px);
}

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    background: var(--bg-darker);
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(ellipse at 20% 50%, rgba(212, 175, 55, 0.1) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 50%, rgba(212, 175, 55, 0.05) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 100%, rgba(212, 175, 55, 0.1) 0%, transparent 50%);
    animation: heroGlow 8s ease-in-out infinite alternate;
}

@keyframes heroGlow {
    0% { opacity: 0.5; }
    100% { opacity: 1; }
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    padding: 0 20px;
}

.hero h1 {
    font-size: clamp(3rem, 10vw, 7rem);
    font-weight: 900;
    margin-bottom: 20px;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 60px rgba(212, 175, 55, 0.3);
    animation: fadeInUp 1s ease-out;
}

.hero h2 {
    font-size: clamp(1.2rem, 3vw, 1.8rem);
    font-weight: 400;
    color: var(--text-secondary);
    margin-bottom: 40px;
    animation: fadeInUp 1s ease-out 0.2s both;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease-out 0.4s both;
}

.btn {
    display: inline-block;
    padding: 15px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    font-family: 'Tajawal', sans-serif;
}

.btn-primary {
    background: var(--gradient-gold);
    color: var(--bg-dark);
    box-shadow: var(--shadow-gold);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 40px rgba(212, 175, 55, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--primary-gold);
    border: 2px solid var(--primary-gold);
}

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

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

.section {
    padding: 100px 0;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    margin-bottom: 15px;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-header p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.service-card {
    background: var(--bg-card);
    border-radius: 20px;
    padding: 50px 40px;
    text-align: center;
    border: 1px solid rgba(212, 175, 55, 0.1);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-gold);
    transform: scaleX(0);
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: rgba(212, 175, 55, 0.3);
    box-shadow: var(--shadow-card);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 50%;
    font-size: 2rem;
}

.service-card h3 {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--primary-gold);
}

.service-card p {
    color: var(--text-secondary);
    line-height: 1.8;
}

.features-list {
    text-align: right;
    margin-top: 25px;
}

.features-list li {
    padding: 10px 0;
    color: var(--text-secondary);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    gap: 10px;
}

.features-list li::before {
    content: '✦';
    color: var(--primary-gold);
}

.page-hero {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    background: var(--bg-darker);
    padding-top: 80px;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(ellipse at center, rgba(212, 175, 55, 0.15) 0%, transparent 60%);
}

.page-hero h1 {
    font-size: clamp(2.5rem, 8vw, 5rem);
    font-weight: 900;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
}

.page-hero p {
    font-size: 1.3rem;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto;
}

.content-section {
    padding: 80px 0;
}

.content-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.content-card {
    background: var(--bg-card);
    border-radius: 15px;
    padding: 40px;
    border: 1px solid rgba(212, 175, 55, 0.1);
    transition: var(--transition);
}

.content-card:hover {
    border-color: rgba(212, 175, 55, 0.3);
    transform: translateY(-5px);
}

.content-card h3 {
    font-size: 1.4rem;
    color: var(--primary-gold);
    margin-bottom: 15px;
}

.content-card p {
    color: var(--text-secondary);
}

.contact-section {
    padding: 100px 0;
    background: var(--bg-darker);
}

.contact-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.contact-info {
    text-align: center;
    margin-bottom: 50px;
}

.contact-info h3 {
    font-size: 1.5rem;
    color: var(--primary-gold);
    margin-bottom: 10px;
}

.contact-info p {
    font-size: 1.2rem;
    color: var(--text-secondary);
}

.contact-info a {
    color: var(--primary-gold);
    font-size: 1.5rem;
    font-weight: 700;
}

.contact-form {
    background: var(--bg-card);
    border-radius: 20px;
    padding: 50px;
    border: 1px solid rgba(212, 175, 55, 0.1);
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 10px;
    font-weight: 500;
    color: var(--text-primary);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px 20px;
    background: var(--bg-dark);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 10px;
    color: var(--text-primary);
    font-size: 1rem;
    font-family: 'Tajawal', sans-serif;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-gold);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.1);
}

.form-group textarea {
    min-height: 150px;
    resize: vertical;
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%23d4af37' viewBox='0 0 16 16'%3E%3Cpath d='M8 11L3 6h10l-5 5z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: left 15px center;
}

.form-submit {
    text-align: center;
    margin-top: 30px;
}

.success-message {
    background: rgba(39, 174, 96, 0.1);
    border: 1px solid rgba(39, 174, 96, 0.3);
    color: #27ae60;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    margin-bottom: 30px;
    animation: fadeInUp 0.5s ease-out;
}

.error-message {
    background: rgba(231, 76, 60, 0.1);
    border: 1px solid rgba(231, 76, 60, 0.3);
    color: #e74c3c;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    margin-bottom: 30px;
}

.main-footer {
    background: var(--bg-darker);
    border-top: 1px solid rgba(212, 175, 55, 0.1);
    padding-top: 60px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    padding-bottom: 40px;
}

.footer-logo {
    font-size: 2rem;
    font-weight: 900;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 15px;
}

.footer-brand p {
    color: var(--text-secondary);
}

.footer-contact h4,
.footer-links h4 {
    color: var(--primary-gold);
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.footer-contact p,
.footer-contact a {
    color: var(--text-secondary);
    display: block;
    margin-bottom: 8px;
}

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

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

.footer-links ul li a {
    color: var(--text-secondary);
}

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

.footer-bottom {
    text-align: center;
    padding: 25px 20px;
    border-top: 1px solid rgba(212, 175, 55, 0.1);
    color: var(--text-muted);
}

.powered-by {
    margin-top: 10px;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.footer-cities h4 {
    color: var(--primary-gold);
    margin-bottom: 20px;
    font-size: 1.2rem;
}

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

.footer-cities ul li a {
    color: var(--text-secondary);
}

.footer-cities ul li a:hover {
    color: var(--primary-gold);
}

.footer-seo {
    padding: 20px;
    text-align: center;
    border-top: 1px solid rgba(212, 175, 55, 0.05);
}

.footer-seo p {
    color: var(--text-muted);
    font-size: 0.8rem;
    line-height: 2;
}

.parallax-section {
    min-height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    background: var(--bg-card);
    overflow: hidden;
}

.parallax-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
}

.parallax-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    padding: 0 20px;
}

.parallax-content h2 {
    font-size: clamp(1.4rem, 4vw, 2.5rem);
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--primary-gold);
    padding: 0 15px;
    line-height: 1.4;
}

.parallax-content p {
    font-size: clamp(0.95rem, 2.5vw, 1.2rem);
    color: var(--text-secondary);
    margin-bottom: 30px;
    padding: 0 15px;
}

.stats-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    max-width: 1000px;
    margin: 60px auto 0;
    padding: 0 20px;
}

.stat-item {
    text-align: center;
    padding: 25px 35px;
    background: rgba(212, 175, 55, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(212, 175, 55, 0.1);
    flex: 1 1 150px;
    min-width: 120px;
    max-width: 250px;
}

.stat-number {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 900;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
    line-height: 1.2;
}

.stat-label {
    color: var(--text-secondary);
    margin-top: 10px;
    font-size: clamp(0.85rem, 2vw, 1rem);
}

@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }
    
    .nav-links {
        position: fixed;
        top: 70px;
        right: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: var(--bg-darker);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 30px;
        transition: var(--transition);
    }
    
    .nav-links.active {
        right: 0;
    }
    
    .nav-links a {
        font-size: 1.3rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 300px;
    }
    
    .contact-form {
        padding: 30px 20px;
    }
    
    .footer-content {
        text-align: center;
    }
    
    .features-list {
        text-align: center;
    }
    
    .features-list li {
        justify-content: center;
    }
}

.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.gold-line {
    width: 80px;
    height: 3px;
    background: var(--gradient-gold);
    margin: 20px auto;
}

.floating-book-btn {
    position: fixed;
    bottom: 30px;
    left: 30px;
    z-index: 999;
    padding: 18px 35px;
    background: var(--gradient-gold);
    color: var(--bg-dark);
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 50px;
    box-shadow: 0 5px 30px rgba(212, 175, 55, 0.5);
    animation: pulse 2s ease-in-out infinite, floatUp 0.8s ease-out;
    font-family: 'Tajawal', sans-serif;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
}

.floating-book-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 10px 40px rgba(212, 175, 55, 0.7);
}

@keyframes pulse {
    0%, 100% { box-shadow: 0 5px 30px rgba(212, 175, 55, 0.5); }
    50% { box-shadow: 0 5px 50px rgba(212, 175, 55, 0.8); }
}

@keyframes floatUp {
    from { opacity: 0; transform: translateY(50px); }
    to { opacity: 1; transform: translateY(0); }
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
    opacity: 0.3;
    filter: blur(2px);
}

.image-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    min-height: 300px;
    display: flex;
    align-items: flex-end;
    background-size: cover;
    background-position: center;
    transition: var(--transition);
}

.image-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.3) 50%, transparent 100%);
}

.image-card:hover {
    transform: scale(1.03);
    box-shadow: 0 20px 60px rgba(212, 175, 55, 0.3);
}

.image-card-content {
    position: relative;
    z-index: 1;
    padding: 30px;
    width: 100%;
}

.image-card h3 {
    font-size: 1.8rem;
    color: var(--primary-gold);
    margin-bottom: 10px;
}

.image-card p {
    color: var(--text-secondary);
    font-size: 1.1rem;
}

@keyframes shimmer {
    0% { background-position: -200% center; }
    100% { background-position: 200% center; }
}

.shimmer-text {
    background: linear-gradient(90deg, var(--primary-gold) 0%, var(--gold-light) 25%, var(--primary-gold) 50%, var(--gold-light) 75%, var(--primary-gold) 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 3s linear infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.float-animation {
    animation: float 3s ease-in-out infinite;
}

@keyframes scaleIn {
    from { opacity: 0; transform: scale(0.8); }
    to { opacity: 1; transform: scale(1); }
}

.scale-in {
    animation: scaleIn 0.6s ease-out forwards;
}

.slide-in-right {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.8s ease-out;
}

.slide-in-right.visible {
    opacity: 1;
    transform: translateX(0);
}

.slide-in-left {
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.8s ease-out;
}

.slide-in-left.visible {
    opacity: 1;
    transform: translateX(0);
}

@media (max-width: 768px) {
    .floating-book-btn {
        bottom: 20px;
        left: 20px;
        padding: 15px 25px;
        font-size: 1rem;
    }
    
    .image-card {
        min-height: 250px;
    }
}

.gallery-section {
    padding: 60px 20px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    max-width: 1400px;
    margin: 0 auto;
}

.gallery-item {
    position: relative;
    height: 250px;
    border-radius: 15px;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    cursor: pointer;
    transition: var(--transition);
}

.gallery-item.large {
    grid-column: span 2;
    height: 300px;
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 60%);
    display: flex;
    align-items: flex-end;
    padding: 20px;
    opacity: 0;
    transition: var(--transition);
}

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

.gallery-item:hover {
    transform: scale(1.05);
    z-index: 10;
    box-shadow: 0 20px 50px rgba(212, 175, 55, 0.3);
}

.gallery-overlay span {
    color: var(--primary-gold);
    font-size: 1.2rem;
    font-weight: 600;
}

.cities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 25px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.city-card {
    background: var(--bg-card);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    border: 1px solid rgba(212, 175, 55, 0.1);
    transition: var(--transition);
    text-decoration: none;
}

.city-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: var(--primary-gold);
    box-shadow: 0 20px 50px rgba(212, 175, 55, 0.2);
}

.city-icon {
    font-size: 3rem;
    margin-bottom: 15px;
    animation: float 3s ease-in-out infinite;
}

.city-card h3 {
    font-size: 1.4rem;
    color: var(--primary-gold);
    margin-bottom: 8px;
}

.city-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

.bounce-in {
    animation: bounceIn 0.8s ease-out forwards;
    opacity: 0;
}

@keyframes bounceIn {
    0% { opacity: 0; transform: scale(0.5) translateY(50px); }
    60% { opacity: 1; transform: scale(1.1) translateY(-10px); }
    100% { opacity: 1; transform: scale(1) translateY(0); }
}

.seo-section {
    background: var(--bg-card);
}

.seo-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 40px;
    text-align: right;
}

.seo-content h2 {
    color: var(--primary-gold);
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.seo-content h3 {
    color: var(--gold-light);
    font-size: 1.3rem;
    margin: 30px 0 15px;
}

.seo-content p {
    color: var(--text-secondary);
    line-height: 2;
    margin-bottom: 15px;
}

.seo-list {
    list-style: none;
    padding: 0;
}

.seo-list li {
    padding: 12px 0;
    color: var(--text-secondary);
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
    display: flex;
    align-items: center;
    gap: 10px;
}

.seo-list li::before {
    content: '✦';
    color: var(--primary-gold);
}

.pulse-border {
    position: relative;
}

.pulse-border::after {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border: 2px solid var(--primary-gold);
    border-radius: 25px;
    animation: pulseBorder 2s ease-in-out infinite;
    opacity: 0;
    pointer-events: none;
}

@keyframes pulseBorder {
    0%, 100% { opacity: 0; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.02); }
}

.glow-btn {
    position: relative;
    overflow: hidden;
    z-index: 1;
    cursor: pointer;
}

.glow-btn::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255,255,255,0.3), transparent);
    transform: rotate(45deg);
    animation: glowMove 3s linear infinite;
    pointer-events: none;
}

.glow-btn span {
    position: relative;
    z-index: 2;
}

@keyframes glowMove {
    0% { transform: translateX(-100%) rotate(45deg); }
    100% { transform: translateX(100%) rotate(45deg); }
}

.testimonials-section {
    padding: 80px 0;
    background: var(--bg-darker);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.testimonial-card {
    background: var(--bg-card);
    border-radius: 20px;
    padding: 40px;
    border: 1px solid rgba(212, 175, 55, 0.1);
    position: relative;
    transition: var(--transition);
}

.testimonial-card:hover {
    border-color: rgba(212, 175, 55, 0.3);
    transform: translateY(-5px);
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 4rem;
    color: rgba(212, 175, 55, 0.2);
    font-family: serif;
    line-height: 1;
}

.testimonial-text {
    color: var(--text-secondary);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 20px;
}

.testimonial-author {
    color: var(--primary-gold);
    font-weight: 600;
}

.testimonial-event {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.stars {
    color: var(--primary-gold);
    margin-bottom: 15px;
    font-size: 1.2rem;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.rotate-slow {
    animation: rotate 20s linear infinite;
}

@keyframes typewriter {
    from { width: 0; }
    to { width: 100%; }
}

.typing-text {
    overflow: hidden;
    white-space: nowrap;
    border-left: 3px solid var(--primary-gold);
    animation: typewriter 3s steps(30) forwards, blink 0.7s step-end infinite;
}

@keyframes blink {
    50% { border-color: transparent; }
}

@keyframes gradient-shift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.gradient-bg {
    background: linear-gradient(270deg, var(--bg-dark), var(--bg-card), var(--bg-darker));
    background-size: 400% 400%;
    animation: gradient-shift 8s ease infinite;
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-5px); }
    75% { transform: translateX(5px); }
}

.shake-hover:hover {
    animation: shake 0.5s ease-in-out;
}

.parallax-bg {
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.feature-card {
    background: var(--bg-card);
    border-radius: 20px;
    padding: 40px 25px;
    text-align: center;
    border: 1px solid rgba(212, 175, 55, 0.1);
    transition: var(--transition);
}

.feature-card:hover {
    border-color: var(--primary-gold);
    transform: translateY(-10px);
    box-shadow: var(--shadow-gold);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    display: block;
}

.feature-card h3 {
    color: var(--primary-gold);
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.feature-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.form-section {
    padding: 80px 20px;
    background: var(--bg-darker);
}

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

.inline-form {
    background: var(--bg-card);
    border-radius: 20px;
    padding: 40px;
    border: 1px solid rgba(212, 175, 55, 0.1);
    margin-bottom: 30px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.inline-form input,
.inline-form select,
.inline-form textarea {
    width: 100%;
    padding: 15px 20px;
    background: var(--bg-darker);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 10px;
    color: var(--text-primary);
    font-family: 'Tajawal', sans-serif;
    font-size: 1rem;
    transition: var(--transition);
}

.inline-form input:focus,
.inline-form select:focus,
.inline-form textarea:focus {
    border-color: var(--primary-gold);
    outline: none;
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.2);
}

.inline-form textarea {
    min-height: 100px;
    resize: vertical;
    margin-bottom: 20px;
}

.inline-form select {
    cursor: pointer;
}

.btn-large {
    width: 100%;
    padding: 18px 40px;
    font-size: 1.2rem;
}

.contact-alt {
    text-align: center;
    padding: 30px;
    background: var(--bg-card);
    border-radius: 20px;
    border: 1px solid rgba(212, 175, 55, 0.1);
}

.contact-alt p {
    color: var(--text-muted);
    margin-bottom: 10px;
}

.contact-alt h3 {
    color: var(--primary-gold);
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.phone-link {
    color: var(--gold-light);
    font-size: 1.8rem;
    font-weight: 700;
    display: inline-block;
    transition: var(--transition);
}

.phone-link:hover {
    color: var(--primary-gold);
    transform: scale(1.05);
}

@media (max-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .content-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        right: 0;
        left: 0;
        background: rgba(10, 10, 10, 0.98);
        flex-direction: column;
        padding: 20px;
        gap: 15px;
        border-top: 1px solid rgba(212, 175, 55, 0.1);
    }
    
    .nav-links.active {
        display: flex;
    }
    
    .nav-toggle {
        display: flex !important;
    }
    
    .hero h1, .shimmer-text {
        font-size: 2.5rem !important;
    }
    
    .hero h2 {
        font-size: 1.2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    .hero-buttons .btn {
        width: 100%;
    }
    
    .section {
        padding: 50px 15px;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
    }
    
    .content-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .image-card {
        min-height: 200px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .feature-card {
        padding: 25px 20px;
    }
    
    .feature-icon {
        font-size: 2.5rem;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }
    
    .gallery-item {
        height: 150px;
    }
    
    .gallery-item.large {
        grid-column: span 2;
        height: 200px;
    }
    
    .cities-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .city-card {
        padding: 25px 15px;
    }
    
    .city-icon {
        font-size: 2rem;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonial-card {
        padding: 25px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .inline-form {
        padding: 25px 20px;
    }
    
    .contact-form {
        padding: 25px;
    }
    
    .seo-content {
        padding: 20px;
    }
    
    .parallax-content {
        padding: 20px 10px;
    }
    
    .parallax-content h2 {
        font-size: 1.3rem;
        line-height: 1.5;
    }
    
    .parallax-content p {
        font-size: 0.9rem;
    }
    
    .stats-grid {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 15px;
        padding: 0 10px;
        margin-top: 30px;
    }
    
    .stat-item {
        flex: 1 1 calc(33% - 15px);
        min-width: 90px;
        max-width: none;
        padding: 15px 10px;
    }
    
    .stat-number {
        font-size: 1.8rem;
    }
    
    .stat-label {
        font-size: 0.75rem;
        margin-top: 5px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .floating-book-btn {
        bottom: 15px;
        left: 15px;
        padding: 12px 20px;
        font-size: 0.9rem;
    }
    
    .page-hero {
        min-height: 50vh;
    }
    
    .hero-content h1 {
        font-size: 2.2rem;
    }
    
    .hero-content p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .logo {
        font-size: 1.5rem;
    }
    
    .nav-container {
        padding: 12px 15px;
    }
    
    .hero h1, .shimmer-text {
        font-size: 2rem !important;
    }
    
    .section-header h2 {
        font-size: 1.5rem;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-item,
    .gallery-item.large {
        grid-column: span 1;
        height: 180px;
    }
    
    .cities-grid {
        grid-template-columns: 1fr;
    }
    
    .btn {
        padding: 12px 25px;
        font-size: 0.95rem;
    }
    
    .btn-large {
        padding: 15px 30px;
        font-size: 1.1rem;
    }
    
    .phone-link {
        font-size: 1.5rem;
    }
}

/* FAQ Section */
.faq-section {
    background: var(--bg-dark);
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

.faq-item {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.05) 0%, rgba(26, 26, 26, 0.8) 100%);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 15px;
    padding: 25px 30px;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: var(--primary-gold);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.15);
}

.faq-item h3 {
    color: var(--primary-gold);
    font-size: 1.2rem;
    margin-bottom: 15px;
    line-height: 1.6;
}

.faq-item p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 10px;
}

.faq-item p:last-child {
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .faq-item {
        padding: 20px;
    }
    
    .faq-item h3 {
        font-size: 1.1rem;
    }
}
