

.gpu-accelerated {
    transform: translateZ(0);
    will-change: transform;
}

html {
    scroll-behavior: smooth;
}

.critical {
    content-visibility: auto;
}

img {
    
    
}

.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 50%, #dee2e6 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.loading-screen::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, 
        rgba(25, 118, 210, 0.1) 0%, 
        rgba(25, 118, 210, 0.05) 50%, 
        rgba(25, 118, 210, 0.1) 100%);
    animation: shimmer 3s ease-in-out infinite;
}

.loading-screen.hidden {
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
    transform: scale(0.95) !important;
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

.loading-screen.quick-hide {
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
    transform: scale(0.98) !important;
    transition: all 0.3s ease-out !important;
}

.loading-content {
    text-align: center;
    color: var(--dark-gray);
    animation: fadeInUp 1.2s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 2;
}

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

@keyframes shimmer {
    0%, 100% {
        transform: translateX(-100%);
    }
    50% {
        transform: translateX(100%);
    }
}

.header-top {
    background: #0D47A1;
    color: #fff;
    font-size: 0.9rem;
}
.header-top .top-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 8px 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}
.header-top .contact-mini {
    display: flex;
    align-items: center;
    gap: 16px;
}
.header-top .contact-mini i { margin-right: 6px; }
.header-top .social-mini { display: flex; align-items: center; gap: 10px; }
.header-top .social-mini a { color: #fff; opacity: 0.9; transition: opacity .2s; }
.header-top .social-mini a:hover { opacity: 1; }
.header-top .randevu-mini {
    background: #fff;
    color: #0D47A1;
    padding: 6px 12px;
    border-radius: 999px;
    font-weight: 700;
}
@media (max-width: 768px) {
    .header-top { font-size: 0.85rem; }
    .header-top .top-inner { flex-wrap: wrap; gap: 8px; }
}

.faq-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fbff 0%, #e3f2fd 100%);
}

.faq-container {
    max-width: 1000px;
    margin: 0 auto;
}

.faq-category {
    margin-bottom: 3rem;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(13, 71, 161, 0.08);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.faq-category:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(13, 71, 161, 0.12);
}

.faq-category-title {
    background: linear-gradient(135deg, #0D47A1 0%, #1976D2 100%);
    color: #fff;
    padding: 20px 24px;
    margin: 0;
    font-size: 1.4rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 12px;
}

.faq-category-title::before {
    content: "❓";
    font-size: 1.2rem;
}

.faq-items {
    padding: 0;
}

.faq-item {
    border-bottom: 1px solid #e8f4fd;
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-question {
    width: 100%;
    padding: 20px 24px;
    background: none;
    border: none;
    text-align: left;
    font-size: 1.1rem;
    font-weight: 500;
    color: #1a237e;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all 0.3s ease;
    position: relative;
}

.faq-question:hover {
    background: #f8fbff;
    color: #0D47A1;
}

.faq-question::after {
    content: "+";
    font-size: 1.5rem;
    font-weight: 300;
    color: #0D47A1;
    transition: transform 0.3s ease;
}

.faq-question.active::after {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.3s ease;
    background: #fafafa;
    opacity: 0;
    padding: 0;
}

.faq-answer.active {
    max-height: 1000px;
    padding: 0 24px 20px 24px;
    opacity: 1;
}

.faq-answer p {
    margin: 0;
    padding: 16px 0 0 0;
    color: #424242;
    line-height: 1.6;
    font-size: 1rem;
}

@media (max-width: 768px) {
    .faq-section {
        padding: 60px 0;
    }
    
    .faq-category-title {
        font-size: 1.2rem;
        padding: 16px 20px;
    }
    
    .faq-question {
        padding: 16px 20px;
        font-size: 1rem;
    }
    
    .faq-answer.active {
        max-height: 1000px;
        padding: 0 20px 16px 20px;
        opacity: 1;
    }
    
    .faq-answer p {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .faq-category-title {
        font-size: 1.1rem;
        padding: 14px 16px;
    }
    
    .faq-question {
        padding: 14px 16px;
        font-size: 0.95rem;
    }
    
    .faq-answer.active {
        max-height: 1000px;
        padding: 0 16px 14px 16px;
        opacity: 1;
    }
}

.loading-icon {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, var(--primary-color) 0%, #42A5F5 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2.5rem;
    animation: professionalPulse 2.5s infinite;
    box-shadow: 
        0 20px 40px rgba(25, 118, 210, 0.3),
        0 8px 16px rgba(25, 118, 210, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    position: relative;
    overflow: hidden;
}

.loading-icon::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: rotate 3s linear infinite;
}

.loading-icon i {
    font-size: 3.5rem;
    color: #ffffff;
    animation: professionalBounce 1.5s infinite ease-in-out;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 1;
}

.loading-title {
    font-size: 3.2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--dark-gray);
    letter-spacing: 1px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    animation: titleGlow 2s ease-in-out infinite alternate;
}

.loading-subtitle {
    font-size: 1.1rem;
    color: var(--text-gray);
    margin-bottom: 3rem;
    font-weight: 400;
    opacity: 0.8;
}

.loading-animation {
    display: flex;
    justify-content: center;
    gap: 0.8rem;
    margin-top: 2rem;
}

.loading-dot {
    width: 16px;
    height: 16px;
    background: linear-gradient(135deg, var(--primary-color), #42A5F5);
    border-radius: 50%;
    animation: professionalBounce 1.6s infinite ease-in-out;
    box-shadow: 0 4px 8px rgba(25, 118, 210, 0.3);
}

.loading-dot:nth-child(1) {
    animation-delay: -0.4s;
}

.loading-dot:nth-child(2) {
    animation-delay: -0.2s;
}

.loading-dot:nth-child(3) {
    animation-delay: 0s;
}

.loading-progress {
    width: 200px;
    height: 4px;
    background: rgba(25, 118, 210, 0.2);
    border-radius: 2px;
    margin: 2rem auto 0;
    overflow: hidden;
    position: relative;
}

.loading-progress-bar {
    height: 100%;
    background: linear-gradient(90deg, var(--primary-color), #42A5F5);
    border-radius: 2px;
    animation: progressFill 2s ease-in-out;
    box-shadow: 0 0 10px rgba(25, 118, 210, 0.5);
}

@keyframes professionalPulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 
            0 20px 40px rgba(25, 118, 210, 0.3),
            0 8px 16px rgba(25, 118, 210, 0.2),
            inset 0 1px 0 rgba(255, 255, 255, 0.3);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 
            0 25px 50px rgba(25, 118, 210, 0.4),
            0 12px 24px rgba(25, 118, 210, 0.3),
            inset 0 1px 0 rgba(255, 255, 255, 0.4);
    }
}

@keyframes professionalBounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-8px);
    }
}

@keyframes titleGlow {
    from {
        text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    }
    to {
        text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1), 0 0 20px rgba(25, 118, 210, 0.3);
    }
}

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

@keyframes progressFill {
    from {
        width: 0%;
    }
    to {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .loading-icon {
        width: 100px;
        height: 100px;
    }
    
    .loading-icon i {
        font-size: 3rem;
    }
    
    .loading-title {
        font-size: 2.5rem;
    }
    
    .loading-subtitle {
        font-size: 1rem;
    }
    
    .loading-progress {
        width: 150px;
    }
}

@media (max-width: 480px) {
    .loading-icon {
        width: 80px;
        height: 80px;
    }
    
    .loading-icon i {
        font-size: 2.5rem;
    }
    
    .loading-title {
        font-size: 2rem;
    }
    
    .loading-progress {
        width: 120px;
    }
}

*:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

.skip-link {
    position: absolute;
    top: -40px;
    left: 6px;
    background: var(--primary-color);
    color: white;
    padding: 8px;
    text-decoration: none;
    border-radius: 4px;
    z-index: 1000;
    transition: top 0.3s;
}

.skip-link:focus {
    top: 6px;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

@media (prefers-contrast: high) {
    :root {
        --primary-color: #0000FF;
        --text-color: #000000;
        --bg-color: #FFFFFF;
    }
}

@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    html {
        scroll-behavior: auto;
    }
}

@media (prefers-color-scheme: dark) {
    :root {
        --bg-color: #1a1a1a;
        --text-color: #ffffff;
        --card-bg: #2d2d2d;
    }
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    
    --primary-color: #1976D2;        
    --primary-light: #2196F3;        
    --primary-dark: #0D47A1;         
    --secondary-color: #1976D2;      
    --secondary-light: #42A5F5;      
    --accent-color: #FF6F00;         
    --accent-light: #FFB74D;         
    
    
    --white: #FFFFFF;
    --light-gray: #F8F9FA;
    --medium-gray: #E3F2FD;
    --dark-gray: #212121;
    --text-gray: #424242;
    --text-light: #757575;
    --border-gray: #E0E0E0;
    --border-light: #F5F5F5;
    
    
    --primary-font: 'Poppins', sans-serif;
    --heading-font: 'Montserrat', sans-serif;
    
    
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
    --spacing-xxl: 4rem;
    
    
    --border-radius-sm: 4px;
    --border-radius-md: 8px;
    --border-radius-lg: 12px;
    
    
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.1);
    --shadow-md: 0 4px 8px rgba(0,0,0,0.1);
    --shadow-lg: 0 8px 16px rgba(0,0,0,0.1);
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--primary-font);
    line-height: 1.6;
    color: var(--dark-gray);
    background-color: var(--white);
    overflow-x: hidden;
    overflow-y: scroll; 
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-sm);
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
    z-index: 1000;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    height: 80px;
    border-bottom: 1px solid rgba(25, 118, 210, 0.1);
}

.header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, #1976D2, #2196F3, #42A5F5);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.12);
}

.header.scrolled::before {
    opacity: 1;
}

.navbar {
    padding: 0;
    height: 80px;
    display: flex;
    align-items: center;
}

.nav-container {
    max-width: 90%;
    margin: 0 auto;
    padding: 0 var(--spacing-lg);
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.nav-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    background: #ffffff;
    padding: 6px 10px;
    border-radius: 6px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: all 0.3s ease;
    background: #ffffff;
    padding: 2px;
    border-radius: 4px;
}

.logo-link:hover {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.logo-container {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    margin-right: 9rem;
}

.logo-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #1976D2, #2196F3);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
    box-shadow: 0 2px 8px rgba(25, 118, 210, 0.25);
    transition: all 0.3s ease;
}

