@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Cormorant+Garamond:wght@300;400;600;700&family=Inter:wght@200;300;400;500;600;700;900&display=swap');

:root {
    --qatar-maroon: #8D1538;
    --qatar-gold: #D4AF37;
    --pearl-white: #FAF9F6;
    --desert-sand: #C19A6B;
    --night-black: #0A0A0A;
    --luxury-purple: #4A148C;
    --accent-terracotta: #B85450;
    --glass-white: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
}

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

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

body {
    font-family: 'Inter', sans-serif;
    background: var(--night-black);
    color: var(--pearl-white);
    overflow-x: hidden;
    position: relative;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.noise-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.03;
    z-index: 1;
    pointer-events: none;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
}

.gradient-orbs {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 0;
    pointer-events: none;
}

.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    animation: float 20s infinite ease-in-out;
}

.orb-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--qatar-maroon), transparent);
    top: -200px;
    right: -200px;
    animation-delay: 0s;
}

.orb-2 {
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, var(--luxury-purple), transparent);
    bottom: -300px;
    left: -300px;
    animation-delay: 5s;
}

.orb-3 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, var(--qatar-gold), transparent);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: 10s;
    opacity: 0.3;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(30px, -30px) scale(1.1); }
    66% { transform: translate(-20px, 20px) scale(0.9); }
}

.navigation {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 2rem 4rem;
    background: linear-gradient(180deg, rgba(10, 10, 10, 0.9) 0%, rgba(10, 10, 10, 0) 100%);
    backdrop-filter: blur(20px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.navigation.scrolled {
    padding: 1rem 4rem;
    background: rgba(10, 10, 10, 0.95);
}

.nav-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1600px;
    margin: 0 auto;
}

.logo-text {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.5rem;
    letter-spacing: 2px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.logo-souq {
    background: linear-gradient(135deg, var(--qatar-gold), var(--desert-sand));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
}

.logo-ai {
    color: var(--pearl-white);
    margin-left: 0.2rem;
    font-weight: 700;
}

.logo-text:hover {
    transform: scale(1.05);
}

.nav-menu {
    display: flex;
    gap: 3rem;
}

.nav-link {
    position: relative;
    color: var(--pearl-white);
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 2px;
    transition: all 0.3s ease;
}

.nav-link span {
    position: relative;
    display: inline-block;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--qatar-gold);
    transition: width 0.3s ease;
}

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

.luxury-btn {
    position: relative;
    padding: 1rem 2.5rem;
    background: transparent;
    border: 1px solid var(--qatar-gold);
    color: var(--qatar-gold);
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 2px;
    cursor: none;
    overflow: hidden;
    transition: all 0.3s ease;
}

.luxury-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--qatar-gold);
    transition: left 0.3s ease;
    z-index: -1;
}

.luxury-btn:hover {
    color: var(--night-black);
}

.luxury-btn:hover::before {
    left: 0;
}

.btn-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 120%;
    height: 120%;
    background: radial-gradient(circle, var(--qatar-gold), transparent);
    opacity: 0;
    transform: translate(-50%, -50%);
    filter: blur(20px);
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.luxury-btn:hover .btn-glow {
    opacity: 0.3;
}

.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

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

#particle-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hero-content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 4rem;
    align-items: center;
}

.hero-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(5rem, 15vw, 12rem);
    line-height: 0.9;
    margin-bottom: 2rem;
}

.mask-text {
    position: relative;
    display: inline-block;
    background: linear-gradient(135deg, var(--qatar-gold), var(--desert-sand), var(--qatar-maroon));
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 8s ease infinite;
    filter: contrast(1.2) brightness(1.1);
}

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

.accent-text {
    color: var(--qatar-gold);
    margin-left: 1rem;
}

.hero-subtitle {
    margin-bottom: 2rem;
    overflow: hidden;
}

.subtitle-reveal {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    font-weight: 300;
    letter-spacing: 0.5rem;
    animation: revealText 1s ease-out forwards;
}

.gold-accent {
    color: var(--qatar-gold);
    font-weight: 600;
    margin: 0 1rem;
}

