/* ===============================================
   MODERN PROJECTS SHOWCASE DESIGN
   =============================================== */

.projects-showcase {
    padding: 120px 0;
    background: 
        linear-gradient(135deg, var(--bg-primary) 0%, var(--bg-secondary) 50%, var(--bg-tertiary) 100%);
    position: relative;
    overflow: hidden;
}

.projects-showcase::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(99, 102, 241, 0.1) 0%, transparent 40%),
        radial-gradient(circle at 80% 80%, rgba(236, 72, 153, 0.1) 0%, transparent 40%),
        radial-gradient(circle at 50% 50%, rgba(6, 182, 212, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.section-subtitle {
    text-align: center;
    color: var(--text-secondary);
    font-size: 1.2rem;
    margin-bottom: 60px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 40px;
    margin-bottom: 80px;
    position: relative;
    z-index: 2;
}

.project-item {
    background: var(--bg-glass);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    overflow: hidden;
    transition: var(--transition-medium);
    position: relative;
    min-height: 500px;
    display: flex;
    flex-direction: column;
}

.project-item.featured {
    grid-column: span 2;
    min-height: 600px;
}

.project-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-primary);
    opacity: 0;
    transition: var(--transition-medium);
    z-index: -1;
}

.project-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(99, 102, 241, 0.25);
    border-color: rgba(99, 102, 241, 0.4);
}

.project-item:hover::before {
    opacity: 0.03;
}

.project-image {
    position: relative;
    height: 250px;
    overflow: hidden;
    background: var(--bg-tertiary);
}

.project-item.featured .project-image {
    height: 320px;
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
    filter: brightness(0.9) contrast(1.1);
}

.project-item:hover .project-image img {
    transform: scale(1.05);
    filter: brightness(1) contrast(1.2);
}

.project-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        135deg,
        transparent 0%,
        rgba(0, 0, 0, 0.1) 50%,
        rgba(0, 0, 0, 0.4) 100%
    );
    display: flex;
    align-items: flex-end;
    padding: 20px;
    opacity: 0;
    transition: var(--transition-medium);
}

.project-item:hover .project-overlay {
    opacity: 1;
}

.project-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.project-tags .tag {
    background: rgba(255, 255, 255, 0.9);
    color: var(--bg-primary);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    transform: translateY(20px);
    opacity: 0;
    transition: var(--transition-medium);
}

.project-item:hover .project-tags .tag {
    transform: translateY(0);
    opacity: 1;
}

.project-tags .tag:nth-child(1) { transition-delay: 0.1s; }
.project-tags .tag:nth-child(2) { transition-delay: 0.2s; }
.project-tags .tag:nth-child(3) { transition-delay: 0.3s; }

.project-info {
    padding: 30px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.project-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 15px;
}

.project-info h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.project-item.featured .project-info h3 {
    font-size: 1.8rem;
}

.project-status {
    flex-shrink: 0;
}

