/* فایل استایل اصلی کلینیک زیبایی باران - نسخه اندروید */

/* متغیرهای CSS */
:root {
    /* رنگ‌بندی */
    --color-primary: #0a3d2f;
    --color-secondary: #d4af37;
    --color-secondary-light: #f4e9c9;
    --color-accent: #c19a53;
    --color-white: #f8f9fa;
    --color-light: #e9ecef;
    --color-gray: #adb5bd;
    --color-dark: #343a40;
    --color-black: #212529;
    
    /* سایه‌ها */
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 8px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 8px 16px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 12px 24px rgba(0, 0, 0, 0.15);
    --shadow-gold: 0 4px 12px rgba(212, 175, 55, 0.2);
    
    /* انیمیشن‌ها */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
    
    /* فونت‌ها */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Noto Naskh Arabic', serif;
    
    /* اندازه‌ها */
    --border-radius: 8px;
    --border-radius-lg: 12px;
    --border-radius-xl: 16px;
}

/* ریست استایل‌ها */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--color-dark);
    background-color: var(--color-white);
    overflow-x: hidden;
    direction: rtl;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    width: 100%;
    max-width: 100%;
}

/* رفع مشکلات نمایش در موبایل */
body, html {
    position: relative;
    overflow-x: hidden;
    width: 100%;
}
/* جلوگیری از اسکرول افقی */
html, body {
    overflow-x: hidden !important;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 1rem;
}
@keyframes heartbeat {
  0% { transform: scale(1); }
  30% { transform: scale(1.08); }
  60% { transform: scale(1); }
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-normal);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

button, input, select, textarea {
    font-family: inherit;
    font-size: inherit;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* بهبود کانتینر برای موبایل */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
        width: 100%;
    }
}

.highlight {
    color: var(--color-secondary);
    position: relative;
    display: inline-block;
}

.highlight::after {
    content: '';
    position: absolute;
    bottom: 2px;
    right: 0;
    width: 100%;
    height: 4px;
    background-color: var(--color-secondary-light);
    opacity: 0.4;
    z-index: -1;
}

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

.section-title {
    font-size: 2.2rem;
    margin-bottom: 0.5rem;
}

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

.btn-gold {
    display: inline-block;
    background: linear-gradient(135deg, var(--color-secondary), var(--color-accent));
    color: var(--color-white);
    padding: 0.9rem 2rem;
    border-radius: var(--border-radius);
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: var(--transition-normal);
    box-shadow: var(--shadow-gold);
    position: relative;
    overflow: hidden;
    z-index: 1;
    font-size: 1rem;
    min-height: 48px; /* برای قابل کلیک بودن در موبایل */
}

.btn-gold::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 0;
    height: 100%;
    background: linear-gradient(135deg, var(--color-accent), var(--color-secondary));
    transition: var(--transition-normal);
    z-index: -1;
}

.btn-gold:hover::before {
    width: 100%;
}

.btn-gold:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-xl);
}

/* استایل‌های بارگذاری */
.loader {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background-color: var(--color-white);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.loader.loaded {
    opacity: 0;
    visibility: hidden;
}

.loader-content {
    text-align: center;
}

.loader-logo {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 2rem;
}

.loader-logo span {
    color: var(--color-secondary);
}

.loader-spinner {
    width: 50px;
    height: 50px;
    border: 4px solid var(--color-light);
    border-top-color: var(--color-secondary);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto;
}

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

/* نوار ناوبری */
.navbar {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
    z-index: 1000;
    transition: var(--transition-normal);
    height: 70px;
}

.navbar.scrolled {
    box-shadow: var(--shadow-md);
    background-color: rgba(255, 255, 255, 0.98);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    height: 70px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 700;
    font-size: 1.4rem;
    z-index: 1001;
}

.logo-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--color-secondary), var(--color-accent));
    color: var(--color-white);
    border-radius: 50%;
    font-family: var(--font-heading);
    font-weight: 700;
}

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

.logo-text span {
    font-size: 0.8rem;
    color: var(--color-gray);
    font-weight: 400;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-list {
    display: flex;
    gap: 1.5rem;
}

.nav-link {
    position: relative;
    padding: 0.5rem 0;
    font-weight: 500;
    color: var(--color-dark);
    font-size: 1rem;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 0;
    height: 2px;
    background-color: var(--color-secondary);
    transition: var(--transition-normal);
}

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

.nav-link:hover,
.nav-link.active {
    color: var(--color-primary);
}

.consultation-btn {
    background-color: var(--color-primary);
    color: var(--color-white);
    padding: 0.7rem 1.5rem;
    border-radius: var(--border-radius);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition-normal);
    font-size: 0.9rem;
    white-space: nowrap;
}

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

