/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Honeypot field - hide from real users */
.hp-field {
    position: absolute;
    left: -9999px;
    opacity: 0;
    height: 0;
    overflow: hidden;
}

:root {
    /* Moroccan-inspired color palette from Visit Morocco */
    --primary-red: #8B2635;
    --deep-burgundy: #6B1E2A;
    --warm-gold: #D4AF37;
    --desert-sand: #F4E4BC;
    --terracotta: #C65D07;
    --royal-blue: #2E5984;
    --cream: #FDF6E3;
    --dark-brown: #3C2414;
    --accent-green: #2D5016;
    
    /* Typography */
    --font-primary: 'Inter', sans-serif;
    --font-display: 'Playfair Display', serif;
    
    /* Spacing */
    --section-padding: 120px 0;
    --container-padding: 0 20px;
    --border-radius: 16px;
    
    /* Shadows */
    --shadow-soft: 0 10px 40px rgba(139, 38, 53, 0.1);
    --shadow-medium: 0 20px 60px rgba(139, 38, 53, 0.15);
    --shadow-strong: 0 30px 80px rgba(139, 38, 53, 0.2);
    
    /* Transitions */
    --transition-smooth: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: all 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-primary);
    line-height: 1.6;
    color: var(--dark-brown);
    background: var(--cream);
    overflow-x: hidden;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: var(--container-padding);
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(139, 38, 53, 0.95);
    backdrop-filter: blur(20px);
    z-index: 1000;
    transition: var(--transition-smooth);
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.navbar.scrolled {
    background: rgba(139, 38, 53, 0.98);
    box-shadow: var(--shadow-soft);
}

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

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--cream);
    font-weight: 700;
    font-size: 1.5rem;
    text-decoration: none;
}

.nav-logo img,
.footer-logo img {
    height: 40px;
    filter: brightness(0) invert(1);
}

.nav-icon {
    font-size: 1.8rem;
    color: var(--warm-gold);
    animation: rotate 20s linear infinite;
}

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

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

.nav-link {
    color: var(--cream);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition-smooth);
    position: relative;
    padding: 8px 0;
}

.nav-link:hover {
    color: var(--warm-gold);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--warm-gold);
    transition: var(--transition-smooth);
}

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

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

/* Language Switcher */
.language-switcher {
    display: flex;
    gap: 8px;
    background: rgba(255, 255, 255, 0.1);
    padding: 4px;
    border-radius: 20px;
}

.lang-btn {
    background: transparent;
    border: none;
    color: rgba(253, 246, 227, 0.7);
    font-weight: 600;
    font-size: 0.8rem;
    padding: 4px 8px;
    border-radius: 16px;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.lang-btn:hover {
    color: var(--warm-gold);
}

.lang-btn.active {
    background: var(--warm-gold);
    color: var(--dark-brown);
}

.cta-button {
    background: var(--warm-gold);
    color: var(--dark-brown) !important;
    padding: 12px 24px;
    border-radius: 30px;
    font-weight: 600;
    transition: var(--transition-smooth);
}

.cta-button:hover {
    background: var(--desert-sand);
    transform: translateY(-2px);
    box-shadow: var(--shadow-soft);
}

.cta-button::after {
    display: none;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.bar {
    width: 25px;
    height: 3px;
    background: var(--cream);
    transition: var(--transition-smooth);
    border-radius: 2px;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    background: linear-gradient(135deg, var(--primary-red) 0%, var(--deep-burgundy) 50%, var(--dark-brown) 100%);
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Moroccan Zellige Pattern */
.zellige-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M30 0L60 30L30 60L0 30Z' fill='none' stroke='rgba(212,175,55,0.08)' stroke-width='1'/%3E%3Cpath d='M30 10L50 30L30 50L10 30Z' fill='none' stroke='rgba(212,175,55,0.05)' stroke-width='1'/%3E%3Ccircle cx='30' cy='30' r='5' fill='none' stroke='rgba(212,175,55,0.06)' stroke-width='1'/%3E%3C/svg%3E");
    background-size: 60px 60px;
    opacity: 1;
    animation: patternShift 30s linear infinite;
}

@keyframes patternShift {
    0% { background-position: 0 0; }
    100% { background-position: 60px 60px; }
}

/* Moroccan Geometric Shapes */
.moroccan-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.moroccan-star {
    position: absolute;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--warm-gold), var(--desert-sand));
    clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
    opacity: 0.15;
    animation: starFloat 15s ease-in-out infinite;
}

.star-1 { top: 15%; left: 8%; animation-delay: 0s; }
.star-2 { top: 25%; right: 12%; width: 80px; height: 80px; animation-delay: 5s; }
.star-3 { bottom: 20%; left: 15%; width: 50px; height: 50px; animation-delay: 10s; }

.moroccan-diamond {
    position: absolute;
    width: 40px;
    height: 70px;
    background: linear-gradient(180deg, var(--terracotta), transparent);
    clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
    opacity: 0.12;
    animation: diamondFloat 20s ease-in-out infinite;
}

.diamond-1 { top: 40%; right: 5%; animation-delay: 3s; }
.diamond-2 { bottom: 30%; right: 20%; width: 50px; height: 90px; animation-delay: 8s; }

.moroccan-arch {
    position: absolute;
    width: 80px;
    height: 120px;
    border: 3px solid rgba(212, 175, 55, 0.1);
    border-radius: 40px 40px 0 0;
    border-bottom: none;
    animation: archPulse 8s ease-in-out infinite;
}

.arch-1 { bottom: 10%; left: 5%; }
.arch-2 { top: 30%; right: 8%; width: 60px; height: 90px; animation-delay: 4s; }

@keyframes starFloat {
    0%, 100% { transform: translateY(0) rotate(0deg); opacity: 0.15; }
    50% { transform: translateY(-30px) rotate(180deg); opacity: 0.25; }
}

@keyframes diamondFloat {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-20px) scale(1.1); }
}

@keyframes archPulse {
    0%, 100% { opacity: 0.1; transform: scale(1); }
    50% { opacity: 0.2; transform: scale(1.05); }
}

/* Monument Silhouettes */
.monument-silhouettes {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 300px;
    pointer-events: none;
}

.silhouette {
    position: absolute;
    bottom: 0;
    background: linear-gradient(to top, rgba(60, 36, 20, 0.3), transparent);
}

.silhouette.koutoubia {
    left: 5%;
    width: 60px;
    height: 200px;
    clip-path: polygon(30% 100%, 30% 30%, 40% 30%, 40% 20%, 50% 0%, 60% 20%, 60% 30%, 70% 30%, 70% 100%);
    animation: silhouetteFloat 10s ease-in-out infinite;
}

.silhouette.hassan-tower {
    right: 10%;
    width: 80px;
    height: 250px;
    clip-path: polygon(25% 100%, 25% 10%, 35% 10%, 35% 5%, 50% 0%, 65% 5%, 65% 10%, 75% 10%, 75% 100%);
    animation: silhouetteFloat 12s ease-in-out infinite;
    animation-delay: 2s;
}

