/* Direct Online Booking Landing Page CSS */

/* Hero Section Specific */
.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;
}

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

.reality-check h3 {
    font-size: 1.5rem;
    color: #D9534F;
    margin-bottom: 1.5rem;
}

.reality-stats {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

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

.stat-icon {
    font-size: 1.5rem;
    width: 40px;
    text-align: center;
}

.stat-content {
    flex: 1;
}

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

.stat-desc {
    display: block;
    font-size: 0.9rem;
    color: #444444;
    margin-top: 0.25rem;
}

.solution-preview {
    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-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;
}

/* Industry Data Section */
.industry-data-section {
    padding: 100px 0;
    background: #F5F5F5;
}

.data-showcase {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.data-item {
    background: #FFFFFF;
    border: 2px solid #F5F5F5;
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.data-item:hover {
    transform: translateY(-8px);
    border-color: #93B47E;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

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

.featured-data:hover {
    transform: scale(1.02) translateY(-8px);
}

.data-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.data-number {
    display: block;
    font-size: 3rem;
    font-weight: 700;
    color: #93B47E;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.data-label {
    display: block;
    font-size: 1.25rem;
    font-weight: 700;
    color: #2E3B2C;
    margin-bottom: 1rem;
}

.data-detail {
    color: #444444;
    line-height: 1.6;
    font-size: 0.95rem;
    margin: 0;
}

/* Booking Fees Section */
.booking-fees-section {
    padding: 100px 0;
    background: #FFFFFF;
}

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

.fees-explanation h2 {
    font-size: 2.5rem;
    color: #2E3B2C;
    margin-bottom: 1rem;
}

.fees-intro {
    font-size: 1.25rem;
    color: #444444;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.fee-options {
    margin-bottom: 3rem;
}

.fee-option {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: #F8FBF6;
    border-radius: 12px;
    border-left: 4px solid #93B47E;
    transition: transform 0.3s ease;
}

.fee-option:hover {
    transform: translateX(8px);
}

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

.fee-content h4 {
    font-size: 1.25rem;
    color: #2E3B2C;
    margin-bottom: 0.75rem;
    font-weight: 700;
}

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

.fee-calculator-preview {
    background: #F5F5F5;
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid #93B47E;
}

.fee-calculator-preview h3 {
    font-size: 1.5rem;
    color: #2E3B2C;
    margin-bottom: 1.5rem;
}

.calc-example {
    gap: 1rem;
}

.calc-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid #D1D1D1;
}

.calc-label {
    color: #444444;
    font-weight: 600;
}

.calc-value {
    color: #2E3B2C;
    font-weight: 700;
}

.calc-result {
    background: #93B47E;
    color: #FFFFFF;
    padding: 1rem;
    border-radius: 8px;
    text-align: center;
    font-size: 1.1rem;
    margin-top: 1rem;
}

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

.fees-img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    max-width: 500px;
}

/* Savings Section */
.savings-section {
    padding: 100px 0;
    background: #F5F5F5;
}

.savings-comparison {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 3rem;
}

.comparison-side h3 {
    font-size: 1.75rem;
    margin-bottom: 2rem;
    text-align: center;
    padding: 1rem;
    border-radius: 12px;
}

.phone-booking h3 {
    background: #FFF5F5;
    color: #D9534F;
    border: 2px solid #D9534F;
}

.online-booking h3 {
    background: #F8FBF6;
    color: #93B47E;
    border: 2px solid #93B47E;
}

.comparison-list {
    gap: 1.5rem;
}

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

.comparison-item:hover {
    transform: translateY(-5px);
}

.comparison-item.negative {
    background: #FFF5F5;
    border: 1px solid #FFE6E6;
    box-shadow: 0 4px 15px rgba(217, 83, 79, 0.1);
}

.comparison-item.positive {
    background: #F8FBF6;
    border: 1px solid #E8F5E8;
    box-shadow: 0 4px 15px rgba(147, 180, 126, 0.1);
}

.comparison-icon {
    font-size: 2rem;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    flex-shrink: 0;
}

.negative .comparison-icon {
    background: #D9534F;
    color: #FFFFFF;
}

.positive .comparison-icon {
    background: #93B47E;
    color: #FFFFFF;
}

.comparison-content h4 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    font-weight: 700;
}

.negative .comparison-content h4 {
    color: #D9534F;
}

.positive .comparison-content h4 {
    color: #93B47E;
}

.comparison-content p {
    color: #444444;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.cost-indicator {
    display: inline-block;
    background: #D9534F;
    color: #FFFFFF;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
}

.savings-indicator {
    display: inline-block;
    background: #93B47E;
    color: #FFFFFF;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
}

/* Features Showcase Section */
.features-showcase-section {
    padding: 100px 0;
    background: #FFFFFF;
}

.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;
}

/* Section Header Styles */
.section-header {
    text-align: center;
    margin-bottom: 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

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

.section-header p {
    font-size: 1.2rem;
    color: #444444;
    margin-bottom: 0;
}

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

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-content,
    .fees-content,
    .savings-comparison {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .hero-text h1 {
        font-size: 2.75rem;
    }
    
    .hero-subtitle {
        font-size: 1.25rem;
    }
    
    .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%;
    }
    
    .reality-stats {
        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;
    }
    
    .data-showcase {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .featured-data {
        transform: none;
    }
    
    .industry-data-section,
    .booking-fees-section,
    .savings-section,
    .features-showcase-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;
    }
    
    .reality-check,
    .solution-preview {
        padding: 1rem;
    }
    
    .comparison-item,
    .fee-option {
        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;
    }
}