:root {
    --brown: #4b2e11;
    --brown-dark: #2e1a08;
    --brown-light: #6b4a2a;
    --brown-muted: #8b7355;
    --warm-bg: #f7f5f0;
    --beige: #ebe0d4;
    --cream: #faf8f4;
    --warm-gray: #93867b;
    --gold: #c9a96e;
    --gold-light: #e8d5b5;
    --radius: 20px;
    --radius-sm: 12px;
    --radius-lg: 28px;
    --shadow-sm: 0 2px 8px rgba(75, 46, 17, 0.06);
    --shadow: 0 8px 30px rgba(75, 46, 17, 0.08);
    --shadow-lg: 0 20px 60px rgba(75, 46, 17, 0.12);
    --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    background: var(--cream);
    color: #2d2d2d;
    overflow-x: hidden;
}

::selection {
    background: var(--brown);
    color: white;
}

.text-brown { color: var(--brown) !important; }
.text-brown-dark { color: var(--brown-dark) !important; }
.text-brown-light { color: var(--brown-light) !important; }
.text-gold { color: var(--gold) !important; }
.text-muted { color: var(--warm-gray) !important; }

.bg-brown { background-color: var(--brown) !important; }
.bg-brown-dark { background-color: var(--brown-dark) !important; }
.bg-light-warm { background-color: var(--warm-bg) !important; }
.bg-cream { background-color: var(--cream) !important; }
.bg-gold { background-color: var(--gold) !important; }
.bg-beige { background-color: var(--beige) !important; }

/* ===== HEADER ===== */
.site-header {
    background: white;
    border-bottom: 1px solid rgba(75, 46, 17, 0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(12px);
    background: rgba(255, 255, 255, 0.97);
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

/* ===== NAVBAR ===== */
.navbar-modern {
    background: #2e1a08 !important;
    padding: 0;
    box-shadow: 0 4px 20px rgba(46,26,8,0.25);
}

.navbar-modern .nav-link {
    font-weight: 500;
    letter-spacing: 0.3px;
    padding: 1rem 1.2rem;
    transition: var(--transition);
    position: relative;
    color: #fff !important;
    font-size: 0.9rem;
}

.navbar-modern .nav-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 60%;
    height: 3px;
    background: var(--gold);
    border-radius: 3px 3px 0 0;
    transition: transform 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.navbar-modern .nav-link:hover,
.navbar-modern .nav-link.active {
    color: #fff !important;
}

.navbar-modern .nav-link:hover::before,
.navbar-modern .nav-link.active::before {
    transform: translateX(-50%) scaleX(1);
}

/* ===== BUTTONS ===== */
.btn {
    border-radius: var(--radius-sm);
    padding: 0.7rem 1.8rem;
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition);
    letter-spacing: 0.2px;
    position: relative;
    overflow: hidden;
}

.btn::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:active::after {
    width: 300px;
    height: 300px;
}

.btn-brown {
    background: linear-gradient(135deg, var(--brown) 0%, var(--brown-light) 100%);
    border: none;
    color: #fff;
    box-shadow: 0 4px 15px rgba(75, 46, 17, 0.25);
}

.btn-brown:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(75, 46, 17, 0.35);
    color: #fff;
}

.btn-outline-brown {
    color: var(--brown);
    border: 2px solid var(--brown);
    background: transparent;
}

.btn-outline-brown:hover {
    background: var(--brown);
    color: #fff;
    transform: translateY(-2px);
}

.btn-gold {
    background: linear-gradient(135deg, var(--gold) 0%, #dbb978 100%);
    border: none;
    color: var(--brown-dark);
    box-shadow: 0 4px 15px rgba(201, 169, 110, 0.35);
}

.btn-gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(201, 169, 110, 0.45);
    color: var(--brown-dark);
}

.btn-lg { border-radius: var(--radius); padding: 0.9rem 2.5rem; font-size: 1rem; }
.btn-sm { border-radius: 8px; padding: 0.45rem 1.2rem; font-size: 0.8rem; }

/* ===== CARDS ===== */
.card {
    border-radius: var(--radius) !important;
    transition: var(--transition);
    border: none !important;
    background: white;
    box-shadow: var(--shadow-sm);
    overflow: hidden;
}

.card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg) !important;
}

.card-service {
    position: relative;
    padding-top: 3rem;
}

.card-service::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--gold), var(--brown-light), var(--gold));
    opacity: 0;
    transition: var(--transition);
}

.card-service:hover::before {
    opacity: 1;
}

.service-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--beige) 0%, var(--warm-bg) 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: -40px auto 1rem;
    box-shadow: 0 4px 12px rgba(75, 46, 17, 0.08);
    transition: var(--transition);
}

.card-service:hover .service-icon {
    transform: scale(1.1) rotate(-5deg);
    background: linear-gradient(135deg, var(--gold-light) 0%, var(--beige) 100%);
}

/* ===== SECTIONS ===== */
.section-padding {
    padding: 6rem 0;
}

.section-title {
    font-weight: 700;
    font-size: 2.2rem;
    color: var(--brown);
    margin-bottom: 0.75rem;
}

.section-subtitle {
    color: var(--warm-gray);
    font-size: 1.05rem;
    max-width: 600px;
    margin: 0 auto 3rem;
}

.section-divider {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--brown-light));
    border-radius: 3px;
    margin: 0 auto 1.5rem;
}