.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

.hamburger span {
    width: 100%;
    height: 3px;
    background-color: var(--color-primary);
    border-radius: 3px;
    transition: var(--transition-normal);
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* هیرو سکشن */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
    margin-top: 70px;
}

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

.slide {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slide.active {
    opacity: 1;
}

.slide .container {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slide-content {
    text-align: center;
    color: var(--color-white);
    max-width: 800px;
    padding: 2rem;
    animation: fadeInUp 1s ease;
    width: 100%;
}

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

.slide-title {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    color: var(--color-white);
    line-height: 1.2;
}

.slide-text {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    line-height: 1.6;
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    right: 50%;
    transform: translateX(50%);
    text-align: center;
    color: var(--color-white);
    z-index: 10;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(50%) translateY(0);
    }
    40% {
        transform: translateX(50%) translateY(-10px);
    }
    60% {
        transform: translateX(50%) translateY(-5px);
    }
}

.scroll-indicator span {
    display: block;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    opacity: 0.8;
}

.mouse {
    width: 30px;
    height: 50px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 20px;
    margin: 0 auto;
    position: relative;
}

.wheel {
    width: 4px;
    height: 10px;
    background-color: var(--color-white);
    border-radius: 2px;
    position: absolute;
    top: 10px;
    right: 50%;
    transform: translateX(50%);
    animation: scroll 2s infinite;
}

@keyframes scroll {
    0% {
        opacity: 1;
        top: 10px;
    }
    100% {
        opacity: 0;
        top: 30px;
    }
}

/* بخش معرفی کلینیک */
.intro {
    padding: 4rem 0;
    background-color: var(--color-white);
}

.intro-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.intro-text {
    font-size: 1.1rem;
    line-height: 1.7;
}

.typing-text {
    margin-bottom: 2rem;
    position: relative;
    padding-right: 1.5rem;
    border-right: 2px solid var(--color-secondary-light);
    line-height: 1.8;
}

.intro-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.2rem;
    margin-top: 2rem;
}

.feature {
    text-align: center;
    padding: 1.2rem;
    border-radius: var(--border-radius);
    background-color: var(--color-light);
    transition: var(--transition-normal);
}

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

.feature i {
    font-size: 1.8rem;
    color: var(--color-secondary);
    margin-bottom: 0.8rem;
}

.feature h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.feature p {
    font-size: 0.9rem;
    color: var(--color-gray);
    line-height: 1.5;
}

.intro-image {
    position: relative;
}

.image-frame {
    position: relative;
    border-radius: var(--border-radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.image-frame img {
    width: 100%;
    height: auto;
    transition: var(--transition-slow);
}

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

/* بخش خدمات اصلی */
.services {
    padding: 4rem 0;
    background-color: var(--color-light);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.service-card {
    background-color: var(--color-white);
    padding: 2rem;
    border-radius: var(--border-radius-lg);
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: var(--transition-normal);
    position: relative;
    overflow: hidden;
    z-index: 1;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(to left, var(--color-secondary), var(--color-accent));
    z-index: 2;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.service-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--color-secondary-light), var(--color-white));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--color-secondary);
    font-size: 1.8rem;
    border: 2px solid var(--color-secondary-light);
}

.service-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

.service-card p {
    color: var(--color-gray);
    margin-bottom: 1.5rem;
    line-height: 1.6;
    flex-grow: 1;
}

.service-link {
    color: var(--color-secondary);
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: auto;
}

.service-link i {
    transition: var(--transition-normal);
}

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

/* بخش چرا کلینیک ما */
.why-us {
    padding: 4rem 0;
    background-color: var(--color-white);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.feature-card {
    background-color: var(--color-light);
    padding: 1.8rem;
    border-radius: var(--border-radius-lg);
    transition: var(--transition-normal);
    position: relative;
    overflow: hidden;
    height: 100%;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    background-color: var(--color-white);
}

.feature-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-secondary-light);
    position: absolute;
    top: -10px;
    left: -10px;
    opacity: 0.3;
    line-height: 1;
}

.feature-card h3 {
    font-size: 1.2rem;
    margin-top: 1rem;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
    line-height: 1.4;
}

.feature-card p {
    color: var(--color-gray);
    position: relative;
    z-index: 1;
    line-height: 1.6;
}