@keyframes revealText {
    from {
        transform: translateY(100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.hero-description {
    font-size: 1.125rem;
    line-height: 1.8;
    margin-bottom: 3rem;
    max-width: 500px;
    opacity: 0.8;
}

.hero-cta {
    display: flex;
    gap: 2rem;
}

.primary-cta, .secondary-cta {
    position: relative;
    padding: 1.25rem 2.5rem;
    background: transparent;
    border: 1px solid var(--qatar-gold);
    color: var(--qatar-gold);
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: none;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.primary-cta {
    background: var(--qatar-gold);
    color: var(--night-black);
}

.primary-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
}

.cta-inner {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.cta-arrow {
    transition: transform 0.3s ease;
}

.primary-cta:hover .cta-arrow {
    transform: translateX(5px);
}

.secondary-cta {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.play-icon {
    width: 20px;
    height: 20px;
    position: relative;
}

.play-triangle {
    width: 0;
    height: 0;
    border-left: 10px solid var(--qatar-gold);
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
    margin-left: 3px;
}

.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.floating-card {
    position: absolute;
    background: var(--glass-white);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 1.5rem;
    animation: floatCard 6s infinite ease-in-out;
}

.card-1 {
    top: -50px;
    right: 100px;
    animation-delay: 0s;
}

.card-2 {
    bottom: -50px;
    left: 100px;
    animation-delay: 3s;
}

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

.card-image {
    width: 200px;
    height: 120px;
    background: linear-gradient(135deg, var(--qatar-maroon), var(--luxury-purple));
    border-radius: 10px;
    margin-bottom: 1rem;
}

.card-content {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.card-label {
    font-size: 0.75rem;
    letter-spacing: 2px;
    opacity: 0.7;
}

.card-value {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--qatar-gold);
}

.voice-sphere {
    position: relative;
    width: 300px;
    height: 300px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.sphere-glow {
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, var(--qatar-gold), transparent);
    opacity: 0.2;
    filter: blur(40px);
    animation: pulse 3s infinite ease-in-out;
}

.sphere-core {
    width: 150px;
    height: 150px;
    background: radial-gradient(circle at 30% 30%, var(--qatar-gold), var(--qatar-maroon));
    border-radius: 50%;
    box-shadow: 0 0 60px rgba(212, 175, 55, 0.5);
}

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

.sound-waves {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.wave {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    border: 1px solid var(--qatar-gold);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    animation: wave 3s infinite ease-out;
}

.wave:nth-child(2) {
    animation-delay: 1s;
}

.wave:nth-child(3) {
    animation-delay: 2s;
}

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

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    animation: bounce 2s infinite ease-in-out;
}

.scroll-line {
    width: 1px;
    height: 60px;
    background: linear-gradient(180deg, transparent, var(--qatar-gold));
    position: relative;
    overflow: hidden;
}

.scroll-line::after {
    content: '';
    position: absolute;
    top: -20px;
    left: 0;
    width: 100%;
    height: 20px;
    background: var(--qatar-gold);
    animation: scrollDown 2s infinite ease-in-out;
}

@keyframes scrollDown {
    0% { top: -20px; }
    100% { top: 60px; }
}

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

.scroll-text {
    font-size: 0.75rem;
    letter-spacing: 3px;
    opacity: 0.7;
}

.vision-section {
    position: relative;
    padding: 8rem 4rem;
    background: linear-gradient(180deg, var(--night-black) 0%, #1a0a0a 100%);
}

.section-wrapper {
    max-width: 1600px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 5rem;
}

.section-label {
    font-size: 0.875rem;
    letter-spacing: 4px;
    color: var(--qatar-gold);
    margin-bottom: 1rem;
}

.section-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(3rem, 8vw, 6rem);
    line-height: 1;
}

.title-word {
    display: inline-block;
    margin: 0 0.5rem;
}

.gradient-text {
    background: linear-gradient(90deg, var(--qatar-gold), var(--desert-sand));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.vision-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.vision-card {
    position: relative;
    padding: 3rem 2rem;
    background: var(--glass-white);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.vision-card:hover {
    transform: translateY(-10px);
    border-color: var(--qatar-gold);
    box-shadow: 0 20px 40px rgba(212, 175, 55, 0.2);
}

.card-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top right, var(--qatar-maroon), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.vision-card:hover .card-bg {
    opacity: 0.1;
}

.card-icon {
    position: relative;
    width: 80px;
    height: 80px;
    margin-bottom: 2rem;
}

.icon-ring {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 2px solid var(--qatar-gold);
    border-radius: 50%;
    animation: rotate 10s linear infinite;
}

.icon-core {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 40px;
    height: 40px;
    background: var(--qatar-gold);
    border-radius: 50%;
    transform: translate(-50%, -50%);
}

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

.vision-card h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2rem;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    color: var(--qatar-gold);
}

.vision-card p {
    font-size: 1rem;
    line-height: 1.8;
    opacity: 0.8;
}

.card-number {
    position: absolute;
    bottom: 2rem;
    right: 2rem;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 4rem;
    color: var(--qatar-gold);
    opacity: 0.1;
}

.tech-section {
    position: relative;
    padding: 8rem 4rem;
    background: var(--night-black);
    overflow: hidden;
}

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

.tech-header {
    text-align: center;
    margin-bottom: 5rem;
}

.tech-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(3rem, 8vw, 6rem);
}

.title-mask {
    position: relative;
    display: inline-block;
}

.highlight {
    color: var(--qatar-gold);
    position: relative;
}

.highlight::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--qatar-gold);
    animation: expand 1s ease-out forwards;
}

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

.tech-showcase {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.tech-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 3rem;
    color: var(--qatar-gold);
    margin-bottom: 0.5rem;
}

.stat-number::after {
    content: '%';
    font-size: 2rem;
    margin-left: 0.25rem;
}

.stat-item:nth-child(2) .stat-number::after {
    content: 's';
}

.stat-item:nth-child(3) .stat-number::after {
    content: '+';
}

.stat-label {
    font-size: 0.875rem;
    letter-spacing: 2px;
    opacity: 0.7;
}

.tech-description {
    margin-bottom: 2rem;
}

.tech-description p {
    font-size: 1.125rem;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.tech-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.feature {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.feature-icon {
    width: 10px;
    height: 10px;
    background: var(--qatar-gold);
    border-radius: 50%;
}

.tech-demo {
    position: relative;
}

.demo-screen {
    background: var(--glass-white);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    overflow: hidden;
}

.screen-header {
    padding: 1rem;
    background: rgba(255, 255, 255, 0.02);
    border-bottom: 1px solid var(--glass-border);
}

.screen-dots {
    display: flex;
    gap: 0.5rem;
}

.screen-dots span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--qatar-gold);
    opacity: 0.5;
}

.screen-content {
    height: 400px;
    position: relative;
    overflow: hidden;
}

.ai-visualization {
    position: relative;
    width: 100%;
    height: 100%;
}

#ai-canvas {
    width: 100%;
    height: 100%;
}

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

.scan-line {
    position: absolute;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--qatar-gold), transparent);
    animation: scan 3s infinite linear;
}