/* ===== CAROUSEL ===== */
.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 50px;
    height: 50px;
    background-size: 20px;
}

.carousel-indicators button {
    width: 10px !important;
    height: 10px !important;
    border-radius: 50% !important;
    border: 2px solid rgba(255, 255, 255, 0.5) !important;
    margin: 0 5px !important;
    background: transparent !important;
    transition: var(--transition);
}

.carousel-indicators .active {
    background: var(--gold) !important;
    border-color: var(--gold) !important;
    width: 30px !important;
    border-radius: 5px !important;
}

.carousel-item {
    transition: transform 0.6s ease-in-out, opacity 0.3s ease;
}

/* ===== ADVANTAGES ===== */
.advantage-item {
    padding: 2.5rem 1.5rem;
    text-align: center;
    background: white;
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.advantage-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--gold), var(--brown-light));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.advantage-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.advantage-item:hover::before {
    transform: scaleX(1);
}

.advantage-icon {
    width: 70px;
    height: 70px;
    background: var(--warm-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.2rem;
    font-size: 1.8rem;
    transition: var(--transition);
}

.advantage-item:hover .advantage-icon {
    background: var(--beige);
    transform: scale(1.1);
}

/* ===== STATS ===== */
.stats-section {
    background: linear-gradient(135deg, var(--brown-dark) 0%, var(--brown) 50%, var(--brown-light) 100%);
    position: relative;
    overflow: hidden;
}

.stats-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 50%, rgba(201, 169, 110, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
}

.stat-item {
    text-align: center;
    position: relative;
    z-index: 1;
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--gold);
    margin-bottom: 0.25rem;
}

.stat-label {
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
    font-size: 0.95rem;
}

/* ===== TIMELINE ===== */
.timeline {
    position: relative;
    padding-left: 2rem;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, var(--gold), var(--brown-light), var(--brown-muted));
}

.timeline-item {
    position: relative;
    padding-bottom: 2.5rem;
    padding-left: 1.5rem;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -2.4rem;
    top: 0.4rem;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--gold);
    border: 3px solid var(--warm-bg);
    box-shadow: 0 0 0 2px var(--gold);
}

.timeline-year {
    font-weight: 700;
    color: var(--gold);
    font-size: 0.9rem;
    margin-bottom: 0.25rem;
}

.timeline-text {
    color: var(--brown);
    font-weight: 500;
}

/* ===== FORM ===== */
.form-control {
    border-radius: var(--radius-sm);
    border: 2px solid #e8e4de;
    padding: 0.75rem 1.2rem;
    transition: var(--transition);
    background: white;
    font-size: 0.95rem;
}

.form-control:focus {
    border-color: var(--brown);
    box-shadow: 0 0 0 4px rgba(75, 46, 17, 0.08);
}

.form-control::placeholder {
    color: #bbb5ae;
}

/* ===== FLOATING DECOR ===== */
.decor-circle {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    opacity: 0.06;
}

/* ===== FOOTER ===== */
.site-footer {
    background: linear-gradient(180deg, var(--brown) 0%, var(--brown-dark) 100%);
    position: relative;
}

.site-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--gold), var(--brown-light), var(--gold));
}

.footer-link {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: var(--transition);
    font-size: 0.9rem;
}

.footer-link:hover {
    color: var(--gold);
    padding-left: 4px;
}

/* ===== TABLE ===== */
.table-modern {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.table-modern thead th {
    background: linear-gradient(135deg, var(--brown) 0%, var(--brown-light) 100%);
    color: #fff;
    font-weight: 600;
    font-size: 0.9rem;
    padding: 1rem 1.2rem;
    border: none;
    border-bottom: 2px solid rgba(255,255,255,0.15);
}

.table-modern tbody td {
    padding: 0.9rem 1.2rem;
    border: none;
    border-bottom: 1px solid #e8e4de;
    vertical-align: middle;
}

.table-modern tbody tr:last-child td {
    border-bottom: none;
}

.table-modern tbody tr:hover {
    background: rgba(235, 224, 212, 0.3);
}

.table-modern .table-warm {
    background: var(--warm-bg) !important;
}

.table-modern .table-warm td {
    font-weight: 600;
    color: var(--brown);
}

/* ===== BACK TO TOP ===== */
.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--brown), var(--brown-light));
    color: white;
    border: none;
    font-size: 1.3rem;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(75, 46, 17, 0.3);
    transition: var(--transition);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(75, 46, 17, 0.4);
}

/* ===== FLOATING PHONE ===== */
.floating-phone {
    position: fixed;
    bottom: 2rem;
    left: 2rem;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #25D366;
    color: white;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: var(--transition);
    text-decoration: none;
    animation: pulsePhone 2s infinite;
}

@keyframes pulsePhone {
    0%, 100% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4); }
    50% { box-shadow: 0 4px 35px rgba(37, 211, 102, 0.7); }
}

.floating-phone:hover {
    transform: scale(1.1);
    color: white;
}