.silhouette.minaret {
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 180px;
    clip-path: polygon(35% 100%, 35% 25%, 45% 25%, 45% 10%, 50% 0%, 55% 10%, 55% 25%, 65% 25%, 65% 100%);
    animation: silhouetteFloat 8s ease-in-out infinite;
    animation-delay: 4s;
    opacity: 0.5;
}

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

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: var(--container-padding);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-content {
    color: var(--cream);
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(212, 175, 55, 0.2);
    border: 1px solid rgba(212, 175, 55, 0.3);
    padding: 8px 16px;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 24px;
    backdrop-filter: blur(10px);
}

.hero-badge i {
    color: var(--warm-gold);
}

.hero-title {
    font-family: var(--font-display);
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.title-line {
    display: block;
    animation: slideInUp 1s ease-out forwards;
    opacity: 0;
    transform: translateY(50px);
}

.title-line:nth-child(1) {
    animation-delay: 0.2s;
}

.title-line:nth-child(2) {
    animation-delay: 0.4s;
}

.gradient-text {
    background: linear-gradient(135deg, var(--warm-gold) 0%, var(--desert-sand) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

@keyframes slideInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-subtitle {
    font-size: 1.25rem;
    line-height: 1.6;
    margin-bottom: 40px;
    opacity: 0.9;
    animation: fadeInUp 1s ease-out 0.6s forwards;
    opacity: 0;
}

@keyframes fadeInUp {
    to {
        opacity: 0.9;
        transform: translateY(0);
    }
}

.hero-buttons {
    display: flex;
    gap: 20px;
    margin-bottom: 60px;
    animation: fadeInUp 1s ease-out 0.8s forwards;
    opacity: 0;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition-smooth);
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: var(--transition-smooth);
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: var(--warm-gold);
    color: var(--dark-brown);
    box-shadow: var(--shadow-soft);
}

.btn-primary:hover {
    background: var(--desert-sand);
    transform: translateY(-3px);
    box-shadow: var(--shadow-medium);
}

.btn-secondary {
    background: transparent;
    color: var(--cream);
    border: 2px solid rgba(253, 246, 227, 0.3);
}

.btn-secondary:hover {
    background: rgba(253, 246, 227, 0.1);
    border-color: var(--cream);
    transform: translateY(-3px);
}

.btn-cta {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: white;
    font-size: 1.1rem;
    padding: 20px 40px;
    box-shadow: var(--shadow-medium);
}

.btn-cta:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: var(--shadow-strong);
}

/* Hero Stats */
.hero-stats {
    display: flex;
    gap: 40px;
    animation: fadeInUp 1s ease-out 1s forwards;
    opacity: 0;
}

.stat {
    text-align: center;
}

.stat-number {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--warm-gold);
    display: block;
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.8;
    margin-top: 4px;
}

/* Phone Mockup */
.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    animation: fadeInRight 1s ease-out 0.4s forwards;
    opacity: 0;
    position: relative;
}

@keyframes fadeInRight {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.phone-mockup {
    width: 300px;
    height: 600px;
    background: linear-gradient(145deg, #1a1a1a, #2d2d2d);
    border-radius: 40px;
    padding: 15px;
    box-shadow:
        var(--shadow-strong),
        0 0 60px rgba(212, 175, 55, 0.2),
        inset 0 0 20px rgba(212, 175, 55, 0.1);
    position: relative;
    animation: phoneFloat 6s ease-in-out infinite;
    border: 2px solid rgba(212, 175, 55, 0.3);
}

@keyframes phoneFloat {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(1deg); }
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-red) 0%, var(--deep-burgundy) 100%);
    border-radius: 30px;
    overflow: hidden;
    position: relative;
}

/* Moroccan decoration around phone */
.phone-decoration {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.deco-star {
    position: absolute;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--warm-gold), var(--desert-sand));
    clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
    animation: decoStarPulse 3s ease-in-out infinite;
}

.deco-star-1 {
    top: -20px;
    right: -20px;
    animation-delay: 0s;
}

.deco-star-2 {
    bottom: -15px;
    left: -15px;
    width: 30px;
    height: 30px;
    animation-delay: 1.5s;
}

@keyframes decoStarPulse {
    0%, 100% { transform: scale(1) rotate(0deg); opacity: 0.8; }
    50% { transform: scale(1.2) rotate(180deg); opacity: 1; }
}

.chat-interface {
    padding: 20px;
    height: 100%;
    display: flex;
    flex-direction: column;
    background:
        url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M20 0L40 20L20 40L0 20Z' fill='none' stroke='rgba(212,175,55,0.05)' stroke-width='1'/%3E%3C/svg%3E");
}

.chat-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(212, 175, 55, 0.3);
}

.chat-avatar {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, var(--warm-gold), var(--terracotta));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    box-shadow: 0 5px 20px rgba(212, 175, 55, 0.4);
    animation: avatarPulse 2s ease-in-out infinite;
}

@keyframes avatarPulse {
    0%, 100% { box-shadow: 0 5px 20px rgba(212, 175, 55, 0.4); }
    50% { box-shadow: 0 5px 30px rgba(212, 175, 55, 0.6); }
}

.chat-info {
    flex: 1;
}

.chat-name {
    font-weight: 600;
    color: var(--cream);
    font-size: 1rem;
}

.chat-status {
    font-size: 0.8rem;
    color: var(--warm-gold);
    display: flex;
    align-items: center;
    gap: 5px;
}

.chat-status::before {
    content: '';
    width: 8px;
    height: 8px;
    background: #25D366;
    border-radius: 50%;
    animation: statusPulse 2s infinite;
}

@keyframes statusPulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.chat-messages {
    flex: 1;
    padding: 20px 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
    overflow-y: auto;
}

.message {
    display: flex;
    animation: messageSlide 0.4s ease-out;
}

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

.ai-message {
    justify-content: flex-start;
}

.user-message {
    justify-content: flex-end;
}

.message-bubble {
    max-width: 85%;
    padding: 12px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    line-height: 1.4;
}

