/* Radscale Home Page Styles */

:root {
    --primary-orange: #ff5321;
    --secondary-orange: #f15e28;
    --accent-yellow: #ffc205;
    --accent-green: #56c14d;
    --accent-cyan: #00c9ea;
    --dark-text: #181818;
    --white: #ffffff;
}

/* Hero Banner Section */
.home-banner {
    position: relative;
    padding: 120px 0 80px;
    overflow: hidden;
    background: #fff;
}

.home-banner::before {
    background-image:
        radial-gradient(25.58% 36.75% at 98.07% 3.74%,
            #ff5321 0%,
            rgba(255, 83, 33, 0.1) 62.98%,
            rgba(255, 83, 33, 0) 100%
        ),
        radial-gradient(17.32% 24.96% at 0% 100%,
            #ffc205 21.82%,
            rgba(255, 194, 5, 0) 100%
        ),
        radial-gradient(24.05% 48.99% at 0% 100%,
            #56c14d 30%,
            rgba(86, 193, 77, 0) 100%
        ),
        radial-gradient(36.63% 58.37% at 0% 102.08%,
            #00c9ea 57.5%,
            rgba(0, 201, 234, 0.4) 78.36%,
            rgba(0, 201, 234, 0) 100%
        ),
        linear-gradient(90deg,
            #ffffff 26%,
            rgba(255, 255, 255, 0) 110%
        );
    background-repeat: no-repeat;
    background-position: 100% 0%;
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    bottom: 0px;
    left: 0;
    z-index: 1;
}

.home-banner::after {
    content: "";
    position: absolute;
    width: 100%;
    z-index: 1;
    height: 100%;
    bottom: 0px;
    left: 0px;
    background: url('../images/pattern.png');
    background-repeat: no-repeat;
    background-position: 0% 100%;
}

.home-banner .container {
    position: relative;
    z-index: 2;
}

.hero-content h1 {
    font-family: 'Hanken Grotesk', 'Montserrat', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    color: var(--dark-text);
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 30px;
}

.hero-features {
    list-style: none;
    padding: 0;
    margin: 30px 0;
}

.hero-features li {
    padding: 12px 0 12px 35px;
    font-size: 1rem;
    color: var(--dark-text);
    position: relative;
    line-height: 1.6;
}

.hero-features li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-green);
    font-size: 1.5rem;
    font-weight: bold;
}

.medilab-btn {
    background: var(--secondary-orange);
    color: white;
    padding: 14px 35px;
    border: none;
    border-radius: 5px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s;
    display: inline-block;
    text-decoration: none;
}

.medilab-btn:hover {
    background: var(--primary-orange);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 83, 33, 0.3);
    color: white;
}

.hero-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

/* Statistics Section */
.stats-banner {
    background: linear-gradient(135deg, var(--primary-orange) 0%, var(--secondary-orange) 100%);
    padding: 60px 0;
    margin-top: -50px;
    position: relative;
    z-index: 10;
}

.stats-banner .stat-box {
    text-align: center;
    padding: 20px;
    color: white;
}

.stats-banner .stat-number {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.stats-banner .stat-label {
    font-size: 1rem;
    opacity: 0.95;
    font-weight: 500;
}

/* About Section */
.about-section {
    padding: 80px 0;
    background: #f9f9f9;
}

.section-badge-orange {
    display: inline-block;
    background: var(--primary-orange);
    color: white;
    padding: 6px 20px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 15px;
}

.section-title-large {
    font-family: 'Hanken Grotesk', 'Montserrat', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark-text);
    margin-bottom: 25px;
}

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

.feature-list li {
    padding: 10px 0 10px 35px;
    position: relative;
    font-size: 1rem;
    color: #555;
}

.feature-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-green);
    font-size: 1.3rem;
    font-weight: bold;
}

/* Team Section */
.team-section {
    padding: 80px 0;
    background: white;
}

.team-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s;
    margin-bottom: 30px;
}

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

.team-card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.team-card-body {
    padding: 25px;
    text-align: center;
}

.team-card-body h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--dark-text);
    margin-bottom: 8px;
}

.team-card-body .position {
    color: var(--secondary-orange);
    font-size: 0.95rem;
    margin-bottom: 15px;
}

.team-social {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.team-social a {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    transition: all 0.3s;
    text-decoration: none;
}

.team-social a:hover {
    background: var(--secondary-orange);
    color: white;
}

/* Testimonials Section */
.testimonials-section {
    padding: 80px 0;
    background: #f9f9f9;
}

.testimonial-box {
    background: white;
    padding: 35px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    margin-bottom: 30px;
    position: relative;
}

.testimonial-box::before {
    content: '"';
    font-size: 5rem;
    color: var(--primary-orange);
    opacity: 0.15;
    position: absolute;
    top: 10px;
    left: 20px;
    font-family: Georgia, serif;
}

.testimonial-content {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.testimonial-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-author-info h5 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--dark-text);
    margin: 0;
}

.testimonial-author-info span {
    font-size: 0.9rem;
    color: #888;
}

/* About Page Styles */
.page-title-banner {
    background: linear-gradient(135deg, var(--primary-orange) 0%, var(--secondary-orange) 100%);
    padding: 80px 0 60px;
    position: relative;
}

.page-title {
    color: white;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.breadcrumb {
    background: transparent;
    margin: 0;
    padding: 0;
}

.breadcrumb-item a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
}

.breadcrumb-item.active {
    color: white;
}

.breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.7);
}

.about-images {
    margin-bottom: 30px;
}

.about-overlay-img {
    position: absolute;
    bottom: -30px;
    right: -30px;
    width: 50%;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.service-box {
    background: white;
    padding: 40px 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s;
    position: relative;
    height: 100%;
}

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

.trending-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--accent-yellow);
    color: white;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
}

.service-icon {
    display: flex;
    justify-content: center;
    align-items: center;
}

.read-more-link {
    color: var(--secondary-orange);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
}

.read-more-link:hover {
    color: var(--primary-orange);
    gap: 10px;
}

.faq-images img:first-child {
    max-height: 400px;
    object-fit: cover;
}

.faq-images img:last-child {
    max-height: 300px;
    object-fit: cover;
}

.accordion-item {
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
}

.accordion-button {
    background: white;
    color: var(--dark-text);
    font-weight: 600;
    padding: 18px 20px;
}

.accordion-button:not(.collapsed) {
    background: var(--secondary-orange);
    color: white;
}

.accordion-button:focus {
    box-shadow: none;
    border-color: var(--secondary-orange);
}

.accordion-body {
    padding: 20px;
    color: #555;
    line-height: 1.8;
}

.partner-logo {
    max-height: 60px;
    filter: grayscale(100%);
    opacity: 0.6;
    transition: all 0.3s;
}

.partner-logo:hover {
    filter: grayscale(0%);
    opacity: 1;
}

/* Compliance Badges */
.compliance-badge {
    background: white;
    padding: 25px 15px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
    transition: all 0.3s;
    height: 100%;
}

.compliance-badge:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.compliance-badge h6 {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--dark-text);
    margin: 0;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2rem;
    }

    .stats-banner .stat-number {
        font-size: 2rem;
    }

    .section-title-large {
        font-size: 1.8rem;
    }

    .page-title {
        font-size: 2rem;
    }

    .about-overlay-img {
        position: relative;
        bottom: 0;
        right: 0;
        width: 100%;
        margin-top: 20px;
    }
}