/* ===== SCROLL REVEAL ===== */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* ===== BADGE SECTION DECOR ===== */
/* ===== REVIEWS SCROLL ===== */
.reviews-viewport {
    overflow: hidden;
    border-radius: 20px;
    margin: 0 20px;
}
.reviews-track {
    display: flex;
    gap: 20px;
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.review-tile {
    flex: 0 0 calc(33.333% - 14px);
    min-width: 0;
    background: #fff;
    border: 1.5px solid rgba(75,46,17,0.1);
    border-radius: 20px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    min-height: 180px;
    transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
    box-shadow: 0 2px 12px rgba(75,46,17,0.05);
}
.review-tile:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(75,46,17,0.1);
    border-color: rgba(201,169,110,0.4);
}
.review-tile-header {
    display: flex;
    align-items: center;
    gap: 12px;
}
.review-tile-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--brown);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-weight: 700;
    font-size: 1rem;
    flex-shrink: 0;
}
.review-tile-author {
    font-weight: 700;
    color: var(--brown);
    font-size: 0.85rem;
    margin-bottom: 2px;
}
.review-tile-date {
    font-size: 0.7rem;
    color: var(--warm-gray);
}
.review-tile-text {
    font-size: 0.85rem;
    color: var(--brown-light);
    line-height: 1.6;
    flex: 1;
}
.reviews-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1.5px solid rgba(75,46,17,0.15);
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.4rem;
    color: #2d2d2d;
    z-index: 2;
    transition: all 0.3s;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    line-height: 1;
    padding: 0;
}
.reviews-arrow:hover {
    background: var(--gold);
    color: #fff;
    border-color: var(--gold);
    box-shadow: 0 4px 16px rgba(201,169,110,0.3);
}
.reviews-arrow-prev { left: 0; }
.reviews-arrow-next { right: 0; }
.reviews-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
}
.reviews-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(75,46,17,0.15);
    border: none;
    cursor: pointer;
    transition: all 0.3s;
    padding: 0;
}
.reviews-dot.active {
    background: var(--gold);
    transform: scale(1.2);
}
@media (max-width: 992px) {
    .review-tile { flex: 0 0 calc(50% - 10px); }
}
@media (max-width: 576px) {
    .review-tile { flex: 0 0 100%; }
    .reviews-arrow-prev { left: -10px; }
    .reviews-arrow-next { right: -10px; }
}

/* ===== SERVICES SCROLL ===== */
.services-viewport {
    overflow: hidden;
    border-radius: 20px;
    margin: 0 20px;
}
.services-track {
    display: flex;
    gap: 20px;
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.service-tile {
    flex: 0 0 calc(25% - 15px);
    min-width: 0;
    background: #fff;
    border: 1.5px solid rgba(75,46,17,0.1);
    border-radius: 20px;
    padding: 28px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 10px;
    min-height: 220px;
    transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
    box-shadow: 0 2px 12px rgba(75,46,17,0.05);
}
.service-tile:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(75,46,17,0.1);
    border-color: rgba(201,169,110,0.4);
}
.service-tile-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: rgba(201,169,110,0.15);
    border: 1.5px solid rgba(201,169,110,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.services-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1.5px solid rgba(75,46,17,0.15);
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.4rem;
    color: #2d2d2d;
    z-index: 2;
    transition: all 0.3s;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    line-height: 1;
    padding: 0;
}
.services-arrow:hover {
    background: var(--gold);
    color: #fff;
    border-color: var(--gold);
    box-shadow: 0 4px 16px rgba(201,169,110,0.3);
}
.services-arrow-prev { left: 0; }
.services-arrow-next { right: 0; }
.services-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
}
.services-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(75,46,17,0.15);
    border: none;
    cursor: pointer;
    transition: all 0.3s;
    padding: 0;
}
.services-dot.active {
    background: var(--gold);
    transform: scale(1.2);
}
@media (max-width: 992px) {
    .service-tile { flex: 0 0 calc(50% - 10px); }
}
@media (max-width: 576px) {
    .service-tile { flex: 0 0 100%; }
    .services-arrow-prev { left: -10px; }
    .services-arrow-next { right: -10px; }
}

/* ===== GALLERY SLIDER ===== */
.gallery-viewport {
    overflow: hidden;
    border-radius: 20px;
    margin: 0 20px;
}
.gallery-track {
    display: flex;
    gap: 20px;
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.gallery-card {
    flex: 0 0 calc(33.33% - 14px);
    min-width: 0;
}
.gallery-card .card {
    border-radius: var(--radius) !important;
}
.gallery-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1.5px solid rgba(75,46,17,0.15);
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.4rem;
    color: #2d2d2d;
    z-index: 2;
    transition: all 0.3s;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    line-height: 1;
    padding: 0;
}
.gallery-arrow:hover {
    background: var(--gold);
    color: #fff;
    border-color: var(--gold);
    box-shadow: 0 4px 16px rgba(201,169,110,0.3);
}
.gallery-arrow-prev { left: 0; }
.gallery-arrow-next { right: 0; }
.gallery-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
}
.gallery-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(75,46,17,0.15);
    border: none;
    cursor: pointer;
    transition: all 0.3s;
    padding: 0;
}
.gallery-dot.active {
    background: var(--gold);
    transform: scale(1.2);
}
@media (max-width: 768px) {
    .gallery-card { flex: 0 0 calc(50% - 10px); }
}
@media (max-width: 480px) {
    .gallery-card { flex: 0 0 100%; }
    .gallery-arrow-prev { left: -10px; }
    .gallery-arrow-next { right: -10px; }
}