.ai-message .message-bubble {
    background: rgba(255, 255, 255, 0.95);
    color: var(--dark-brown);
    border-bottom-left-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.user-message .message-bubble {
    background: linear-gradient(135deg, var(--warm-gold), var(--terracotta));
    color: white;
    border-bottom-right-radius: 8px;
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

.typing-indicator {
    display: flex;
    gap: 4px;
    align-items: center;
    padding: 5px 0;
}

.typing-indicator span {
    width: 8px;
    height: 8px;
    background: var(--primary-red);
    border-radius: 50%;
    animation: typing 1.4s infinite ease-in-out;
}

.typing-indicator span:nth-child(1) { animation-delay: 0.2s; }
.typing-indicator span:nth-child(2) { animation-delay: 0.4s; }
.typing-indicator span:nth-child(3) { animation-delay: 0.6s; }

@keyframes typing {
    0%, 60%, 100% { transform: translateY(0); }
    30% { transform: translateY(-10px); }
}

/* Hero Stats Enhancement */
.stat-icon {
    width: 40px;
    height: 40px;
    background: rgba(212, 175, 55, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 8px;
    color: var(--warm-gold);
    font-size: 1rem;
}

/* Scroll Indicator Enhancement */
.scroll-text {
    display: block;
    font-size: 0.75rem;
    color: var(--cream);
    opacity: 0.6;
    margin-top: 8px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

.scroll-arrow {
    color: var(--cream);
    font-size: 1.5rem;
    opacity: 0.7;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-10px); }
    60% { transform: translateX(-50%) translateY(-5px); }
}

/* Section Styles */
section {
    padding: var(--section-padding);
}

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

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(139, 38, 53, 0.1);
    border: 1px solid rgba(139, 38, 53, 0.2);
    padding: 8px 16px;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 16px;
    color: var(--primary-red);
}

.section-badge i {
    color: var(--primary-red);
}

.section-title {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 700;
    color: var(--dark-brown);
    margin-bottom: 20px;
    line-height: 1.2;
}

.section-subtitle {
    font-size: 1.2rem;
    color: rgba(60, 36, 20, 0.7);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Features Section */
.features {
    background: var(--cream);
    position: relative;
    overflow: hidden;
}

.section-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M40 0L80 40L40 80L0 40Z' fill='none' stroke='rgba(139,38,53,0.03)' stroke-width='1'/%3E%3Ccircle cx='40' cy='40' r='10' fill='none' stroke='rgba(139,38,53,0.02)' stroke-width='1'/%3E%3C/svg%3E");
    background-size: 80px 80px;
    pointer-events: none;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.feature-card {
    background: white;
    padding: 40px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-soft);
    transition: var(--transition-smooth);
    border: 1px solid rgba(139, 38, 53, 0.1);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-red), var(--warm-gold));
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-medium);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-red), var(--deep-burgundy));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    transition: var(--transition-smooth);
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
}

.feature-icon i {
    font-size: 2rem;
    color: var(--cream);
}

.feature-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--dark-brown);
    margin-bottom: 16px;
}

.feature-description {
    color: rgba(60, 36, 20, 0.7);
    line-height: 1.6;
}

/* AI Guide Section */
.ai-guide-section {
    background: linear-gradient(135deg, var(--royal-blue) 0%, #1a4a6e 50%, var(--dark-brown) 100%);
    position: relative;
    overflow: hidden;
    padding: var(--section-padding);
}

.ai-guide-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.ai-guide-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M40 0L80 40L40 80L0 40Z' fill='none' stroke='rgba(212,175,55,0.08)' stroke-width='1'/%3E%3Cpath d='M40 15L65 40L40 65L15 40Z' fill='none' stroke='rgba(212,175,55,0.05)' stroke-width='1'/%3E%3C/svg%3E");
    background-size: 80px 80px;
}

.ai-guide-decoration {
    position: absolute;
    width: 100%;
    height: 100%;
}

.guide-star {
    position: absolute;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.15), rgba(198, 93, 7, 0.1));
    clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
    animation: guideStarFloat 20s ease-in-out infinite;
}

.guide-star-1 {
    width: 100px;
    height: 100px;
    top: 10%;
    right: 10%;
}

.guide-star-2 {
    width: 70px;
    height: 70px;
    bottom: 15%;
    left: 5%;
    animation-delay: 10s;
}

@keyframes guideStarFloat {
    0%, 100% { transform: rotate(0deg) scale(1); opacity: 0.5; }
    50% { transform: rotate(180deg) scale(1.1); opacity: 0.8; }
}

.ai-guide-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.ai-guide-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.avatar-preview {
    position: relative;
    width: 280px;
    height: 280px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.avatar-glow {
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.3) 0%, transparent 70%);
    animation: glowPulse 3s ease-in-out infinite;
}

@keyframes glowPulse {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.2); opacity: 0.8; }
}

.avatar-circle {
    width: 180px;
    height: 180px;
    background: linear-gradient(135deg, var(--warm-gold), var(--terracotta));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
    box-shadow: 0 20px 60px rgba(212, 175, 55, 0.4);
    animation: avatarFloat 4s ease-in-out infinite;
}

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

.avatar-circle i {
    font-size: 5rem;
    color: white;
}

.avatar-waves {
    position: absolute;
    width: 100%;
    height: 100%;
}

.avatar-waves span {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 180px;
    height: 180px;
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 50%;
    animation: waveExpand 3s ease-out infinite;
}

.avatar-waves span:nth-child(2) {
    animation-delay: 1s;
}

.avatar-waves span:nth-child(3) {
    animation-delay: 2s;
}

@keyframes waveExpand {
    0% { width: 180px; height: 180px; opacity: 1; }
    100% { width: 350px; height: 350px; opacity: 0; }
}

.ai-guide-text {
    color: var(--cream);
}

.ai-guide-text .section-badge {
    background: rgba(212, 175, 55, 0.2);
    border-color: rgba(212, 175, 55, 0.3);
    color: var(--warm-gold);
}

.ai-guide-text .section-badge i {
    color: var(--warm-gold);
}

.ai-guide-text .section-title {
    color: var(--cream);
    margin-bottom: 20px;
}

.ai-guide-desc {
    font-size: 1.1rem;
    line-height: 1.8;
    opacity: 0.9;
    margin-bottom: 30px;
}

.ai-guide-features {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 40px;
}

.guide-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.1);
    padding: 12px 20px;
    border-radius: 30px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    transition: all 0.3s ease;
}

.guide-feature:hover {
    background: rgba(212, 175, 55, 0.2);
    border-color: rgba(212, 175, 55, 0.4);
    transform: translateY(-2px);
}

.guide-feature i {
    color: var(--warm-gold);
    font-size: 1.1rem;
}

.guide-feature span {
    font-weight: 500;
    font-size: 0.95rem;
}

.btn-guide {
    padding: 18px 40px;
    font-size: 1.1rem;
    box-shadow: 0 10px 40px rgba(212, 175, 55, 0.3);
}

.btn-guide:hover {
    box-shadow: 0 15px 50px rgba(212, 175, 55, 0.4);
}

@media (max-width: 1024px) {
    .ai-guide-content {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
    }

    .ai-guide-visual {
        order: 1;
    }

    .ai-guide-text {
        order: 2;
    }

    .ai-guide-features {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .avatar-preview {
        width: 220px;
        height: 220px;
    }

    .avatar-circle {
        width: 140px;
        height: 140px;
    }

    .avatar-circle i {
        font-size: 4rem;
    }

    .avatar-waves span {
        width: 140px;
        height: 140px;
    }

    @keyframes waveExpand {
        0% { width: 140px; height: 140px; opacity: 1; }
        100% { width: 280px; height: 280px; opacity: 0; }
    }

    .ai-guide-features {
        flex-direction: column;
        align-items: center;
    }

    .guide-feature {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
}

/* Destinations Section */
.destinations {
    background: linear-gradient(135deg, var(--cream) 0%, #fff 50%, var(--desert-sand) 100%);
    position: relative;
    overflow: hidden;
}

.destinations-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.dest-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M50 0L100 50L50 100L0 50Z' fill='none' stroke='rgba(212,175,55,0.06)' stroke-width='1'/%3E%3Cpath d='M50 20L80 50L50 80L20 50Z' fill='none' stroke='rgba(139,38,53,0.04)' stroke-width='1'/%3E%3C/svg%3E");
    background-size: 100px 100px;
}

.dest-decoration {
    position: absolute;
    width: 100%;
    height: 100%;
}

.dest-star {
    position: absolute;
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(198, 93, 7, 0.05));
    clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
    animation: destStarFloat 20s ease-in-out infinite;
}

.dest-star-1 {
    top: 10%;
    right: 5%;
}

.dest-star-2 {
    bottom: 15%;
    left: 3%;
    width: 70px;
    height: 70px;
    animation-delay: 10s;
}

@keyframes destStarFloat {
    0%, 100% { transform: rotate(0deg) scale(1); opacity: 0.5; }
    50% { transform: rotate(180deg) scale(1.1); opacity: 0.8; }
}

.destinations-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-top: 20px;
}

