/* Luxury Medical Exhibition Landing Page */

.exh-landing-container {
    font-family: var(--exh-font);
    direction: rtl;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0;
    color: var(--exh-text);
    position: relative;
    overflow: hidden;
}

/* Main Banner Section */
.exh-landing-hero {
    position: relative;
    min-height: 600px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.98) 0%,
        rgba(240, 248, 255, 0.95) 30%,
        rgba(230, 240, 255, 0.92) 60%,
        rgba(255, 255, 255, 0.98) 100%
    );
    overflow: hidden;
    position: relative;
}

/* Abstract Curved Shapes Background */
.exh-landing-hero::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -10%;
    width: 60%;
    height: 140%;
    background: 
        radial-gradient(ellipse 800px 600px at 30% 30%, rgba(135, 206, 250, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse 600px 800px at 70% 70%, rgba(176, 224, 230, 0.12) 0%, transparent 50%);
    border-radius: 50% 30% 60% 40%;
    transform: rotate(-15deg);
    animation: float 20s ease-in-out infinite;
    z-index: 1;
}

.exh-landing-hero::after {
    content: '';
    position: absolute;
    bottom: -15%;
    left: -5%;
    width: 50%;
    height: 120%;
    background: 
        radial-gradient(ellipse 700px 500px at 40% 60%, rgba(173, 216, 230, 0.1) 0%, transparent 50%);
    border-radius: 40% 60% 30% 70%;
    transform: rotate(10deg);
    animation: float 25s ease-in-out infinite reverse;
    z-index: 1;
}

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

/* Blurred Dental Imaging Devices Background */
.exh-landing-hero-bg {
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background-image: 
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 400 400"><defs><linearGradient id="grad" x1="0%" y1="0%" x2="100%" y2="100%"><stop offset="0%" style="stop-color:rgba(135,206,250,0.1);stop-opacity:1" /><stop offset="100%" style="stop-color:rgba(176,224,230,0.05);stop-opacity:1" /></linearGradient></defs><circle cx="100" cy="100" r="80" fill="url(%23grad)" opacity="0.3"/><circle cx="300" cy="200" r="60" fill="url(%23grad)" opacity="0.2"/><rect x="150" y="150" width="100" height="80" rx="10" fill="url(%23grad)" opacity="0.25" transform="rotate(15 200 190)"/></svg>');
    background-size: cover;
    background-position: center;
    filter: blur(40px) brightness(1.1);
    opacity: 0.4;
    z-index: 1;
    pointer-events: none;
}

/* Content Section - Left Side */
.exh-landing-content {
    position: relative;
    z-index: 2;
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}

.exh-landing-hero h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: #1e293b;
    line-height: 1.2;
    letter-spacing: -0.02em;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.02);
}

.exh-landing-hero h2 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #475569;
    margin-bottom: 2.5rem;
    line-height: 1.5;
    letter-spacing: -0.01em;
}

.exh-landing-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 1rem;
}

/* Form Section - Right Side (Clean White Space) */
.exh-landing-form-area {
    position: relative;
    z-index: 2;
    padding: 60px 40px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 600px;
}

/* Professional Dentist Illustration Placeholder */
.exh-dentist-illustration {
    position: absolute;
    bottom: 0;
    right: 10%;
    width: 300px;
    height: 400px;
    opacity: 0.08;
    background-image: 
        linear-gradient(135deg, rgba(59, 130, 246, 0.1) 0%, rgba(135, 206, 250, 0.05) 100%);
    border-radius: 20px;
    filter: blur(20px);
    z-index: 1;
    pointer-events: none;
}

/* Premium Surgical Lighting Effect */
.exh-surgical-light {
    position: absolute;
    top: -50px;
    right: 20%;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(30px);
    opacity: 0.6;
    z-index: 1;
    animation: lightPulse 4s ease-in-out infinite;
}

@keyframes lightPulse {
    0%, 100% {
        opacity: 0.4;
        transform: scale(1);
    }
    50% {
        opacity: 0.7;
        transform: scale(1.1);
    }
}

/* Buttons - Enhanced */
.exh-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2.5rem;
    border-radius: 12px;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    cursor: pointer;
    border: none;
    font-size: 1.0625rem;
    font-family: inherit;
    position: relative;
    overflow: hidden;
    min-height: 52px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.exh-btn-primary {
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    color: white;
}

.exh-btn-primary:hover {
    background: linear-gradient(135deg, #334155 0%, #475569 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(30, 41, 59, 0.15);
}

.exh-btn-secondary {
    background: white;
    color: #1e293b;
    border: 2px solid #e2e8f0;
}

.exh-btn-secondary:hover {
    background: #f8fafc;
    border-color: #cbd5e1;
    transform: translateY(-1px);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .exh-landing-hero {
        grid-template-columns: 1fr;
        min-height: auto;
    }
    
    .exh-landing-content {
        padding: 60px 40px 40px;
    }
    
    .exh-landing-form-area {
        padding: 40px;
        min-height: 400px;
    }
    
    .exh-landing-hero h1 {
        font-size: 2.25rem;
    }
    
    .exh-landing-hero h2 {
        font-size: 1.25rem;
    }
}

@media (max-width: 768px) {
    .exh-landing-content {
        padding: 40px 25px 30px;
    }
    
    .exh-landing-form-area {
        padding: 30px 20px;
    }
    
    .exh-landing-hero h1 {
        font-size: 1.875rem;
    }
    
    .exh-landing-hero h2 {
        font-size: 1.125rem;
    }
    
    .exh-landing-actions {
        flex-direction: column;
    }
    
    .exh-landing-actions .exh-btn {
        width: 100%;
    }
    
    .exh-dentist-illustration {
        display: none;
    }
}

/* Ultra Clean, Elegant, Medical-High-Tech Aesthetic */
.exh-landing-hero {
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.03),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

/* Crisp, Polished Look */
.exh-landing-content *,
.exh-landing-form-area * {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