.logo-icon:hover {
    background: linear-gradient(135deg, #0D47A1, #1976D2);
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 6px 20px rgba(25, 118, 210, 0.4);
}

.tooth-svg {
    width: 100%;
    height: 100%;
}

.logo-image {
    height: 55px;
    width: auto;
    max-width: 160px;
    object-fit: contain;
    transition: all 0.3s ease;
    
    loading: eager;
    decoding: async;
    
    background: transparent;
    mix-blend-mode: normal;
    
    image-rendering: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.logo {
    width: 280px; 
    height: 75px; 
    background-image: url('https://drive.google.com/uc?export=view&id=1YZ_E5lfIvTLpF92iWZ-wdY9GwAtzT07k');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: left center;
    display: block;
}

.logo-image:hover {
    transform: scale(1.02);
    opacity: 0.95;
}

@media (max-width: 768px) {
    .nav-logo {
        padding: 5px 8px;
    }
    .logo-image {
        height: 50px;
        max-width: 140px;
    }
    .logo {
        width: 140px; 
        height: 50px; 
    }
}

@media (max-width: 480px) {
    .nav-logo {
        padding: 4px 6px;
    }
    .logo-image {
        height: 45px;
        max-width: 120px;
    }
    .logo {
        width: 120px; 
        height: 45px; 
    }
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-main {
    font-size: 1.5rem;
    font-weight: 700;
    color: #0D47A1;
    line-height: 1;
    transition: all 0.3s ease;
}

.logo-main:hover {
    color: #1976D2;
}

.logo-sub {
    font-size: 0.8rem;
    color: #dc2626;
    font-weight: 600;
    line-height: 1.1;
    margin-bottom: 2px;
    letter-spacing: 0.3px;
}

.logo-location {
    font-size: 0.75rem;
    color: #dc2626;
    font-weight: 500;
    line-height: 1;
    letter-spacing: 0.2px;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: var(--spacing-xs);
}

.nav-toggle .bar {
    width: 25px;
    height: 3px;
    background-color: var(--dark-gray);
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: var(--spacing-sm);
    align-items: center;
    margin: 0;
    padding: 0;
    flex: 1;
    justify-content: center;
}

.nav-item {
    position: relative;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
    padding: var(--spacing-sm) var(--spacing-md);
    color: #374151;
    text-decoration: none;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    font-size: 0.95rem;
    white-space: nowrap;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #1976D2, #2196F3);
    transition: all 0.3s ease;
    transform: translateX(-50%);
    border-radius: 1px;
}

.nav-link:hover {
    color: #0D47A1;
    background: rgba(25, 118, 210, 0.15);
    transform: translateY(-1px);
}

.nav-link:hover::after {
    width: 80%;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-link:hover::after {
    width: 100%;
}

.nav-item.dropdown {
    position: relative;
}

.nav-item.dropdown .nav-link i {
    font-size: 0.8rem;
    margin-left: 5px;
    transition: transform 0.3s ease;
}

.nav-item.dropdown:hover .nav-link i {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    border: 1px solid rgba(25, 118, 210, 0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-5px) scale(0.95);
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: 1000;
    min-width: 600px;
    padding: 2rem;
    margin-top: 5px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.nav-item:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

@media (min-width: 1025px) {
    .nav-item.dropdown .nav-link {
        cursor: pointer;
    }
    
    .nav-item.dropdown:hover .dropdown-menu {
        opacity: 1;
        visibility: visible;
        transform: translateY(0) scale(1);
        pointer-events: auto;
    }
}

.page-header {
    background: linear-gradient(135deg, #1976D2 0%, #1565C0 100%);
    color: white;
    padding: 4rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.1)"/></svg>') repeat;
    background-size: 50px 50px;
    animation: float 20s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

.page-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.page-description {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

.service-detail {
    padding: 4rem 0;
    background: #f8f9fa;
}

.service-detail-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.service-detail-left {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.service-detail-right {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.service-intro h2 {
    color: #1976D2;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    position: relative;
}

.service-intro h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #1976D2, #42A5F5);
    border-radius: 2px;
}

.service-intro p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 1.5rem;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.benefit-item {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 1.5rem;
    border-radius: 10px;
    border-left: 4px solid #1976D2;
    transition: all 0.3s ease;
}

.benefit-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(25, 118, 210, 0.15);
}

.benefit-item i {
    color: #1976D2;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.benefit-item h4 {
    color: #333;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.benefit-item p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
}

.treatment-process {
    margin-top: 3rem;
}

.process-steps {
    display: grid;
    gap: 2rem;
    margin-top: 2rem;
}

.step {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.step:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 25px rgba(25, 118, 210, 0.15);
}

.step-number {
    background: linear-gradient(135deg, #1976D2, #42A5F5);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.step-content h4 {
    color: #1976D2;
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.step-content p {
    color: #666;
    line-height: 1.6;
}

.service-images {
    margin-bottom: 2rem;
}

.main-image {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f8f9fa;
}

.main-image img {
    width: 100%;
    height: auto;
    max-height: 500px;
    object-fit: contain;
    object-position: center;
    transition: transform 0.3s ease;
}

.main-image:hover img {
    transform: scale(1.05);
}

.image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.7));
    color: white;
    padding: 2rem 1.5rem 1.5rem;
}

.image-overlay h4 {
    font-size: 1.3rem;
    margin: 0;
}

.image-gallery {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.gallery-item {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
}

.gallery-item img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-item span {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(25, 118, 210, 0.9);
    color: white;
    padding: 0.5rem;
    text-align: center;
    font-size: 0.9rem;
}

.service-info {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 2rem;
    border-radius: 15px;
    border: 2px solid #e3f2fd;
}

.service-info h4 {
    color: #1976D2;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    text-align: center;
}

.service-info ul {
    list-style: none;
    padding: 0;
}

.service-info li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #e0e0e0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.service-info li:last-child {
    border-bottom: none;
}

.service-info i {
    color: #1976D2;
    width: 20px;
}

@media (max-width: 768px) {
    .service-detail-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .page-title {
        font-size: 2rem;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .image-gallery {
        grid-template-columns: 1fr;
    }
    
    .step {
        flex-direction: column;
        text-align: center;
    }
}

.dropdown-column a {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    color: #333;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
    border: 1px solid transparent;
}

.dropdown-column a:hover {
    background: linear-gradient(135deg, #E3F2FD 0%, #BBDEFB 100%);
    color: #1976D2;
    transform: translateX(5px);
    border-color: #1976D2;
    box-shadow: 0 4px 12px rgba(25, 118, 210, 0.15);
}

.dropdown-column a i {
    font-size: 1rem;
    color: #666;
    transition: all 0.3s ease;
    min-width: 16px;
}

.dropdown-column a:hover i {
    color: #1976D2;
    transform: scale(1.1);
}

.mega-menu {
    width: 400px;
    max-width: 80vw;
    left: 0;
    transform: translateY(-5px) scale(0.95);
    border-radius: 10px;
    padding: var(--spacing-xs);
    background: var(--white);
    border: 1px solid rgba(25, 118, 210, 0.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-xs);
    margin-top: 5px;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.nav-item:hover .mega-menu {
    transform: translateY(0) scale(1);
}

@keyframes megaMenuSlideIn {
    0% {
        opacity: 0;
        transform: translateX(-50%) translateY(-10px);
    }
    100% {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
}

.dropdown-column {
    padding: var(--spacing-xs);
    background: rgba(248, 250, 252, 0.9);
    border-radius: 6px;
    border: 1px solid rgba(25, 118, 210, 0.1);
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(5px);
    min-width: 0;
    overflow: hidden;
}

.nav-item:hover .dropdown-column:nth-child(1) {
    animation: columnSlideIn 0.3s ease 0.1s forwards;
}

.nav-item:hover .dropdown-column:nth-child(2) {
    animation: columnSlideIn 0.3s ease 0.2s forwards;
}

.nav-item:hover .dropdown-column:nth-child(3) {
    animation: columnSlideIn 0.3s ease 0.3s forwards;
}

.nav-item:hover .dropdown-column:nth-child(4) {
    animation: columnSlideIn 0.3s ease 0.4s forwards;
}

.nav-item:hover .dropdown-column:nth-child(1) { 
    animation-delay: 0.1s;
}

.nav-item:hover .dropdown-column:nth-child(2) { 
    animation-delay: 0.15s;
}

.nav-item:hover .dropdown-column:nth-child(3) { 
    animation-delay: 0.2s;
}

.nav-item:hover .dropdown-column:nth-child(4) { 
    animation-delay: 0.25s;
}

@keyframes columnSlideIn {
    0% {
        opacity: 0;
        transform: translateY(5px) scale(0.95);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.dropdown-column::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transform: scaleX(0);
    transition: transform 0.3s ease;
    transform-origin: left;
}

.dropdown-column:hover::before {
    transform: scaleX(1);
}

.dropdown-column:hover {
    background: rgba(255, 255, 255, 0.95);
    border-color: rgba(25, 118, 210, 0.15);
    transform: translateY(-1px) scale(1.005);
    box-shadow: 0 3px 12px rgba(25, 118, 210, 0.1);
}

.dropdown-column h4 {
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
    font-size: 0.8rem;
    font-weight: 700;
    color: #0D47A1;
    margin-bottom: var(--spacing-xs);
    padding: var(--spacing-xs);
    background: rgba(25, 118, 210, 0.12);
    border-radius: 6px;
    border: 1px solid rgba(25, 118, 210, 0.2);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.dropdown-column h4::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.dropdown-column:hover h4::before {
    left: 100%;
}

.dropdown-column h4 i {
    font-size: 0.9rem;
    color: var(--primary-color);
    flex-shrink: 0;
}

.dropdown-column a {
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
    padding: var(--spacing-xs);
    color: #4B5563;
    text-decoration: none;
    font-size: 0.75rem;
    font-weight: 500;
    border-radius: 4px;
    transition: all 0.3s ease;
    margin-bottom: 1px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.dropdown-column a::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(25, 118, 210, 0.1), transparent);
    transition: left 0.4s ease;
}

.dropdown-column a:hover::before {
    left: 100%;
}

.dropdown-column a:hover {
    color: #0D47A1;
    background: rgba(25, 118, 210, 0.15);
    transform: translateX(3px) scale(1.02);
    box-shadow: 0 2px 8px rgba(25, 118, 210, 0.2);
}

.dropdown-column a i {
    font-size: 0.7rem;
    color: var(--primary-color);
    opacity: 0.7;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.dropdown-column a:hover i {
    opacity: 1;
    transform: scale(1.1);
}

.language-selector {
    display: flex;
    gap: var(--spacing-xs);
    margin-left: var(--spacing-md);
    align-items: center;
}

.lang-btn {
    background: var(--white);
    border: 2px solid var(--border-gray);
    border-radius: var(--border-radius-md);
    padding: var(--spacing-xs) var(--spacing-sm);
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
    min-width: 60px;
    justify-content: center;
    box-shadow: var(--shadow-sm);
}

.lang-btn:hover {
    border-color: var(--primary-color);
    background-color: var(--light-gray);
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

.lang-btn.active {
    border-color: var(--primary-color);
    background-color: var(--primary-color);
    color: var(--white);
    box-shadow: var(--shadow-md);
}

.lang-btn.active .lang-text {
    color: var(--white);
}

.flag-icon {
    width: 20px;
    height: 15px;
    border-radius: 2px;
    object-fit: cover;
    border: 1px solid rgba(0,0,0,0.1);
}

.lang-text {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--dark-gray);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: var(--spacing-lg);
    flex-shrink: 0;
}

.quick-appointment-btn {
    background: linear-gradient(135deg, #1976D2, #2196F3);
    color: var(--white);
    padding: var(--spacing-sm) var(--spacing-lg);
    border-radius: 20px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
    box-shadow: 0 2px 8px rgba(25, 118, 210, 0.25);
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
}

.quick-appointment-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(64, 64, 64, 0.2), transparent);
    transition: left 0.5s ease;
}

.quick-appointment-btn:hover::before {
    left: 100%;
}

.quick-appointment-btn:hover {
    background: linear-gradient(135deg, #0D47A1, #1976D2);
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 6px 20px rgba(25, 118, 210, 0.4);
}

.quick-appointment-btn i {
    font-size: 0.8rem;
}

.main-slider {
    position: relative;
    height: 100vh;
    margin-top: 85px;
    overflow: hidden;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.main-slider::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(25, 118, 210, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(33, 150, 243, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(66, 165, 245, 0.05) 0%, transparent 50%);
    animation: parallaxFloat 20s ease-in-out infinite;
    z-index: 1;
}

@keyframes parallaxFloat {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    33% {
        transform: translateY(-10px) rotate(1deg);
    }
    66% {
        transform: translateY(5px) rotate(-1deg);
    }
}

.floating-tooth {
    position: absolute;
    color: rgba(25, 118, 210, 0.1);
    font-size: 2rem;
    animation: float 15s ease-in-out infinite;
    z-index: 2;
}

.floating-tooth:nth-child(1) {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.floating-tooth:nth-child(2) {
    top: 60%;
    right: 15%;
    animation-delay: 3s;
}

.floating-tooth:nth-child(3) {
    top: 40%;
    left: 80%;
    animation-delay: 6s;
}

.floating-tooth:nth-child(4) {
    top: 80%;
    left: 20%;
    animation-delay: 9s;
}

.floating-tooth:nth-child(5) {
    top: 30%;
    right: 30%;
    animation-delay: 12s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
        opacity: 0.1;
    }
    50% {
        transform: translateY(-20px) rotate(180deg);
        opacity: 0.3;
    }
}

.slider-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
}

.slider-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

.slide.active {
    opacity: 1;
    z-index: 2;
}

.slide:first-child {
    opacity: 1 !important;
    z-index: 2 !important;
    visibility: visible !important;
}

.slide {
    visibility: visible !important;
}

.slide-image {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

.slide-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
    transition: all 0.3s ease;
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.3);
    z-index: 2;
}

.slide-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    background: rgba(255, 255, 255, 0.9);
    padding: 3rem;
    border-radius: 25px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    z-index: 10;
    max-width: 600px;
    width: 90%;
    transition: all 0.3s ease;
}

.slide-content:hover {
    transform: translate(-50%, -50%) scale(1.02);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.slide-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--dark-gray);
    margin-bottom: 1.5rem;
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.slide-description {
    font-size: 1.3rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.slide-btn {
    display: inline-block;
    background: linear-gradient(135deg, #1976D2 0%, #42A5F5 100%);
    color: var(--white);
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(25, 118, 210, 0.35);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.slide-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(64,64,64,0.2), transparent);
    transition: left 0.5s;
}

.slide-btn:hover::before {
    left: 100%;
}

.slide-btn:hover {
    background: linear-gradient(135deg, #1565C0 0%, #64B5F6 100%);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(21, 101, 192, 0.45);
    border-color: rgba(255,255,255,0.3);
}

.slider-navigation {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 var(--spacing-lg);
    z-index: 20;
    pointer-events: none;
}

.nav-btn {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.9);
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1.5rem;
    color: var(--primary-color);
    pointer-events: auto;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.nav-btn:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--white);
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(25, 118, 210, 0.35);
}

.slider-dots {
    position: absolute;
    bottom: var(--spacing-xl);
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: var(--spacing-sm);
    z-index: 20;
}

.dot {
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.6);
    border: 2px solid rgba(255, 255, 255, 0.8);
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.dot.active {
    background: var(--primary-color);
    border-color: var(--primary-color);
    transform: scale(1.3);
    box-shadow: 0 0 20px rgba(76, 175, 80, 0.6);
}

.dot:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    transform: scale(1.2);
    box-shadow: 0 4px 12px rgba(76, 175, 80, 0.4);
}

.btn {
    display: inline-block;
    padding: var(--spacing-sm) var(--spacing-lg);
    border-radius: var(--border-radius-md);
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
    text-align: center;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    color: var(--white);
    border-color: transparent;
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(64,64,64,0.2), transparent);
    transition: left 0.5s ease;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-color) 100%);
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(25, 118, 210, 0.2);
}

.btn-secondary {
    background-color: transparent;
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-secondary:hover {
    background-color: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.section-header {
    text-align: center;
    margin-bottom: var(--spacing-xxl);
}

.section-title {
    font-family: var(--heading-font);
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--dark-gray);
    margin-bottom: var(--spacing-md);
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    width: 60px;
    height: 3px;
    background-color: var(--primary-color);
    transform: translateX(-50%);
    border-radius: 2px;
}

.section-description {
    font-size: 1.1rem;
    color: var(--text-gray);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.8;
}

.services {
    padding: var(--spacing-xxl) 0;
    background-color: var(--white);
    margin-top: 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-lg);
    margin-top: var(--spacing-xl);
    transition: all 0.3s ease;
    align-items: stretch;
}

.services-page {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.service-card-page {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid #e9ecef;
    position: relative;
    overflow: hidden;
}

.service-card-page::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(25, 118, 210, 0.1), transparent);
    transition: left 0.5s;
}

.service-card-page:hover::before {
    left: 100%;
}

.service-card-page:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(25, 118, 210, 0.2);
    border-color: #1976D2;
}

.service-card-page .service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #1976D2 0%, #42A5F5 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all 0.3s ease;
}

.service-card-page:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 10px 25px rgba(25, 118, 210, 0.3);
}

.service-card-page .service-icon i {
    font-size: 2rem;
    color: white;
}

.service-card-page .service-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 1rem;
    transition: color 0.3s ease;
}

.service-card-page:hover .service-title {
    color: #1976D2;
}

.service-card-page .service-description {
    color: #666;
    line-height: 1.6;
    margin-bottom: 2rem;
    font-size: 0.95rem;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #1976D2 0%, #42A5F5 100%);
    color: white;
    text-decoration: none;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.service-link:hover::before {
    left: 100%;
}

.service-link:hover {
    background: linear-gradient(135deg, #1565C0 0%, #1976D2 100%);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(25, 118, 210, 0.3);
    color: white;
}

.service-link i {
    font-size: 0.9rem;
    transition: transform 0.3s ease;
}

.service-link:hover i {
    transform: translateX(3px);
}

.services-cta {
    margin-top: 4rem;
    text-align: center;
    background: linear-gradient(135deg, #1976D2 0%, #42A5F5 100%);
    padding: 3rem 2rem;
    border-radius: 20px;
    color: white;
}

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    background: white;
    color: #1976D2;
    text-decoration: none;
    padding: 1rem 2rem;
    border-radius: 25px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    color: #1976D2;
}

.cta-button i {
    font-size: 1.2rem;
}

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .service-card-page {
        padding: 1.5rem;
    }
    
    .services-cta {
        padding: 2rem 1rem;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
    
    .cta-content p {
        font-size: 1rem;
    }
}

.service-card-hidden {
    display: none !important;
    opacity: 0;
    transform: translateY(30px) scale(0.9);
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.service-card-hidden.hiding {
    opacity: 0;
    transform: translateY(-10px) scale(0.98);
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    pointer-events: none;
}

.service-card-hidden.show {
    display: block !important;
    opacity: 1;
    transform: translateY(0) scale(1);
    animation: slideInUp 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

@keyframes slideInUp {
    0% {
        opacity: 0;
        transform: translateY(30px) scale(0.9);
    }
    50% {
        opacity: 0.7;
        transform: translateY(15px) scale(0.95);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.services-more-container {
    display: flex;
    justify-content: center;
    margin-top: 3rem;
    padding: 2rem 0;
}

.team-more-container {
    display: flex;
    justify-content: center;
    margin-top: 3rem;
}

.team-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    background: linear-gradient(135deg, #1976D2 0%, #42A5F5 100%);
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    padding: 1rem 2rem;
    border-radius: 12px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(25, 118, 210, 0.25);
    position: relative;
    overflow: hidden;
}

.team-more-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.team-more-btn:hover::before {
    left: 100%;
}

.team-more-btn:hover {
    background: linear-gradient(135deg, #1565C0 0%, #1976D2 100%);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(25, 118, 210, 0.4);
    color: white;
}

.team-more-btn .btn-icon {
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.team-more-btn:hover .btn-icon {
    transform: translateX(4px);
}

button.services-more-btn,
#services-more-btn,
.services-more-container button {
    background: linear-gradient(135deg, #1976D2 0%, #42A5F5 100%) !important;
    color: white !important;
    border: none !important;
    padding: 1rem 2rem !important;
    border-radius: 12px !important;
    font-size: 1.1rem !important;
    font-weight: 600 !important;
    cursor: pointer !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 0.8rem !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    box-shadow: 0 4px 15px rgba(25, 118, 210, 0.25) !important;
    position: relative !important;
    overflow: hidden !important;
    min-width: 200px !important;
    justify-content: center !important;
    text-decoration: none !important;
    outline: none !important;
}

.services-more-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

button.services-more-btn:hover,
#services-more-btn:hover,
.services-more-container button:hover {
    background: linear-gradient(135deg, #1565C0 0%, #1976D2 100%) !important;
    transform: translateY(-3px) !important;
    box-shadow: 0 8px 25px rgba(25, 118, 210, 0.4) !important;
    color: white !important;
}

.services-more-btn:hover::before {
    left: 100%;
}

.services-more-btn .btn-icon {
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.services-more-btn.expanded .btn-icon {
    transform: rotate(180deg);
}

.services-more-btn .btn-text {
    transition: all 0.3s ease;
}

.services-more-btn:hover .btn-icon {
    transform: translateX(4px);
}

.services-more-btn.expanded:hover .btn-icon {
    transform: rotate(180deg) translateX(4px);
}

.service-card {
    background: var(--white);
    padding: var(--spacing-xl);
    border-radius: var(--border-radius-lg);
    text-align: center;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-light);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
    cursor: pointer;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transform: scaleX(0);
    transition: transform 0.3s ease;
    transform-origin: left;
}

.service-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(25, 118, 210, 0.05), transparent);
    transition: left 0.5s ease;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover::after {
    left: 100%;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-light);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: var(--border-radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--spacing-md);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--primary-light), var(--secondary-light));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.05) rotate(2deg);
}

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

.service-icon i {
    font-size: 2rem;
    color: var(--white);
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}

.service-title {
    font-family: var(--heading-font);
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--dark-gray);
    margin-bottom: var(--spacing-sm);
}

.service-description {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: var(--spacing-md);
    flex-grow: 1;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-xs);
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    margin-top: auto;
}

.service-link:hover {
    color: #45a049;
    transform: translateX(5px);
}

.service-link i {
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.service-link:hover i {
    transform: translateX(3px);
}

.statistics-section {
    margin-top: var(--spacing-xxl);
    padding: var(--spacing-xl) 150px !important;
    background: linear-gradient(135deg, rgba(25, 118, 210, 0.05) 0%, rgba(33, 150, 243, 0.05) 100%) !important;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    max-width: 1400px !important;
    margin-left: auto;
    margin-right: auto;
}

.statistics-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(25, 118, 210, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(33, 150, 243, 0.1) 0%, transparent 50%);
    animation: statisticsFloat 15s ease-in-out infinite;
}

@keyframes statisticsFloat {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-5px);
    }
}

.statistics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--spacing-lg);
    position: relative;
    z-index: 2;
}