@keyframes scan {
    0% { top: 0; }
    100% { top: 100%; }
}

.detection-box {
    position: absolute;
    top: 30%;
    left: 20%;
    width: 150px;
    height: 100px;
    border: 2px solid var(--qatar-gold);
    animation: detectPulse 2s infinite ease-in-out;
}

@keyframes detectPulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

.detection-label {
    position: absolute;
    top: 30%;
    left: 20%;
    margin-top: 110px;
    font-size: 0.75rem;
    letter-spacing: 2px;
    color: var(--qatar-gold);
}

.demo-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 120%;
    height: 120%;
    background: radial-gradient(circle, var(--qatar-gold), transparent);
    opacity: 0.1;
    filter: blur(60px);
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.experience-section {
    position: relative;
    padding: 8rem 4rem;
    background: linear-gradient(180deg, #1a0a0a 0%, var(--night-black) 100%);
}

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

.exp-header {
    text-align: center;
    margin-bottom: 5rem;
}

.exp-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(4rem, 10vw, 8rem);
    line-height: 0.9;
}

.title-line {
    display: block;
}

.outline {
    -webkit-text-stroke: 2px var(--qatar-gold);
    -webkit-text-fill-color: transparent;
}

.exp-demo {
    margin-bottom: 5rem;
}

.demo-interface {
    background: var(--glass-white);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 30px;
    padding: 3rem;
    margin-bottom: 3rem;
}

.voice-interface {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 3rem;
}

.voice-orb {
    position: relative;
    width: 120px;
    height: 120px;
    margin-bottom: 2rem;
    cursor: pointer;
}