.destination-card {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    min-height: 450px;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.destination-card.marrakech .destination-bg {
    background: linear-gradient(135deg, var(--primary-red) 0%, var(--terracotta) 50%, var(--deep-burgundy) 100%);
}

.destination-card.casablanca .destination-bg {
    background: linear-gradient(135deg, var(--royal-blue) 0%, #1a4a6e 50%, var(--dark-brown) 100%);
}

.destination-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transition: transform 0.5s ease;
}

.destination-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M30 0L60 30L30 60L0 30Z' fill='none' stroke='rgba(255,255,255,0.1)' stroke-width='1'/%3E%3C/svg%3E");
    background-size: 60px 60px;
}

.destination-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
}

.destination-card:hover .destination-bg {
    transform: scale(1.05);
}

.destination-content {
    position: relative;
    z-index: 2;
    padding: 40px;
    height: 100%;
    display: flex;
    flex-direction: column;
    color: white;
}

.destination-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 20px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.destination-card:hover .destination-icon {
    background: var(--warm-gold);
    transform: scale(1.1) rotate(5deg);
}

.destination-title {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.destination-subtitle {
    font-size: 1rem;
    opacity: 0.8;
    margin-bottom: 15px;
    font-style: italic;
}

.destination-desc {
    font-size: 1rem;
    line-height: 1.6;
    opacity: 0.9;
    margin-bottom: 20px;
    flex-grow: 1;
}

.destination-landmarks {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 25px;
}

.landmark-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(5px);
    padding: 8px 14px;
    border-radius: 20px;
    font-size: 0.85rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.landmark-tag:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
}

.landmark-tag i {
    font-size: 0.75rem;
}

.btn-destination {
    background: var(--warm-gold);
    color: var(--dark-brown);
    padding: 14px 28px;
    border-radius: 30px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    align-self: flex-start;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-destination:hover {
    background: var(--desert-sand);
    transform: translateX(5px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.4);
}

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

    .destination-card {
        min-height: 400px;
    }

    .destination-title {
        font-size: 2rem;
    }
}

/* About Section */
.about {
    background: linear-gradient(135deg, var(--primary-red) 0%, var(--deep-burgundy) 50%, var(--dark-brown) 100%);
    color: var(--cream);
    position: relative;
    overflow: hidden;
}

.about-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M40 0L80 40L40 80L0 40Z' fill='none' stroke='rgba(212,175,55,0.08)' stroke-width='1'/%3E%3Cpath d='M40 15L65 40L40 65L15 40Z' fill='none' stroke='rgba(212,175,55,0.05)' stroke-width='1'/%3E%3C/svg%3E");
    background-size: 80px 80px;
    pointer-events: none;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.about-text .section-badge {
    background: rgba(212, 175, 55, 0.2);
    border-color: rgba(212, 175, 55, 0.3);
    color: var(--warm-gold);
}

.about-text .section-badge i {
    color: var(--warm-gold);
}

.about-text .section-title {
    color: var(--cream);
}

.about-description {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 32px;
    opacity: 0.9;
}

.about-highlights {
    margin-bottom: 40px;
}

.highlight {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
    font-weight: 500;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    transition: all 0.3s ease;
}

.highlight:hover {
    background: rgba(212, 175, 55, 0.1);
    transform: translateX(10px);
    border-color: rgba(212, 175, 55, 0.4);
}

.highlight-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--warm-gold), var(--terracotta));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1rem;
    flex-shrink: 0;
}

.highlight i {
    color: var(--warm-gold);
    font-size: 1.1rem;
}

/* Moroccan Monument Illustration */
.about-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.moroccan-monument {
    position: relative;
    width: 350px;
    height: 450px;
}

.monument-arch {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 280px;
    background: linear-gradient(135deg, var(--warm-gold), var(--desert-sand));
    border-radius: 100px 100px 0 0;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.arch-inner {
    position: absolute;
    top: 40px;
    left: 50%;
    transform: translateX(-50%);
    width: 140px;
    height: 200px;
    background: linear-gradient(135deg, var(--primary-red), var(--deep-burgundy));
    border-radius: 70px 70px 0 0;
}

.arch-inner::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 140px;
    background: linear-gradient(180deg, rgba(212, 175, 55, 0.3), transparent);
    border-radius: 50px 50px 0 0;
}

.arch-door {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 120px;
    background: var(--dark-brown);
    border-radius: 40px 40px 0 0;
    border: 3px solid var(--warm-gold);
    border-bottom: none;
}

.monument-minaret {
    position: absolute;
    right: 20px;
    bottom: 80px;
    width: 60px;
    height: 200px;
}

.minaret-top {
    width: 30px;
    height: 30px;
    background: var(--warm-gold);
    margin: 0 auto;
    clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
    margin-bottom: -5px;
}

.minaret-body {
    width: 60px;
    height: 170px;
    background: linear-gradient(135deg, var(--terracotta), var(--primary-red));
    border-radius: 5px 5px 0 0;
    position: relative;
    overflow: hidden;
}

.minaret-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: repeating-linear-gradient(
        0deg,
        transparent,
        transparent 15px,
        rgba(212, 175, 55, 0.3) 15px,
        rgba(212, 175, 55, 0.3) 17px
    );
}

