/* ========================================
   HERO SECTION
   ======================================== */
.hero-section {
    background: linear-gradient(135deg, var(--dc-bg) 0%, #e8f7f2 100%);
    padding: 80px 0;
    overflow: hidden;
    position: relative;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(42, 171, 126, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.hero-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    min-height: 520px;
}

.hero-content { max-width: 520px; }

.hero-badge {
    margin-bottom: 24px;
    animation: fadeInDown 0.6s ease;
}

.hero-title {
    font-size: clamp(2.2rem, 5vw, 3rem);
    font-weight: 600;
    line-height: 1.15;
    color: var(--dc-text);
    margin-bottom: 20px;
    animation: fadeInUp 0.6s ease 0.1s both;
}

.hero-title em {
    font-style: italic;
    color: var(--dc-primary);
}

.hero-subtitle {
    font-size: 16px;
    line-height: 1.8;
    color: var(--dc-muted);
    margin-bottom: 32px;
    max-width: 440px;
    animation: fadeInUp 0.6s ease 0.2s both;
}

.hero-buttons {
    display: flex;
    gap: 14px;
    align-items: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
    animation: fadeInUp 0.6s ease 0.3s both;
}

/* Hero Stats */
.hero-stats {
    display: flex;
    align-items: center;
    gap: 0;
    padding: 20px 24px;
    background: var(--dc-white);
    border-radius: var(--dc-radius);
    border: 0.5px solid var(--dc-border);
    box-shadow: var(--dc-shadow);
    width: fit-content;
    animation: fadeInUp 0.6s ease 0.4s both;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 20px;
}

.stat-num {
    font-family: var(--dc-font-heading);
    font-size: 26px;
    font-weight: 600;
    color: var(--dc-primary);
    line-height: 1;
}

.stat-label {
    font-size: 12px;
    color: var(--dc-muted);
    margin-top: 4px;
    text-align: center;
    white-space: nowrap;
}

.stat-divider {
    width: 1px;
    height: 36px;
    background: var(--dc-border);
    flex-shrink: 0;
}

/* Hero Visual */
.hero-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    animation: fadeIn 0.8s ease 0.2s both;
}

.hero-image-wrapper {
    border-radius: 120px 120px 80px 80px;
    overflow: hidden;
    width: 380px;
    height: 460px;
    box-shadow: 0 20px 60px rgba(26, 111, 168, 0.15);
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-illustration {
    width: 320px;
    height: 380px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-circle-bg {
    width: 280px;
    height: 340px;
    background: linear-gradient(150deg, #c8e3f5 0%, #a8d4ef 50%, #b5e5d0 100%);
    border-radius: 120px 120px 80px 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 20px 60px rgba(26, 111, 168, 0.18);
}

.hero-circle-bg svg {
    width: 180px;
    height: 220px;
}

/* ========================================
   SERVICES SECTION
   ======================================== */
.services-section {
    background: var(--dc-white);
}

.section-header {
    margin-bottom: 48px;
}

.services-grid {
    margin-bottom: 40px;
}

.service-card {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.service-icon-wrap {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    background: var(--dc-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    flex-shrink: 0;
}

.service-emoji {
    font-size: 24px;
    line-height: 1;
}

.service-card--mint .service-icon-wrap { background: var(--dc-accent-light); }
.service-card--soft .service-icon-wrap { background: #fef4ec; }

.service-name {
    font-size: 16px;
    font-weight: 500;
    color: var(--dc-text);
    margin-bottom: 8px;
    font-family: var(--dc-font-body);
}

.service-desc {
    font-size: 13.5px;
    line-height: 1.7;
    color: var(--dc-muted);
    margin-bottom: 12px;
    flex: 1;
}

.service-price {
    font-size: 13px;
    font-weight: 600;
    color: var(--dc-accent);
    margin-bottom: 8px;
}

.service-link {
    font-size: 13px;
    color: var(--dc-primary);
    font-weight: 500;
    text-decoration: none;
    transition: color 0.2s;
    display: inline-block;
    margin-top: auto;
}

.service-link:hover { color: var(--dc-primary-dark); }

.section-cta {
    text-align: center;
    margin-top: 40px;
}

/* ========================================
   ABOUT SECTION
   ======================================== */
.about-section {
    background: var(--dc-accent-light);
}

.about-image-wrapper {
    position: relative;
    border-radius: var(--dc-radius);
    overflow: hidden;
}

.about-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--dc-radius);
}

.about-placeholder {
    background: linear-gradient(135deg, #e6f1fb, #d0e8f8);
    border-radius: var(--dc-radius);
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.about-badge-float {
    position: absolute;
    background: var(--dc-white);
    border-radius: 10px;
    padding: 12px 20px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.about-badge-1 { bottom: 40px; left: -20px; }
.about-badge-2 { top: 40px; right: -20px; }

.about-badge-num {
    font-family: var(--dc-font-heading);
    font-size: 22px;
    font-weight: 600;
    color: var(--dc-primary);
}

.about-badge-label {
    font-size: 11px;
    color: var(--dc-muted);
    margin-top: 2px;
}

.about-features {
    list-style: none;
    margin: 24px 0 32px;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.about-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.feature-icon {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--dc-accent-light);
    color: var(--dc-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
    flex-shrink: 0;
    margin-top: 2px;
}

.feature-content {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.feature-content strong {
    font-size: 14px;
    font-weight: 500;
    color: var(--dc-text);
    display: block;
}

.feature-content span {
    font-size: 13px;
    color: var(--dc-muted);
}

/* ========================================
   DOCTORS SECTION
   ======================================== */
.doctors-section { background: var(--dc-white); }

.doctor-card {
    text-align: center;
    padding: 0;
    overflow: hidden;
}

.doctor-photo {
    height: 220px;
    background: var(--dc-bg);
    overflow: hidden;
    position: relative;
}

.doctor-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.doctor-card:hover .doctor-photo img { transform: scale(1.04); }

.doctor-avatar {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--dc-primary), var(--dc-primary-dark));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    font-weight: 600;
    color: rgba(255,255,255,0.6);
    font-family: var(--dc-font-heading);
}

.doctor-info {
    padding: 20px;
}

.doctor-name {
    font-size: 16px;
    font-weight: 500;
    color: var(--dc-text);
    margin-bottom: 4px;
    font-family: var(--dc-font-body);
}

.doctor-specialty {
    font-size: 13px;
    color: var(--dc-primary);
    font-weight: 500;
    margin-bottom: 4px;
}

.doctor-experience {
    font-size: 12px;
    color: var(--dc-muted);
    margin-bottom: 12px;
}

.doctor-link {
    font-size: 13px;
    color: var(--dc-primary);
    font-weight: 500;
    text-decoration: none;
    border: 1px solid var(--dc-primary);
    padding: 6px 16px;
    border-radius: 20px;
    display: inline-block;
    transition: all 0.2s;
}

.doctor-link:hover {
    background: var(--dc-primary);
    color: var(--dc-white);
}

/* ========================================
   TESTIMONIALS SECTION
   ======================================== */
.testimonials-section { background: var(--dc-bg); }

.testimonial-card {
    display: flex;
    flex-direction: column;
}

.testimonial-text {
    font-size: 14px;
    line-height: 1.8;
    color: var(--dc-muted);
    margin: 12px 0 20px;
    flex: 1;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: 16px;
    border-top: 0.5px solid var(--dc-border);
}

.author-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--dc-primary);
    color: var(--dc-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 600;
    flex-shrink: 0;
}

.author-name {
    font-size: 14px;
    font-weight: 500;
    color: var(--dc-text);
    display: block;
    font-style: normal;
}

.author-role {
    font-size: 12px;
    color: var(--dc-muted);
    display: block;
    margin-top: 2px;
}

/* ========================================
   BOOKING SECTION
   ======================================== */
.booking-section {
    background: var(--dc-primary-dark);
    padding: 80px 0;
}

.booking-inner {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 60px;
    align-items: center;
}

.booking-title {
    font-size: clamp(1.8rem, 4vw, 2.4rem);
    color: var(--dc-white);
    font-weight: 500;
    margin-bottom: 16px;
    font-family: var(--dc-font-heading);
}

.booking-subtitle {
    color: rgba(255,255,255,0.65);
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 28px;
}

.booking-hours {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.booking-hours li {
    font-size: 14px;
    color: rgba(255,255,255,0.6);
    display: flex;
    align-items: center;
    gap: 10px;
}

.booking-hours li span {
    color: var(--dc-accent);
    font-weight: 600;
}

.booking-form-wrapper {
    background: rgba(255,255,255,0.06);
    border: 0.5px solid rgba(255,255,255,0.12);
    border-radius: 16px;
    padding: 32px;
}

.booking-form .form-label {
    color: rgba(255,255,255,0.75);
    font-size: 12px;
}

.booking-form .form-control {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.18);
    color: var(--dc-white);
}

.booking-form .form-control::placeholder {
    color: rgba(255,255,255,0.35);
}

.booking-form .form-control:focus {
    border-color: rgba(255,255,255,0.4);
    background: rgba(255,255,255,0.15);
    box-shadow: 0 0 0 3px rgba(255,255,255,0.08);
}

.booking-form .form-control option {
    background: var(--dc-primary-dark);
    color: var(--dc-white);
}

.form-row--2col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.form-consent {
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.consent-label {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 12px;
    color: rgba(255,255,255,0.55);
    cursor: pointer;
}

.consent-label input[type="checkbox"] {
    margin-top: 2px;
    flex-shrink: 0;
}

.booking-submit {
    width: 100%;
    justify-content: center;
    margin-top: 4px;
}

.booking-status {
    padding: 10px 14px;
    border-radius: var(--dc-radius-sm);
    font-size: 13px;
    margin-bottom: 12px;
}

.booking-status.success {
    background: rgba(42, 171, 126, 0.2);
    color: #7fffd4;
    border: 1px solid rgba(42, 171, 126, 0.3);
    display: block;
}

.booking-status.error {
    background: rgba(220, 53, 69, 0.2);
    color: #ffb3b3;
    border: 1px solid rgba(220, 53, 69, 0.3);
    display: block;
}

.spinner {
    animation: spin 1s linear infinite;
    display: inline-block;
}

/* ========================================
   FOOTER
   ======================================== */
.site-footer {
    background: #0d1a28;
}

.footer-top {
    padding: 64px 0 48px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1fr;
    gap: 40px;
}

.footer-logo {
    display: inline-flex;
    align-items: center;
    font-family: var(--dc-font-heading);
    font-size: 22px;
    font-weight: 600;
    color: var(--dc-white);
    letter-spacing: -0.3px;
    text-decoration: none;
    margin-bottom: 16px;
}

.footer-desc {
    font-size: 13.5px;
    color: rgba(255,255,255,0.4);
    line-height: 1.8;
    margin-bottom: 20px;
    max-width: 280px;
}

.footer-social {
    display: flex;
    gap: 10px;
    margin-bottom: 16px;
}

.social-link {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.4);
    transition: all 0.2s;
}

.social-link:hover {
    border-color: var(--dc-primary);
    color: var(--dc-primary);
    background: rgba(26, 111, 168, 0.1);
}

.iso-badge { margin-top: 8px; }

.footer-col-title {
    font-size: 11px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: rgba(255,255,255,0.5);
    margin-bottom: 18px;
    font-family: var(--dc-font-body);
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links a {
    font-size: 13.5px;
    color: rgba(255,255,255,0.32);
    transition: color 0.2s;
    text-decoration: none;
}

.footer-links a:hover { color: rgba(255,255,255,0.7); }

.footer-contact-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 24px;
}

.footer-contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 13px;
    color: rgba(255,255,255,0.4);
}

.contact-icon {
    font-size: 14px;
    margin-top: 1px;
    flex-shrink: 0;
}

.footer-contact-list a {
    color: rgba(255,255,255,0.4);
    text-decoration: none;
    transition: color 0.2s;
}

.footer-contact-list a:hover { color: rgba(255,255,255,0.7); }

.working-hours h5 {
    font-size: 11px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255,255,255,0.35);
    margin-bottom: 10px;
    font-family: var(--dc-font-body);
}

.working-hours ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.working-hours ul li {
    font-size: 13px;
    color: rgba(255,255,255,0.35);
}

.working-hours .emergency {
    color: var(--dc-accent);
    opacity: 0.8;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.06);
    padding: 20px 0;
}

.footer-bottom-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.copyright {
    font-size: 13px;
    color: rgba(255,255,255,0.2);
}

.footer-legal-nav {
    display: flex;
    gap: 20px;
}

.footer-legal-nav a {
    font-size: 12px;
    color: rgba(255,255,255,0.2);
    transition: color 0.2s;
    text-decoration: none;
}

.footer-legal-nav a:hover { color: rgba(255,255,255,0.5); }

/* Back to top */
.back-to-top {
    position: fixed;
    bottom: 28px;
    right: 28px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--dc-primary);
    color: var(--dc-white);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(26,111,168,0.35);
    transition: all 0.2s;
    z-index: 100;
    cursor: pointer;
    border: none;
}

.back-to-top:hover {
    background: var(--dc-primary-dark);
    transform: translateY(-2px);
}

/* ========================================
   ANIMATIONS
   ======================================== */
@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-16px); }
    to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to   { opacity: 1; }
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to   { transform: rotate(360deg); }
}

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 1024px) {
    .hero-inner { grid-template-columns: 1fr; gap: 40px; text-align: center; }
    .hero-content { max-width: 100%; }
    .hero-buttons { justify-content: center; }
    .hero-stats { margin: 0 auto; }
    .hero-visual { display: none; }
    .booking-inner { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 768px) {
    .services-grid { grid-template-columns: 1fr; }
    .form-row--2col { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .stat-item { padding: 0 12px; }
    .stat-num { font-size: 20px; }
    .footer-bottom-inner { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
    .hero-stats { flex-direction: column; gap: 16px; }
    .stat-divider { width: 80%; height: 1px; }
}