.section-badge {
    display: inline-block;
    padding: 0.3rem 1rem;
    border-radius: 50px;
    background: rgba(201, 169, 110, 0.12);
    color: var(--gold);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

/* ===== CARD GLOW ===== */
.card-glow {
    position: relative;
}

.card-glow::after {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: var(--radius);
    background: linear-gradient(135deg, var(--gold), transparent, var(--brown-light));
    opacity: 0;
    transition: var(--transition);
    z-index: -1;
}

.card-glow:hover::after {
    opacity: 1;
}

/* ===== DOT PATTERN BACKGROUND ===== */
.dots-bg {
    position: relative;
}

.dots-bg::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-image: radial-gradient(circle, var(--brown) 1px, transparent 1px);
    background-size: 30px 30px;
    opacity: 0.04;
    pointer-events: none;
}

/* ===== GRADIENT BORDER CARDS ===== */
.card-border-gradient {
    position: relative;
    border: none;
}

.card-border-gradient::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--radius);
    padding: 2px;
    background: linear-gradient(135deg, var(--gold), var(--brown-light), var(--gold));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    transition: opacity 0.4s ease;
}

.card-border-gradient:hover::before {
    background: linear-gradient(135deg, var(--gold), var(--brown), var(--gold));
}

/* ===== DIVIDER DECOR ===== */
.divider-decor {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin: 1.5rem 0;
}

.divider-decor::before,
.divider-decor::after {
    content: '';
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold));
    border-radius: 2px;
}

.divider-decor::after {
    background: linear-gradient(90deg, var(--gold), transparent);
}

.divider-decor span {
    font-size: 1.2rem;
}

/* ===== MISC ===== */
.rounded-4 { border-radius: var(--radius) !important; }
.rounded-5 { border-radius: var(--radius-lg) !important; }

.shadow-hover {
    transition: var(--transition);
}

.shadow-hover:hover {
    box-shadow: var(--shadow-lg) !important;
}

.gradient-text {
    background: linear-gradient(135deg, var(--gold), var(--brown-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

hr.gold {
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    border: none;
    opacity: 0.5;
}

/* ===== PROMO STRIP ===== */
.promo-strip {
    padding: 2.5rem 0;
    border-bottom: 4px solid var(--gold);
}

.promo-strip .carousel-control-prev,
.promo-strip .carousel-control-next {
    width: 48px;
    height: 48px;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.3);
    border-radius: 50%;
    opacity: 0.8;
}

.promo-strip .carousel-control-prev { left: 12px; }
.promo-strip .carousel-control-next { right: 12px; }

.promo-strip .carousel-control-prev:hover,
.promo-strip .carousel-control-next:hover {
    opacity: 1;
    background: rgba(0,0,0,0.5);
}

.promo-strip .carousel-control-prev-icon,
.promo-strip .carousel-control-next-icon {
    width: 20px;
    height: 20px;
}

/* ===== LANDING SECTIONS ===== */
.feature-icon {
    width: 72px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    background: var(--warm-bg);
    border-radius: 50%;
    transition: var(--transition);
}

.doctor-hero-avatar img,
.doctor-hero-avatar div {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid var(--gold);
}

/* ===== PROMOTIONS SECTION ===== */
.promo-section {
    padding: 60px 20px 80px;
}
.promo-section h2 {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--brown-dark);
    margin-bottom: 30px;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
}
.promo-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1100px;
    margin: 0 auto 40px;
}
.promo-card {
    background: var(--beige);
    border-radius: 24px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    box-shadow: var(--shadow-sm);
}
.promo-inner {
    background: var(--cream);
    border-radius: 20px;
    padding: 28px 20px 24px;
    text-align: center;
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.promo-icon {
    width: 90px;
    height: 90px;
    margin-bottom: 16px;
}
.promo-icon svg {
    width: 100%;
    height: 100%;
    stroke: var(--brown);
    fill: none;
    stroke-width: 1.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}
.promo-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--brown-dark);
    margin-bottom: 12px;
    line-height: 1.3;
}
.promo-price {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--brown-dark);
    margin-bottom: 12px;
}
.promo-discount-badge {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--gold);
    margin-bottom: 8px;
}
.promo-note {
    font-size: 0.8rem;
    color: var(--warm-gray);
    line-height: 1.4;
}
.promo-btn {
    margin-top: 16px;
    width: 100%;
    padding: 14px;
    border: none;
    border-radius: 30px;
    background: var(--gold);
    color: var(--brown-dark);
    font-size: 0.95rem;
    font-weight: 700;
    cursor: pointer;
    font-family: inherit;
    text-decoration: none;
    display: inline-block;
    text-align: center;
    transition: background-color 0.2s;
}
.promo-btn:hover {
    background: #c9a87e;
}
@media (max-width: 900px) {
    .promo-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
    .promo-grid { grid-template-columns: 1fr; }
    .promo-section h2 { font-size: 1.6rem; }
    .promo-price { font-size: 1.8rem; }
}