.floating-elements {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.float-star {
    position: absolute;
    background: linear-gradient(135deg, var(--warm-gold), var(--desert-sand));
    clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
    animation: floatStar 10s ease-in-out infinite;
}

.float-1 {
    width: 30px;
    height: 30px;
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.float-2 {
    width: 20px;
    height: 20px;
    top: 30%;
    right: 5%;
    animation-delay: 3s;
}

.float-3 {
    width: 25px;
    height: 25px;
    bottom: 40%;
    left: 5%;
    animation-delay: 6s;
}

.float-diamond {
    position: absolute;
    width: 25px;
    height: 40px;
    background: linear-gradient(180deg, var(--warm-gold), transparent);
    clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
    animation: floatDiamond 12s ease-in-out infinite;
}

.float-4 {
    top: 20%;
    right: 15%;
}

@keyframes floatStar {
    0%, 100% { transform: translateY(0) rotate(0deg); opacity: 0.6; }
    50% { transform: translateY(-20px) rotate(180deg); opacity: 1; }
}

@keyframes floatDiamond {
    0%, 100% { transform: translateY(0) scale(1); opacity: 0.5; }
    50% { transform: translateY(-15px) scale(1.1); opacity: 0.8; }
}

/* CTA Section */
.cta {
    position: relative;
    background: linear-gradient(135deg, var(--warm-gold) 0%, var(--terracotta) 50%, var(--primary-red) 100%);
    color: var(--cream);
    text-align: center;
    overflow: hidden;
}

.cta-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M50 0L100 50L50 100L0 50Z' fill='none' stroke='rgba(255,255,255,0.1)' stroke-width='1'/%3E%3Cpath d='M50 20L80 50L50 80L20 50Z' fill='none' stroke='rgba(255,255,255,0.06)' stroke-width='1'/%3E%3Ccircle cx='50' cy='50' r='10' fill='none' stroke='rgba(255,255,255,0.05)' stroke-width='1'/%3E%3C/svg%3E");
    background-size: 100px 100px;
    animation: ctaPatternShift 40s linear infinite;
}

@keyframes ctaPatternShift {
    0% { background-position: 0 0; }
    100% { background-position: 100px 100px; }
}

.cta-decoration {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.cta-star {
    position: absolute;
    background: rgba(255, 255, 255, 0.2);
    clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
    animation: ctaStarFloat 15s ease-in-out infinite;
}

.cta-star-1 {
    width: 60px;
    height: 60px;
    top: 10%;
    left: 10%;
}

.cta-star-2 {
    width: 40px;
    height: 40px;
    top: 20%;
    right: 15%;
    animation-delay: 5s;
}

.cta-star-3 {
    width: 50px;
    height: 50px;
    bottom: 15%;
    left: 20%;
    animation-delay: 10s;
}

@keyframes ctaStarFloat {
    0%, 100% { transform: rotate(0deg) scale(1); opacity: 0.2; }
    50% { transform: rotate(180deg) scale(1.2); opacity: 0.4; }
}

.cta-arch {
    position: absolute;
    border: 3px solid rgba(255, 255, 255, 0.15);
    border-radius: 50px 50px 0 0;
    border-bottom: none;
}

.cta-arch-1 {
    width: 100px;
    height: 150px;
    bottom: -50px;
    right: 10%;
    animation: ctaArchPulse 8s ease-in-out infinite;
}

.cta-arch-2 {
    width: 70px;
    height: 100px;
    bottom: -30px;
    left: 8%;
    animation: ctaArchPulse 8s ease-in-out infinite;
    animation-delay: 4s;
}

@keyframes ctaArchPulse {
    0%, 100% { opacity: 0.15; transform: translateY(0); }
    50% { opacity: 0.3; transform: translateY(-10px); }
}

.cta-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    font-size: 2rem;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    animation: ctaIconPulse 3s ease-in-out infinite;
}

@keyframes ctaIconPulse {
    0%, 100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4); }
    50% { transform: scale(1.05); box-shadow: 0 0 30px 10px rgba(255, 255, 255, 0.2); }
}

.cta-feature-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 10px;
    font-size: 1.2rem;
    color: white;
    transition: all 0.3s ease;
}

.cta-feature:hover .cta-feature-icon {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

.cta-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="moroccan" x="0" y="0" width="20" height="20" patternUnits="userSpaceOnUse"><path d="M10,0 L20,10 L10,20 L0,10 Z" fill="none" stroke="rgba(212,175,55,0.1)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23moroccan)"/></svg>');
}

.cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(107, 30, 42, 0.8);
}

.cta-content {
    position: relative;
    z-index: 2;
}

.cta-title {
    font-family: var(--font-display);
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 24px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.cta-subtitle {
    font-size: 1.3rem;
    margin-bottom: 40px;
    opacity: 0.9;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-button-container {
    margin-bottom: 60px;
}

.cta-features {
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
}

.cta-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 500;
    opacity: 0.8;
}

.cta-feature i {
    color: var(--warm-gold);
    font-size: 1.2rem;
}

/* Contact Section */
.contact {
    background: var(--cream);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    margin-top: 60px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 20px;
    text-decoration: none;
    padding: 15px;
    border-radius: 12px;
    transition: var(--transition-smooth);
}

a.contact-item:hover {
    background: rgba(139, 38, 53, 0.05);
    transform: translateX(10px);
}

[dir="rtl"] a.contact-item:hover {
    transform: translateX(-10px);
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-red), var(--deep-burgundy));
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--cream);
    font-size: 1.5rem;
}

.contact-details h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--dark-brown);
    margin-bottom: 4px;
}

.contact-details p {
    color: rgba(60, 36, 20, 0.7);
}

/* Contact Form */
.contact-form {
    background: white;
    padding: 40px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(139, 38, 53, 0.1);
}

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

.form-group input,
.form-group textarea,
.form-group select,
.contact-form select {
    width: 100%;
    padding: 16px 20px;
    border: 2px solid rgba(139, 38, 53, 0.1);
    border-radius: 12px;
    font-size: 1rem;
    transition: var(--transition-smooth);
    background: var(--cream);
    color: var(--dark-brown);
    font-family: var(--font-primary);
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    cursor: pointer;
}

.form-group select,
.contact-form select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%233C2414' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 44px;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus,
.contact-form select:focus {
    outline: none;
    border-color: var(--primary-red);
    box-shadow: 0 0 0 3px rgba(139, 38, 53, 0.1);
}

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

/* Footer */
.footer {
    background: var(--dark-brown);
    color: var(--cream);
    padding: 80px 0 40px;
}

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

.footer-brand {
    max-width: 300px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.footer-logo i {
    color: var(--warm-gold);
    font-size: 1.8rem;
}

.footer-description {
    opacity: 0.8;
    line-height: 1.6;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.footer-column h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--warm-gold);
}

.footer-column ul {
    list-style: none;
}

.footer-column li {
    margin-bottom: 12px;
}

.footer-column a {
    color: var(--cream);
    text-decoration: none;
    opacity: 0.8;
    transition: var(--transition-smooth);
}

.footer-column a:hover {
    opacity: 1;
    color: var(--warm-gold);
}

.social-links {
    display: flex;
    gap: 16px;
}

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(212, 175, 55, 0.2);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
}

.social-link:hover {
    background: var(--warm-gold);
    color: var(--dark-brown) !important;
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    opacity: 0.6;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 60px;
        text-align: center;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-links {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 80px;
        flex-direction: column;
        background: var(--primary-red);
        width: 100%;
        text-align: center;
        transition: var(--transition-smooth);
        box-shadow: var(--shadow-soft);
        padding: 40px 0;
        gap: 20px;
    }

    .nav-menu.active {
        left: 0;
    }

    .hamburger {
        display: flex;
    }

    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active .bar:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }

    .hero-title {
        font-size: 3rem;
    }

    .section-title {
        font-size: 2.5rem;
    }

    .cta-title {
        font-size: 2.8rem;
    }

    .hero-stats {
        justify-content: center;
        gap: 30px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 16px;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .cta-features {
        gap: 30px;
    }

    .footer-links {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    /* Phone Mockup Mobile */
    .phone-mockup {
        width: 250px;
        height: 500px;
    }

    .deco-star {
        display: none;
    }

    /* Hide some decorative elements on mobile */
    .moroccan-arch,
    .monument-silhouettes {
        display: none;
    }

    .moroccan-star,
    .moroccan-diamond {
        opacity: 0.08;
    }
}

@media (max-width: 480px) {
    :root {
        --section-padding: 80px 0;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .cta-title {
        font-size: 2.2rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 20px;
    }
    
    .cta-features {
        flex-direction: column;
        gap: 20px;
    }
    
    .phone-mockup {
        width: 200px;
        height: 400px;
    }
}

/* =================== PRODUCT DEMO VIDEO SECTION =================== */
.demo-section {
    background: linear-gradient(135deg, var(--deep-burgundy) 0%, var(--primary-red) 30%, var(--dark-brown) 100%);
    position: relative;
    overflow: hidden;
    padding: 120px 0;
}

.demo-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.demo-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M40 0L80 40L40 80L0 40Z' fill='none' stroke='rgba(212,175,55,0.08)' stroke-width='1'/%3E%3Cpath d='M40 15L65 40L40 65L15 40Z' fill='none' stroke='rgba(212,175,55,0.05)' stroke-width='1'/%3E%3Ccircle cx='40' cy='40' r='8' fill='none' stroke='rgba(212,175,55,0.04)' stroke-width='1'/%3E%3C/svg%3E");
    background-size: 80px 80px;
    animation: demoPatternShift 40s linear infinite;
}

@keyframes demoPatternShift {
    0% { background-position: 0 0; }
    100% { background-position: 80px 80px; }
}

.demo-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.15) 0%, transparent 70%);
    animation: demoGlowPulse 6s ease-in-out infinite;
}

