/* Booking Website Feature Page Styles */

/* Feature Hero Section */
.feature-hero {
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
    background: #f3f4f6 !important;
}

.feature-hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.feature-hero-text {
    color: #111827;
}

.feature-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #10b981;
    color: white;
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 24px;
}

.feature-hero h1 {
    font-size: 56px;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 24px;
}

.hero-subtitle {
    font-size: 20px;
    line-height: 1.6;
    color: #4b5563;
    margin-bottom: 32px;
}

.hero-cta-group {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
}

.hero-trust-line {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #6b7280;
}

/* Website Preview */
.feature-hero-visual {
    position: relative;
}

.website-preview {
    position: relative;
    animation: float 6s ease-in-out infinite;
}

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

.preview-window {
    background: white;
    border-radius: 12px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    overflow: hidden;
}

.preview-header {
    background: #f3f4f6;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    border-bottom: 1px solid #e5e7eb;
}

.preview-dots {
    display: flex;
    gap: 6px;
}

.preview-dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #d1d5db;
}

.preview-dots span:nth-child(1) { background: #ef4444; }
.preview-dots span:nth-child(2) { background: #f59e0b; }
.preview-dots span:nth-child(3) { background: #10b981; }

.preview-title {
    font-size: 13px;
    color: #6b7280;
    font-weight: 500;
}

.preview-content {
    padding: 40px;
    background: linear-gradient(to bottom, #f9fafb, white);
}

.website-mockup {
    text-align: center;
}

.mockup-header {
    font-size: 24px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 24px;
}

.mockup-cars {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.mockup-car-card {
    background: white;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    height: 120px;
    animation: pulse 2s ease-in-out infinite;
}

.mockup-car-card:nth-child(1) { animation-delay: 0s; }
.mockup-car-card:nth-child(2) { animation-delay: 0.2s; }
.mockup-car-card:nth-child(3) { animation-delay: 0.4s; }

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.6; }
}

/* Comparison Table */
.comparison-table {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    margin-bottom: 48px;
}

.comparison-header {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 24px;
    padding: 32px;
    background: #f9fafb;
    border-bottom: 2px solid #e5e7eb;
}

.comparison-col {
    text-align: center;
}

.comparison-col h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 4px;
}

.comparison-col p {
    font-size: 14px;
    color: #6b7280;
}

.comparison-col.highlight {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    border-radius: 12px;
    padding: 16px;
    color: white;
}

.comparison-col.highlight h3,
.comparison-col.highlight p {
    color: white;
}

.comparison-row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 24px;
    padding: 20px 32px;
    border-bottom: 1px solid #e5e7eb;
    align-items: center;
}

.comparison-row:last-child {
    border-bottom: none;
}

.comparison-label {
    font-weight: 600;
    color: #111827;
}

.comparison-value {
    text-align: center;
    font-weight: 500;
}

.comparison-value.bad {
    color: #dc2626;
}

.comparison-value.good {
    color: #10b981;
}

/* Savings Calculator */
.savings-calculator {
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
    border: 2px solid #10b981;
    border-radius: 16px;
    padding: 40px;
    text-align: center;
}

.savings-calculator h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 32px;
    color: #111827;
}

.calculator-example {
    max-width: 500px;
    margin: 0 auto;
    background: white;
    border-radius: 12px;
    padding: 32px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.calc-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0;
    border-bottom: 1px solid #e5e7eb;
}

.calc-row:last-child {
    border-bottom: none;
}

.calc-row.highlight {
    background: #f0fdf4;
    margin: 0 -16px;
    padding: 16px;
    border-radius: 8px;
    border: none;
}

.calc-row span {
    font-size: 16px;
    color: #6b7280;
}

.calc-row strong {
    font-size: 20px;
    font-weight: 700;
}

.text-red {
    color: #dc2626;
}

.text-green {
    color: #10b981;
}

/* Feature Cards */
.feature-grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.feature-card-detailed {
    background: white;
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card-detailed:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.feature-card-icon {
    width: 64px;
    height: 64px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.feature-card-detailed h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #111827;
}

.feature-card-detailed > p {
    font-size: 16px;
    line-height: 1.6;
    color: #6b7280;
    margin-bottom: 20px;
}

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

.feature-benefits-list li {
    padding: 8px 0;
    padding-left: 28px;
    position: relative;
    color: #4b5563;
    font-size: 15px;
}

.feature-benefits-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: 700;
}