/* ===== DOCTORS PAGE ===== */
.doctors-section {
    padding: 5rem 0;
}
.doctors-section h2 {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--brown);
    margin-bottom: 1.5rem;
    text-align: center;
}
.doctors-filters {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 2rem;
}
.doctors-filters .filter-btn {
    padding: 10px 24px;
    border-radius: 30px;
    border: 1.5px solid var(--brown);
    background: transparent;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--brown);
    cursor: pointer;
    font-family: inherit;
    transition: all 0.3s;
}
.doctors-filters .filter-btn:hover {
    background: var(--beige);
}
.doctors-filters .filter-btn.active {
    background: var(--brown);
    color: #fff;
    border-color: var(--brown);
}
.doctors-slider {
    position: relative;
    display: flex;
    align-items: center;
    gap: 16px;
}
.slider-arrow {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1.5px solid var(--brown);
    background: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s;
}
.slider-arrow:hover {
    background: var(--gold);
    border-color: var(--gold);
}
.slider-arrow svg {
    width: 20px;
    height: 20px;
    stroke: var(--brown);
    fill: none;
    stroke-width: 2;
}
.slider-arrow:hover svg {
    stroke: #fff;
}
.doctors-slider .doctors-track {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    flex: 1;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
}
.doctors-slider .doctors-track::-webkit-scrollbar {
    display: none;
}
.doctor-card {
    min-width: calc((100% - 40px) / 3);
    max-width: calc((100% - 40px) / 3);
    width: calc((100% - 40px) / 3);
    flex-shrink: 0;
    scroll-snap-align: start;
    background: var(--beige);
    border-radius: 24px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s;
}
.doctors-track.filtered-1 {
    justify-content: center;
}
.doctors-track.filtered-1 .doctor-card {
    width: auto;
    min-width: 280px;
    max-width: 340px;
    flex: 0 0 auto;
}
.doctor-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
}
.doctor-photo-wrap {
    position: relative;
    width: 100%;
    background: #e8e4df;
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 16px;
    aspect-ratio: 3 / 4;
}
.doctor-photo-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.doctor-photo-wrap svg {
    width: 100%;
    height: 100%;
    display: block;
}
.experience-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--cream);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 0.65rem;
    font-weight: 600;
    color: var(--brown);
    line-height: 1.2;
    padding: 6px;
    z-index: 2;
    border: 2px solid var(--brown);
}
.doctor-card .doctor-name {
    font-size: 1rem;
    font-weight: 700;
    color: var(--brown);
    margin-bottom: 6px;
    text-align: center;
    line-height: 1.2;
}
.doctor-card .doctor-specialty {
    font-size: 0.8rem;
    color: var(--brown-light);
    margin-bottom: 18px;
    text-align: center;
    line-height: 1.3;
}
.doctor-card .doctor-actions {
    display: flex;
    gap: 10px;
    width: 100%;
    margin-top: auto;
}
.btn-doctor {
    flex: 1;
    padding: 10px 8px;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 600;
    cursor: pointer;
    font-family: inherit;
    text-align: center;
    transition: all 0.3s;
    border: none;
    text-decoration: none;
    display: inline-block;
}
.btn-doctor-outline {
    background: transparent;
    border: 1.5px solid var(--brown);
    color: var(--brown);
}
.btn-doctor-outline:hover {
    background: var(--brown);
    color: #fff;
}
.btn-doctor-filled {
    background: var(--gold);
    color: var(--brown-dark);
}
.btn-doctor-filled:hover {
    background: #c9a87e;
}
@media (max-width: 900px) {
    .doctor-card { min-width: calc((100% - 20px) / 2); }
}
@media (max-width: 600px) {
    .doctor-card { min-width: 85%; }
    .doctors-section h2 { font-size: 1.6rem; }
}

/* ===== CONSULTATION CARD ===== */
.consultation-card {
    background: var(--beige);
    border-radius: 24px;
    padding: 40px;
    display: flex;
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
    box-shadow: var(--shadow);
}
.steps {
    flex: 1;
    min-width: 280px;
}
.steps-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--brown);
    margin-bottom: 1.5rem;
}
.step {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
}
.step-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--gold-light);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.step-icon svg {
    width: 28px;
    height: 28px;
    fill: var(--gold);
}
.step-text {
    font-size: 1rem;
    font-weight: 600;
    color: var(--brown);
    line-height: 1.4;
}
.step-phone {
    display: block;
    font-weight: 700;
    font-size: 1rem;
    margin-top: 2px;
    color: var(--brown-dark);
}
.form-card {
    flex: 1;
    background: var(--cream);
    border-radius: 20px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    min-width: 280px;
}
.form-card form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.form-card input,
.form-card textarea {
    width: 100%;
    padding: 14px 18px;
    border: none;
    border-radius: 12px;
    background: var(--beige);
    font-size: 0.95rem;
    color: var(--brown);
    outline: none;
    font-family: inherit;
    transition: background 0.2s;
}
.form-card input::placeholder,
.form-card textarea::placeholder {
    color: var(--warm-gray);
}
.form-card input:focus,
.form-card textarea:focus {
    background: #ddd0c0;
}
.form-card textarea {
    resize: vertical;
    min-height: 90px;
}
.submit-btn {
    width: 100%;
    padding: 16px;
    border: none;
    border-radius: 14px;
    background: var(--gold);
    color: var(--brown-dark);
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    font-family: inherit;
    transition: background 0.2s, transform 0.1s;
}
.submit-btn:hover {
    background: #c9a87e;
}
.submit-btn:active {
    transform: scale(0.98);
}
@media (max-width: 768px) {
    .consultation-card {
        flex-direction: column;
        padding: 24px;
    }
    .steps-title { font-size: 1.3rem; }
}