@keyframes demoGlowPulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.5; }
    50% { transform: translate(-50%, -50%) scale(1.2); opacity: 0.8; }
}

.demo-content {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.demo-text {
    color: var(--cream);
}

.demo-badge {
    background: rgba(212, 175, 55, 0.2) !important;
    border-color: rgba(212, 175, 55, 0.4) !important;
    color: var(--warm-gold) !important;
    animation: demoBadgePulse 2s ease-in-out infinite;
}

.demo-badge i {
    color: var(--warm-gold) !important;
    animation: playIconPulse 1.5s ease-in-out infinite;
}

@keyframes demoBadgePulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.4); }
    50% { box-shadow: 0 0 20px 5px rgba(212, 175, 55, 0.2); }
}

@keyframes playIconPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.2); }
}

.demo-title {
    color: var(--cream) !important;
    margin-bottom: 24px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.demo-description {
    font-size: 1.15rem;
    line-height: 1.8;
    opacity: 0.9;
    margin-bottom: 32px;
}

.demo-features {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.demo-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.05rem;
    font-weight: 500;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(212, 175, 55, 0.15);
    transition: all 0.3s ease;
}

.demo-feature:hover {
    background: rgba(212, 175, 55, 0.1);
    border-color: rgba(212, 175, 55, 0.3);
    transform: translateX(10px);
}

.demo-feature i {
    color: var(--warm-gold);
    font-size: 1.1rem;
}

/* Demo Video Wrapper */
.demo-video-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
}

.demo-video-container {
    position: relative;
    width: 100%;
    max-width: 640px;
}

.demo-video-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    background: radial-gradient(ellipse, rgba(212, 175, 55, 0.2) 0%, transparent 60%);
    animation: videoGlowPulse 4s ease-in-out infinite;
    pointer-events: none;
}

@keyframes videoGlowPulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.6; }
    50% { transform: translate(-50%, -50%) scale(1.1); opacity: 1; }
}

.demo-video-frame {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow:
        0 30px 80px rgba(0, 0, 0, 0.4),
        0 0 60px rgba(212, 175, 55, 0.15),
        inset 0 0 0 2px rgba(212, 175, 55, 0.3);
    background: var(--dark-brown);
}

.demo-video {
    width: 100%;
    height: auto;
    display: block;
    aspect-ratio: 16/9;
    object-fit: cover;
}

.demo-video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(139, 38, 53, 0.7) 0%, rgba(60, 36, 20, 0.8) 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    cursor: pointer;
    transition: all 0.4s ease;
}

.demo-video-overlay:hover {
    background: linear-gradient(135deg, rgba(139, 38, 53, 0.6) 0%, rgba(60, 36, 20, 0.7) 100%);
}

.demo-video-overlay.hidden {
    opacity: 0;
    pointer-events: none;
}

.demo-play-btn {
    position: relative;
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--warm-gold), var(--terracotta));
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 15px 50px rgba(212, 175, 55, 0.4);
}

.demo-play-btn i {
    font-size: 2.5rem;
    color: white;
    margin-left: 8px;
    position: relative;
    z-index: 2;
}

.demo-play-btn:hover {
    transform: scale(1.15);
    box-shadow: 0 20px 60px rgba(212, 175, 55, 0.5);
}

.play-ripple {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: rgba(212, 175, 55, 0.4);
    animation: rippleExpand 2s ease-out infinite;
}

.play-ripple::before,
.play-ripple::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: rgba(212, 175, 55, 0.3);
    animation: rippleExpand 2s ease-out infinite;
}

.play-ripple::before {
    animation-delay: 0.5s;
}

.play-ripple::after {
    animation-delay: 1s;
}

@keyframes rippleExpand {
    0% { transform: scale(1); opacity: 0.8; }
    100% { transform: scale(2); opacity: 0; }
}

.demo-play-text {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--cream);
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

/* Demo Video Decorations */
.demo-video-decorations {
    position: absolute;
    top: -15px;
    left: -15px;
    right: -15px;
    bottom: -15px;
    pointer-events: none;
}

.demo-corner {
    position: absolute;
    width: 50px;
    height: 50px;
    border: 3px solid var(--warm-gold);
    transition: all 0.3s ease;
}

.demo-video-container:hover .demo-corner {
    width: 60px;
    height: 60px;
}

.demo-corner-tl {
    top: 0;
    left: 0;
    border-right: none;
    border-bottom: none;
    border-radius: 12px 0 0 0;
}

.demo-corner-tr {
    top: 0;
    right: 0;
    border-left: none;
    border-bottom: none;
    border-radius: 0 12px 0 0;
}

.demo-corner-bl {
    bottom: 0;
    left: 0;
    border-right: none;
    border-top: none;
    border-radius: 0 0 0 12px;
}

.demo-corner-br {
    bottom: 0;
    right: 0;
    border-left: none;
    border-top: none;
    border-radius: 0 0 12px 0;
}

/* Floating Elements */
.demo-floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.demo-float {
    position: absolute;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--warm-gold), var(--terracotta));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
    animation: demoFloat 5s ease-in-out infinite;
}

.demo-float i {
    color: white;
    font-size: 1.2rem;
}

.demo-float-1 {
    top: -25px;
    right: 10%;
    animation-delay: 0s;
}

.demo-float-2 {
    bottom: 15%;
    left: -25px;
    width: 45px;
    height: 45px;
    animation-delay: 1.5s;
}

.demo-float-3 {
    bottom: -20px;
    right: 20%;
    width: 40px;
    height: 40px;
    animation-delay: 3s;
}

@keyframes demoFloat {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-15px) rotate(10deg); }
}

/* Demo Section Responsive */
@media (max-width: 1024px) {
    .demo-content {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
    }

    .demo-text {
        order: 1;
    }

    .demo-video-wrapper {
        order: 2;
    }

    .demo-features {
        align-items: center;
    }

    .demo-feature {
        max-width: 300px;
        width: 100%;
        justify-content: center;
    }

    .demo-feature:hover {
        transform: translateY(-5px);
    }
}

