/* Landing Page CSS - Reservation Management */

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #F5F5F5 0%, #FFFFFF 100%);
    padding: 120px 0 0;
    margin-top: 80px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    position: relative;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    min-height: 80vh;
}

.hero-badge {
    display: inline-block;
    background: linear-gradient(135deg, #93B47E, #35A854);
    color: #FFFFFF;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 1.5rem;
}

.hero-text h1 {
    font-size: 3.5rem;
    color: #2E3B2C;
    margin-bottom: 1rem;
    line-height: 1.1;
    font-weight: 700;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: #444444;
    margin-bottom: 2rem;
    line-height: 1.4;
    font-weight: 400;
}

.pain-points {
    margin: 2rem 0;
    padding: 1.5rem;
    background: #FFF5F5;
    border-left: 4px solid #D9534F;
    border-radius: 8px;
}

.pain-point {
    display: flex;
    align-items: center;
    margin-bottom: 0.75rem;
    font-size: 1rem;
    color: #2E3B2C;
}

.pain-point:last-child {
    margin-bottom: 0;
}

.pain-icon {
    margin-right: 12px;
    font-size: 1.2rem;
}

.hero-solution {
    font-size: 1.25rem;
    color: #2E3B2C;
    margin: 2rem 0;
    padding: 1.5rem;
    background: #F8FBF6;
    border-left: 4px solid #93B47E;
    border-radius: 8px;
    line-height: 1.6;
}

.hero-stats {
    display: flex;
    gap: 2rem;
    margin: 2.5rem 0;
}

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

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: #93B47E;
    line-height: 1;
}

.stat-label {
    display: block;
    font-size: 14px;
    color: #444444;
    font-weight: 600;
    margin-top: 0.5rem;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin: 2rem 0 1rem 0;
}

.hero-guarantee {
    font-size: 14px;
    color: #444444;
    font-style: italic;
}

.hero-image {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
}

.dashboard-img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.2);
    transform: perspective(1000px) rotateY(-8deg) rotateX(3deg);
    transition: transform 0.3s ease;
}

.dashboard-img:hover {
    transform: perspective(1000px) rotateY(-5deg) rotateX(2deg);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.feature-callout {
    position: absolute;
    background: #FFFFFF;
    border: 2px solid #93B47E;
    border-radius: 8px;
    padding: 12px 16px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    animation: float 6s ease-in-out infinite;
}

.feature-callout:nth-child(1) {
    top: 15%;
    right: -10%;
    animation-delay: 0s;
}

.feature-callout:nth-child(2) {
    top: 50%;
    right: -15%;
    animation-delay: 2s;
}

.feature-callout:nth-child(3) {
    bottom: 20%;
    right: -10%;
    animation-delay: 4s;
}

.callout-title {
    display: block;
    font-weight: 700;
    color: #2E3B2C;
    font-size: 14px;
}

.callout-desc {
    display: block;
    color: #93B47E;
    font-size: 12px;
    font-weight: 600;
}

/* Problem/Solution Section */
.problem-solution-section {
    padding: 100px 0;
    background: #FFFFFF;
}

.section-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.problem-side h3,
.solution-side h3 {
    font-size: 2rem;
    margin-bottom: 2rem;
    text-align: center;
}

.problem-side h3 {
    color: #D9534F;
}

.solution-side h3 {
    color: #93B47E;
}

.problem-item,
.solution-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    border-radius: 12px;
    transition: transform 0.3s ease;
}

.problem-item {
    background: #FFF5F5;
    border-left: 4px solid #D9534F;
}

.solution-item {
    background: #F8FBF6;
    border-left: 4px solid #93B47E;
}

.problem-item:hover,
.solution-item:hover {
    transform: translateX(8px);
}

.problem-icon,
.solution-icon {
    font-size: 2rem;
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #FFFFFF;
}

.problem-content h4,
.solution-content h4 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: #2E3B2C;
}

.problem-content p,
.solution-content p {
    color: #444444;
    line-height: 1.6;
    margin: 0;
}

/* Features Deep Dive */
.features-deep-section {
    padding: 100px 0;
    background: #F5F5F5;
}

.features-showcase {
    margin-top: 3rem;
}

.feature-showcase-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 6rem;
    padding: 3rem;
    background: #FFFFFF;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.feature-showcase-item.reverse {
    grid-template-columns: 1fr 1fr;
}

.feature-showcase-item.reverse .feature-image {
    order: 2;
}

.feature-showcase-item.reverse .feature-details {
    order: 1;
}

.feature-img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.feature-details h3 {
    font-size: 2rem;
    color: #2E3B2C;
    margin-bottom: 1rem;
}

.feature-details p {
    font-size: 1.2rem;
    color: #444444;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.feature-benefits {
    list-style: none;
    padding: 0;
}

.feature-benefits li {
    display: flex;
    align-items: center;
    margin-bottom: 0.75rem;
    color: #2E3B2C;
    font-weight: 600;
}