.promo-card {
    transition: var(--transition);
}

.promo-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(75,46,17,0.12) !important;
}

.service-card {
    transition: var(--transition);
    position: relative;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(75,46,17,0.1) !important;
}

.doctor-tile {
    transition: var(--transition);
    border-radius: var(--radius) !important;
    overflow: hidden;
    background: #fff;
}
.doctor-tile:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg) !important;
}
.doctor-tile-photo {
    aspect-ratio: 3 / 4;
    overflow: hidden;
    background: var(--warm-bg);
    position: relative;
}
.doctor-tile-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.doctor-tile:hover .doctor-tile-photo img {
    transform: scale(1.05);
}
.doctor-tile-avatar {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15%;
    background: linear-gradient(135deg, var(--beige), var(--warm-bg));
}
.doctor-tile-avatar svg {
    width: 100%;
    height: 100%;
    display: block;
}
.doctor-tile-body {
    padding: 1rem 1rem 1.25rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    flex: 1;
}
.doctor-tile-name {
    font-weight: 700;
    color: var(--brown);
    font-size: 0.9rem;
    margin-bottom: 0.15rem;
    line-height: 1.2;
}
.doctor-tile-specialty {
    color: var(--brown-light);
    font-size: 0.75rem;
    margin-bottom: 0.15rem;
    line-height: 1.2;
}
.doctor-tile-exp {
    display: inline-block;
    color: var(--gold);
    font-weight: 600;
    font-size: 0.7rem;
    margin-bottom: 0.5rem;
}
.doctor-tile-desc {
    color: var(--brown-light);
    font-size: 0.75rem;
    line-height: 1.4;
    margin-bottom: 0.5rem;
    flex: 1;
}
/* ===== DOCTOR DETAIL PAGE ===== */
.doctor-detail-section {
    padding: 4rem 0;
}
.doctor-detail-back {
    display: inline-block;
    color: var(--brown-muted);
    text-decoration: none;
    font-size: 0.9rem;
    margin-bottom: 2rem;
    transition: color 0.3s;
}
.doctor-detail-back:hover {
    color: var(--brown);
}
.doctor-detail-layout {
    display: flex;
    gap: 2.5rem;
    align-items: flex-start;
}
.doctor-detail-image {
    flex-shrink: 0;
    width: 280px;
    border-radius: var(--radius);
    overflow: hidden;
    background: var(--warm-bg);
}
.doctor-detail-image img {
    width: 100%;
    display: block;
}
.doctor-detail-avatar {
    width: 100%;
    aspect-ratio: 3 / 4;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20%;
    background: linear-gradient(135deg, var(--beige), var(--warm-bg));
}
.doctor-detail-avatar svg {
    width: 100%;
    height: 100%;
    display: block;
}
.doctor-detail-info {
    flex: 1;
    min-width: 0;
}
.doctor-detail-name {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--brown);
    margin-bottom: 0.5rem;
    line-height: 1.2;
}
.doctor-detail-specialty {
    font-size: 0.9rem;
    color: var(--brown-light);
    margin-bottom: 0.5rem;
    line-height: 1.4;
    font-weight: 500;
}
.doctor-detail-exp {
    font-size: 0.9rem;
    color: var(--brown);
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--beige);
}
.doctor-detail-exp strong {
    color: var(--gold);
    font-weight: 700;
}
.doctor-detail-desc {
    font-size: 0.9rem;
    color: var(--brown);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}
.doctor-detail-desc p {
    margin-bottom: 0.6rem;
}
.doctor-detail-desc p:last-child {
    margin-bottom: 0;
}
.doctor-detail-btn {
    display: inline-block;
    padding: 12px 36px;
    background: var(--gold);
    color: var(--brown-dark);
    font-weight: 700;
    font-size: 0.95rem;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s;
}
.doctor-detail-btn:hover {
    background: #c9a87e;
    color: var(--brown-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(201, 169, 110, 0.3);
}
@media (max-width: 768px) {
    .doctor-detail-layout {
        flex-direction: column;
        gap: 1.5rem;
    }
    .doctor-detail-image {
        width: 200px;
        margin: 0 auto;
    }
    .doctor-detail-name {
        font-size: 1.3rem;
    }
    .doctor-detail-section {
        padding: 2rem 0;
    }
}

.doctor-tile-actions {
    display: flex;
    gap: 0.35rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: auto;
}
.doctor-tile-actions .btn {
    padding: 0.3rem 0.75rem;
    font-size: 0.7rem;
}



/* ===== PRICES PAGE ===== */
.price-page {
    color: var(--brown-dark);
    padding-bottom: 60px;
}
.price-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 40px 20px 0;
}
.price-intro {
    text-align: center;
    margin-bottom: 40px;
}
.price-intro p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--brown);
    max-width: 800px;
    margin: 0 auto;
}
.price-intro .highlight {
    font-weight: 700;
    color: var(--brown-dark);
}
.categories-nav {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 12px;
    margin-bottom: 40px;
}
.category-tab {
    background: var(--beige);
    border-radius: 16px;
    padding: 16px 8px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s;
    border: 2px solid transparent;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}
.category-tab:hover {
    background: #e0d5c8;
    transform: translateY(-2px);
}
.category-tab.active {
    background: var(--beige);
    border-color: var(--brown);
}
.category-icon {
    width: 48px;
    height: 48px;
}
.category-icon svg {
    width: 100%;
    height: 100%;
    stroke: var(--gold);
    fill: none;
    stroke-width: 1.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}