.stat-card {
    background: var(--white);
    padding: var(--spacing-xl);
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(25, 118, 210, 0.05) 0%, rgba(33, 150, 243, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 20px 40px rgba(25, 118, 210, 0.2);
    border-color: rgba(25, 118, 210, 0.3);
}

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

.stat-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto var(--spacing-md);
    background: linear-gradient(135deg, #1976D2, #2196F3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--white);
    box-shadow: 0 8px 25px rgba(25, 118, 210, 0.3);
    transition: all 0.3s ease;
    position: relative;
    z-index: 3;
}

.stat-card:hover .stat-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 12px 35px rgba(25, 118, 210, 0.4);
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: #1976D2;
    margin-bottom: var(--spacing-sm);
    position: relative;
    z-index: 3;
    transition: all 0.3s ease;
}

.stat-card:hover .stat-number {
    color: #0D47A1;
    transform: scale(1.1);
}

.stat-label {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
    position: relative;
    z-index: 3;
    transition: all 0.3s ease;
}

.stat-card:hover .stat-label {
    color: #1976D2;
}

@media (max-width: 768px) {
    .statistics-section {
        padding: var(--spacing-lg) var(--spacing-md);
        margin: var(--spacing-xl) var(--spacing-sm);
        margin-left: var(--spacing-sm);
        margin-right: var(--spacing-sm);
        max-width: none;
    }
    
    .statistics-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--spacing-md);
    }
    
    .stat-card {
        padding: var(--spacing-lg);
    }
    
    .stat-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
}

@media (max-width: 480px) {
    .statistics-grid {
        grid-template-columns: 1fr;
    }
    
    .stat-number {
        font-size: 2rem;
    }
}

.team-section {
    margin-top: var(--spacing-lg);
    padding: var(--spacing-xl) var(--spacing-lg) var(--spacing-xxl) var(--spacing-lg);
    background: linear-gradient(135deg, rgba(25, 118, 210, 0.02) 0%, rgba(33, 150, 243, 0.02) 100%);
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    border-radius: 20px;
}

.service-hero {
    padding: 60px 0;
    background: linear-gradient(135deg, rgba(25,118,210,0.06) 0%, rgba(33,150,243,0.06) 100%);
}

.service-page-title {
    font-size: 2rem;
    font-weight: 700;
    color: #0D47A1;
    margin: 0 0 12px 0;
}

.service-page-subtitle {
    font-size: 1.05rem;
    color: #555;
    max-width: 900px;
}

.service-detail {
    padding: 48px 0 72px;
}

.service-detail-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 32px;
    align-items: start;
}

.check-list {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
}
.check-list li {
    position: relative;
    padding-left: 28px;
    margin: 10px 0;
    color: #444;
}
.check-list li::before {
    content: "\f00c"; 
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    color: #1976D2;
    position: absolute;
    left: 0;
    top: 2px;
}

.service-gallery {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.service-image {
    width: 100%;
    height: auto;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    border-radius: 14px;
    box-shadow: 0 8px 22px rgba(0,0,0,0.08);
    background: #f2f6fb;
}

@media (max-width: 992px) {
    .service-detail-grid {
        grid-template-columns: 1fr;
    }
    .service-gallery { grid-template-columns: 1fr; }
    .service-image { aspect-ratio: 16 / 10; }
}

.aside-card {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    box-shadow: 0 12px 32px rgba(0,0,0,0.12);
    background: #fff;
}
.aside-card img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    display: block;
}
.aside-caption {
    position: absolute;
    left: 0; right: 0; bottom: 0;
    padding: 16px 18px;
    color: #fff;
    background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0.55) 100%);
    font-weight: 600;
}
.thumbs {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-top: 14px;
}
.thumb {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    background: #fff;
}
.thumb img { width: 100%; height: 120px; object-fit: cover; display: block; }
.thumb-label {
    display: block;
    text-align: center;
    padding: 8px 10px;
    background: linear-gradient(135deg, #1976D2 0%, #42A5F5 100%);
    color: #fff;
    font-size: 0.9rem;
    font-weight: 600;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--spacing-xl);
    margin-top: var(--spacing-xl);
}

.team-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    border: 2px solid transparent;
}

.team-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(25, 118, 210, 0.2);
    border-color: rgba(25, 118, 210, 0.3);
}

.team-image {
    position: relative;
    height: 300px;
    overflow: hidden;
}

.team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.team-card:hover .team-image img {
    transform: scale(1.1);
}

.team-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(25, 118, 210, 0.8), rgba(33, 150, 243, 0.8));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.team-card:hover .team-overlay {
    opacity: 1;
}

.team-social {
    display: flex;
    gap: var(--spacing-md);
}

.social-link {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.2rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.social-link:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-3px) scale(1.1);
}

.team-info {
    padding: var(--spacing-lg);
    text-align: center;
}

.team-name {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: var(--spacing-sm);
    transition: color 0.3s ease;
}

.team-card:hover .team-name {
    color: #1976D2;
}

.team-specialty {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1976D2;
    margin-bottom: var(--spacing-xs);
}

.team-experience {
    font-size: 0.9rem;
    color: var(--text-light);
    font-weight: 500;
}

@media (max-width: 768px) {
    .team-section {
        padding: var(--spacing-lg) var(--spacing-md);
        margin: var(--spacing-xl) var(--spacing-sm);
    }
    
    .team-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: var(--spacing-lg);
    }
    
    .team-image {
        height: 250px;
    }
    
    .team-info {
        padding: var(--spacing-md);
    }
    
    .team-name {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .team-grid {
        grid-template-columns: 1fr;
    }
    
    .team-image {
        height: 220px;
    }
}

.about-new {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    position: relative;
    overflow: hidden;
}

.about-new::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="white" opacity="0.1"/><circle cx="75" cy="75" r="1" fill="white" opacity="0.1"/><circle cx="50" cy="10" r="0.5" fill="white" opacity="0.1"/><circle cx="10" cy="60" r="0.5" fill="white" opacity="0.1"/><circle cx="90" cy="40" r="0.5" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.about-hero {
    padding: 6rem 0;
    position: relative;
    z-index: 2;
}

.about-hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.about-hero-text {
    color: white;
}

.about-subtitle {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 1rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.about-hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.about-hero-description {
    font-size: 1.2rem;
    line-height: 1.7;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

.about-hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-primary, .btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: white;
    color: #667eea;
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.4);
    color: #667eea;
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: white;
    transform: translateY(-3px);
}