.feature-benefits li::before {
    content: "✓";
    color: #93B47E;
    font-weight: 700;
    margin-right: 12px;
    font-size: 1.2rem;
}

/* Key Benefits Section */
.key-benefits-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #2E3B2C 0%, #1a251a 100%);
    color: #FFFFFF;
}

.key-benefits-section .section-header h2 {
    color: #FFFFFF;
    text-align: center;
    margin-bottom: 3rem;
}

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

.benefit-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 2.5rem 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.08);
    border-color: #93B47E;
}

.benefit-icon {
    margin-bottom: 1.5rem;
}

.icon-circle {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #93B47E, #35A854);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto;
}

.benefit-card h3 {
    font-size: 1.5rem;
    color: #FFFFFF;
    margin-bottom: 1rem;
}

.benefit-card p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.benefit-proof {
    padding: 1rem;
    background: rgba(147, 180, 126, 0.2);
    border-radius: 8px;
    border: 1px solid rgba(147, 180, 126, 0.3);
}

.proof-label {
    display: block;
    font-size: 12px;
    text-transform: uppercase;
    font-weight: 700;
    color: #93B47E;
    letter-spacing: 0.5px;
    margin-bottom: 0.25rem;
}

.proof-text {
    display: block;
    font-weight: 600;
    color: #FFFFFF;
}

/* Final CTA Section */
.final-cta-section {
    padding: 100px 0;
    background: #FFFFFF;
}

.final-cta-section .cta-content {
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
}

.final-cta-section h2 {
    font-size: 2.5rem;
    color: #2E3B2C;
    margin-bottom: 1rem;
}

.final-cta-section > .cta-content > p {
    font-size: 1.2rem;
    color: #444444;
    margin-bottom: 3rem;
}

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

.cta-option {
    background: #F5F5F5;
    border: 2px solid #F5F5F5;
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
}

.cta-option:hover {
    transform: translateY(-5px);
    border-color: #93B47E;
    background: #FFFFFF;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.featured-option {
    background: linear-gradient(145deg, #F8FBF6, #FFFFFF);
    border-color: #93B47E;
    transform: scale(1.05);
}

.featured-option:hover {
    transform: scale(1.05) translateY(-5px);
}

.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #93B47E, #35A854);
    color: #FFFFFF;
    padding: 6px 20px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cta-option-content h3 {
    font-size: 1.5rem;
    color: #2E3B2C;
    margin-bottom: 0.75rem;
}

.cta-option-content p {
    color: #444444;
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.cta-option-content .btn {
    width: 100%;
}

.cta-guarantees {
    display: flex;
    justify-content: center;
    gap: 3rem;
    padding: 2rem;
    background: #F8FBF6;
    border-radius: 12px;
}

.guarantee-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #2E3B2C;
    font-weight: 600;
}

.guarantee-icon {
    color: #93B47E;
    font-size: 1.2rem;
}

/* Animations */
@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

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

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Apply animations */
.hero-text {
    animation: slideInLeft 1s ease-out;
}

.hero-image {
    animation: slideInRight 1s ease-out 0.2s both;
}

.problem-item,
.solution-item,
.benefit-card {
    animation: fadeInUp 0.8s ease-out;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .hero-text h1 {
        font-size: 2.75rem;
    }
    
    .hero-subtitle {
        font-size: 1.25rem;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .section-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .feature-showcase-item,
    .feature-showcase-item.reverse {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .feature-showcase-item.reverse .feature-image,
    .feature-showcase-item.reverse .feature-details {
        order: unset;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .cta-options {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .featured-option {
        transform: none;
    }
    
    .featured-option:hover {
        transform: translateY(-5px);
    }
}

@media (max-width: 768px) {
    .hero-section {
        padding: 100px 0 60px;
        min-height: auto;
    }
    
    .hero-text h1 {
        font-size: 2.25rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
    }
    
    .hero-buttons .btn {
        width: 100%;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .dashboard-img {
        transform: none;
    }
    
    .feature-callout {
        position: static;
        margin: 1rem 0;
        animation: none;
    }
    
    .image-overlay {
        position: static;
        display: flex;
        flex-direction: column;
        gap: 1rem;
        margin-top: 1rem;
    }
    
    .problem-solution-section,
    .features-deep-section,
    .key-benefits-section,
    .final-cta-section {
        padding: 60px 0;
    }
    
    .feature-showcase-item {
        padding: 2rem 1.5rem;
    }
    
    .cta-guarantees {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-text h1 {
        font-size: 1.875rem;
    }
    
    .pain-points,
    .hero-solution {
        padding: 1rem;
    }
    
    .problem-item,
    .solution-item {
        flex-direction: column;
        text-align: center;
        padding: 1rem;
    }
    
    .feature-showcase-item {
        padding: 1.5rem 1rem;
    }
    
    .benefit-card {
        padding: 2rem 1.5rem;
    }
    
    .section-header h2 {
        font-size: 1.75rem;
    }
    
    .final-cta-section h2 {
        font-size: 2rem;
    }
}