/* --- Global & Typography --- */
@import url('https://fonts.googleapis.com/css2?family=Heebo:wght@300;400;700;900&display=swap');

body {
    font-family: 'Heebo', sans-serif;
    line-height: 1.7;
    color: #555;
    direction: rtl;
    text-align: right;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    color: #333;
}

.section-title {
    font-weight: 900;
    color: #0d6efd; /* Primary color */
    margin-bottom: 1rem;
}

.lead {
    font-weight: 300;
    font-size: 1.2rem;
}

.btn-primary {
    background-color: #0d6efd;
    border-color: #0d6efd;
    padding: 12px 30px;
    font-weight: 700;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: #0b5ed7;
    border-color: #0a58ca;
    transform: translateY(-2px);
}

/* --- Header --- */
.navbar-brand {
    font-size: 1.5rem;
    font-weight: 300;
}
.navbar-brand strong {
    font-weight: 700;
}
.navbar-brand .fa-tooth {
    color: #0d6efd;
}
.nav-link {
    font-weight: 700;
    color: #555;
    margin: 0 10px;
}
.nav-link:hover {
    color: #0d6efd;
}

/* --- Hero Section --- */
.hero-section {
    background: linear-gradient(rgba(13, 110, 253, 0.6), rgba(13, 110, 253, 0.6)), url('../img/hero-bg.webp') no-repeat center center;
    background-size: cover;
    padding: 100px 0;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
}
.hero-section h1 {
    color: #fff;
    font-weight: 900;
}

/* --- Demo Notice Sections --- */
.demo-notice {
    background-color: #fff3cd;
    color: #664d03;
    padding: 15px 0;
    font-weight: 500;
}
.demo-notice a {
    color: #664d03;
    font-weight: 700;
    text-decoration: underline;
}
.demo-notice-cta {
    background-color: #0d6efd;
}
.demo-notice-cta h4 {
    color: #fff;
}

/* --- About Section --- */
.about-section img {
    max-width: 100%;
    height: auto;
}

/* --- Services Section --- */
.services-section .card {
    border: none;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.services-section .card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}
.service-icon {
    font-size: 3rem;
    color: #0d6efd;
}

/* --- Testimonials Section --- */
.testimonials-section {
    background-color: #f0f7ff;
}
.testimonial-card {
    background-color: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    position: relative;
    border-left: 5px solid #0d6efd;
}
.testimonial-card::before {
    content: '\f10d';
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 2rem;
    color: #e9ecef;
    z-index: 1;
}
.testimonial-card p {
    position: relative;
    z-index: 2;
    font-style: italic;
}
.testimonial-card .author {
    font-weight: 700;
    color: #333;
    margin-top: 15px;
}

/* --- Technology Section --- */
.technology-section {
    background-color: #fff;
}
.technology-section .tech-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-top: 20px;
}
.technology-section .tech-icon {
    font-size: 2.5rem;
    color: #0d6efd;
    background-color: #e7f1ff;
    width: 70px;
    height: 70px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    flex-shrink: 0;
}
.technology-section h4 {
    font-weight: 700;
    color: #333;
    margin-bottom: 0.5rem;
}
.technology-section img {
    transition: transform 0.4s ease;
}
.technology-section .row:hover img {
    transform: scale(1.05);
}

/* --- Patient Journey Section --- */
.journey-section .journey-step {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.07);
    text-align: center;
    position: relative;
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.journey-section .journey-step:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(13, 110, 253, 0.15);
}
.journey-section .step-number {
    background-color: #0d6efd;
    color: #fff;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 900;
    margin: -50px auto 20px auto;
    border: 4px solid #f8f9fa; /* bg-light color */
}
.journey-section .step-title {
    color: #0d6efd;
    margin-bottom: 15px;
}

/* --- Contact Section --- */
.contact-info p {
    margin-bottom: 1rem;
}
.contact-info i {
    color: #0d6efd;
    margin-left: 10px;
}
.map-container {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

/* --- Footer --- */
.site-footer {
    font-size: 0.9rem;
}
.site-footer h5 {
    color: #fff;
    font-weight: 700;
}
.footer-link {
    color: #adb5bd;
    text-decoration: none;
    transition: color 0.3s ease;
}
.footer-link:hover {
    color: #fff;
}
.footer-hr {
    border-top: 1px solid #495057;
}