/* How It Works Section */
.how-it-works-section {
    padding: 80px 0;
    background: #f3f4f6;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

.step-card {
    text-align: center;
    padding: 32px 24px;
    background: #f9fafb;
    border-radius: 16px;
    transition: transform 0.3s ease;
}

.step-card:hover {
    transform: translateY(-4px);
}

.step-number {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    margin: 0 auto 20px;
}

.step-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #111827;
}

.step-card p {
    font-size: 15px;
    line-height: 1.6;
    color: #6b7280;
}

/* Pricing Add-on Section */
.pricing-addon-section {
    padding: 80px 0;
}

.addon-pricing-card {
    max-width: 600px;
    margin: 0 auto;
    background: white;
    border-radius: 24px;
    padding: 48px;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    text-align: center;
    position: relative;
}

.addon-badge-large {
    display: inline-block;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 24px;
}

.addon-pricing-card h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #111827;
}

.addon-price-large {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    margin-bottom: 8px;
}

.addon-price-large .currency {
    font-size: 32px;
    font-weight: 700;
    color: #6b7280;
    margin-top: 8px;
}

.addon-price-large .amount {
    font-size: 72px;
    font-weight: 700;
    color: #111827;
    line-height: 1;
}

.addon-price-large .period {
    font-size: 20px;
    color: #6b7280;
    margin-top: 24px;
    margin-left: 4px;
}

.addon-description {
    font-size: 16px;
    color: #6b7280;
    margin-bottom: 32px;
}

.addon-features-list {
    list-style: none;
    padding: 0;
    margin: 0 0 32px 0;
    text-align: left;
}

.addon-features-list li {
    padding: 12px 0;
    padding-left: 32px;
    position: relative;
    color: #4b5563;
    font-size: 16px;
    border-bottom: 1px solid #f3f4f6;
}

.addon-features-list li:last-child {
    border-bottom: none;
}

.addon-features-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: 700;
    font-size: 20px;
}

.addon-note {
    font-size: 14px;
    color: #6b7280;
    margin-top: 16px;
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    background: #f3f4f6;
}

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

.cta-content-center h2 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #111827;
}

.cta-content-center > p {
    font-size: 20px;
    margin-bottom: 32px;
    color: #4b5563;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-bottom: 24px;
}

.cta-note {
    font-size: 14px;
    color: #6b7280;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .feature-hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .feature-hero h1 {
        font-size: 42px;
    }
    
    .feature-grid-3 {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .steps-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .comparison-header,
    .comparison-row {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .comparison-col {
        text-align: left;
    }
    
    .comparison-value {
        text-align: left;
    }
}

@media (max-width: 768px) {
    .feature-hero {
        padding: 80px 0 60px;
    }
    
    .feature-hero h1 {
        font-size: 32px;
    }
    
    .hero-subtitle {
        font-size: 18px;
    }
    
    .hero-cta-group {
        flex-direction: column;
    }
    
    .feature-grid-3 {
        grid-template-columns: 1fr;
    }
    
    .steps-grid {
        grid-template-columns: 1fr;
    }
    
    .mockup-cars {
        grid-template-columns: 1fr;
    }
    
    .cta-content-center h2 {
        font-size: 32px;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .addon-pricing-card {
        padding: 32px 24px;
    }
    
    .addon-price-large .amount {
        font-size: 56px;
    }
}

/* Button Styles */
.btn-white {
    background: white;
    color: #111827;
    border: 2px solid #e5e7eb;
}

.btn-white:hover {
    background: #f9fafb;
    color: #111827;
    border-color: #d1d5db;
}

.btn-outline-white {
    background: transparent;
    color: #111827;
    border: 2px solid #d1d5db;
}

.btn-outline-white:hover {
    background: white;
    color: #111827;
    border-color: #9ca3af;
}

.btn-block {
    display: block;
    width: 100%;
}

/* Section Utilities */
.feature-section {
    padding: 80px 0;
    background: #f3f4f6;
}

.section-header-center {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.section-header-center h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #111827;
}

.section-header-center p {
    font-size: 20px;
    color: #6b7280;
}
