/* Corporation Landing Page Styles
   Template-specific only — shared booking CSS lives in combined.css
   Updated 2026-02-19 */

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

/* Nav overrides - undo main.css forced sizing */
.navbar-custom { height: auto !important; padding: 0 !important; }
.navbar-custom .container { padding: 0 12px !important; }


.hero-section {
    padding: 100px 0;
    min-height: 100vh;
    display: flex;
    align-items: center;
    color: white;
}

.feature-card {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.feature-icon {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: white;
    font-size: 1.5rem;
}

/* Override Bootstrap buttons for landing page only - scope to avoid appointment conflicts */
.hero-section .btn-primary,
.section-padding .btn-primary,
.cta-section .btn-primary {
    border: none;
    padding: 12px 30px;
    font-size: 1.1rem;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.hero-section .btn-primary:hover,
.section-padding .btn-primary:hover,
.cta-section .btn-primary:hover {
    transform: translateY(-2px);
}

.btn-outline-light {
    border: 2px solid white;
    padding: 12px 30px;
    font-size: 1.1rem;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-outline-light:hover {
    background: white;
}

.section-padding {
    padding: 80px 0;
}

.pricing-card {
    border: 2px solid #e5e7eb;
    border-radius: 16px;
    padding: 2.5rem;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
}

.pricing-card.featured {
    transform: scale(1.05);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.pricing-card.featured::before {
    content: "Most Popular";
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    padding: 6px 20px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.testimonial-card {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
}

.navbar {
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 4px -1px rgba(0, 0, 0, 0.1);
}

.navbar-brand {
    font-weight: 700;
    font-size: 1.5rem;
}

.nav-link {
    font-weight: 500;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1;
}

@media (max-width: 1024px) {
    .hero-section {
        padding: 60px 0;
    }
    .section-padding {
        padding: 60px 0;
    }
    .pricing-card.featured {
        transform: none;
        margin: 2rem 0;
    }
}