.about-hero-image {
    position: relative;
}

.hero-image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    transform: rotate(3deg);
    transition: all 0.3s ease;
}

.hero-image-wrapper:hover {
    transform: rotate(0deg) scale(1.05);
}

.hero-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
}

.hero-image-decoration {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #ff6b6b, #feca57);
    border-radius: 50%;
    opacity: 0.8;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

.about-features-new {
    background: white;
    padding: 4rem 0;
    position: relative;
}

.about-features-new::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #667eea, transparent);
}

.features-grid-new {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.feature-card-new {
    text-align: center;
    padding: 2rem;
    border-radius: 15px;
    background: white;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
}

.feature-card-new:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.2);
    border-color: #667eea;
}

.feature-icon-new {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 2rem;
    transition: all 0.3s ease;
}

.feature-card-new:hover .feature-icon-new {
    transform: scale(1.1) rotate(5deg);
}

.feature-title-new {
    font-size: 1.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 1rem;
}

.feature-description-new {
    color: #666;
    line-height: 1.6;
    font-size: 1rem;
}

.about-section-clean {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 4rem 0;
    position: relative;
}

.about-section-clean::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(135deg, #1976D2 0%, #42A5F5 100%);
    opacity: 0.1;
}

.about-content-clean {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.about-text-clean {
    padding: 2rem;
}

.about-badge-clean {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #1976D2 0%, #42A5F5 100%);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 15px rgba(25, 118, 210, 0.3);
}

.about-badge-clean i {
    font-size: 0.8rem;
}

.about-title-clean {
    font-size: 3rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    background: linear-gradient(135deg, #1976D2 0%, #42A5F5 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-description-clean {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #666;
    margin-bottom: 2.5rem;
}

.about-buttons-clean {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-clean-primary, .btn-clean-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-clean-primary {
    background: linear-gradient(135deg, #1976D2 0%, #42A5F5 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(25, 118, 210, 0.3);
}

.btn-clean-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(25, 118, 210, 0.4);
    color: white;
}

.btn-clean-secondary {
    background: transparent;
    color: #1976D2;
    border: 2px solid #1976D2;
}

.btn-clean-secondary:hover {
    background: #1976D2;
    color: white;
    transform: translateY(-3px);
}

.about-image-clean {
    position: relative;
}

.image-wrapper-clean {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.image-wrapper-clean:hover {
    transform: scale(1.02);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.clinic-image-clean {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: all 0.3s ease;
}

.image-overlay-clean {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #1976D2 0%, #42A5F5 100%);
    color: white;
    padding: 2rem;
    transform: translateY(100%);
    transition: all 0.3s ease;
}

.image-wrapper-clean:hover .image-overlay-clean {
    transform: translateY(0);
}

.overlay-content-clean {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.2rem;
    font-weight: 600;
}

.overlay-content-clean i {
    font-size: 2rem;
}

.about-features-clean {
    margin-top: 4rem;
    padding: 3rem 0;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.features-grid-clean {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 2rem;
}

.feature-card-clean {
    text-align: center;
    padding: 2rem;
    border-radius: 15px;
    background: white;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
}

.feature-card-clean:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(25, 118, 210, 0.2);
    border-color: #1976D2;
}

.feature-icon-clean {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #1976D2 0%, #42A5F5 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 2rem;
    transition: all 0.3s ease;
}

.feature-card-clean:hover .feature-icon-clean {
    transform: scale(1.1) rotate(5deg);
}

.feature-title-clean {
    font-size: 1.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 1rem;
}

.feature-description-clean {
    color: #666;
    line-height: 1.6;
    font-size: 1rem;
}

.why-choose-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f0f8ff 0%, #e3f2fd 100%);
    position: relative;
    overflow: hidden;
}

.why-choose-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(135deg, rgba(25, 118, 210, 0.05) 0%, rgba(66, 165, 245, 0.05) 100%);
    opacity: 0.5;
}

.why-choose-section .section-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 2;
}

.why-choose-section .section-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.why-choose-section .section-badge i {
    font-size: 0.8rem;
}

.why-choose-section .section-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.why-choose-section .title-highlight {
    color: #1976D2;
    font-weight: 600;
}

.why-choose-section .title-main {
    color: #0D47A1;
    font-weight: 700;
}

.why-choose-section .section-description {
    font-size: 1.1rem;
    color: #555;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

.why-choose-grid {
    display: grid;
    grid-template-columns: 1fr 350px 1fr;
    gap: 3rem;
    align-items: start;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    padding: 2rem 0;
}

.why-choose-grid .why-choose-center {
    grid-column: 2;
    grid-row: 1 / span 3;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    padding: 2rem 0;
}

.why-choose-grid .why-item-left:nth-child(2) {
    grid-column: 1;
    grid-row: 1;
}

.why-choose-grid .why-item-left:nth-child(3) {
    grid-column: 1;
    grid-row: 2;
}

.why-choose-grid .why-item-left:nth-child(4) {
    grid-column: 1;
    grid-row: 3;
}

.why-choose-grid .why-item-right:nth-child(5) {
    grid-column: 3;
    grid-row: 1;
}

.why-choose-grid .why-item-right:nth-child(6) {
    grid-column: 3;
    grid-row: 2;
}

.why-choose-grid .why-item-right:nth-child(7) {
    grid-column: 3;
    grid-row: 3;
}

.why-choose-center {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.center-circle {
    width: 160px;
    height: 160px;
    background: linear-gradient(135deg, #1976D2 0%, #42A5F5 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 20px 60px rgba(25, 118, 210, 0.3);
    position: relative;
    z-index: 3;
    animation: pulseCircle 3s ease-in-out infinite;
}

.center-circle i {
    font-size: 4.5rem;
    color: white;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
}

.center-ring {
    position: absolute;
    width: 280px;
    height: 280px;
    border: 2px dashed rgba(25, 118, 210, 0.3);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: rotateRing 20s linear infinite;
}

.center-ring::after {
    content: '';
    position: absolute;
    width: 10px;
    height: 10px;
    background: #1976D2;
    border-radius: 50%;
    top: -5px;
    left: 50%;
    transform: translateX(-50%);
    
    box-shadow: 
        0 140px 0 0 #1976D2,        
        121.24px 70px 0 0 #1976D2,  
        121.24px -70px 0 0 #1976D2, 
        0 -140px 0 0 #1976D2,       
        -121.24px -70px 0 0 #1976D2, 
        -121.24px 70px 0 0 #1976D2;  
}

.why-item {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(25, 118, 210, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
}

.why-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #1976D2, #42A5F5);
    transform: scaleX(0);
    transition: transform 0.4s ease;
    transform-origin: left;
}

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

.why-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(25, 118, 210, 0.2);
    border-color: rgba(25, 118, 210, 0.2);
}

.why-icon-wrapper {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(25, 118, 210, 0.1), rgba(66, 165, 245, 0.1));
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: all 0.4s ease;
    border: 2px solid rgba(25, 118, 210, 0.1);
}

.why-item:hover .why-icon-wrapper {
    background: linear-gradient(135deg, #1976D2, #42A5F5);
    transform: rotate(5deg) scale(1.1);
    border-color: transparent;
    box-shadow: 0 10px 30px rgba(25, 118, 210, 0.3);
}

.why-icon-wrapper i {
    font-size: 2rem;
    color: #1976D2;
    transition: all 0.4s ease;
}

.why-item:hover .why-icon-wrapper i {
    color: white;
    transform: scale(1.1);
}

.why-title {
    font-size: 1.4rem;
    font-weight: 600;
    color: #0D47A1;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.why-description {
    font-size: 1rem;
    color: #666;
    line-height: 1.7;
    margin: 0;
}

@media (max-width: 1024px) {
    .why-choose-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .why-choose-grid .why-choose-center {
        grid-column: 1;
        grid-row: auto;
        order: 1;
        margin: 2rem auto;
    }
    
    
    .why-choose-grid .why-item-left,
    .why-choose-grid .why-item-right,
    .why-choose-grid .why-choose-center {
        grid-column: 1 !important;
        grid-row: auto !important;
    }
    
    .center-circle {
        width: 150px;
        height: 150px;
    }
    
    .center-circle i {
        font-size: 4rem;
    }
    
    .center-ring {
        width: 240px;
        height: 240px;
    }
    
    .center-ring::after {
        box-shadow: 
            0 120px 0 0 #1976D2,
            103.92px 60px 0 0 #1976D2,
            103.92px -60px 0 0 #1976D2,
            0 -120px 0 0 #1976D2,
            -103.92px -60px 0 0 #1976D2,
            -103.92px 60px 0 0 #1976D2;
    }
}

@media (max-width: 768px) {
    .why-choose-section {
        padding: 3rem 0;
    }
    
    .why-choose-section .section-title {
        font-size: 2rem;
    }
    
    .why-item {
        padding: 2rem;
    }
    
    .center-circle {
        width: 120px;
        height: 120px;
    }
    
    .center-circle i {
        font-size: 3rem;
    }
    
    .center-ring {
        width: 200px;
        height: 200px;
    }
    
    .center-ring::after {
        box-shadow: 
            0 100px 0 0 #1976D2,
            86.6px 50px 0 0 #1976D2,
            86.6px -50px 0 0 #1976D2,
            0 -100px 0 0 #1976D2,
            -86.6px -50px 0 0 #1976D2,
            -86.6px 50px 0 0 #1976D2;
    }
}

@keyframes pulseCircle {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 20px 60px rgba(25, 118, 210, 0.3);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 25px 70px rgba(25, 118, 210, 0.4);
    }
}

@keyframes rotateRing {
    from {
        transform: translate(-50%, -50%) rotate(0deg);
    }
    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

.about-home {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 4rem 0;
    position: relative;
}

.about-home::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(135deg, #1976D2 0%, #42A5F5 100%);
    opacity: 0.1;
}

.about-content-home {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.about-text-home {
    padding: 2rem;
}

.about-badge-home {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #1976D2 0%, #42A5F5 100%);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 15px rgba(25, 118, 210, 0.3);
}

.about-badge-home i {
    font-size: 0.8rem;
}

.about-title-home {
    font-size: 3rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    background: linear-gradient(135deg, #1976D2 0%, #42A5F5 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-description-home {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #666;
    margin-bottom: 2.5rem;
}

.about-buttons-home {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-home-primary, .btn-home-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-home-primary {
    background: linear-gradient(135deg, #1976D2 0%, #42A5F5 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(25, 118, 210, 0.3);
}

.btn-home-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(25, 118, 210, 0.4);
    color: white;
}

.btn-home-secondary {
    background: transparent;
    color: #1976D2;
    border: 2px solid #1976D2;
}

.btn-home-secondary:hover {
    background: #1976D2;
    color: white;
    transform: translateY(-3px);
}

.about-image-home {
    position: relative;
}

.image-wrapper-home {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.image-wrapper-home:hover {
    transform: scale(1.02);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.clinic-image-home {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: all 0.3s ease;
}

.image-overlay-home {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #1976D2 0%, #42A5F5 100%);
    color: white;
    padding: 2rem;
    transform: translateY(100%);
    transition: all 0.3s ease;
}

.image-wrapper-home:hover .image-overlay-home {
    transform: translateY(0);
}

.overlay-content-home {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.2rem;
    font-weight: 600;
}

.overlay-content-home i {
    font-size: 2rem;
}

.about-features-home {
    margin-top: 4rem;
    padding: 3rem 0;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.features-grid-home {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 2rem;
}

.feature-card-home {
    text-align: center;
    padding: 2rem;
    border-radius: 15px;
    background: white;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
}

.feature-card-home:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(25, 118, 210, 0.2);
    border-color: #1976D2;
}

.feature-icon-home {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #1976D2 0%, #42A5F5 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 2rem;
    transition: all 0.3s ease;
}

.feature-card-home:hover .feature-icon-home {
    transform: scale(1.1) rotate(5deg);
}

.feature-title-home {
    font-size: 1.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 1rem;
}

.feature-description-home {
    color: #666;
    line-height: 1.6;
    font-size: 1rem;
}

.services-hero {
    background: linear-gradient(135deg, #1976D2 0%, #42A5F5 100%);
    padding: 6rem 0 4rem;
    text-align: center;
    color: white;
    position: relative;
}

.services-hero-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
}

.services-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 30px;
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.services-title {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.services-description {
    font-size: 1.2rem;
    line-height: 1.7;
    margin-bottom: 3rem;
    opacity: 0.95;
}

.services-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 3rem;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #FFD700;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.stat-label {
    font-size: 1rem;
    opacity: 0.9;
    font-weight: 500;
}

.services-categories {
    padding: 4rem 0;
    background: #f8f9fa;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.category-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
}

.category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(25, 118, 210, 0.2);
}

.category-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #1976D2 0%, #42A5F5 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: white;
    font-size: 1.5rem;
}

.category-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 0.5rem;
}

.category-description {
    color: #666;
    line-height: 1.5;
    font-size: 0.9rem;
}

.services-main {
    padding: 5rem 0;
    background: white;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #1976D2 0%, #42A5F5 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-description {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

.services-grid-new {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.service-card-new {
    background: white;
    border-radius: 15px;
    padding: 1.5rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
    position: relative;
}

.service-card-new:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(25, 118, 210, 0.2);
    border-color: #1976D2;
}

.service-icon-new {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #1976D2 0%, #42A5F5 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    color: white;
    font-size: 1.5rem;
}

.service-content-new {
    margin-bottom: 1rem;
}

.service-title-new {
    font-size: 1.2rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 0.5rem;
}

.service-description-new {
    color: #666;
    line-height: 1.5;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.service-features-new {
    display: flex;
    gap: 0.3rem;
    flex-wrap: wrap;
    margin-bottom: 1rem;
}

.feature-tag {
    background: #E3F2FD;
    color: #1976D2;
    padding: 0.2rem 0.6rem;
    border-radius: 10px;
    font-size: 0.75rem;
    font-weight: 500;
}

.service-link-new {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    color: #1976D2;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
}

.service-link-new:hover {
    color: #1565C0;
}

.service-link-new i {
    font-size: 0.8rem;
}

.services-cta-new {
    margin-top: 4rem;
    background: linear-gradient(135deg, #1976D2 0%, #42A5F5 100%);
    border-radius: 20px;
    padding: 3rem 2rem;
    text-align: center;
    color: white;
}

.cta-content-new {
    max-width: 600px;
    margin: 0 auto;
}

.cta-icon-new {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.5rem;
}

.cta-title-new {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.cta-description-new {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.cta-buttons-new {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-cta-primary, .btn-cta-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 1.5rem;
    border-radius: 20px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.btn-cta-primary {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn-cta-primary:hover {
    background: rgba(255, 255, 255, 0.3);
    color: white;
}

.btn-cta-secondary {
    background: transparent;
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.btn-cta-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    color: white;
}

@media (max-width: 768px) {
    .services-title {
        font-size: 2.5rem;
    }
    
    .services-stats {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .categories-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .services-grid-new {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 0 1rem;
    }
    
    .services-cta-new {
        padding: 2rem 1rem;
    }
    
    .cta-title-new {
        font-size: 1.5rem;
    }
    
    .cta-buttons-new {
        flex-direction: column;
        align-items: center;
    }
    
    .about-content-home {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .about-title-home {
        font-size: 2.5rem;
    }
    
    .about-buttons-home {
        justify-content: center;
    }
    
    .features-grid-home {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .clinic-image-home {
        height: 300px;
    }
    
    .about-content-clean {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .about-title-clean {
        font-size: 2.5rem;
    }
    
    .about-buttons-clean {
        justify-content: center;
    }
    
    .features-grid-clean {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .clinic-image-clean {
        height: 300px;
    }
}

.about-section-new::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="white" opacity="0.1"/><circle cx="75" cy="75" r="1" fill="white" opacity="0.1"/><circle cx="50" cy="10" r="0.5" fill="white" opacity="0.1"/><circle cx="10" cy="60" r="0.5" fill="white" opacity="0.1"/><circle cx="90" cy="40" r="0.5" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.about-hero-new {
    padding: 6rem 0;
    position: relative;
    z-index: 2;
}

.about-hero-content-new {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.about-hero-text-new {
    color: white;
}

.about-badge-new {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 1rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.about-hero-title-new {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.about-hero-description-new {
    font-size: 1.2rem;
    line-height: 1.7;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

.about-hero-buttons-new {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-primary-new, .btn-secondary-new {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-primary-new {
    background: white;
    color: #667eea;
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.3);
}

.btn-primary-new:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.4);
    color: #667eea;
}

.btn-secondary-new {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(10px);
}

.btn-secondary-new:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: white;
    transform: translateY(-3px);
}

.about-hero-image-new {
    position: relative;
}

.hero-image-wrapper-new {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    transform: rotate(3deg);
    transition: all 0.3s ease;
}

.hero-image-wrapper-new:hover {
    transform: rotate(0deg) scale(1.05);
}

.hero-image-new {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
}

.hero-image-decoration-new {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #ff6b6b, #feca57);
    border-radius: 50%;
    opacity: 0.8;
    animation: float 3s ease-in-out infinite;
}

.about-features-new {
    background: white;
    padding: 4rem 0;
    position: relative;
}

.about-features-new::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #667eea, transparent);
}

.features-grid-new {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.feature-card-new {
    text-align: center;
    padding: 2rem;
    border-radius: 15px;
    background: white;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
}

.feature-card-new:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.2);
    border-color: #667eea;
}

.feature-icon-new {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 2rem;
    transition: all 0.3s ease;
}

.feature-card-new:hover .feature-icon-new {
    transform: scale(1.1) rotate(5deg);
}

.feature-title-new {
    font-size: 1.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 1rem;
}

.feature-description-new {
    color: #666;
    line-height: 1.6;
    font-size: 1rem;
}

@media (max-width: 768px) {
    .about-hero-content-new {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .about-hero-title-new {
        font-size: 2.5rem;
    }
    
    .about-hero-buttons-new {
        justify-content: center;
    }
    
    .features-grid-new {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .hero-image-new {
        height: 300px;
    }
}

.about-content-modern {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.about-text-modern {
    padding: 2rem;
}

.about-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #1976D2 0%, #42A5F5 100%);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 15px rgba(25, 118, 210, 0.3);
}

.about-badge i {
    font-size: 0.8rem;
}

.about-title-modern {
    font-size: 3rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    background: linear-gradient(135deg, #1976D2 0%, #42A5F5 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-description-modern {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #666;
    margin-bottom: 2.5rem;
}

.about-stats-modern {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.stat-item-modern {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: white;
    padding: 1.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    min-width: 200px;
}

.stat-item-modern:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.stat-icon-modern {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #1976D2 0%, #42A5F5 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
}

.stat-content-modern {
    display: flex;
    flex-direction: column;
}

.stat-number-modern {
    font-size: 1.8rem;
    font-weight: 700;
    color: #333;
    line-height: 1;
}

.stat-label-modern {
    font-size: 0.9rem;
    color: #666;
    font-weight: 500;
}

.about-image-modern {
    position: relative;
}

.image-container-modern {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.image-container-modern:hover {
    transform: scale(1.02);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.clinic-image-modern {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: all 0.3s ease;
}

.image-overlay-modern {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #1976D2 0%, #42A5F5 100%);
    color: white;
    padding: 2rem;
    transform: translateY(100%);
    transition: all 0.3s ease;
}

.image-container-modern:hover .image-overlay-modern {
    transform: translateY(0);
}

.overlay-content-modern {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.2rem;
    font-weight: 600;
}

.overlay-content-modern i {
    font-size: 2rem;
}

@media (max-width: 768px) {
    .about-content-modern {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .about-title-modern {
        font-size: 2.5rem;
    }
    
    .about-stats-modern {
        justify-content: center;
    }
    
    .stat-item-modern {
        min-width: 150px;
    }
    
    .clinic-image-modern {
        height: 300px;
    }
}

.about-main {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 400px;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.about-image-section {
    position: relative;
    overflow: hidden;
}

.clinic-photo {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.clinic-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    transition: all 0.3s ease;
}

.clinic-photo:hover .clinic-image {
    transform: scale(1.05);
}

.photo-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.7);
    color: var(--white);
    padding: var(--spacing-sm) var(--spacing-md);
    border-radius: var(--border-radius-sm);
    font-size: 0.9rem;
    font-weight: 500;
    text-align: center;
}

.about-text-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
    display: flex;
    align-items: center;
    padding: var(--spacing-xl);
    position: relative;
    overflow: hidden;
}

.about-text-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(64,64,64,0.1) 0%, rgba(64,64,64,0.05) 100%);
    pointer-events: none;
}

.about-content {
    color: var(--white);
    position: relative;
    z-index: 2;
}

.about-title {
    font-family: var(--heading-font);
    font-size: 2rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: var(--spacing-md);
    text-align: left;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    background: linear-gradient(45deg, #ffffff, #f8f9fa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-description {
    font-size: 1rem;
    color: var(--white);
    line-height: 1.7;
    opacity: 0.95;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.about-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    margin-bottom: var(--spacing-xl);
}

.feature-card {
    padding: var(--spacing-xl);
    text-align: center;
    color: var(--white);
    position: relative;
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.feature-card.quality {
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a24 100%);
}

.feature-card.technology {
    background: linear-gradient(135deg, #4834d4 0%, #686de0 100%);
}

.feature-card.expert {
    background: linear-gradient(135deg, #00d2d3 0%, #54a0ff 100%);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--spacing-lg);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.feature-icon i {
    font-size: 2rem;
    color: var(--white);
}

.feature-title {
    font-family: var(--heading-font);
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: var(--spacing-md);
}

.feature-description {
    color: var(--white);
    line-height: 1.7;
    opacity: 0.95;
    font-size: 0.95rem;
}

.gallery {
    padding: var(--spacing-xxl) 0;
    background: linear-gradient(135deg, rgba(25, 118, 210, 0.02) 0%, rgba(33, 150, 243, 0.02) 100%);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-lg);
    margin-top: var(--spacing-xl);
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.gallery-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    cursor: pointer;
    aspect-ratio: 4/3;
}

.gallery-item-large {
    grid-column: span 2;
    grid-row: span 2;
    aspect-ratio: 4/3;
}

.gallery-item:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 15px 35px rgba(25, 118, 210, 0.2);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(25, 118, 210, 0.9), rgba(33, 150, 243, 0.9));
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-info {
    text-align: center;
    color: var(--white);
    margin-bottom: var(--spacing-md);
}

.gallery-info h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: var(--spacing-xs);
}

.gallery-info p {
    font-size: 0.9rem;
    opacity: 0.9;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay i {
    font-size: 3rem;
    color: var(--white);
    transition: transform 0.3s ease;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.gallery-item:hover .gallery-overlay i {
    transform: scale(1.3);
}

.lightbox {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(5px);
    animation: fadeIn 0.3s ease;
}

.lightbox.show {
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    display: flex;
    flex-direction: column;
    align-items: center;
    animation: zoomIn 0.3s ease;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 80vh;
    object-fit: contain;
    border-radius: var(--border-radius-lg);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.lightbox-close {
    position: absolute;
    top: -50px;
    right: 0;
    color: var(--white);
    font-size: 3rem;
    font-weight: bold;
    cursor: pointer;
    z-index: 10000;
    transition: all 0.3s ease;
}

.lightbox-close:hover {
    color: var(--primary-color);
    transform: scale(1.1);
}

.lightbox-caption {
    background: rgba(0, 0, 0, 0.8);
    color: var(--white);
    padding: var(--spacing-lg);
    border-radius: var(--border-radius-lg);
    margin-top: var(--spacing-md);
    text-align: center;
    max-width: 600px;
    backdrop-filter: blur(10px);
}

.lightbox-caption h3 {
    font-family: var(--heading-font);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: var(--spacing-xs);
    color: var(--white);
}

.lightbox-caption p {
    font-size: 1rem;
    opacity: 0.9;
    line-height: 1.6;
}

.lightbox-counter {
    margin-top: var(--spacing-sm);
    font-size: 0.9rem;
    opacity: 0.8;
    font-weight: 500;
    color: var(--primary-color);
}

.lightbox-image {
    position: relative;
    max-width: 90vw;
    max-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

#lightbox-image {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border-radius: var(--border-radius);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.7);
    color: var(--white);
    border: none;
    font-size: 2rem;
    padding: var(--spacing-md);
    cursor: pointer;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    z-index: 10001;
}

.lightbox-prev:hover,
.lightbox-next:hover {
    background: var(--primary-color);
    transform: translateY(-50%) scale(1.1);
}

.lightbox-prev {
    left: 20px;
}

.lightbox-next {
    right: 20px;
}

@media (max-width: 768px) {
    .lightbox-prev,
    .lightbox-next {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
    
    .lightbox-prev {
        left: 10px;
    }
    
    .lightbox-next {
        right: 10px;
    }
}

@media (max-width: 480px) {
    .lightbox-prev,
    .lightbox-next {
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
    }
    
    .lightbox-prev {
        left: 5px;
    }
    
    .lightbox-next {
        right: 5px;
    }
}

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

@keyframes zoomIn {
    from { 
        opacity: 0;
        transform: scale(0.8);
    }
    to { 
        opacity: 1;
        transform: scale(1);
    }
}

.page-header {
    padding: var(--spacing-xxl) 0 var(--spacing-xl) 0;
    background: linear-gradient(135deg, var(--primary-color), #45a049);
    color: var(--white);
    text-align: center;
    margin-top: 80px;
}

.page-header-content {
    max-width: 800px;
    margin: 0 auto;
}

.page-title {
    font-family: var(--heading-font);
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: var(--spacing-md);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-description {
    font-size: 1.2rem;
    opacity: 0.9;
    line-height: 1.6;
}

.careers {
    padding: var(--spacing-xxl) 0;
    background-color: var(--white);
}

.careers-section {
    padding: var(--spacing-xxl) 0;
    background-color: var(--white);
}

.careers-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xxl);
    align-items: start;
}

.careers-content {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-lg);
}

.careers-intro {
    background: var(--light-gray);
    padding: var(--spacing-xl);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-sm);
}

.careers-intro p {
    color: var(--text-gray);
    line-height: 1.8;
    font-size: 1rem;
    margin: 0;
}

.job-positions {
    margin-top: var(--spacing-xl);
}

.job-positions h3 {
    font-family: var(--heading-font);
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--dark-gray);
    margin-bottom: var(--spacing-lg);
}

.job-card {
    background: var(--white);
    border: 1px solid var(--border-light);
    border-radius: var(--border-radius-lg);
    padding: var(--spacing-xl);
    margin-bottom: var(--spacing-lg);
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.job-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-color);
}

.job-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--spacing-md);
    padding-bottom: var(--spacing-sm);
    border-bottom: 1px solid var(--border-light);
}

.job-header h4 {
    font-family: var(--heading-font);
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--dark-gray);
    margin: 0;
}

.job-type {
    background: var(--primary-color);
    color: var(--white);
    padding: var(--spacing-xs) var(--spacing-sm);
    border-radius: var(--border-radius-sm);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.job-details {
    margin-bottom: var(--spacing-md);
}

.job-details p {
    color: var(--text-gray);
    margin-bottom: var(--spacing-xs);
    font-size: 0.9rem;
}

.job-details strong {
    color: var(--dark-gray);
    font-weight: 600;
}

.job-description {
    margin-bottom: var(--spacing-lg);
}

.job-description p {
    color: var(--text-gray);
    line-height: 1.6;
    font-size: 0.95rem;
}

.apply-btn {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    border: none;
    padding: var(--spacing-sm) var(--spacing-lg);
    border-radius: var(--border-radius-md);
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.apply-btn:hover {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-color));
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.careers-content {
    margin-top: var(--spacing-xl);
}

.careers-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xxl);
    align-items: start;
}

.careers-left {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-lg);
}

.careers-image {
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.careers-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    object-position: center;
}

.careers-text {
    background: var(--light-gray);
    padding: var(--spacing-xl);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-sm);
}

.careers-text p {
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: var(--spacing-md);
    font-size: 1rem;
}

.careers-text p:last-child {
    margin-bottom: 0;
}

.careers-right {
    background: var(--white);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
    padding: var(--spacing-xl);
}

.careers-text h3 {
    font-family: var(--heading-font);
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--dark-gray);
    margin-bottom: var(--spacing-md);
}

.careers-text p {
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: var(--spacing-xl);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-lg);
}

.benefit-item {
    text-align: center;
    padding: var(--spacing-lg);
    background: var(--light-gray);
    border-radius: var(--border-radius-md);
    transition: all 0.3s ease;
}

.benefit-item:hover {
    background: var(--medium-gray);
    transform: translateY(-3px);
}

.benefit-item i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: var(--spacing-sm);
}

.benefit-item h4 {
    font-family: var(--heading-font);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--dark-gray);
    margin-bottom: var(--spacing-xs);
}

.benefit-item p {
    color: var(--text-gray);
    font-size: 0.9rem;
    line-height: 1.6;
}

.careers-form {
    background: var(--light-gray);
    padding: var(--spacing-xl);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-sm);
}

.careers-form h3 {
    font-family: var(--heading-font);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--dark-gray);
    margin-bottom: var(--spacing-lg);
    text-align: center;
}

.form-section {
    margin-bottom: var(--spacing-xl);
    padding-bottom: var(--spacing-lg);
    border-bottom: 1px solid var(--medium-gray);
}

.form-section:last-of-type {
    border-bottom: none;
    margin-bottom: var(--spacing-lg);
}

.form-section h4 {
    font-family: var(--heading-font);
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--dark-gray);
    margin-bottom: var(--spacing-md);
    padding-bottom: var(--spacing-xs);
    border-bottom: 2px solid var(--primary-color);
    display: inline-block;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-md);
}

.form-group {
    margin-bottom: var(--spacing-md);
}

.form-group label {
    display: block;
    font-weight: 500;
    color: var(--dark-gray);
    margin-bottom: var(--spacing-xs);
    font-size: 0.9rem;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: var(--spacing-sm) var(--spacing-md);
    border: 2px solid var(--medium-gray);
    border-radius: var(--border-radius-md);
    font-size: 0.9rem;
    transition: all 0.3s ease;
    background: var(--white);
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(76, 175, 80, 0.1);
}

.radio-group {
    display: flex;
    gap: var(--spacing-lg);
    margin-top: var(--spacing-xs);
}

.radio-label {
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
    cursor: pointer;
    font-weight: normal;
    margin-bottom: 0;
}

.radio-label input[type="radio"] {
    width: auto;
    margin: 0;
}

.file-upload {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    margin-top: var(--spacing-xs);
}

.file-label {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-xs);
    padding: var(--spacing-sm) var(--spacing-md);
    background: var(--primary-color);
    color: var(--white);
    border-radius: var(--border-radius-md);
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
    font-size: 0.9rem;
}

.file-label:hover {
    background: #45a049;
    transform: translateY(-2px);
}

.file-name {
    color: var(--text-gray);
    font-size: 0.9rem;
    font-style: italic;
}

.form-group small {
    display: block;
    color: var(--text-gray);
    font-size: 0.8rem;
    margin-top: var(--spacing-xs);
}

.file-label {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-xs);
    padding: var(--spacing-sm) var(--spacing-md);
    background: var(--primary-color);
    color: var(--white);
    border-radius: var(--border-radius-md);
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
}

.file-label:hover {
    background: #45a049;
    transform: translateY(-2px);
}

.file-label i {
    font-size: 1rem;
}

.testimonials {
    padding: var(--spacing-xxl) 0;
    background-color: var(--light-gray);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: var(--spacing-lg);
    margin-top: var(--spacing-xl);
}

.testimonial-card {
    background: var(--white);
    padding: var(--spacing-xl);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-gray);
    transition: all 0.3s ease;
    position: relative;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.testimonial-content {
    margin-bottom: var(--spacing-lg);
}

.stars {
    display: flex;
    gap: var(--spacing-xs);
    margin-bottom: var(--spacing-md);
}

.stars i {
    color: #FFD700;
    font-size: 1.1rem;
}

.testimonial-text {
    font-style: italic;
    color: var(--text-gray);
    line-height: 1.8;
    font-size: 1rem;
    position: relative;
}

.testimonial-text::before {
    content: '';
    font-size: 3rem;
    color: var(--primary-color);
    position: absolute;
    top: -10px;
    left: -10px;
    font-family: serif;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.author-avatar i {
    color: var(--white);
    font-size: 1.2rem;
}

.author-info h4 {
    font-family: var(--heading-font);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--dark-gray);
    margin-bottom: var(--spacing-xs);
}

.author-info span {
    color: var(--text-gray);
    font-size: 0.9rem;
}

.contact {
    padding: var(--spacing-xxl) 0;
    background-color: var(--white);
}

.contact-section {
    padding: var(--spacing-xxl) 0;
    background-color: var(--white);
}

.contact-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-lg);
    margin-top: var(--spacing-xl);
}

.contact-card {
    background: var(--white);
    padding: var(--spacing-xl);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-light);
    transition: all 0.3s ease;
    text-align: center;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-color);
}

.contact-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--spacing-md);
    transition: all 0.3s ease;
}