.orb-pulse {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 2px solid var(--qatar-gold);
    border-radius: 50%;
    animation: orbPulse 2s infinite ease-out;
}

@keyframes orbPulse {
    0% { transform: scale(1); opacity: 1; }
    100% { transform: scale(1.3); opacity: 0; }
}

.orb-center {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--qatar-gold), var(--qatar-maroon));
    border-radius: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 0 40px rgba(212, 175, 55, 0.4);
}

.mic-icon {
    color: var(--night-black);
}

.voice-text {
    text-align: center;
}

.listening-text {
    font-size: 0.875rem;
    letter-spacing: 3px;
    color: var(--qatar-gold);
}

.voice-query {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-style: italic;
    margin-top: 1rem;
    color: var(--pearl-white);
}

.hidden {
    display: none;
}

.results-preview {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.result-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.result-card:hover {
    transform: translateY(-5px);
    border-color: var(--qatar-gold);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.2);
}

.result-image {
    position: relative;
    height: 200px;
}

.image-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--qatar-maroon), var(--luxury-purple));
}

.match-score {
    position: absolute;
    top: 1rem;
    right: 1rem;
    padding: 0.5rem 1rem;
    background: var(--qatar-gold);
    color: var(--night-black);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 1px;
    border-radius: 20px;
}

.result-info {
    padding: 1.5rem;
}

.result-info h4 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--qatar-gold);
}

.result-info p {
    font-size: 0.875rem;
    opacity: 0.7;
    margin-bottom: 1rem;
}

.result-tags {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.tag {
    padding: 0.25rem 0.75rem;
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    font-size: 0.75rem;
    letter-spacing: 1px;
}

.exp-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
}

.exp-feature {
    position: relative;
    padding-left: 3rem;
}

.feature-number {
    position: absolute;
    left: 0;
    top: 0;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2rem;
    color: var(--qatar-gold);
    opacity: 0.3;
}

.exp-feature h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.5rem;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    color: var(--qatar-gold);
}

.exp-feature p {
    font-size: 1rem;
    line-height: 1.6;
    opacity: 0.8;
}

.contact-section {
    position: relative;
    padding: 8rem 4rem;
    background: var(--night-black);
}

.contact-wrapper {
    max-width: 1600px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-header {
    text-align: center;
    margin-bottom: 3rem;
}

.contact-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(3rem, 8vw, 5rem);
    margin-bottom: 1rem;
}

.gold {
    color: var(--qatar-gold);
}

.contact-subtitle {
    font-size: 1.125rem;
    opacity: 0.8;
}

.luxury-form {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.form-field {
    position: relative;
}

.form-input {
    width: 100%;
    padding: 1rem 0;
    background: transparent;
    border: none;
    border-bottom: 1px solid var(--glass-border);
    color: var(--pearl-white);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-input:focus {
    outline: none;
}

.form-label {
    position: absolute;
    left: 0;
    top: 1rem;
    font-size: 1rem;
    color: var(--pearl-white);
    opacity: 0.5;
    transition: all 0.3s ease;
    pointer-events: none;
}

.form-input:focus ~ .form-label,
.form-input:not(:placeholder-shown) ~ .form-label {
    top: -0.5rem;
    font-size: 0.875rem;
    color: var(--qatar-gold);
}

.field-line {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--qatar-gold);
    transition: width 0.3s ease;
}

.form-input:focus ~ .field-line {
    width: 100%;
}

select.form-input {
    cursor: pointer;
}

select.form-input option {
    background: var(--night-black);
}

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

.submit-btn {
    position: relative;
    padding: 1.5rem 3rem;
    background: transparent;
    border: 2px solid var(--qatar-gold);
    color: var(--qatar-gold);
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
    cursor: none;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    align-self: flex-start;
}

.submit-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--qatar-gold);
    transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: -1;
}

.submit-btn:hover {
    color: var(--night-black);
}

.submit-btn:hover::before {
    left: 0;
}

.submit-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 150%;
    height: 150%;
    background: radial-gradient(circle, var(--qatar-gold), transparent);
    opacity: 0;
    transform: translate(-50%, -50%);
    filter: blur(30px);
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.submit-btn:hover .submit-glow {
    opacity: 0.4;
}

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