.category-name {
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--brown-dark);
    line-height: 1.2;
    text-transform: uppercase;
}
.price-accordion {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.price-category {
    background: transparent;
    border-radius: 16px;
    overflow: hidden;
}
.category-header {
    background: var(--beige);
    padding: 18px 24px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.2s;
}
.category-header:hover {
    background: #e0d5c8;
}
.category-header.active {
    background: var(--brown);
    color: #fff;
}
.category-title {
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
}
.toggle-icon {
    width: 24px;
    height: 24px;
    transition: transform 0.3s;
}
.toggle-icon svg {
    width: 100%;
    height: 100%;
    stroke: currentColor;
    fill: none;
    stroke-width: 2;
}
.category-header.active .toggle-icon {
    transform: rotate(180deg);
}
.category-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out;
    background: #ece2d6;
}
.category-content.expanded {
    max-height: 2000px;
}
.services-list {
    padding: 16px 0;
}
.service-item {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 14px 24px;
    border-bottom: 1px solid rgba(75,46,17,0.06);
    transition: background-color 0.2s;
}
.service-item:last-child {
    border-bottom: none;
}
.service-item:hover {
    background: rgba(255,255,255,0.3);
}
.service-name {
    flex: 1;
    font-size: 0.95rem;
    color: var(--brown-dark);
    line-height: 1.4;
    padding-right: 20px;
}
.service-price {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--brown);
    white-space: nowrap;
}
@media (max-width: 900px) {
    .categories-nav { grid-template-columns: repeat(4, 1fr); }
}
@media (max-width: 600px) {
    .categories-nav { grid-template-columns: repeat(3, 1fr); gap: 8px; }
    .category-icon { width: 40px; height: 40px; }
    .category-name { font-size: 0.6rem; }
    .category-header { padding: 14px 16px; }
    .category-title { font-size: 0.95rem; }
    .service-item { padding: 12px 16px; flex-direction: column; gap: 6px; }
    .service-name { padding-right: 0; }
}
@media (max-width: 400px) {
    .categories-nav { grid-template-columns: repeat(2, 1fr); }
}

/* ===== ABOUT PAGE ===== */
.about-page {
    color: var(--brown-dark);
}
.about-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}
.about-hero {
    padding: 40px 0 20px;
}
.about-hero-image {
    width: 100%;
    aspect-ratio: 16 / 7;
    background: var(--beige);
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
}
.about-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.about-hero-badges {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-top: -30px;
    position: relative;
    z-index: 2;
    flex-wrap: wrap;
    padding: 0 20px;
}
.hero-badge {
    background: var(--beige);
    border-radius: 30px;
    padding: 14px 28px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--brown-dark);
    text-align: center;
    line-height: 1.3;
    box-shadow: var(--shadow-sm);
}
.about-clinic {
    padding: 40px 0 50px;
    text-align: center;
}
.about-clinic h2 {
    font-size: 1.7rem;
    font-weight: 700;
    color: var(--brown-dark);
    margin-bottom: 16px;
}
.about-clinic p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--brown);
    max-width: 800px;
    margin: 0 auto 12px;
}
.about-clinic .highlight {
    font-weight: 700;
    color: var(--brown-dark);
}
.btn-primary-about {
    display: inline-block;
    margin-top: 24px;
    padding: 16px 36px;
    border-radius: 30px;
    background: var(--gold);
    color: var(--brown-dark);
    font-size: 1rem;
    font-weight: 700;
    text-decoration: none;
    border: none;
    cursor: pointer;
    font-family: inherit;
    transition: background-color 0.2s;
}
.btn-primary-about:hover {
    background: #c9a87e;
}
.about-doctor {
    background: var(--beige);
    border-radius: 24px;
    padding: 40px;
    margin-bottom: 50px;
    display: flex;
    gap: 40px;
    align-items: flex-start;
    box-shadow: var(--shadow-sm);
}
.doctor-photo-wrap-about {
    flex-shrink: 0;
    width: 280px;
}
.doctor-photo-wrap-about img {
    width: 100%;
    height: auto;
    display: block;
}
.doctor-info-about {
    flex: 1;
}
.doctor-info-about h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--brown-dark);
    margin-bottom: 12px;
    line-height: 1.4;
}
.doctor-info-about p {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 12px;
    color: var(--brown);
}
.doctor-info-about .bold {
    font-weight: 700;
    color: var(--brown-dark);
}
.courses-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    margin-top: 20px;
}
.course-card {
    background: var(--cream);
    border-radius: 16px;
    padding: 16px;
    text-align: center;
    box-shadow: 0 2px 6px rgba(0,0,0,0.04);
}
.course-year {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--brown);
    margin-bottom: 6px;
}
.course-place {
    font-size: 0.75rem;
    color: var(--warm-gray);
    margin-bottom: 6px;
    line-height: 1.3;
}
.course-name {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--brown-dark);
    line-height: 1.3;
}
.about-section {
    text-align: center;
    margin-bottom: 50px;
}
.about-section h2 {
    font-size: 1.7rem;
    font-weight: 700;
    color: var(--brown-dark);
    margin-bottom: 8px;
}
.about-section .subtitle {
    font-size: 0.9rem;
    color: var(--brown-muted);
    margin-bottom: 24px;
    line-height: 1.5;
}
.ab-slider-wrap {
    position: relative;
    display: flex;
    align-items: center;
    gap: 12px;
}
.ab-slider-arrow {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1.5px solid var(--brown);
    background: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.2s;
}
.ab-slider-arrow:hover {
    background: var(--gold);
    border-color: var(--gold);
}
.ab-slider-arrow svg {
    width: 18px;
    height: 18px;
    stroke: var(--brown);
    fill: none;
    stroke-width: 2;
}
.ab-slider-arrow:hover svg {
    stroke: #fff;
}
.ab-slider-viewport {
    flex: 1;
    overflow: hidden;
    border-radius: 20px;
}
.ab-slider-track {
    display: flex;
    transition: transform 0.4s ease;
}
.ab-slide {
    min-width: 100%;
    aspect-ratio: 16 / 9;
    background: var(--beige);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
}
.ab-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
}
.license-slider .ab-slide {
    aspect-ratio: 3 / 4;
}
.license-track .ab-slide {
    min-width: 50%;
    padding: 0 8px;
    background: transparent;
}
.license-track .ab-slide-inner {
    width: 100%;
    height: 100%;
    background: var(--beige);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.ab-slider-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 16px;
    align-items: center;
}
.ab-dot {
    width: 36px;
    height: 10px;
    border-radius: 5px;
    background: var(--beige);
    border: none;
    cursor: pointer;
    transition: background-color 0.2s;
    padding: 0;
}
.ab-dot.active {
    background: var(--brown);
}
@media (max-width: 768px) {
    .about-doctor { flex-direction: column; padding: 24px; }
    .doctor-photo-wrap-about { width: 200px; margin: 0 auto; }
    .courses-grid { grid-template-columns: 1fr 1fr; }
    .about-hero-badges { flex-direction: column; align-items: center; }
    .license-track .ab-slide { min-width: 100%; }
}
@media (max-width: 480px) {
    .courses-grid { grid-template-columns: 1fr; }
}

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