.contact-card:hover .contact-icon {
    transform: scale(1.1) rotate(5deg);
}

.contact-icon i {
    font-size: 2rem;
    color: var(--white);
}

.contact-details h3 {
    font-family: var(--heading-font);
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--dark-gray);
    margin-bottom: var(--spacing-sm);
}

.contact-details p {
    color: var(--text-gray);
    line-height: 1.6;
}

.form-container {
    background: var(--light-gray);
    padding: var(--spacing-xl);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-sm);
}

.form-container h3 {
    font-family: var(--heading-font);
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--dark-gray);
    margin-bottom: var(--spacing-lg);
    text-align: center;
}

.appointment-form,
.career-form {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-md);
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 600;
    color: var(--dark-gray);
    margin-bottom: var(--spacing-xs);
    font-size: 0.9rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: var(--spacing-sm) var(--spacing-md);
    border: 2px solid var(--border-gray);
    border-radius: var(--border-radius-md);
    font-family: var(--primary-font);
    font-size: 1rem;
    transition: all 0.3s ease;
    background-color: var(--white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(25, 118, 210, 0.1);
}

.submit-btn {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    border: none;
    padding: var(--spacing-md) var(--spacing-xl);
    border-radius: var(--border-radius-md);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-sm);
    margin-top: var(--spacing-md);
}