.status-badge {
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.status-badge.new {
    background: linear-gradient(135deg, #10b981, #06b6d4);
    color: white;
    animation: pulseGlow 2s ease-in-out infinite;
}

.status-badge.live {
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    color: white;
}

.status-badge.private {
    background: linear-gradient(135deg, #f97316, #ec4899);
    color: white;
}

@keyframes pulseGlow {
    0%, 100% { box-shadow: 0 0 10px rgba(16, 185, 129, 0.5); }
    50% { box-shadow: 0 0 20px rgba(16, 185, 129, 0.8); }
}

.project-description {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 25px;
    flex: 1;
    font-size: 1rem;
}

.project-item.featured .project-description {
    font-size: 1.1rem;
    margin-bottom: 30px;
}

.project-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 25px;
    padding: 20px;
    background: var(--bg-tertiary);
    border-radius: 12px;
    border: 1px solid var(--glass-border);
}

.stat {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.stat-label {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
}

.stat-value {
    font-size: 0.9rem;
    color: var(--text-primary);
    font-weight: 500;
}

.project-actions {
    display: flex;
    gap: 15px;
    margin-top: auto;
}

.btn-primary,
.btn-secondary {
    padding: 12px 24px;
    border-radius: 12px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition-medium);
    border: none;
    cursor: pointer;
    font-size: 0.95rem;
    font-family: inherit;
}

.btn-primary {
    background: var(--gradient-primary);
    color: white;
    box-shadow: 0 10px 20px rgba(99, 102, 241, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 30px rgba(99, 102, 241, 0.4);
}

.btn-secondary {
    background: var(--bg-tertiary);
    color: var(--text-primary);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: var(--gradient-secondary);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(6, 182, 212, 0.3);
}

.projects-footer {
    text-align: center;
    margin-top: 60px;
}

.btn-view-more {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 36px;
    background: var(--bg-glass);
    backdrop-filter: blur(20px);
    border: 2px solid var(--glass-border);
    border-radius: 50px;
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: var(--transition-medium);
    position: relative;
    overflow: hidden;
}

.btn-view-more::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    transition: var(--transition-medium);
    z-index: -1;
}

.btn-view-more:hover::before {
    left: 0;
}

.btn-view-more:hover {
    color: white;
    border-color: transparent;
    transform: translateY(-3px);
    box-shadow: 0 20px 40px rgba(99, 102, 241, 0.3);
}

.btn-view-more i {
    transition: var(--transition-medium);
}

.btn-view-more:hover i {
    transform: translateX(5px);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .project-item.featured {
        grid-column: span 1;
        min-height: 500px;
    }
    
    .project-item.featured .project-image {
        height: 250px;
    }
    
    .project-item.featured .project-info h3 {
        font-size: 1.5rem;
    }
    
    .project-item.featured .project-description {
        font-size: 1rem;
        margin-bottom: 25px;
    }
}

@media (max-width: 768px) {
    .projects-showcase {
        padding: 80px 0;
    }
    
    .projects-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-bottom: 60px;
    }
    
    .project-item {
        min-height: 450px;
    }
    
    .project-image {
        height: 200px;
    }
    
    .project-info {
        padding: 25px;
    }
    
    .project-info h3 {
        font-size: 1.3rem;
    }
    
    .project-description {
        font-size: 0.95rem;
    }
    
    .project-stats {
        grid-template-columns: 1fr;
        gap: 15px;
        padding: 15px;
        margin-bottom: 20px;
    }
    
    .project-actions {
        flex-direction: column;
        gap: 12px;
    }
    
    .btn-primary,
    .btn-secondary {
        justify-content: center;
        text-align: center;
    }
    
    .section-subtitle {
        font-size: 1.1rem;
        margin-bottom: 40px;
        padding: 0 20px;
    }
}

@media (max-width: 480px) {
    .projects-showcase {
        padding: 60px 0;
    }
    
    .project-item {
        min-height: 420px;
    }
    
    .project-image {
        height: 180px;
    }
    
    .project-info {
        padding: 20px;
    }
    
    .project-info h3 {
        font-size: 1.2rem;
    }
    
    .project-description {
        font-size: 0.9rem;
        margin-bottom: 20px;
    }
    
    .project-header {
        flex-direction: column;
        gap: 10px;
        align-items: flex-start;
    }
    
    .btn-view-more {
        padding: 15px 30px;
        font-size: 1rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
        margin-bottom: 30px;
    }
}

/* Animation delays for staggered entry */
.project-item:nth-child(1) { animation-delay: 0.1s; }
.project-item:nth-child(2) { animation-delay: 0.2s; }
.project-item:nth-child(3) { animation-delay: 0.3s; }
.project-item:nth-child(4) { animation-delay: 0.4s; }
.project-item:nth-child(5) { animation-delay: 0.5s; }
.project-item:nth-child(6) { animation-delay: 0.6s; }

/* Loading state for images */
.project-image img[loading="lazy"] {
    transition: opacity 0.3s ease;
}

.project-image img[loading="lazy"]:not([src]) {
    opacity: 0;
}

/* Enhanced hover effects for better UX */
.project-item {
    cursor: pointer;
}

.project-item:hover .project-info h3 {
    transform: translateX(5px);
}

.project-item:hover .status-badge {
    transform: scale(1.05);
}

/* ===============================================
   SPOTLIGHT PROJECTS SECTION - ULTRA MODERN
   =============================================== */

.spotlight-projects {
    padding: 120px 0;
    position: relative;
    background: linear-gradient(135deg, 
        rgba(10, 10, 20, 0.98) 0%, 
        rgba(20, 20, 35, 0.95) 50%, 
        rgba(10, 10, 20, 0.98) 100%);
    overflow: hidden;
}

.spotlight-projects::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 25% 25%, rgba(139, 69, 255, 0.12) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(6, 182, 212, 0.12) 0%, transparent 50%),
        radial-gradient(circle at 50% 0%, rgba(236, 72, 153, 0.08) 0%, transparent 60%);
    z-index: 1;
}

