/* HotelEx Specific Styles */

/* Hero Section */
.hotelex-hero-section {
    background: linear-gradient(135deg, var(--primary-black) 0%, var(--secondary-black) 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.hotelex-hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="%23ffffff10" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.1;
}

.hotelex-badge {
    display: inline-block;
    background: var(--gold-primary);
    color: var(--primary-black);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Restore original title styling */
.hotelex-title {
    font-size: 4rem;
    font-weight: 700;
    background: linear-gradient(45deg, var(--gold-primary), var(--gold-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

/* HotelEx Hero Logo Styling (right side) */
.hotelex-logo-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    min-height: 400px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    border: 1px solid var(--gold-primary);
    position: relative;
    backdrop-filter: blur(10px);
}

.hotelex-hero-logo {
    max-width: 55%;
    height: auto;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.3)) 
            sepia(1) 
            saturate(2) 
            hue-rotate(35deg) 
            brightness(1.2);
    transition: transform 0.3s ease;
}

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

@media (max-width: 768px) {
    .hotelex-logo-container {
        min-height: 300px;
    }
    
    .hotelex-hero-logo {
        max-width: 55%;
    }
}

@media (max-width: 480px) {
    .hotelex-logo-container {
        min-height: 250px;
    }
    
    .hotelex-hero-logo {
        max-width: 65%;
    }
}

.hotelex-subtitle {
    font-size: 1.8rem;
    font-weight: 400;
    color: var(--gold-secondary);
    margin-bottom: 1.5rem;
}

.hotelex-description {
    font-size: 1.2rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
}

.hotelex-hero-image {
    text-align: center;
    position: relative;
}

.platform-mockup {
    position: relative;
    display: inline-block;
    background: rgba(255, 255, 255, 0.1);
    padding: 3rem;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.mockup-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: var(--gold-primary);
    padding: 1rem;
    border-radius: 50%;
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
}

/* Features Section */
.hotelex-features-section {
    background: var(--bg-light);
}

.feature-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 15px;
    text-align: center;
    height: 100%;
    box-shadow: var(--shadow-light);
    transition: var(--transition-medium);
    border: 1px solid transparent;
}

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

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, var(--gold-primary), var(--gold-secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: white;
}

.feature-card h4 {
    color: var(--primary-black);
    margin-bottom: 1rem;
    font-weight: 600;
}

.feature-card p {
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
}

/* Process Section */
.hotelex-process-section {
    background: var(--primary-black);
    color: white;
    padding: 5rem 0 3rem 0;
}

.hotelex-process-section .section-title {
    color: white;
}

.hotelex-process-section .section-subtitle {
    color: rgba(255, 255, 255, 0.8);
}

.process-step {
    text-align: center;
    position: relative;
    background: white;
    padding: 2rem 1.5rem;
    border-radius: 15px;
    height: 280px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.process-step:hover {
    transform: translateY(-5px);
}

@media (max-width: 768px) {
    .process-step {
        height: 250px;
        padding: 1.5rem 1rem;
    }
}

@media (max-width: 480px) {
    .process-step {
        height: 220px;
        padding: 1rem;
    }
    
    .step-number {
        width: 50px;
        height: 50px;
        margin: 0 auto 1rem;
        font-size: 1.2rem;
    }
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--gold-primary);
    color: var(--primary-black);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.5rem;
    font-weight: 700;
}

.process-step h5 {
    color: var(--primary-black);
    margin-bottom: 1rem;
    font-weight: 600;
}

.process-step p {
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
    flex-grow: 1;
}

/* Benefits Section */
.hotelex-benefits-section {
    background: white;
}

.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
}

.benefit-icon {
    width: 60px;
    height: 60px;
    background: var(--gold-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    flex-shrink: 0;
}

.benefit-content h5 {
    color: var(--primary-black);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.benefit-content p {
    color: var(--text-light);
    margin: 0;
    line-height: 1.6;
}

.benefits-visual {
    text-align: center;
}

.chart-mockup {
    background: var(--bg-light);
    padding: 4rem 2rem;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--gold-primary);
}

.benefits-logo {
    max-width: 300px;
    height: auto;
    filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.2));
}

@media (max-width: 768px) {
    .benefits-logo {
        max-width: 250px;
    }
}

@media (max-width: 480px) {
    .benefits-logo {
        max-width: 200px;
    }
}

/* Demo Section */
.hotelex-demo-section {
    background: var(--bg-light);
}

.demo-options {
    margin: 3rem 0;
}

.demo-option {
    text-align: center;
    padding: 2rem 1rem;
    background: white;
    border-radius: 15px;
    height: 100%;
    box-shadow: var(--shadow-light);
    transition: var(--transition-medium);
}

.demo-option:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.demo-option h5 {
    color: var(--primary-black);
    margin: 1rem 0 0.5rem;
    font-weight: 600;
}

.demo-option p {
    color: var(--text-light);
    margin: 0;
}

/* Contact Section */
.hotelex-contact-section {
    background: white;
}

.hotelex-contact-form {
    background: var(--bg-light);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: var(--shadow-light);
}

.hotelex-contact-form .form-control,
.hotelex-contact-form .form-select {
    border-radius: 10px;
    border: 2px solid #e9ecef;
    padding: 0.75rem 1rem;
    transition: var(--transition-fast);
}

.hotelex-contact-form .form-control:focus,
.hotelex-contact-form .form-select:focus {
    border-color: var(--gold-primary);
    box-shadow: 0 0 0 0.2rem rgba(212, 175, 55, 0.25);
}

.hotelex-contact-form .form-label {
    font-weight: 600;
    color: var(--primary-black);
    margin-bottom: 0.5rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hotelex-title {
        font-size: 2.5rem;
    }
    
    .hotelex-subtitle {
        font-size: 1.4rem;
    }
    
    .hotelex-description {
        font-size: 1rem;
    }
    
    .platform-mockup {
        padding: 2rem;
    }
    
    .feature-card {
        padding: 2rem 1.5rem;
    }
    
    .benefit-item {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .hotelex-contact-form {
        padding: 2rem;
    }
}

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

.hotelex-hero-content > * {
    animation: fadeInUp 0.6s ease-out;
}

.hotelex-hero-content > *:nth-child(2) {
    animation-delay: 0.1s;
}

.hotelex-hero-content > *:nth-child(3) {
    animation-delay: 0.2s;
}

.hotelex-hero-content > *:nth-child(4) {
    animation-delay: 0.3s;
}

.hotelex-hero-content > *:nth-child(5) {
    animation-delay: 0.4s;
}

/* Custom scrollbar for better UX */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-light);
}

::-webkit-scrollbar-thumb {
    background: var(--gold-primary);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--gold-dark);
}