@media (max-width: 768px) {
    .demo-section {
        padding: 80px 0;
    }

    .demo-play-btn {
        width: 80px;
        height: 80px;
    }

    .demo-play-btn i {
        font-size: 2rem;
    }

    .demo-corner {
        width: 35px;
        height: 35px;
    }

    .demo-float {
        display: none;
    }

    .demo-video-decorations {
        top: -10px;
        left: -10px;
        right: -10px;
        bottom: -10px;
    }

    .demo-glow {
        width: 400px;
        height: 400px;
    }
}

@media (max-width: 480px) {
    .demo-video-frame {
        border-radius: 16px;
    }

    .demo-corner {
        width: 25px;
        height: 25px;
    }

    .demo-play-btn {
        width: 70px;
        height: 70px;
    }

    .demo-play-btn i {
        font-size: 1.8rem;
        margin-left: 5px;
    }

    .demo-play-text {
        font-size: 0.9rem;
    }
}

/* RTL Support for Demo Section */
[dir="rtl"] .demo-feature:hover {
    transform: translateX(-10px);
}

[dir="rtl"] .demo-play-btn i {
    margin-left: 0;
    margin-right: 8px;
}

/* Video Section */
.video-section {
    background: linear-gradient(135deg, var(--cream) 0%, #fff 50%, var(--desert-sand) 100%);
    position: relative;
    overflow: hidden;
    padding: 100px 0;
}

.video-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M40 0L80 40L40 80L0 40Z' fill='none' stroke='rgba(139,38,53,0.04)' stroke-width='1'/%3E%3Cpath d='M40 15L65 40L40 65L15 40Z' fill='none' stroke='rgba(212,175,55,0.05)' stroke-width='1'/%3E%3C/svg%3E");
    background-size: 80px 80px;
    pointer-events: none;
}

.video-decoration {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.video-star {
    position: absolute;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.15), rgba(198, 93, 7, 0.1));
    clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
    animation: videoStarFloat 20s ease-in-out infinite;
}

.video-star-1 {
    width: 80px;
    height: 80px;
    top: 10%;
    left: 5%;
}

.video-star-2 {
    width: 60px;
    height: 60px;
    bottom: 15%;
    right: 8%;
    animation-delay: 10s;
}

@keyframes videoStarFloat {
    0%, 100% { transform: rotate(0deg) scale(1); opacity: 0.5; }
    50% { transform: rotate(180deg) scale(1.15); opacity: 0.8; }
}

.video-section .section-header {
    position: relative;
    z-index: 2;
}

/* Video Carousel */
.video-carousel {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    z-index: 2;
}

.video-container {
    position: relative;
    max-width: 900px;
    width: 100%;
    margin: 0 auto;
    z-index: 2;
    overflow: hidden;
}

.video-carousel-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    width: 100%;
}

.video-slide {
    min-width: 100%;
    opacity: 0.5;
    transform: scale(0.95);
    transition: all 0.5s ease;
}

.video-slide.active {
    opacity: 1;
    transform: scale(1);
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--warm-gold), var(--terracotta));
    border: none;
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(212, 175, 55, 0.3);
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-btn:hover {
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 8px 30px rgba(212, 175, 55, 0.4);
}

.carousel-btn:active {
    transform: translateY(-50%) scale(0.95);
}

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

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

.carousel-indicators {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 30px;
    z-index: 2;
    position: relative;
}

.carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(139, 38, 53, 0.2);
    border: 2px solid var(--primary-red);
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.carousel-dot:hover {
    background: rgba(139, 38, 53, 0.4);
    transform: scale(1.1);
}

.carousel-dot.active {
    background: var(--warm-gold);
    border-color: var(--warm-gold);
    transform: scale(1.2);
}

@media (max-width: 1100px) {
    .carousel-prev {
        left: 10px;
    }
    
    .carousel-next {
        right: 10px;
    }
    
    .carousel-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
        background: linear-gradient(135deg, rgba(212, 175, 55, 0.9), rgba(198, 93, 7, 0.9));
    }
}

@media (max-width: 768px) {
    .carousel-btn {
        width: 36px;
        height: 36px;
        font-size: 0.9rem;
    }
    
    .carousel-prev {
        left: 5px;
    }
    
    .carousel-next {
        right: 5px;
    }
    
    .carousel-indicators {
        margin-top: 20px;
    }
    
    .carousel-dot {
        width: 10px;
        height: 10px;
    }
}

.video-frame {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(139, 38, 53, 0.2);
    background: var(--dark-brown);
}

.video-frame video {
    width: 100%;
    height: auto;
    display: block;
    aspect-ratio: 16/9;
    object-fit: cover;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(139, 38, 53, 0.6) 0%, rgba(60, 36, 20, 0.7) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.4s ease;
}

.video-overlay:hover {
    background: linear-gradient(135deg, rgba(139, 38, 53, 0.5) 0%, rgba(60, 36, 20, 0.6) 100%);
}

.video-overlay.hidden {
    opacity: 0;
    pointer-events: none;
}

.play-btn {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--warm-gold), var(--terracotta));
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 40px rgba(212, 175, 55, 0.4);
}

.play-btn i {
    font-size: 2.5rem;
    color: white;
    margin-left: 8px;
}

.play-btn:hover {
    transform: scale(1.15);
    box-shadow: 0 15px 50px rgba(212, 175, 55, 0.5);
}

.play-btn::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: rgba(212, 175, 55, 0.3);
    animation: playPulse 2s ease-out infinite;
}

@keyframes playPulse {
    0% { transform: scale(1); opacity: 1; }
    100% { transform: scale(1.5); opacity: 0; }
}

.video-decorations {
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    pointer-events: none;
}

.video-corner {
    position: absolute;
    width: 60px;
    height: 60px;
    border: 3px solid var(--warm-gold);
}

.video-corner-tl {
    top: 0;
    left: 0;
    border-right: none;
    border-bottom: none;
    border-radius: 15px 0 0 0;
}

.video-corner-tr {
    top: 0;
    right: 0;
    border-left: none;
    border-bottom: none;
    border-radius: 0 15px 0 0;
}

.video-corner-bl {
    bottom: 0;
    left: 0;
    border-right: none;
    border-top: none;
    border-radius: 0 0 0 15px;
}

.video-corner-br {
    bottom: 0;
    right: 0;
    border-left: none;
    border-top: none;
    border-radius: 0 0 15px 0;
}

@media (max-width: 768px) {
    .video-section {
        padding: 80px 0;
    }

    .play-btn {
        width: 80px;
        height: 80px;
    }

    .play-btn i {
        font-size: 2rem;
        margin-left: 6px;
    }

    .video-corner {
        width: 40px;
        height: 40px;
    }

    .video-star {
        display: none;
    }
}

/* Animation Classes */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: var(--transition-smooth);
}

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

.fade-in-left {
    opacity: 0;
    transform: translateX(-30px);
    transition: var(--transition-smooth);
}

.fade-in-left.animate {
    opacity: 1;
    transform: translateX(0);
}

.fade-in-right {
    opacity: 0;
    transform: translateX(30px);
    transition: var(--transition-smooth);
}