@keyframes pulseGold {
    0%, 100% { box-shadow: 0 0 0 0 rgba(201, 169, 110, 0.4); }
    50% { box-shadow: 0 0 0 12px rgba(201, 169, 110, 0); }
}

.animate-in {
    animation: fadeInUp 0.6s ease forwards;
}

.animate-in-delay-1 { animation-delay: 0.1s; }
.animate-in-delay-2 { animation-delay: 0.2s; }
.animate-in-delay-3 { animation-delay: 0.3s; }

/* ===== PROMO AREA ===== */
.promo-area {
    padding: 1.5rem 0 0;
    background: var(--cream);
}
.promo-rectangle {
    max-width: 1000px;
    width: 100%;
    margin: 0 auto;
    aspect-ratio: 16 / 9;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    position: relative;
}
.promo-label {
    position: absolute;
    top: 1.5rem;
    left: 2rem;
    z-index: 10;
    background: rgba(46, 26, 8, 0.75);
    backdrop-filter: blur(8px);
    color: #fff;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    border: 1px solid rgba(201, 169, 110, 0.3);
}
.promo-label span {
    color: var(--gold);
}

/* ===== DOCTORS SCROLL ===== */
.doctors-viewport {
    overflow: hidden;
    border-radius: var(--radius);
    margin: 0 20px;
}
.doctors-track {
    display: flex;
    gap: 20px;
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.doctor-tile-wrapper {
    flex: 0 0 calc(33.33% - 14px);
    min-width: 0;
}
.doctors-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1.5px solid rgba(75,46,17,0.15);
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.4rem;
    color: #2d2d2d;
    z-index: 2;
    transition: all 0.3s;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    line-height: 1;
    padding: 0;
}
.doctors-arrow:hover {
    background: var(--gold);
    color: #fff;
    border-color: var(--gold);
    box-shadow: 0 4px 16px rgba(201,169,110,0.3);
}
.doctors-arrow-prev { left: 0; }
.doctors-arrow-next { right: 0; }
.doctors-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
}
.doctors-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(75,46,17,0.15);
    border: none;
    cursor: pointer;
    transition: all 0.3s;
    padding: 0;
}
.doctors-dot.active {
    background: var(--gold);
    transform: scale(1.2);
}
@media (max-width: 992px) {
    .doctor-tile-wrapper { flex: 0 0 calc(50% - 10px); }
}
@media (max-width: 576px) {
    .doctor-tile-wrapper { flex: 0 0 100%; }
    .doctors-arrow-prev { left: -10px; }
    .doctors-arrow-next { right: -10px; }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .section-padding { padding: 3rem 0; }
    .section-title { font-size: 1.6rem; }
    .stat-number { font-size: 2rem; }
    .hero-slide { height: 400px !important; }
    .hero-slide .display-5 { font-size: 1.6rem; }
    .hero-default { min-height: 380px !important; }
    .hero-default .display-4 { font-size: 1.8rem; }
    .navbar-modern .nav-link { padding: 0.7rem 1rem; }
    .doctor-tile-body { padding: 1rem; }
    .doctor-tile-name { font-size: 0.9rem; }
    .promo-label { top: 0.75rem; left: 1rem; font-size: 0.75rem; padding: 0.35rem 1rem; }
}