/* بخش تیم پزشکان */
.team {
    padding: 4rem 0;
    background-color: var(--color-light);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.doctor-card {
    background-color: var(--color-white);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition-normal);
    height: 100%;
}

.doctor-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.doctor-image {
    position: relative;
    height: 280px;
    overflow: hidden;
}

.doctor-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

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

.doctor-info {
    padding: 1.5rem;
    text-align: center;
}

.doctor-info h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.doctor-info p {
    color: var(--color-secondary);
    font-weight: 500;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.doctor-specialties {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.doctor-specialties span {
    background-color: var(--color-light);
    color: var(--color-primary);
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

/* بخش مشاوره رایگان */
.consultation {
    padding: 4rem 0;
    background-color: var(--color-white);
}

.consultation-box {
    background: linear-gradient(135deg, var(--color-primary), #0a5d4a);
    border-radius: var(--border-radius-xl);
    overflow: hidden;
    display: grid;
    grid-template-columns: 1fr 1fr;
    box-shadow: var(--shadow-xl);
}

.consultation-content {
    padding: 2.5rem;
    color: var(--color-white);
}

.consultation-content h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--color-white);
    line-height: 1.3;
}

.consultation-content p {
    opacity: 0.9;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.consultation-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.form-group {
    position: relative;
    width: 100%;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 1rem;
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--border-radius);
    color: var(--color-white);
    font-family: var(--font-body);
    transition: var(--transition-normal);
    font-size: 1rem;
    -webkit-appearance: none;
    appearance: none;
}

.form-group input::placeholder,
.form-group select {
    color: rgba(255, 255, 255, 0.7);
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--color-secondary);
    background-color: rgba(255, 255, 255, 0.15);
}

.consultation-form .btn-gold {
    margin-top: 0.5rem;
    align-self: flex-start;
}

.consultation-image {
    position: relative;
    overflow: hidden;
}

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

/* فوتر */
.footer {
    background-color: var(--color-primary);
    color: var(--color-light);
    padding: 3rem 0 0;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 700;
    font-size: 1.4rem;
    color: var(--color-white);
    margin-bottom: 1.5rem;
}

.footer-about p {
    margin-bottom: 1.5rem;
    opacity: 0.8;
    line-height: 1.6;
    font-size: 0.95rem;
}

.social-icons {
    display: flex;
    gap: 0.8rem;
}

.social-icons a {
    width: 38px;
    height: 38px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    transition: var(--transition-normal);
    font-size: 1rem;
}

.social-icons a:hover {
    background-color: var(--color-secondary);
    transform: translateY(-3px);
}

.footer-links h3,
.footer-services h3,
.footer-contact h3 {
    color: var(--color-white);
    font-size: 1.2rem;
    margin-bottom: 1.2rem;
    position: relative;
    padding-bottom: 0.8rem;
}

.footer-links h3::after,
.footer-services h3::after,
.footer-contact h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 40px;
    height: 2px;
    background-color: var(--color-secondary);
}

.footer-links ul,
.footer-services ul {
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
}

.footer-links a,
.footer-services a {
    opacity: 0.8;
    transition: var(--transition-normal);
    font-size: 0.95rem;
}