.submit-btn:hover {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-color));
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xxl);
    margin-top: var(--spacing-xl);
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-lg);
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: var(--spacing-md);
    padding: var(--spacing-md);
    background: var(--light-gray);
    border-radius: var(--border-radius-md);
    transition: all 0.3s ease;
}

.contact-item:hover {
    background: var(--medium-gray);
    transform: translateX(5px);
}

.contact-item i {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-top: 5px;
    flex-shrink: 0;
}

.contact-item h4 {
    font-family: var(--heading-font);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--dark-gray);
    margin-bottom: var(--spacing-xs);
}

.contact-item p {
    color: var(--text-gray);
    line-height: 1.6;
}

.contact-form {
    background: var(--light-gray);
    padding: var(--spacing-xl);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-sm);
}

.form-group {
    margin-bottom: var(--spacing-md);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: var(--spacing-sm);
    border: 2px solid var(--border-gray);
    border-radius: var(--border-radius-md);
    font-family: var(--primary-font);
    font-size: 1rem;
    transition: all 0.3s ease;
    background-color: var(--white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(76, 175, 80, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.footer {
    background-color: var(--dark-gray);
    color: var(--white);
    padding: var(--spacing-xxl) 0 var(--spacing-lg);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-xl);
    margin-bottom: var(--spacing-xl);
}

.footer-section h4 {
    font-family: var(--heading-font);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: var(--spacing-md);
    color: var(--white);
}

.footer-logo {
    display: flex;
    align-items: center;
    font-family: var(--heading-font);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: var(--spacing-md);
}

.footer-logo i {
    margin-right: var(--spacing-xs);
    font-size: 1.8rem;
}

.footer-description {
    color: #CCCCCC;
    line-height: 1.6;
    margin-bottom: var(--spacing-md);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: var(--spacing-xs);
}

.footer-links a {
    color: #CCCCCC;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary-color);
}

.footer-contact p {
    color: #CCCCCC;
    margin-bottom: var(--spacing-xs);
    display: flex;
    align-items: flex-start;
    gap: var(--spacing-xs);
    line-height: 1.5;
}

.footer-contact i {
    color: var(--primary-color);
    width: 16px;
    margin-top: 2px;
    flex-shrink: 0;
}

.social-links {
    display: flex;
    gap: var(--spacing-sm);
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background-color: var(--secondary-color);
    transform: translateY(-2px);
}

.footer-bottom {
    border-top: 1px solid #444;
    padding-top: var(--spacing-md);
    text-align: center;
    color: #CCCCCC;
}

.service-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.service-modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.service-modal {
    background: var(--white);
    border-radius: var(--border-radius-lg);
    max-width: 800px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: var(--shadow-lg);
    transform: scale(0.8);
    transition: transform 0.3s ease;
}

.service-modal-overlay.active .service-modal {
    transform: scale(1);
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--spacing-lg);
    border-bottom: 1px solid var(--border-gray);
}

.modal-header h2 {
    font-family: var(--heading-font);
    font-size: 1.8rem;
    color: var(--dark-gray);
    margin: 0;
}

.modal-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--text-gray);
    cursor: pointer;
    padding: var(--spacing-xs);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.modal-close:hover {
    background-color: var(--light-gray);
    color: var(--dark-gray);
}

.modal-content {
    padding: var(--spacing-lg);
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: var(--spacing-lg);
    align-items: start;
}

.modal-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.service-image-placeholder {
    width: 150px;
    height: 150px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-md);
}

.service-image-placeholder i {
    font-size: 4rem;
    color: var(--white);
}

.modal-text h3 {
    font-family: var(--heading-font);
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: var(--spacing-sm);
}

.modal-text h4 {
    font-family: var(--heading-font);
    font-size: 1.1rem;
    color: var(--dark-gray);
    margin: var(--spacing-md) 0 var(--spacing-sm) 0;
}

.modal-text p {
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: var(--spacing-sm);
}

.modal-text ul {
    list-style: none;
    padding: 0;
}

.modal-text li {
    color: var(--text-gray);
    padding: var(--spacing-xs) 0;
    padding-left: var(--spacing-md);
    position: relative;
}

.modal-text li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

