/* Custom CSS for MedicallyReviewed Website */

:root {
    --primary-color: #0066cc;
    --secondary-color: #003d7a;
    --success-color: #28a745;
    --light-bg: #f8f9fa;
    --dark-text: #212529;
    --muted-text: #6c757d;
}

/* General Styles */
body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    color: var(--dark-text);
    line-height: 1.6;
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Navigation */
.navbar {
    padding: 1rem 0;
    transition: all 0.3s ease;
}

.navbar-brand {
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.navbar-brand:hover {
    transform: scale(1.05);
}

.nav-link {
    font-weight: 500;
    padding: 0.5rem 1rem !important;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--primary-color) !important;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding-top: 80px;
}

.hero-image-placeholder {
    background: linear-gradient(135deg, #0066cc 0%, #003d7a 100%);
    border-radius: 20px;
    padding: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 20px 60px rgba(0, 102, 204, 0.3);
}

.hero-image-placeholder i {
    color: white;
    font-size: 150px;
}

.stat-box {
    padding: 1.5rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.stat-box:hover {
    transform: translateY(-5px);
}

/* Service Cards */
.service-card {
    transition: all 0.3s ease;
    border-radius: 15px;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15) !important;
}

.icon-box {
    width: 80px;
    height: 80px;
    background: rgba(0, 102, 204, 0.1);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Process Steps */
.process-step {
    padding: 2rem;
    background: white;
    border-radius: 15px;
    height: 100%;
    transition: all 0.3s ease;
}

.process-step:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #0066cc 0%, #003d7a 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto;
}

/* Buttons */
.btn {
    padding: 0.75rem 2rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    border: none;
}

.btn-primary {
    background: linear-gradient(135deg, #0066cc 0%, #003d7a 100%);
    box-shadow: 0 5px 15px rgba(0, 102, 204, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 102, 204, 0.4);
    background: linear-gradient(135deg, #0052a3 0%, #002d5c 100%);
}

.btn-outline-primary {
    border: 2px solid #0066cc;
    color: #0066cc;
}

.btn-outline-primary:hover {
    background: #0066cc;
    color: white;
    transform: translateY(-2px);
}

.btn-light {
    background: white;
    color: var(--primary-color);
}

.btn-light:hover {
    background: #f8f9fa;
    color: var(--secondary-color);
    transform: translateY(-2px);
}

/* Cards */
.card {
    border-radius: 15px;
    overflow: hidden;
}

/* Contact Info */
.contact-info {
    padding: 1.5rem;
}

.contact-info i {
    display: block;
}

/* Footer */
footer a:hover {
    color: white !important;
}

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

.service-card,
.process-step,
.stat-box {
    animation: fadeInUp 0.6s ease-out;
}

/* Responsive Design */
@media (max-width: 992px) {
    .hero-section {
        padding-top: 100px;
    }

    .hero-image-placeholder {
        margin-top: 2rem;
        padding: 60px;
    }

    .hero-image-placeholder i {
        font-size: 100px;
    }

    .display-4 {
        font-size: 2.5rem;
    }

    .display-5 {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .hero-section {
        padding-top: 80px;
    }

    .display-4 {
        font-size: 2rem;
    }

    .display-5 {
        font-size: 1.75rem;
    }

    .hero-image-placeholder {
        padding: 40px;
    }

    .hero-image-placeholder i {
        font-size: 80px;
    }

    .btn-lg {
        padding: 0.5rem 1.5rem;
        font-size: 1rem;
    }
}

/* Accessibility */
a:focus,
button:focus {
    outline: 2px solid #0066cc;
    outline-offset: 2px;
}

/* Print Styles */
@media print {
    .navbar,
    footer {
        display: none;
    }

    .hero-section {
        padding-top: 0;
    }
}