.footer-links a:hover,
.footer-services a:hover {
    opacity: 1;
    color: var(--color-secondary);
    padding-right: 0.5rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-info li {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
}

.contact-info i {
    color: var(--color-secondary);
    font-size: 1rem;
    margin-top: 0.2rem;
    flex-shrink: 0;
}

.contact-info span {
    opacity: 0.8;
    line-height: 1.5;
    font-size: 0.95rem;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.newsletter {
    flex: 1;
    min-width: 300px;
}

.newsletter h4 {
    color: var(--color-white);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.newsletter-form {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.newsletter-form input {
    flex: 1;
    min-width: 200px;
    padding: 0.8rem 1rem;
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--border-radius);
    color: var(--color-white);
    font-family: var(--font-body);
    font-size: 1rem;
}

.newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.newsletter-form button {
    padding: 0.8rem 1.5rem;
    background-color: var(--color-secondary);
    color: var(--color-white);
    border: none;
    border-radius: var(--border-radius);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-normal);
    font-size: 1rem;
    white-space: nowrap;
}

.newsletter-form button:hover {
    background-color: var(--color-accent);
}

.footer-copyright {
    text-align: left;
    opacity: 0.7;
    font-size: 0.85rem;
    flex: 1;
    min-width: 300px;
}

.trust-icons {
    display: flex;
    gap: 1.2rem;
    margin-top: 1rem;
    flex-wrap: wrap;
}

.trust-icon {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8rem;
    white-space: nowrap;
}

.trust-icon i {
    color: var(--color-secondary);
    font-size: 0.9rem;
}

/* دکمه بازگشت به بالا */
.back-to-top {
    position: fixed;
    bottom: 1.5rem;
    left: 1.5rem;
    width: 45px;
    height: 45px;
    background-color: var(--color-secondary);
    color: var(--color-white);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-normal);
    box-shadow: var(--shadow-md);
    font-size: 1.1rem;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background-color: var(--color-accent);
    transform: translateY(-5px);
}

/* ریسپانسیو برای موبایل */
@media (max-width: 1024px) {
    .section-title {
        font-size: 2rem;
    }
    
    .slide-title {
        font-size: 2.5rem;
    }
    
    .intro-content {
        gap: 2.5rem;
    }
    
    .services-grid,
    .features-grid,
    .team-grid {
        gap: 1.2rem;
    }
}

@media (max-width: 768px) {
    /* تنظیمات عمومی برای موبایل */
    html {
        font-size: 15px;
    }
    
    body {
        font-size: 15px;
        line-height: 1.5;
    }
    
    .container {
        padding: 0 15px;
    }
    
    /* هیرو در موبایل */
    .hero {
        height: 85vh;
        min-height: 500px;
        margin-top: 60px;
    }
    
    .slide-content {
        padding: 1.5rem;
    }
    
    .slide-title {
        font-size: 1.8rem;
        margin-bottom: 0.8rem;
    }
    
    .slide-text {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .btn-gold {
        padding: 0.8rem 1.5rem;
        font-size: 0.95rem;
    }
    
    /* ناوبری در موبایل */
    .navbar {
        height: 60px;
    }
    
    .nav-container {
        height: 60px;
        padding: 0.8rem 0;
    }
    
    .logo {
        font-size: 1.2rem;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 85%;
        height: 100vh;
        background-color: var(--color-white);
        flex-direction: column;
        justify-content: flex-start;
        padding-top: 80px;
        gap: 0;
        transition: var(--transition-normal);
        box-shadow: var(--shadow-lg);
        z-index: 1000;
        overflow-y: auto;
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-list {
        flex-direction: column;
        align-items: center;
        gap: 0;
        width: 100%;
        margin-bottom: 2rem;
    }
    
    .nav-link {
        font-size: 1.1rem;
        padding: 1rem 0;
        display: block;
        width: 100%;
        text-align: center;
        border-bottom: 1px solid var(--color-light);
    }
    
    .consultation-btn {
        width: 90%;
        margin: 0 auto;
        justify-content: center;
        padding: 1rem;
        font-size: 1rem;
    }
    
    .hamburger {
        display: flex;
    }
    
    /* بخش‌های محتوا در موبایل */
    .intro-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .intro-features {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .feature {
        padding: 1rem;
    }
    
    .services-grid,
    .features-grid,
    .team-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .service-card,
    .feature-card,
    .doctor-card {
        padding: 1.5rem;
    }
    
    .service-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .doctor-image {
        height: 250px;
    }
    
    /* مشاوره در موبایل */
    .consultation-box {
        grid-template-columns: 1fr;
    }
    
    .consultation-content {
        padding: 1.5rem;
    }
    
    .consultation-content h2 {
        font-size: 1.8rem;
    }
    
    /* فوتر در موبایل */
    .footer {
        padding: 2.5rem 0 0;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.5rem;
    }
    
    .newsletter,
    .footer-copyright {
        min-width: 100%;
    }
    
    .trust-icons {
        flex-direction: column;
        gap: 0.8rem;
    }
    
    /* اسکرول ایندیکیتور */
    .scroll-indicator {
        bottom: 1.5rem;
    }
    
    /* دکمه بازگشت به بالا */
    .back-to-top {
        bottom: 1rem;
        left: 1rem;
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .section-title {
        font-size: 1.7rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
    }
    
    .hero {
        height: 80vh;
        min-height: 450px;
    }
    
    .slide-title {
        font-size: 1.6rem;
    }
    
    .intro, .services, .why-us, .team, .consultation {
        padding: 3rem 0;
    }
    
    .btn-gold {
        padding: 0.7rem 1.2rem;
        font-size: 0.9rem;
    }
    
    .footer {
        padding: 2rem 0 0;
    }
}