@media (max-width: 768px) {
    
    .header-actions {
        gap: var(--spacing-sm);
    }
    
    .language-selector {
        margin-left: var(--spacing-sm);
    }
    
    .quick-appointment-btn {
        padding: var(--spacing-xs) var(--spacing-sm);
        font-size: 0.8rem;
    }
    
    
    .contact-cards {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
    }
    
    .contact-card {
        padding: var(--spacing-lg);
    }
    
    
    .form-row {
        grid-template-columns: 1fr;
        gap: var(--spacing-sm);
    }
    
    .form-container {
        padding: var(--spacing-lg);
    }
    
    
    .careers-layout {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }
    
    .job-header {
        flex-direction: column;
        align-items: flex-start;
        gap: var(--spacing-sm);
    }
    
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--spacing-sm);
    }
    
    .gallery-item-large {
        grid-column: span 2;
        grid-row: span 1;
    }
    
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
    }
    
    
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--spacing-md);
    }
    
    
    .statistics-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--spacing-md);
    }
    
    .stat-card {
        padding: var(--spacing-lg);
    }
    
    .stat-number {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    
    .container {
        padding: 0 var(--spacing-xs);
    }
    
    .page-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-item-large {
        grid-column: span 1;
    }
    
    
    .team-grid {
        grid-template-columns: 1fr;
    }
    
    
    .statistics-grid {
        grid-template-columns: 1fr;
    }
    
    
    .contact-cards {
        grid-template-columns: 1fr;
    }
    
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        font-size: 0.9rem;
        padding: var(--spacing-xs) var(--spacing-sm);
    }
    
    .submit-btn {
        padding: var(--spacing-sm) var(--spacing-md);
        font-size: 0.9rem;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .statistics-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

.service-card,
.team-card,
.gallery-item,
.contact-card,
.job-card {
    will-change: transform;
    transform: translateZ(0);
}

.gallery-item img,
.team-image img {
    
}

.section {
    padding: var(--spacing-xxl) 0;
}

.about-section {
    padding: var(--spacing-xxl) 0;
    background-color: var(--white);
}

.statistics-section {
    padding: var(--spacing-xxl) 0;
    background: linear-gradient(135deg, rgba(25, 118, 210, 0.05) 0%, rgba(33, 150, 243, 0.05) 100%);
}

.about-features {
    display: flex;
    gap: var(--spacing-lg);
    margin-top: var(--spacing-lg);
    flex-wrap: wrap;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    background: var(--light-gray);
    padding: var(--spacing-sm) var(--spacing-md);
    border-radius: var(--border-radius-md);
    font-weight: 500;
    color: var(--dark-gray);
    transition: all 0.3s ease;
}

.feature-item:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
}

.feature-item i {
    color: var(--primary-color);
    transition: color 0.3s ease;
}

.feature-item:hover i {
    color: var(--white);
}

.team-image-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 3rem;
}

.about-image-placeholder {
    width: 100%;
    height: 300px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--white);
    border-radius: var(--border-radius-lg);
    text-align: center;
}

.about-image-placeholder i {
    font-size: 4rem;
    margin-bottom: var(--spacing-md);
}

.about-image-placeholder p {
    font-size: 1.2rem;
    font-weight: 600;
    margin: 0;
}

.back-to-top {
    position: fixed;
    bottom: var(--spacing-lg);
    right: var(--spacing-lg);
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
}

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

.back-to-top:hover {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-color));
    transform: translateY(-3px) scale(1.1);
    box-shadow: var(--shadow-lg);
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}

.service-detail {
    padding: var(--spacing-xxl) 0;
    background-color: var(--white);
}

.service-detail-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: var(--spacing-xxl);
    align-items: start;
}

.service-detail-left {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xl);
}

.service-intro h2 {
    font-family: var(--heading-font);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark-gray);
    margin-bottom: var(--spacing-md);
}

.service-intro p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-gray);
    margin-bottom: var(--spacing-lg);
}

.service-benefits h3,
.treatment-process h3 {
    font-family: var(--heading-font);
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--dark-gray);
    margin-bottom: var(--spacing-lg);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-md);
}

.benefit-item {
    background: var(--light-gray);
    padding: var(--spacing-lg);
    border-radius: var(--border-radius-lg);
    text-align: center;
    transition: all 0.3s ease;
}

.benefit-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.benefit-item i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: var(--spacing-sm);
}

.benefit-item h4 {
    font-family: var(--heading-font);
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--dark-gray);
    margin-bottom: var(--spacing-xs);
}

.benefit-item p {
    color: var(--text-gray);
    font-size: 0.95rem;
    line-height: 1.6;
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-lg);
}

.step {
    display: flex;
    align-items: flex-start;
    gap: var(--spacing-md);
    padding: var(--spacing-lg);
    background: var(--light-gray);
    border-radius: var(--border-radius-lg);
    border-left: 4px solid var(--primary-color);
}

.step-number {
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.step-content h4 {
    font-family: var(--heading-font);
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--dark-gray);
    margin-bottom: var(--spacing-xs);
}

.step-content p {
    color: var(--text-gray);
    line-height: 1.6;
}

.service-detail-right {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-lg);
}

.service-images {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.main-image {
    position: relative;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f8f9fa;
}

.main-image img {
    width: 100%;
    height: auto;
    max-height: 500px;
    object-fit: contain;
    object-position: center;
}

.image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(26,26,26,0.7));
    color: var(--white);
    padding: var(--spacing-lg);
}

.image-overlay h4 {
    font-family: var(--heading-font);
    font-size: 1.3rem;
    font-weight: 600;
    margin: 0;
}

.image-gallery {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-sm);
}

.service-info h3 {
    font-family: var(--heading-font);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--dark-gray);
    margin-bottom: var(--spacing-md);
}

.info-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-sm);
}

.info-card {
    background: var(--light-gray);
    padding: var(--spacing-md);
    border-radius: var(--border-radius-md);
    text-align: center;
    transition: all 0.3s ease;
}

.info-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-sm);
}

.info-card i {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: var(--spacing-xs);
}

.info-card h4 {
    font-family: var(--heading-font);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--dark-gray);
    margin-bottom: var(--spacing-xs);
}

.info-card p {
    color: var(--text-gray);
    font-size: 0.9rem;
    font-weight: 500;
}

.appointment-cta {
    background: linear-gradient(135deg, var(--primary-color) 0%, #45a049 100%);
    padding: var(--spacing-xxl) 0;
    text-align: center;
}

.cta-content h2 {
    font-family: var(--heading-font);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: var(--spacing-md);
}

.cta-content p {
    font-size: 1.2rem;
    color: var(--white);
    margin-bottom: var(--spacing-lg);
    opacity: 0.9;
}

.btn-large {
    padding: var(--spacing-md) var(--spacing-xl);
    font-size: 1.1rem;
    font-weight: 600;
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(25, 118, 210, 0.9), rgba(33, 150, 243, 0.9));
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    padding: var(--spacing-md);
}

.gallery-info {
    text-align: center;
    color: var(--white);
    margin-bottom: var(--spacing-md);
}

.gallery-info h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: var(--spacing-xs);
}