.map-container {
    position: relative;
    width: 100%;
    height: 500px;
    background: linear-gradient(135deg, var(--qatar-maroon), var(--luxury-purple));
    border-radius: 30px;
    overflow: hidden;
}

.map-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: repeating-linear-gradient(
        0deg,
        transparent,
        transparent 2px,
        rgba(255, 255, 255, 0.03) 2px,
        rgba(255, 255, 255, 0.03) 4px
    );
    pointer-events: none;
}

.location-marker {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.marker-pulse {
    position: absolute;
    width: 60px;
    height: 60px;
    border: 2px solid var(--qatar-gold);
    border-radius: 50%;
    animation: markerPulse 2s infinite ease-out;
    transform: translate(-50%, -50%);
    top: 50%;
    left: 50%;
}

@keyframes markerPulse {
    0% { transform: translate(-50%, -50%) scale(1); opacity: 1; }
    100% { transform: translate(-50%, -50%) scale(2); opacity: 0; }
}

.marker-core {
    width: 20px;
    height: 20px;
    background: var(--qatar-gold);
    border-radius: 50%;
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.8);
}

.location-info {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
}

.location-info h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2rem;
    letter-spacing: 3px;
    color: var(--qatar-gold);
    margin-bottom: 0.5rem;
}

.location-info p {
    font-size: 0.875rem;
    opacity: 0.8;
}

.luxury-footer {
    position: relative;
    padding: 4rem;
    background: linear-gradient(180deg, var(--night-black) 0%, #050505 100%);
    border-top: 1px solid var(--glass-border);
}

.footer-content {
    max-width: 1600px;
    margin: 0 auto;
}

.footer-main {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-logo-text {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.5rem;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

.footer-logo-text .logo-souq {
    background: linear-gradient(135deg, var(--qatar-gold), var(--desert-sand));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
}

.footer-logo-text .logo-ai {
    color: var(--pearl-white);
    margin-left: 0.2rem;
    font-weight: 700;
}

.footer-tagline {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.25rem;
    font-style: italic;
    opacity: 0.7;
}

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

.link-column h4 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.25rem;
    letter-spacing: 2px;
    color: var(--qatar-gold);
    margin-bottom: 1rem;
}

.link-column a {
    display: block;
    color: var(--pearl-white);
    text-decoration: none;
    font-size: 0.875rem;
    margin-bottom: 0.75rem;
    opacity: 0.7;
    transition: all 0.3s ease;
}

.link-column a:hover {
    opacity: 1;
    color: var(--qatar-gold);
    transform: translateX(5px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--glass-border);
}

.copyright {
    font-size: 0.875rem;
    opacity: 0.5;
    margin-bottom: 1rem;
}

.footer-decoration {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
}

.decoration-line {
    width: 50px;
    height: 1px;
    background: var(--qatar-gold);
    opacity: 0.5;
}

.decoration-dot {
    width: 8px;
    height: 8px;
    background: var(--qatar-gold);
    border-radius: 50%;
}

.cursor-follower {
    pointer-events: none;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;
}

.cursor-dot {
    position: absolute;
    width: 8px;
    height: 8px;
    background: var(--qatar-gold);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: transform 0.1s ease;
}

.cursor-ring {
    position: absolute;
    width: 30px;
    height: 30px;
    border: 1px solid var(--qatar-gold);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.3s ease;
}

.cursor-follower.hover .cursor-ring {
    width: 50px;
    height: 50px;
    border-color: var(--qatar-gold);
    background: rgba(212, 175, 55, 0.1);
}

@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-visual {
        display: none;
    }
    
    .vision-grid {
        grid-template-columns: 1fr;
    }
    
    .tech-showcase {
        grid-template-columns: 1fr;
    }
    
    .exp-features {
        grid-template-columns: 1fr;
    }
    
    .contact-wrapper {
        grid-template-columns: 1fr;
    }
    
    .contact-visual {
        display: none;
    }
}

@media (max-width: 768px) {
    .navigation {
        padding: 1rem 2rem;
    }
    
    .nav-menu {
        display: none;
    }
    
    .hero-title {
        font-size: clamp(3rem, 10vw, 6rem);
    }
    
    .section-title {
        font-size: clamp(2rem, 6vw, 4rem);
    }
    
    .results-preview {
        grid-template-columns: 1fr;
    }
}