.fade-in-right.animate {
    opacity: 1;
    transform: translateX(0);
}

.scale-in {
    opacity: 0;
    transform: scale(0.8);
    transition: var(--transition-smooth);
}

.scale-in.animate {
    opacity: 1;
    transform: scale(1);
}

/* Utility Classes */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 8px; }
.mb-2 { margin-bottom: 16px; }
.mb-3 { margin-bottom: 24px; }
.mb-4 { margin-bottom: 32px; }
.mb-5 { margin-bottom: 40px; }

.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 8px; }
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; }
.mt-4 { margin-top: 32px; }
.mt-5 { margin-top: 40px; }

/* RTL Support */
[dir="rtl"] {
    direction: rtl;
    text-align: right;
}

[dir="rtl"] .nav-menu {
    flex-direction: row-reverse;
}

[dir="rtl"] .nav-logo {
    flex-direction: row-reverse;
}

[dir="rtl"] .hero-title,
[dir="rtl"] .hero-subtitle,
[dir="rtl"] .section-title,
[dir="rtl"] .section-subtitle,
[dir="rtl"] .about-description,
[dir="rtl"] .cta-subtitle {
    text-align: right;
}

[dir="rtl"] .hero-buttons {
    flex-direction: row-reverse;
    justify-content: flex-start;
}

[dir="rtl"] .section-header {
    text-align: right !important;
}

[dir="rtl"] .feature-icon,
[dir="rtl"] .contact-icon {
    margin-right: 0;
    margin-left: 0;
}

[dir="rtl"] .contact-item {
    flex-direction: row;
}

[dir="rtl"] .footer-logo {
    flex-direction: row-reverse;
}

[dir="rtl"] .nav-menu {
    gap: 20px;
}

@media (max-width: 768px) {
    [dir="rtl"] .nav-menu {
        flex-direction: column;
    }
}

/* ======================================
   PHASE 5 & 7: FAQ & FEATURE HIGHLIGHTS CSS
   ====================================== */

/* FAQ Section Styling */
.faq-section {
    padding: var(--section-padding);
    background: linear-gradient(135deg, var(--cream) 0%, var(--desert-sand) 100%);
    position: relative;
    overflow: hidden;
}

.faq-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
    position: relative;
    z-index: 2;
}

.faq-item {
    background: white;
    border-radius: var(--border-radius);
    padding: 30px;
    box-shadow: var(--shadow-soft);
    transition: var(--transition-smooth);
    border-left: 4px solid var(--warm-gold);
}

.faq-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-medium);
}

.faq-item h3 {
    color: var(--primary-red);
    margin-bottom: 15px;
    font-size: 1.05rem;
    font-weight: 700;
    font-family: var(--font-display);
}

.faq-item p {
    color: var(--dark-brown);
    font-size: 0.95rem;
    line-height: 1.8;
}

/* Feature Highlights (List Items) */
.feature-highlights {
    list-style: none;
    margin: 15px 0 0 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.feature-highlights li {
    color: var(--primary-red);
    font-size: 0.9rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
}

.feature-highlights li:before {
    content: '✓';
    font-weight: bold;
    color: var(--primary-red);
    display: inline-block;
    width: 20px;
    text-align: center;
}

/* Update existing .feature-card to maintain UI/UX */
.feature-card {
    padding: 40px;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

/* Alt text styling for images (Phase 7) */
img[alt] {
    position: relative;
}

/* Responsive FAQ Grid */
@media (max-width: 768px) {
    .faq-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .faq-item {
        padding: 25px;
    }

    .faq-item h3 {
        font-size: 1rem;
    }

    .feature-highlights {
        gap: 6px;
    }

    .feature-card {
        padding: 30px;
    }
}

@media (max-width: 480px) {
    .faq-item {
        padding: 20px;
        border-left-width: 3px;
    }

    .faq-item h3 {
        font-size: 0.95rem;
    }

    .faq-item p {
        font-size: 0.9rem;
    }

    .feature-highlights li {
        font-size: 0.85rem;
    }
}

/* Partner Introduction Section Styling */
.partner-intro-section {
    background: linear-gradient(135deg, rgba(200, 30, 30, 0.05) 0%, rgba(240, 180, 70, 0.05) 100%);
    border-radius: 15px;
    padding: 3rem;
    margin-bottom: 3rem;
    border-left: 5px solid var(--primary-red);
}

.partner-intro-text {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 2.5rem;
    text-align: center;
}

.partner-intro-text strong {
    color: var(--primary-red);
    font-weight: 600;
}

.partner-types-grid {
    margin-bottom: 2rem;
}

.partner-types-title {
    font-size: 1.3rem;
    color: var(--primary-red);
    font-weight: 700;
    text-align: center;
    margin-bottom: 1.5rem;
    font-family: 'Playfair Display', serif;
}

.partner-types-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.partner-type-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    background: white;
    border: 2px solid var(--warm-gold);
    border-radius: 12px;
    transition: all 0.3s ease;
    text-align: center;
}

.partner-type-item:hover {
    border-color: var(--primary-red);
    background: linear-gradient(135deg, rgba(200, 30, 30, 0.05) 0%, rgba(240, 180, 70, 0.05) 100%);
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(200, 30, 30, 0.15);
}

.partner-type-item i {
    font-size: 2rem;
    color: var(--primary-red);
    margin-bottom: 0.75rem;
}

.partner-type-item p {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0;
}

.partner-links {
    text-align: center;
    padding: 1.5rem;
    background: white;
    border-radius: 12px;
    border: 1px solid var(--warm-gold);
}

.partner-links p {
    font-size: 1rem;
    color: var(--text-dark);
    line-height: 1.6;
    margin: 0;
}

.partner-links a {
    color: var(--primary-red);
    text-decoration: none;
    font-weight: 600;
    border-bottom: 2px solid var(--warm-gold);
    transition: all 0.3s ease;
}

.partner-links a:hover {
    color: var(--warm-gold);
    border-bottom-color: var(--primary-red);
}

/* Responsive Partner Section */
@media (max-width: 768px) {
    .partner-intro-section {
        padding: 2rem;
        margin-bottom: 2rem;
    }

    .partner-intro-text {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
    }

    .partner-types-list {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .partner-types-title {
        font-size: 1.15rem;
    }

    .partner-type-item {
        padding: 1rem;
    }

    .partner-type-item i {
        font-size: 1.5rem;
        margin-bottom: 0.5rem;
    }

    .partner-type-item p {
        font-size: 0.85rem;
    }

    .partner-links p {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .partner-intro-section {
        padding: 1.5rem;
        margin-bottom: 1.5rem;
    }

    .partner-intro-text {
        font-size: 0.9rem;
    }

    .partner-types-list {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }

    .partner-types-title {
        font-size: 1rem;
        margin-bottom: 1rem;
    }

    .partner-type-item {
        padding: 0.75rem;
    }

    .partner-type-item i {
        font-size: 1.25rem;
        margin-bottom: 0.35rem;
    }

    .partner-type-item p {
        font-size: 0.8rem;
    }

    .partner-links {
        padding: 1rem;
    }

    .partner-links p {
        font-size: 0.85rem;
    }
}