.gallery-info p {
    font-size: 0.9rem;
    opacity: 0.9;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay i {
    font-size: 3rem;
    color: var(--white);
    transition: transform 0.3s ease;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.gallery-item:hover .gallery-overlay i {
    transform: scale(1.3);
}

.gallery-more-container {
    display: flex;
    justify-content: center;
    margin-top: var(--spacing-xl);
    padding: var(--spacing-lg) 0;
}

.gallery-more-btn {
    background: linear-gradient(135deg, #1976D2, #2196F3);
    color: var(--white);
    text-decoration: none;
    border: none;
    padding: var(--spacing-md) var(--spacing-xl);
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 4px 15px rgba(25, 118, 210, 0.25);
    position: relative;
    overflow: hidden;
}

.gallery-more-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(64, 64, 64, 0.2), transparent);
    transition: left 0.5s ease;
}

.gallery-more-btn:hover {
    background: linear-gradient(135deg, #0D47A1, #1976D2);
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 6px 20px rgba(25, 118, 210, 0.35);
    text-decoration: none;
    color: var(--white);
}

.gallery-more-btn:hover::before {
    left: 100%;
}

.gallery-more-btn .btn-icon {
    transition: transform 0.3s ease;
}

.gallery-more-btn:hover .btn-icon {
    transform: scale(1.2) rotate(5deg);
}

.gallery-more-btn .btn-text {
    transition: all 0.3s ease;
}

.lightbox-modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.lightbox-modal.show {
    display: flex;
    align-items: center;
    justify-content: center;
    animation: lightboxFadeIn 0.3s ease;
}

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

.lightbox-content {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 100%;
    border-radius: 10px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    animation: lightboxZoomIn 0.3s ease;
}

.lightbox-info {
    display: none !important;
    visibility: hidden !important;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
    padding: 2rem;
    text-align: center;
}

.lightbox-info h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.lightbox-info p {
    font-size: 1rem;
    opacity: 0.9;
    margin-bottom: 1rem;
}

.lightbox-counter {
    font-size: 0.9rem;
    opacity: 0.8;
}

.lightbox-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 300px;
    color: var(--text-light);
    font-size: 1.2rem;
}

.lightbox-placeholder i {
    font-size: 4rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.lightbox-placeholder p {
    font-size: 1rem;
    margin: 0;
}

@keyframes lightboxZoomIn {
    from {
        transform: scale(0.8);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

.lightbox-close {
    position: absolute;
    top: -50px;
    right: 0;
    color: var(--white);
    font-size: 2rem;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s ease;
    z-index: 10001;
}

.lightbox-close:hover {
    color: #1976D2;
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    pointer-events: none;
}

.lightbox-btn {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: var(--white);
    font-size: 1.5rem;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    pointer-events: all;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-btn:hover {
    background: rgba(25, 118, 210, 0.8);
    transform: scale(1.1);
}

.lightbox-btn:first-child {
    margin-left: -60px;
}

.lightbox-btn:last-child {
    margin-right: -60px;
}

@media (max-width: 768px) {
    .lightbox-close {
        top: -40px;
        font-size: 1.5rem;
    }
    
    .lightbox-btn {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    
    .lightbox-btn:first-child {
        margin-left: -50px;
    }
    
    .lightbox-btn:last-child {
        margin-right: -50px;
    }
}

.map-section {
    padding: var(--spacing-xxl) 0;
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
}

.map-container {
    margin-top: var(--spacing-xl);
}

.map-wrapper {
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    height: 450px;
}

.map-wrapper iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

@media (max-width: 768px) {
    .map-section {
        padding: var(--spacing-xl) 0;
    }
    
    .map-wrapper {
        height: 350px;
    }
}

@media (max-width: 480px) {
    .map-wrapper {
        height: 300px;
    }
}

.rtl {
    direction: rtl;
    text-align: right;
}

.rtl .container {
    direction: rtl;
}

.rtl .nav-container {
    flex-direction: row-reverse;
}

.rtl .nav-logo {
    order: 2;
}

.rtl .nav-menu {
    order: 1;
}

.rtl .header-actions {
    order: 0;
}

.rtl .dropdown-menu {
    right: 0;
    left: auto;
}

.rtl .dropdown-column {
    text-align: right;
}

.rtl .form-group input,
.rtl .form-group select,
.rtl .form-group textarea {
    text-align: right;
    direction: rtl;
}

.rtl .btn {
    text-align: center;
}

.rtl .service-card,
.rtl .team-card,
.rtl .testimonial-card {
    text-align: right;
}

.rtl .footer-content {
    direction: rtl;
}

.rtl .footer-section {
    text-align: right;
}

.rtl .map-info-card {
    flex-direction: row-reverse;
}

.rtl .service-icon,
.rtl .team-icon,
.rtl .contact-icon {
    margin-left: var(--spacing-md);
    margin-right: 0;
}

.rtl .slider-navigation {
    flex-direction: row-reverse;
}

.rtl .prev-btn {
    order: 2;
}

.rtl .next-btn {
    order: 1;
}

.rtl .language-selector {
    flex-direction: row-reverse;
}

@media (max-width: 768px) {
    .rtl .nav-menu {
        text-align: right;
    }
    
    .rtl .nav-item {
        text-align: right;
    }
    
    .rtl .dropdown-menu {
        right: 0;
        left: auto;
    }
}

.rtl {
    font-family: 'Cairo', 'Tajawal', 'Arial', sans-serif;
}

.rtl .logo-image {
    transform: scaleX(-1);
}

.rtl .fas,
.rtl .fab {
    transform: scaleX(-1);
}

.rtl .service-card .service-icon {
    margin-left: var(--spacing-md);
    margin-right: 0;
}

.rtl .contact-item {
    flex-direction: row-reverse;
}

.rtl .contact-item i {
    margin-left: var(--spacing-md);
    margin-right: 0;
}

.rtl .testimonial-author {
    flex-direction: row-reverse;
}

.rtl .author-avatar {
    margin-left: var(--spacing-md);
    margin-right: 0;
}

.rtl .team-info {
    text-align: right;
}

.rtl .team-social {
    justify-content: flex-end;
}

.rtl .gallery-info {
    text-align: right;
}

.rtl .stat-card {
    text-align: center;
}

.rtl .about-text-section {
    text-align: right;
}

.rtl .about-features {
    justify-content: flex-end;
}

.rtl .feature-item {
    flex-direction: row-reverse;
}

.rtl .feature-item i {
    margin-left: var(--spacing-sm);
    margin-right: 0;
}

.team-languages {
    display: flex;
    gap: 0.5rem;
    margin-top: 0.5rem;
    flex-wrap: wrap;
}

.language-tag {
    background: var(--primary-color);
    color: white;
    padding: 0.25rem 0.5rem;
    border-radius: 0.25rem;
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
}

.team-card.coming-soon {
    opacity: 0.7;
    cursor: default;
}

.team-card.coming-soon:hover {
    transform: none;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.coming-soon-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #666;
    font-weight: 500;
}

.coming-soon-text i {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.doctor-modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    animation: fadeIn 0.3s ease;
}

.doctor-modal-content {
    background-color: white;
    margin: 2% auto;
    padding: 0;
    border-radius: 1rem;
    width: 90%;
    max-width: 800px;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    animation: slideIn 0.3s ease;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.doctor-modal-close {
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    font-size: 2rem;
    font-weight: bold;
    color: #aaa;
    cursor: pointer;
    z-index: 10001;
    transition: color 0.3s ease;
}

.doctor-modal-close:hover {
    color: var(--primary-color);
}

.doctor-modal-header {
    display: flex;
    align-items: center;
    padding: 2rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, #2e7d32 100%);
    color: white;
    border-radius: 1rem 1rem 0 0;
}

.doctor-modal-image {
    margin-right: 2rem;
}

.doctor-modal-image img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.doctor-modal-info h2 {
    margin: 0 0 0.5rem 0;
    font-size: 1.8rem;
    font-weight: 600;
}

.doctor-modal-info p {
    margin: 0 0 1rem 0;
    font-size: 1.1rem;
    opacity: 0.9;
}

.doctor-languages {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.doctor-languages .language-tag {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.doctor-modal-body {
    padding: 2rem;
}

.doctor-section {
    margin-bottom: 2rem;
}

.doctor-section:last-child {
    margin-bottom: 0;
}

.doctor-section h3 {
    display: flex;
    align-items: center;
    margin: 0 0 1rem 0;
    color: var(--primary-color);
    font-size: 1.2rem;
    font-weight: 600;
}

.doctor-section h3 i {
    margin-right: 0.5rem;
    font-size: 1.1rem;
}

.doctor-section p {
    margin: 0;
    line-height: 1.6;
    color: #555;
    font-size: 1rem;
}

.doctor-section ul {
    margin: 0;
    padding-left: 1.5rem;
    color: #555;
    font-size: 1rem;
    line-height: 1.6;
}

.doctor-section li {
    margin-bottom: 0.5rem;
    position: relative;
}

.doctor-section li:before {
    content: "•";
    color: var(--primary-color);
    font-weight: bold;
    position: absolute;
    left: -1rem;
}

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

@keyframes slideIn {
    from { 
        opacity: 0;
        transform: translateY(-50px) scale(0.9);
    }
    to { 
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@media (max-width: 768px) {
    .doctor-modal-content {
        width: 95%;
        margin: 5% auto;
        max-height: 85vh;
    }
    
    .doctor-modal-header {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem;
    }
    
    .doctor-modal-image {
        margin-right: 0;
        margin-bottom: 1rem;
    }
    
    .doctor-modal-image img {
        width: 100px;
        height: 100px;
    }
    
    .doctor-modal-info h2 {
        font-size: 1.5rem;
    }
    
    .doctor-modal-body {
        padding: 1.5rem;
    }
    
    .doctor-section h3 {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .doctor-modal-content {
        width: 98%;
        margin: 2% auto;
        max-height: 90vh;
    }
    
    .doctor-modal-header {
        padding: 1rem;
    }
    
    .doctor-modal-image img {
        width: 80px;
        height: 80px;
    }
    
    .doctor-modal-info h2 {
        font-size: 1.3rem;
    }
    
    .doctor-modal-body {
        padding: 1rem;
    }
}

.rtl .doctor-modal-header {
    flex-direction: row-reverse;
}

.rtl .doctor-modal-image {
    margin-right: 0;
    margin-left: 2rem;
}

.rtl .doctor-section h3 {
    flex-direction: row-reverse;
}

.rtl .doctor-section h3 i {
    margin-right: 0;
    margin-left: 0.5rem;
}

@media (max-width: 768px) {
    .rtl .doctor-modal-header {
        flex-direction: column;
    }
    
    .rtl .doctor-modal-image {
        margin-left: 0;
    }
}

@media (max-width: 768px) {
    .dropdown-menu {
        display: none !important;
        position: static;
        box-shadow: none;
        background: transparent;
        border: none;
        padding: 0;
        margin: 0;
        width: 100%;
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    
    .dropdown-menu.active {
        display: block !important;
        background: rgba(255, 255, 255, 0.95);
        border-radius: 8px;
        margin-top: 10px;
        padding: 15px;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    }
    
    
    .dropdown-menu.active .dropdown-column {
        margin-bottom: 20px;
    }
    
    .dropdown-menu.active .dropdown-column:last-child {
        margin-bottom: 0;
    }
    
    
    .dropdown-menu.active .dropdown-column h4 {
        font-size: 1rem;
        margin-bottom: 10px;
        color: #1976D2;
        border-bottom: 1px solid #e0e0e0;
        padding-bottom: 5px;
    }
    
    
    .dropdown-menu.active .dropdown-column a {
        display: block;
        padding: 8px 15px;
        margin: 5px 0;
        background: #f8f9fa;
        border-radius: 5px;
        transition: all 0.3s ease;
        font-size: 0.9rem;
    }
    
    .dropdown-menu.active .dropdown-column a:hover {
        background: #1976D2;
        color: white;
        transform: translateX(5px);
    }
    
    
    .nav-item.dropdown .nav-link i {
        transition: transform 0.3s ease;
    }
    
    .nav-item.dropdown .nav-link.active i {
        transform: rotate(180deg);
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .dropdown-menu {
        grid-template-columns: repeat(2, 1fr);
        width: 600px;
    }
    
    .mega-menu {
        grid-template-columns: repeat(2, 1fr);
    }
}

.treatment-methods {
    background: #fff;
    border-radius: 16px;
    padding: 2rem;
    margin: 2rem 0;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(25, 118, 210, 0.1);
}

.treatment-methods h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1976D2;
    margin-bottom: 1.5rem;
    text-align: center;
    position: relative;
}

.treatment-methods h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #1976D2, #42A5F5);
    border-radius: 2px;
}

.methods-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.method-item {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-radius: 12px;
    padding: 1.5rem;
    border: 1px solid rgba(25, 118, 210, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.method-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #1976D2, #42A5F5);
    transform: scaleX(0);
    transition: transform 0.3s ease;
    transform-origin: left;
}

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

.method-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 24px rgba(25, 118, 210, 0.15);
    border-color: #1976D2;
}

.method-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #1976D2, #42A5F5);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.method-item:hover .method-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 8px 16px rgba(25, 118, 210, 0.3);
}

.method-icon i {
    font-size: 1.5rem;
    color: white;
}

.method-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 0.5rem;
}

.method-description {
    color: #666;
    line-height: 1.6;
    font-size: 0.95rem;
}

.advantages-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e3f2fd 100%);
    border-radius: 16px;
    padding: 2.5rem;
    margin: 2rem 0;
    position: relative;
    overflow: hidden;
}

.advantages-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(25, 118, 210, 0.05) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.advantages-section h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1976D2;
    margin-bottom: 1.5rem;
    text-align: center;
    position: relative;
    z-index: 1;
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    position: relative;
    z-index: 1;
}

.advantage-card {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid rgba(25, 118, 210, 0.1);
    position: relative;
    overflow: hidden;
}

.advantage-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(25, 118, 210, 0.05), transparent);
    transition: left 0.5s ease;
}

.advantage-card:hover::before {
    left: 100%;
}

.advantage-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(25, 118, 210, 0.15);
}

.advantage-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #1976D2, #42A5F5);
    color: white;
    border-radius: 50%;
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.advantage-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 0.5rem;
}

.advantage-text {
    color: #666;
    line-height: 1.6;
    font-size: 0.95rem;
}

.treatment-process {
    background: white;
    border-radius: 16px;
    padding: 2.5rem;
    margin: 2rem 0;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(25, 118, 210, 0.1);
}

.treatment-process h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1976D2;
    margin-bottom: 2rem;
    text-align: center;
    position: relative;
}

.treatment-process h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #1976D2, #42A5F5);
    border-radius: 2px;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.process-step {
    text-align: center;
    position: relative;
    padding: 1.5rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-radius: 12px;
    border: 1px solid rgba(25, 118, 210, 0.1);
    transition: all 0.3s ease;
}

.process-step:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 24px rgba(25, 118, 210, 0.15);
    border-color: #1976D2;
}

.step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #1976D2, #42A5F5);
    color: white;
    border-radius: 50%;
    font-weight: 700;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.step-number::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border: 2px solid rgba(25, 118, 210, 0.2);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.1); opacity: 0.7; }
    100% { transform: scale(1); opacity: 1; }
}

.step-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 0.5rem;
}

.step-description {
    color: #666;
    line-height: 1.6;
    font-size: 0.95rem;
}

.services-main {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e3f2fd 100%);
}

.services-intro {
    text-align: center;
    margin-bottom: 3rem;
}

.services-intro h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1976D2;
    margin-bottom: 1rem;
}

.services-intro p {
    font-size: 1.1rem;
    color: #666;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

.service-categories {
    margin-bottom: 4rem;
}

.category-section {
    margin-bottom: 3rem;
}

.category-section h3 {
    font-size: 1.8rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 2rem;
    text-align: center;
    position: relative;
}

.category-section h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #1976D2, #42A5F5);
    border-radius: 2px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-card {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(25, 118, 210, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #1976D2, #42A5F5);
    transform: scaleX(0);
    transition: transform 0.3s ease;
    transform-origin: left;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 40px rgba(25, 118, 210, 0.15);
    border-color: #1976D2;
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #1976D2, #42A5F5);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 12px 24px rgba(25, 118, 210, 0.3);
}

.service-icon i {
    font-size: 2rem;
    color: white;
    position: relative;
    z-index: 1;
}

.service-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 1rem;
    text-align: center;
}

.service-description {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    text-align: center;
    flex-grow: 1;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #1976D2;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    margin: 0 auto;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    border: 2px solid #1976D2;
    border-radius: 8px;
    background: transparent;
}

.service-link:hover {
    background: #1976D2;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(25, 118, 210, 0.3);
}

.service-link i {
    transition: transform 0.3s ease;
}

.service-link:hover i {
    transform: translateX(3px);
}

.services-cta {
    background: linear-gradient(135deg, #1976D2, #42A5F5);
    border-radius: 20px;
    padding: 3rem 2rem;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.services-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

.cta-content {
    position: relative;
    z-index: 1;
}

.services-cta h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.services-cta p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: white;
    color: #1976D2;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    padding: 1rem 2rem;
    border-radius: 12px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
    background: #f8f9fa;
}

.cta-button i {
    transition: transform 0.3s ease;
}

.cta-button:hover i {
    transform: scale(1.1);
}

.service-card {
    cursor: pointer;
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 24px rgba(25, 118, 210, 0.15);
}

.service-detail-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: linear-gradient(135deg, #1976D2 0%, #42A5F5 100%);
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    padding: 0.9rem 1.8rem;
    border-radius: 12px;
    margin-top: auto;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(25, 118, 210, 0.25);
}

.service-detail-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.service-detail-btn:hover::before {
    left: 100%;
}

.service-detail-btn:hover {
    background: linear-gradient(135deg, #1565C0 0%, #1976D2 100%);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(25, 118, 210, 0.4);
    color: white;
}

.service-detail-btn i {
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 0.9rem;
}

.service-detail-btn:hover i {
    transform: translateX(4px) scale(1.1);
}

.service-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.service-popup.active {
    opacity: 1;
    visibility: visible;
}

.service-popup-content {
    background: white;
    border-radius: 20px;
    max-width: 800px;
    width: 90%;
    max-height: 85vh;
    overflow: hidden;
    position: relative;
    transform: scale(0.8) translateY(50px) rotateX(10deg);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    perspective: 1000px;
}

.service-popup.active .service-popup-content {
    transform: scale(1) translateY(0) rotateX(0deg);
}

.service-popup-header {
    background: linear-gradient(135deg, #1976D2 0%, #42A5F5 100%);
    color: white;
    padding: 2rem;
    position: relative;
    overflow: hidden;
}

.service-popup-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(255,255,255,0.1) 0%, transparent 50%);
    pointer-events: none;
}

.service-popup-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.service-popup-close:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: rotate(90deg);
}

.service-popup-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    position: relative;
    z-index: 2;
}

.service-popup-subtitle {
    font-size: 1.1rem;
    opacity: 0.9;
    position: relative;
    z-index: 2;
}

.service-popup-body {
    padding: 2rem;
    max-height: 60vh;
    overflow-y: auto;
}

.service-popup-section {
    margin-bottom: 2rem;
}

.service-popup-section h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #1976D2;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.service-popup-section p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.service-popup-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-popup-list li {
    padding: 0.5rem 0;
    color: #666;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.service-popup-list li i {
    color: #1976D2;
    font-size: 0.9rem;
}

.service-popup-actions {
    padding: 1.5rem 2rem;
    background: #f8f9fa;
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.service-popup-btn {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    cursor: pointer;
}

.service-popup-btn-primary {
    background: #1976D2;
    color: white;
}

.service-popup-btn-primary:hover {
    background: #1565C0;
    transform: translateY(-2px);
}

.service-popup-btn-secondary {
    background: transparent;
    color: #1976D2;
    border: 2px solid #1976D2;
}

.service-popup-btn-secondary:hover {
    background: #1976D2;
    color: white;
}

@media (max-width: 768px) {
    .service-popup-content {
        width: 95%;
        max-height: 90vh;
    }
    
    .service-popup-header {
        padding: 1.5rem;
    }
    
    .service-popup-title {
        font-size: 1.5rem;
    }
    
    .service-popup-body {
        padding: 1.5rem;
    }
    
    .service-popup-actions {
        flex-direction: column;
        padding: 1rem 1.5rem;
    }
    
    .service-popup-btn {
        width: 100%;
        justify-content: center;
    }
}