.spotlight-projects .container {
    position: relative;
    z-index: 2;
}

.spotlight-intro {
    text-align: center;
    margin-bottom: 80px;
}

.spotlight-intro p {
    font-size: 1.3rem;
    color: var(--text-muted);
    margin-top: 15px;
    font-weight: 300;
    opacity: 0.9;
}

.spotlight-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(420px, 1fr));
    gap: 50px;
    max-width: 1500px;
    margin: 0 auto;
}

/* Ultra Modern Spotlight Cards */
.spotlight-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 28px;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(25px);
    position: relative;
    transform-style: preserve-3d;
    box-shadow: 
        0 10px 40px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.spotlight-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(139, 69, 255, 0.08) 0%, 
        transparent 40%, 
        rgba(6, 182, 212, 0.08) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
    border-radius: 28px;
}

.spotlight-card:hover::before {
    opacity: 1;
}

.spotlight-card:hover {
    transform: translateY(-15px) scale(1.02);
    border-color: rgba(139, 69, 255, 0.25);
    box-shadow: 
        0 40px 80px rgba(0, 0, 0, 0.3),
        0 0 60px rgba(139, 69, 255, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

/* Enhanced Spotlight Image Containers */
.spotlight-image {
    height: 320px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f0f23 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.spotlight-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    filter: brightness(0.9) contrast(1.1);
}

.spotlight-card:hover .spotlight-image img {
    transform: scale(1.15);
    filter: brightness(1) contrast(1.2);
}

/* Premium Badge System */
.spotlight-badge {
    position: absolute;
    padding: 10px 18px;
    border-radius: 25px;
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    z-index: 10;
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.spotlight-badge:not(.booking):not(.world-cup) {
    top: 25px;
    right: 25px;
}

.spotlight-badge.new {
    background: linear-gradient(135deg, #00f5ff 0%, #0066ff 100%);
    color: white;
    box-shadow: 0 8px 25px rgba(0, 245, 255, 0.4);
    animation: pulse-glow 2.5s infinite;
}

.spotlight-badge.update {
    background: linear-gradient(135deg, #ff6b6b 0%, #ff8e53 100%);
    color: white;
    box-shadow: 0 8px 25px rgba(255, 107, 107, 0.4);
}

.spotlight-badge.booking {
    background: linear-gradient(135deg, #8b45ff 0%, #c45bff 100%);
    color: white;
    box-shadow: 0 8px 25px rgba(139, 69, 255, 0.4);
    top: 70px;
    right: 25px;
    font-size: 0.7rem;
}

.coming-soon-badge {
    position: absolute;
    top: 25px;
    left: 25px;
    padding: 8px 16px;
    background: linear-gradient(135deg, #ffd700 0%, #ffaa00 100%);
    color: #1a1a2e;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    z-index: 10;
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 215, 0, 0.3);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.3);
    animation: shine 3s infinite;
}

.spotlight-badge.world-cup {
    bottom: 25px;
    right: 25px;
    top: auto;
    background: linear-gradient(135deg, #ff4757 0%, #ff3838 100%);
    color: white;
    box-shadow: 0 8px 25px rgba(255, 71, 87, 0.4);
}

/* Premium Content Styling */
.spotlight-content {
    padding: 40px;
    position: relative;
    z-index: 2;
}

.spotlight-content h3 {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #ffffff 0%, #e0e0e0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}

.spotlight-description {
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 25px;
    font-size: 1rem;
    opacity: 0.9;
}

.spotlight-date {
    color: var(--primary-cyan);
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    padding: 8px 0;
}

.spotlight-date::before {
    content: '🚀';
    margin-right: 10px;
    font-size: 1.1rem;
}

/* Premium Features Tags */
.spotlight-features {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 30px;
}

.spotlight-features span {
    padding: 8px 16px;
    background: rgba(139, 69, 255, 0.15);
    border: 1px solid rgba(139, 69, 255, 0.25);
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--primary-purple);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.spotlight-features span:hover {
    background: rgba(139, 69, 255, 0.25);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(139, 69, 255, 0.2);
}

/* Premium CTA Buttons */
.spotlight-cta {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-top: 30px;
}

.spotlight-btn {
    padding: 14px 28px;
    border-radius: 16px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.95rem;
    transition: all 0.4s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    position: relative;
    overflow: hidden;
    border: none;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.spotlight-btn:not(.outline) {
    background: linear-gradient(135deg, var(--primary-purple) 0%, var(--primary-cyan) 100%);
    color: white;
    box-shadow: 0 8px 25px rgba(139, 69, 255, 0.3);
}

.spotlight-btn.outline {
    background: transparent;
    border: 2px solid rgba(139, 69, 255, 0.4);
    color: var(--primary-purple);
    backdrop-filter: blur(10px);
}

.spotlight-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(139, 69, 255, 0.4);
}

.spotlight-btn:hover:not(.outline) {
    box-shadow: 0 15px 40px rgba(139, 69, 255, 0.5);
}

.spotlight-btn:hover.outline {
    background: rgba(139, 69, 255, 0.1);
    border-color: var(--primary-purple);
    box-shadow: 0 15px 40px rgba(139, 69, 255, 0.2);
}

/* Button Ripple Effect */
.spotlight-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.spotlight-btn:active::before {
    width: 300px;
    height: 300px;
}

/* Animation Keyframes */
@keyframes pulse-glow {
    0%, 100% { 
        box-shadow: 0 8px 25px rgba(0, 245, 255, 0.4);
        transform: scale(1);
    }
    50% { 
        box-shadow: 0 8px 35px rgba(0, 245, 255, 0.6);
        transform: scale(1.05);
    }
}

@keyframes shine {
    0%, 100% { 
        box-shadow: 0 8px 25px rgba(255, 215, 0, 0.3);
    }
    50% { 
        box-shadow: 0 8px 35px rgba(255, 215, 0, 0.5);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .spotlight-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .spotlight-card {
        border-radius: 20px;
    }
    
    .spotlight-image {
        height: 250px;
    }
    
    .spotlight-content {
        padding: 30px;
    }
    
    .spotlight-content h3 {
        font-size: 1.5rem;
    }
    
    .spotlight-cta {
        flex-direction: column;
    }
    
    .spotlight-btn {
        text-align: center;
        justify-content: center;
    }
}

/* ===============================================
   CUSTOM VISUAL DESIGNS FOR PROJECTS
   =============================================== */

/* AutoRent Maroc Visual Design */
.autorent-visual {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f0f23 100%);
    position: relative;
    overflow: hidden;
}

.autorent-logo {
    position: relative;
    z-index: 5;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.autorent-emblem {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #ff6b6b, #4ecdc4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    animation: float 3s ease-in-out infinite;
}

.autorent-emblem span {
    font-size: 2rem;
    font-weight: 900;
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.autorent-cars {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.car-icon {
    width: 40px;
    height: 25px;
    background: linear-gradient(135deg, #4ecdc4, #44a08d);
    border-radius: 12px;
    position: relative;
    animation: drive 4s ease-in-out infinite;
}

.car-icon::before {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 8px;
    width: 8px;
    height: 8px;
    background: #333;
    border-radius: 50%;
    box-shadow: 20px 0 0 #333;
}

.car-icon.car2 {
    animation-delay: 0.5s;
}

.car-icon.car3 {
    animation-delay: 1s;
}

.autorent-text {
    text-align: center;
    color: white;
}

.autorent-text span:first-child {
    display: block;
    font-size: 1.8rem;
    font-weight: 800;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.autorent-text .maroc {
    display: block;
    font-size: 1rem;
    font-weight: 600;
    opacity: 0.8;
    letter-spacing: 2px;
}

/* Sympa Tours Visual Design */
.sympa-visual {
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 50%, #1e3c72 100%);
    position: relative;
    overflow: hidden;
}

.sympa-logo {
    position: relative;
    z-index: 5;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.sympa-emblem {
    width: 85px;
    height: 85px;
    background: linear-gradient(135deg, #ff7b7b, #4ecdc4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    animation: tour-pulse 3s ease-in-out infinite;
    border: 3px solid rgba(255, 255, 255, 0.2);
}

.sympa-emblem span {
    font-size: 2.1rem;
    font-weight: 900;
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.sympa-landmarks {
    display: flex;
    gap: 12px;
    margin-bottom: 20px;
}

.landmark {
    width: 25px;
    height: 35px;
    background: linear-gradient(135deg, #ff7b7b, #ff9f9f);
    border-radius: 8px 8px 0 0;
    position: relative;
    animation: landmark-sway 4s ease-in-out infinite;
}

.landmark::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 8px;
    height: 8px;
    background: white;
    border-radius: 50%;
}

.landmark.landmark2 {
    animation-delay: 0.5s;
    height: 40px;
}

.landmark.landmark3 {
    animation-delay: 1s;
    height: 30px;
}

.sympa-text {
    text-align: center;
    color: white;
}

.sympa-text span:first-child {
    display: block;
    font-size: 1.9rem;
    font-weight: 800;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.sympa-text .tours {
    display: block;
    font-size: 1.1rem;
    font-weight: 600;
    opacity: 0.9;
    letter-spacing: 2px;
    color: #4ecdc4;
}

/* Vortex Digital Art Visual Design */
.vortex-visual {
    background: linear-gradient(135deg, #0f0f23 0%, #1a1a2e 50%, #16213e 100%);
    position: relative;
    overflow: hidden;
}

.vortex-logo {
    position: relative;
    z-index: 5;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.vortex-emblem {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, #8b5cf6, #06b6d4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    box-shadow: 0 20px 40px rgba(139, 92, 246, 0.4);
    animation: vortex-spin 4s ease-in-out infinite;
    border: 3px solid rgba(139, 92, 246, 0.3);
}

.vortex-emblem span {
    font-size: 2.2rem;
    font-weight: 900;
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.vortex-particles {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 3;
}

.particle {
    position: absolute;
    width: 6px;
    height: 6px;
    background: linear-gradient(135deg, #8b5cf6, #06b6d4);
    border-radius: 50%;
    animation: particle-float 5s ease-in-out infinite;
}

.particle1 { top: 20%; left: 20%; animation-delay: 0s; }
.particle2 { top: 30%; right: 25%; animation-delay: 1s; }
.particle3 { bottom: 35%; left: 30%; animation-delay: 2s; }
.particle4 { bottom: 25%; right: 20%; animation-delay: 3s; }
.particle5 { top: 60%; left: 60%; animation-delay: 4s; }

.vortex-text {
    text-align: center;
    color: white;
    margin-bottom: 20px;
}

.vortex-text span:first-child {
    display: block;
    font-size: 1.8rem;
    font-weight: 800;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    color: #8b5cf6;
}

.vortex-text .digital {
    display: block;
    font-size: 1rem;
    font-weight: 600;
    opacity: 0.9;
    letter-spacing: 2px;
    color: #06b6d4;
}

/* SAHARA Palace Visual Design */
.sahara-visual {
    background: linear-gradient(135deg, #2c1810 0%, #8B4513 50%, #DAA520 100%);
    position: relative;
    overflow: hidden;
}

.sahara-logo {
    position: relative;
    z-index: 5;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.sahara-emblem {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, #DAA520, #FFD700);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    box-shadow: 0 15px 40px rgba(218, 165, 32, 0.4);
    animation: desert-glow 4s ease-in-out infinite;
    border: 3px solid rgba(255, 215, 0, 0.3);
}

.sahara-emblem span {
    font-size: 2.2rem;
    font-weight: 900;
    color: #8B4513;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.sahara-text {
    text-align: center;
    color: #FFD700;
}

.sahara-text span:first-child {
    display: block;
    font-size: 2rem;
    font-weight: 900;
    text-shadow: 0 3px 6px rgba(0, 0, 0, 0.4);
    letter-spacing: 1px;
}

.sahara-text .palace {
    display: block;
    font-size: 1.2rem;
    font-weight: 700;
    opacity: 0.9;
    letter-spacing: 3px;
    color: #FFA500;
}

.sahara-dunes {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60px;
    background: linear-gradient(135deg, #8B4513 0%, #DAA520 100%);
    border-radius: 50% 50% 0 0;
    animation: wave 6s ease-in-out infinite;
}

.sahara-sun {
    position: absolute;
    top: 30px;
    right: 30px;
    width: 40px;
    height: 40px;
    background: radial-gradient(circle, #FFD700 0%, #FFA500 100%);
    border-radius: 50%;
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.6);
    animation: sun-pulse 3s ease-in-out infinite;
}

.world-cup-icon {
    position: absolute;
    top: 20px;
    left: 20px;
    width: 35px;
    height: 35px;
    animation: trophy-shine 4s ease-in-out infinite;
}

.world-cup-icon svg {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.accommodation-icons {
    position: absolute;
    bottom: 20px;
    left: 20px;
    display: flex;
    gap: 10px;
}

.accommodation-icon {
    width: 25px;
    height: 25px;
    opacity: 0.7;
    animation: accommodation-float 3s ease-in-out infinite;
}

.accommodation-icon:nth-child(2) {
    animation-delay: 0.5s;
}

.accommodation-icon:nth-child(3) {
    animation-delay: 1s;
}

.accommodation-icon svg {
    width: 100%;
    height: 100%;
    fill: #FFD700;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

/* Animation Keyframes for Custom Visuals */
@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

@keyframes drive {
    0%, 100% { transform: translateX(0px); }
    50% { transform: translateX(10px); }
}

@keyframes tour-pulse {
    0%, 100% { 
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
        transform: scale(1);
    }
    50% { 
        box-shadow: 0 20px 45px rgba(255, 123, 123, 0.4);
        transform: scale(1.05);
    }
}

@keyframes landmark-sway {
    0%, 100% { transform: translateX(0px) rotate(0deg); }
    50% { transform: translateX(3px) rotate(2deg); }
}

@keyframes vortex-spin {
    0%, 100% { 
        transform: rotate(0deg) scale(1);
        box-shadow: 0 20px 40px rgba(139, 92, 246, 0.4);
    }
    50% { 
        transform: rotate(180deg) scale(1.05);
        box-shadow: 0 25px 50px rgba(6, 182, 212, 0.4);
    }
}

@keyframes particle-float {
    0%, 100% { 
        transform: translateY(0px) scale(1);
        opacity: 0.7;
    }
    50% { 
        transform: translateY(-15px) scale(1.2);
        opacity: 1;
    }
}

@keyframes desert-glow {
    0%, 100% { 
        box-shadow: 0 15px 40px rgba(218, 165, 32, 0.4);
        transform: scale(1);
    }
    50% { 
        box-shadow: 0 20px 50px rgba(255, 215, 0, 0.6);
        transform: scale(1.05);
    }
}

@keyframes wave {
    0%, 100% { transform: translateY(0px) scaleX(1); }
    50% { transform: translateY(-5px) scaleX(1.1); }
}

@keyframes sun-pulse {
    0%, 100% { 
        box-shadow: 0 0 20px rgba(255, 215, 0, 0.6);
        transform: scale(1);
    }
    50% { 
        box-shadow: 0 0 30px rgba(255, 215, 0, 0.8);
        transform: scale(1.1);
    }
}

@keyframes trophy-shine {
    0%, 100% { transform: rotate(0deg) scale(1); }
    50% { transform: rotate(5deg) scale(1.1); }
}

@keyframes accommodation-float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-5px); }
}