/* ==========================================
   Modern Sky Blue Theme - Tehran Beauty Style
   ========================================== */

@font-face {
    font-family: 'YekanBakhFaNum';
    src: url('../fonts/YekanBakhFaNum-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

:root {
    /* Mixed Theme Colors - Sky Blue Header + Instagram Elements */
    --primary-color: #4A90E2;  /* Sky Blue for Header & Slider */
    --primary-dark: #357ABD;
    --primary-light: #6BA6FF;
    --secondary-color: #833AB4;  /* Instagram Purple */
    --accent-color: #405DE6;     /* Instagram Blue */
    --success-color: #FCCC63;    /* Instagram Yellow */
    --warning-color: #F56040;    /* Instagram Orange */
    --danger-color: #E1306C;     /* Instagram Pink */
    
    /* Instagram gradients */
    --instagram-gradient-1: linear-gradient(45deg, #405DE6, #5851DB, #833AB4, #C13584, #E1306C, #FD1D1D);
    --instagram-gradient-2: linear-gradient(45deg, #833AB4, #C13584, #E1306C, #F56040, #F77737);
    --instagram-gradient-3: linear-gradient(45deg, #FCAF45, #FD1D1D, #C13584, #833AB4);
    --instagram-gradient-4: linear-gradient(45deg, #405DE6, #5851DB, #833AB4);
    --instagram-gradient-5: linear-gradient(45deg, #E1306C, #F56040, #FCAF45);
    --instagram-gradient-white-1: linear-gradient(45deg, #FFFFFF, #F8F8F8, #FFFFFF, #F0F0F0, rgba(225, 48, 108, 0.2));
    --instagram-gradient-white-2: linear-gradient(45deg, #FFFFFF, #F8F8F8, rgba(64, 93, 230, 0.2), #F0F0F0);
    --instagram-gradient-white-3: linear-gradient(45deg, rgba(252, 204, 99, 0.2), #FFFFFF, #F8F8F8, rgba(225, 48, 108, 0.2));
    
    /* Text Colors */
    --text-dark: #262626;
    --text-light: #8E8E8E;
    --text-muted: #C7C7C7;
    
    /* Background Colors */
    --white: #FFFFFF;
    --light-gray: #FAFAFA;
    --border-color: #DBDBDB;
    --shadow-color: rgba(74, 144, 226, 0.2);
    
    /* Mixed Gradients - Sky Blue for Header/Slider + Instagram for Elements */
    --gradient-primary: linear-gradient(135deg, #4A90E2 0%, #357ABD 100%);  /* Sky Blue for Header */
    --gradient-secondary: linear-gradient(45deg, #F56040 0%, #E1306C 50%, #C13584 100%);  /* Instagram for elements */
    --gradient-accent: linear-gradient(45deg, #FCCC63 0%, #F56040 50%, #E1306C 100%);     /* Instagram accent */
    --gradient-warm: linear-gradient(45deg, #833AB4 0%, #C13584 50%, #E1306C 100%);       /* Instagram warm */
    --gradient-light: linear-gradient(135deg, #E3F2FD 0%, #BBDEFB 100%);                  /* Light blue */
    --gradient-header: linear-gradient(135deg, #4A90E2 0%, #6BA6FF 50%, #00D4FF 100%);    /* Header gradient */
    
    /* Instagram Story Ring */
    --story-ring: linear-gradient(45deg, #405DE6, #5851DB, #833AB4, #C13584, #E1306C, #F56040, #FCCC63);
    
    /* Mixed Shadows - Blue for Header/Stats + Instagram for Elements */
    --shadow-sm: 0 2px 8px rgba(74, 144, 226, 0.15);
    --shadow: 0 8px 25px rgba(74, 144, 226, 0.2);
    --shadow-lg: 0 15px 35px rgba(74, 144, 226, 0.25);
    --shadow-xl: 0 20px 50px rgba(74, 144, 226, 0.3);
    --shadow-story: 0 8px 20px rgba(131, 58, 180, 0.4);
    
    /* Smooth Transitions */
    --transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    --transition-slow: all 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}

body {
    font-family: 'YekanBakhFaNum', Tahoma, Arial, sans-serif !important;
    font-weight: normal;
    font-size: 0.95rem;
    direction: rtl;
    line-height: 1.6;
    color: var(--text-dark);
    background: var(--white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    position: relative;
}

/* Persian Numbers */
body, * {
    font-variant-numeric: normal;
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--light-gray);
}

::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 4px;
}

/* Hide scrollbar on home page in mobile view */
@media (max-width: 768px) {
    body:has(main[role="main"] section.hero-slider) ::-webkit-scrollbar {
        width: 0;
        display: none;
    }
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'YekanBakhFaNum', sans-serif;
    font-weight: bold;
    line-height: 1.3;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.75rem; }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.25rem; }
h6 { font-size: 1rem; }

.gradient-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ==========================================
   TOP BAR
   ========================================== */
.top-bar {
    background: var(--gradient-header);
    color: var(--white);
    padding: 12px 0;
    font-size: 14px;
    position: relative;
    z-index: 1000;
    box-shadow: var(--shadow-sm);
}

/* Hide top-bar on mobile */
@media (max-width: 768px) {
    .top-bar {
        display: none;
    }
}

.contact-info {
    display: flex;
    align-items: center;
    gap: 25px;
}

.contact-info span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    padding: 5px 10px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

/* Phone Number Header Style */
.phone-number-header {
    font-size: 18px !important;
    font-weight: 800 !important;
    padding: 8px 15px !important;
    background: rgba(255, 255, 255, 0.2) !important;
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.1);
}

.phone-number-header i {
    font-size: 18px !important;
    background: var(--gradient-secondary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Mobile Header Style */
.mobile-header {
    font-size: 18px !important;
    font-weight: 150 !important;
    padding: 8px 15px !important;
    background: rgba(255, 255, 255, 0.2) !important;
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.1);
}

.mobile-header i {
    font-size: 18px !important;
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.contact-info i {
    color: var(--accent-color);
    font-size: 16px;
}

.datetime-display {
    text-align: center;
    font-weight: 700;
    font-size: 16px;
    padding: 8px 20px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 25px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.top-info {
    display: flex;
    align-items: center;
    gap: 20px;
}

.top-info span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    padding: 5px 12px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.1);
}

.social-links {
    display: flex;
    gap: 8px;
}

.social-links a {
    color: var(--white);
    font-size: 16px;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--gradient-secondary);
    box-shadow: var(--shadow-sm);
}

.social-links a:hover {
    background: var(--gradient-accent);
    transform: translateY(-3px) scale(1.1);
    box-shadow: var(--shadow);
}

/* ==========================================
   FLOATING CALL BUTTON
   ========================================== */
.floating-call-btn {
    position: fixed;
    bottom: 30px;
    left: 30px;
    z-index: 9999;
    animation: float 3s ease-in-out infinite;
}

.floating-call-btn a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    background: var(--gradient-secondary);
    border-radius: 50%;
    color: var(--white);
    text-decoration: none;
    box-shadow: var(--shadow-xl);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.call-btn-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
}

.call-btn-inner i {
    font-size: 24px;
    margin-bottom: 2px;
}

.call-text {
    font-size: 11px;
    font-weight: 700;
    line-height: 1;
}

.call-animation {
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border-radius: 50%;
    border: 3px solid var(--danger-color);
    animation: pulse-ring 2s infinite;
    opacity: 0.6;
}

.floating-call-btn:hover a {
    transform: scale(1.1);
    background: var(--gradient-accent);
    box-shadow: 0 15px 35px rgba(225, 48, 108, 0.4);
}

@keyframes pulse-ring {
    0% {
        transform: scale(1);
        opacity: 0.6;
    }
    50% {
        transform: scale(1.3);
        opacity: 0.3;
    }
    100% {
        transform: scale(1.6);
        opacity: 0;
    }
}

/* ==========================================
   MAIN HEADER
   ========================================== */
.main-header {
    background: var(--white);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 999;
    transition: var(--transition);
}

.main-header.scrolled {
    box-shadow: var(--shadow-lg);
}

.navbar {
    padding: 15px 0;
}

.navbar-brand {
    display: flex;
    align-items: center;
    font-size: 28px;
    font-weight: bold;
    background: var(--gradient-secondary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-decoration: none;
    gap: 12px;
}

.navbar-brand img {
    height: 50px;
    width: auto;
}

.navbar-toggler {
    border: none;
    padding: 4px 8px;
    background: var(--light-gray);
    border-radius: 8px;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.navbar-nav {
    align-items: center;
}

.navbar-nav .nav-link {
    color: var(--text-dark) !important;
    font-weight: 700;
    padding: 12px 20px !important;
    position: relative;
    transition: var(--transition);
    border-radius: 12px;
    margin: 0 8px;
    font-size: 16px;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--primary-color) !important;
    background: var(--light-gray);
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 3px;
    bottom: 8px;
    right: 50%;
    background: var(--gradient-primary);
    transition: var(--transition);
    border-radius: 2px;
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    width: 70%;
    right: 15%;
}

/* Dropdown Menu */
.dropdown-menu {
    border: none;
    box-shadow: var(--shadow-lg);
    border-radius: 12px;
    padding: 15px 0;
    margin-top: 10px;
    background: var(--white);
    border: 1px solid var(--border-color);
    min-width: 250px;
}

.dropdown-item {
    padding: 12px 25px;
    color: var(--text-dark);
    transition: var(--transition);
    border-radius: 8px;
    margin: 2px 15px;
    font-weight: 500;
}

.dropdown-item:hover {
    background: var(--gradient-secondary);
    color: var(--white);
    transform: translateX(-5px);
}

/* CTA Buttons */
.btn-primary {
    background: var(--gradient-primary);
    border: none;
    padding: 12px 30px;
    border-radius: 25px;
    font-weight: 600;
    transition: var(--transition);
    box-shadow: var(--shadow);
    color: var(--white);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    background: var(--primary-dark);
    color: var(--white);
}

.btn-appointment {
    background: var(--gradient-secondary);
    border: none;
    padding: 14px 25px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 15px;
    transition: var(--transition);
    box-shadow: var(--shadow);
    color: var(--white);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    position: relative;
    overflow: hidden;
}

.btn-appointment::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gradient-accent);
    transition: var(--transition);
    z-index: -1;
}

.btn-appointment:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: var(--shadow-xl);
    color: var(--white);
}

.btn-appointment:hover::before {
    left: 0;
}

/* ==========================================
   HERO SLIDER SECTION
   ========================================== */
.hero-slider {
    position: relative;
    min-height: 70vh;
    padding: 120px 0 80px;
    overflow: hidden;
    background: var(--gradient-header);
}

.slider-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    visibility: hidden;
    transition: all 0.8s ease-in-out;
    display: flex;
    align-items: center;
    z-index: 1;
}

/* Specific background positioning for different slides */
.slide:nth-child(1) {
    background-position: center right;
}

.slide:nth-child(2) {
    background-position: center left;
    background-size: cover;
}

.slide:nth-child(3) {
    background-position: center;
    background-size: cover;
}

.slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 2;
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(74, 144, 226, 0.88) 0%, rgba(74, 144, 226, 0.75) 30%, rgba(0, 212, 255, 0.6) 70%, rgba(107, 166, 255, 0.4) 100%);
    z-index: 1;
    backdrop-filter: blur(1px);
}

/* Sky Blue Style Overlays */
.slide:nth-child(1) .slide-overlay {
    background: linear-gradient(135deg, rgba(74, 144, 226, 0.85) 0%, rgba(107, 166, 255, 0.75) 50%, rgba(0, 212, 255, 0.6) 100%);
}

.slide:nth-child(2) .slide-overlay {
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.85) 0%, rgba(74, 144, 226, 0.75) 50%, rgba(107, 166, 255, 0.6) 100%);
}

.slide:nth-child(3) .slide-overlay {
    background: linear-gradient(135deg, rgba(107, 166, 255, 0.85) 0%, rgba(74, 144, 226, 0.75) 50%, rgba(0, 212, 255, 0.6) 100%);
}

.hero-content {
    position: relative;
    z-index: 3;
    color: var(--white);
    padding: 40px 0;
    max-width: 600px;
}

.hero-image {
    position: relative;
    z-index: 3;
    text-align: center;
    padding: 20px;
}

.slide-image {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: var(--shadow-xl);
    transition: var(--transition);
    border: 3px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.slide-image:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-xl);
}

.min-vh-75 {
    min-height: auto;
}

/* Slider Navigation */
.slider-nav {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 20px;
    z-index: 10;
    background: rgba(255, 255, 255, 0.1);
    padding: 15px 25px;
    border-radius: 30px;
    backdrop-filter: blur(10px);
}

.nav-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid var(--white);
    background: transparent;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
}

.nav-dot.active {
    background: var(--white);
    transform: scale(1.3);
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.5);
}

.nav-dot:hover {
    background: rgba(255, 255, 255, 0.7);
    transform: scale(1.1);
}

/* Slider Arrows */
.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    border: none;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    color: var(--white);
    font-size: 20px;
    cursor: pointer;
    transition: var(--transition);
    z-index: 10;
    backdrop-filter: blur(15px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-arrow:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-50%) scale(1.1);
    border-color: rgba(255, 255, 255, 0.4);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.slider-arrow.prev {
    right: 40px;
}

.slider-arrow.next {
    left: 40px;
}

/* Instagram-styled text for slider */
.hero-title {
    background: var(--instagram-gradient-1);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 800;
    letter-spacing: 0.5px;
    font-size: 3.5rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
    line-height: 1.2;
}

.hero-subtitle {
    background: var(--instagram-gradient-3);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 700;
    font-size: 1.5rem;
    margin-bottom: 25px;
    opacity: 0.95;
}

.hero-description {
    background: var(--instagram-gradient-white-1);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 600;
    text-shadow: 0 0 1px rgba(0, 0, 0, 0.1);
    font-size: 1.2rem;
    margin-bottom: 40px;
    line-height: 1.8;
    max-width: 500px;
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-hero {
    padding: 15px 35px;
    font-size: 1.1rem;
    border-radius: 30px;
    font-weight: 600;
    transition: var(--transition);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: 2px solid transparent;
}

.btn-hero-primary {
    background: var(--white);
    color: var(--primary-color);
    box-shadow: var(--shadow);
}

.btn-hero-primary:hover {
    background: var(--light-gray);
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
    color: var(--primary-color);
}

.btn-hero-secondary {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
}

.btn-hero-secondary:hover {
    background: var(--white);
    color: var(--primary-color);
    transform: translateY(-3px);
}

/* ==========================================
   STAFF SECTION
   ========================================== */
.staff-timeline {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
}

.staff-item.doctor-item {
    text-align: center;
    margin-bottom: 50px;
}

.staff-card {
    background: var(--white);
    border-radius: 20px;
    padding: 40px;
    box-shadow: var(--shadow-lg);
    border: 2px solid var(--primary-color);
    max-width: 400px;
    margin: 0 auto;
    transition: var(--transition);
}

.staff-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.staff-image {
    margin-bottom: 20px;
}

.staff-avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    font-size: 2.5rem;
    color: var(--white);
    box-shadow: var(--shadow);
}

.doctor-avatar {
    width: 120px;
    height: 120px;
    background: var(--gradient-secondary);
    font-size: 3rem;
}

.staff-info h4 {
    color: var(--primary-color);
    margin-bottom: 10px;
    font-weight: 700;
}

.staff-role {
    color: var(--secondary-color);
    font-weight: 600;
    font-size: 1.1rem;
    display: block;
    margin-bottom: 15px;
}

.staff-category {
    margin: 60px 0;
    text-align: center;
}

.category-title {
    color: var(--primary-color);
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 30px;
    position: relative;
    display: inline-block;
}

.category-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--gradient-accent);
    border-radius: 2px;
}

.staff-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 40px;
    margin-bottom: 30px;
}

.accountants-row {
    grid-template-columns: repeat(2, 1fr);
    max-width: 600px;
    margin: 40px auto 30px;
}

.staff-member {
    background: var(--white);
    border-radius: 15px;
    padding: 25px;
    text-align: center;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
}

.staff-member:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
    border-color: var(--primary-color);
}

.staff-member .staff-avatar {
    width: 70px;
    height: 70px;
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.doctor-photo {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    object-position: center top;
    padding: 4px;
    background: var(--story-ring);
    box-shadow: var(--shadow-story);
    transition: var(--transition);
    margin: 0 auto 20px;
    display: block;
    position: relative;
}

.doctor-photo:hover {
    transform: scale(1.05) rotate(5deg);
    box-shadow: var(--shadow-xl);
    background: var(--gradient-primary);
}

.staff-photo {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    object-position: center top;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 3px solid #fff;
}

.staff-photo:hover {
    transform: scale(1.08) rotate(3deg);
    background: var(--gradient-secondary);
    box-shadow: var(--shadow-story);
}

.staff-member h5 {
    color: var(--text-dark);
    font-weight: 600;
    margin-bottom: 8px;
    font-size: 1.1rem;
}

.staff-member span {
    color: var(--text-light);
    font-size: 0.9rem;
    font-weight: 500;
}

.staff-summary {
    background: var(--light-gray);
    border-radius: 20px;
    padding: 40px;
    border: 2px solid var(--border-color);
}

.staff-summary h4 {
    color: var(--primary-color);
    margin-bottom: 20px;
    font-weight: 700;
}

.staff-summary .lead {
    color: var(--text-dark);
    line-height: 1.8;
    font-size: 1.1rem;
}

/* ==========================================
   SERVICES SECTION
   ========================================== */
.services-section {
    padding: 80px 0;
    background: var(--light-gray);
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 2.5rem;
    color: var(--text-dark);
    margin-bottom: 15px;
    position: relative;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

.section-title p {
    color: var(--text-light);
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.service-card {
    background: var(--white);
    border-radius: 15px;
    padding: 40px 30px;
    text-align: center;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
    height: 100%;
    border: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: var(--gradient-light);
    opacity: 0;
    transition: var(--transition-slow);
    transform: rotate(45deg);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.service-card:hover::before {
    opacity: 0.5;
}

.service-icon {
    width: 80px;
    height: 80px;
    background: var(--story-ring);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 2rem;
    color: var(--white);
    position: relative;
    z-index: 2;
    transition: var(--transition);
    padding: 3px;
    box-shadow: var(--shadow-story);
}

.service-icon::before {
    content: '';
    position: absolute;
    top: 3px;
    left: 3px;
    right: 3px;
    bottom: 3px;
    background: var(--white);
    border-radius: 50%;
    z-index: -1;
}

.service-icon i {
    position: relative;
    z-index: 1;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(10deg);
    box-shadow: var(--shadow-xl);
    background: var(--gradient-primary);
}

.service-card h4 {
    color: var(--text-dark);
    margin-bottom: 15px;
    font-size: 1.4rem;
    position: relative;
    z-index: 2;
}

.service-card p {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 25px;
    position: relative;
    z-index: 2;
}

.service-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
    position: relative;
    z-index: 2;
}

.service-link:hover {
    color: var(--primary-dark);
    transform: translateX(-5px);
}

/* ==========================================
   FEATURES SECTION
   ========================================== */
.features-section {
    padding: 80px 0;
    background: var(--white);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.feature-item {
    text-align: center;
    padding: 30px 20px;
    transition: var(--transition);
}

.feature-item:hover {
    transform: translateY(-5px);
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: var(--white);
    border: 3px solid var(--story-ring);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.8rem;
    color: var(--text-light);
    transition: var(--transition);
    box-shadow: var(--shadow);
    position: relative;
}

.feature-icon i {
    color: var(--text-light);
    transition: var(--transition);
}

.feature-item:hover .feature-icon {
    transform: scale(1.15) rotate(-10deg);
    box-shadow: var(--shadow-xl);
    background: var(--story-ring);
    border-color: transparent;
}

.feature-item:hover .feature-icon i {
    color: var(--white);
}

.feature-item h4 {
    color: var(--text-dark);
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.feature-item p {
    color: var(--text-light);
    line-height: 1.7;
}

/* ==========================================
   STATS SECTION
   ========================================== */
.stats-section {
    padding: 60px 0;
    background: var(--gradient-header);
    color: var(--white);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

.stat-item {
    text-align: center;
    padding: 20px;
    transition: var(--transition);
    opacity: 1;
    transform: translateY(0);
}

.stat-number {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 10px;
    display: block;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
    transition: var(--transition);
    min-height: 1.2em;
    font-family: 'YekanBakhFaNum', Tahoma, Arial, sans-serif;
}

.stat-label {
    font-size: 1.2rem;
    opacity: 0.9;
    font-weight: 600;
}

/* ==========================================
   CONSULTATION SECTION
   ========================================== */
.consultation-section {
    padding: 80px 0;
    background: var(--light-gray);
}

.consultation-form {
    background: var(--white);
    padding: 50px 40px;
    border-radius: 15px;
    box-shadow: var(--shadow);
    border: 1px solid var(--border-color);
}

.consultation-image img {
    border-radius: 15px;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
    border: 3px solid rgba(74, 144, 226, 0.1);
}

.consultation-image img:hover {
    transform: scale(1.02);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-color);
}

.form-group {
    margin-bottom: 25px;
}

.form-label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--text-dark);
}

.form-control,
.form-select {
    width: 100%;
    border: 2px solid var(--border-color);
    border-radius: 10px;
    padding: 15px;
    font-size: 1rem;
    transition: var(--transition);
    background: var(--white);
    font-family: 'YekanBakhFaNum', sans-serif;
}

.form-control:focus,
.form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(74, 144, 226, 0.25);
    outline: none;
}

.btn-submit {
    background: var(--gradient-primary);
    color: var(--white);
    border: none;
    padding: 15px 40px;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    width: 100%;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* ==========================================
   FOOTER
   ========================================== */
.footer {
    background: var(--text-dark);
    color: var(--white);
    padding: 60px 0 20px;
}

.footer h4 {
    color: var(--white);
    margin-bottom: 25px;
    font-size: 1.4rem;
    position: relative;
}

.footer h4::after {
    content: '';
    position: absolute;
    bottom: -8px;
    right: 0;
    width: 50px;
    height: 2px;
    background: var(--secondary-color);
}

.footer p {
    color: #BDC3C7;
    line-height: 1.7;
    margin-bottom: 15px;
}

.footer ul {
    list-style: none;
    padding: 0;
}

.footer ul li {
    margin-bottom: 12px;
}

.footer ul li a {
    color: #BDC3C7;
    text-decoration: none;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.footer ul li a:hover {
    color: var(--secondary-color);
    transform: translateX(-5px);
}

.footer .social-links {
    margin-top: 25px;
}

.footer .social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    margin-left: 15px;
    transition: var(--transition);
    font-size: 1.2rem;
}

.footer .social-links a:hover {
    background: var(--secondary-color);
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}

.footer hr {
    border-color: #34495E;
    margin: 40px 0 20px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

/* ==========================================
   UTILITIES
   ========================================== */
.text-primary { color: var(--primary-color) !important; }
.text-center { text-align: center; }
.text-right { text-align: right; }
.text-left { text-align: left; }

.bg-primary { background: var(--gradient-primary) !important; }
.bg-light { background: var(--light-gray) !important; }

.rounded-lg { border-radius: 15px !important; }
.shadow-lg { box-shadow: var(--shadow-lg) !important; }

.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mt-5 { margin-top: 3rem; }

.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.mb-5 { margin-bottom: 3rem; }

.py-5 { padding: 3rem 0; }

/* ==========================================
   ANIMATIONS
   ========================================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.pulse {
    animation: pulse 2s infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

.floating {
    animation: float 3s ease-in-out infinite;
}

/* ==========================================
   RESPONSIVE DESIGN
   ========================================== */
@media (max-width: 991px) {
    .navbar-nav {
        background: var(--white);
        padding: 20px;
        border-radius: 10px;
        margin-top: 15px;
        box-shadow: var(--shadow);
    }
    
    .hero-title { font-size: 2.5rem; }
    .section-title h2 { font-size: 2rem; }
}

@media (max-width: 768px) {
    .services-grid,
    .features-grid,
    .stats-grid,
    .staff-row {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .accountants-row {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .staff-card {
        max-width: 100%;
    }
    
    .doctor-avatar {
        width: 120px;
        height: 120px;
    }
    
    .staff-member {
        width: 100%;
        padding: 10px;
        margin-bottom: 0;
    }
    
    .staff-member .staff-avatar {
        width: 70px;
        height: 70px;
        margin-bottom: 8px;
    }
    
    .staff-member h5 {
        font-size: 0.9rem;
        margin-bottom: 5px;
    }
    
    .staff-member span {
        font-size: 0.8rem;
    }
    
    .staff-summary {
        padding: 20px;
    }
    
    /* Mobile hero layout */
    .mobile-hero-layout .hero-content {
        display: flex;
        flex-direction: column;
        padding-top: 20px; /* Add space at the top */
    }
    
    .mobile-hero-layout .hero-title,
    .mobile-hero-layout .hero-subtitle,
    .mobile-hero-layout .hero-description {
        order: 1;
    }
    
    /* Remove duplicate "دکتر عمرانی" text in mobile view */
    .mobile-hero-layout .hero-title br,
    .mobile-hero-layout .hero-title .gradient-text {
        display: none;
    }
    
    .mobile-hero-layout .hero-image {
        order: 2;
        margin: 15px auto;
    }
    
    .mobile-hero-layout .hero-buttons {
        display: none; /* Hide buttons in mobile view */
    }
    
    /* Hero slider mobile optimization */
    .hero-slider {
        height: 60vh; /* Reduce height in mobile */
        min-height: 400px;
    }
    
    .slide {
        padding: 20px 15px;
    }
    
    .hero-content {
        width: 100%;
        text-align: center;
        padding: 0 10px;
    }
    
    .hero-title {
        font-size: 1.8rem; /* Smaller font size */
        margin-bottom: 10px;
        line-height: 1.2;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
        margin-bottom: 10px;
    }
    
    .hero-description {
        font-size: 0.95rem;
        margin-bottom: 15px;
        max-width: 100%;
    }
    
    .hero-image {
        display: block;
        margin: 10px auto;
        width: 100%;
        max-width: 280px; /* Smaller image */
        text-align: center;
    }
    
    .slide-image {
        max-width: 100%;
        height: auto;
        border-radius: 15px;
        box-shadow: var(--shadow);
        margin: 0 auto;
    }
    
    .hero-buttons {
        margin-top: 5px;
    }
    
    .contact-info {
        flex-direction: column;
        gap: 10px;
    }
    
    .consultation-form {
        padding: 20px;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    
    /* Hide services section title and description on mobile */
    .services-section .section-title h2,
    .services-section .section-title p {
        display: none;
    }
    
    /* Make service items display 2 per row */
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    
    /* Make service cards smaller to fit 2 per row */
    .service-card {
        padding: 15px 10px;
        min-height: auto;
    }
    
    .service-icon {
        width: 50px;
        height: 50px;
        font-size: 20px;
        margin-bottom: 10px;
    }
    
    .service-card h4 {
        font-size: 1rem;
        margin-bottom: 5px;
    }
    
    .service-card p {
        font-size: 0.8rem;
        margin-bottom: 10px;
        line-height: 1.4;
    }
    
    .service-link {
        font-size: 0.8rem;
        padding: 5px 0;
    }
    
    /* Reduce spacing between slider and services section */
    .services-section {
        padding-top: 0;
        margin-top: -30px; /* Negative margin to pull it up */
    }
    
    /* Make feature items display 2 per row */
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    
    .feature-item {
        padding: 15px 10px;
    }
    
    .feature-icon {
        width: 50px;
        height: 50px;
        font-size: 20px;
        margin-bottom: 10px;
    }
    
    .feature-item h4 {
        font-size: 0.9rem;
        margin-bottom: 5px;
    }
    
    .feature-item p {
        font-size: 0.8rem;
        line-height: 1.4;
    }
    
    /* Hide staff section title and description on mobile */
    .staff-category .category-title {
        font-size: 1.2rem;
        margin-bottom: 10px;
        text-align: center;
    }
    
    /* Make staff members display 2 per row */
    .staff-row {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 10px !important;
        margin-bottom: 15px;
    }
    
    .accountants-row {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important;
    }
    
    .staff-member {
        width: 100% !important;
        padding: 10px;
        margin-bottom: 0 !important;
    }
    
    .staff-photo {
        width: 70px !important;
        height: 70px !important;
        margin-bottom: 8px;
    }
    
    .staff-member h5 {
        font-size: 0.9rem;
        margin-bottom: 5px;
    }
    
    .staff-member span {
        font-size: 0.8rem;
    }
    
    /* Fix horizontal scrolling issues on mobile */
    .container {
        width: 100%;
        max-width: 100%;
        padding-left: 15px;
        padding-right: 15px;
    }
    
    .row {
        margin-left: 0;
        margin-right: 0;
    }
    
    .col-lg-6, .col-md-6, .col-sm-12, .col-12 {
        padding-left: 10px;
        padding-right: 10px;
    }
    
    /* Ensure slider doesn't cause overflow */
    .hero-slider, 
    .slider-container,
    .slide {
        width: 100%;
        max-width: 100%;
        overflow-x: hidden;
    }
    
    /* Ensure all sections stay within viewport width */
    section {
        width: 100%;
        max-width: 100%;
        overflow-x: hidden;
    }
    
    /* Fix any potential issues with absolute positioning */
    .slide-overlay,
    .slider-nav,
    .slider-arrow {
        left: auto;
        right: auto;
    }
    
    /* Fix any elements that might be causing overflow */
    img, svg, video {
        max-width: 100%;
        height: auto;
    }
    
    /* Fix any potential issues with fixed elements */
    .fixed-bottom, .fixed-top {
        width: 100%;
        max-width: 100%;
        left: 0;
        right: 0;
    }
    
    /* Fix for potential Bootstrap issues */
    .container-fluid {
        width: 100%;
        max-width: 100%;
        padding-left: 15px;
        padding-right: 15px;
    }
    
    /* Fix for slider arrows that might extend beyond viewport */
    .slider-arrow {
        width: 30px;
        height: 30px;
    }
    
    /* Ensure mobile menu stays within viewport */
    .mobile-menu {
        width: 100%;
        max-width: 100%;
    }
    
    /* Fix for mobile footer nav */
    .mobile-footer-nav {
        width: 100%;
        max-width: 100%;
        left: 0;
        right: 0;
    }
}

@media (max-width: 576px) {
    .top-bar {
        padding: 8px 0;
    }
    
    .top-bar .container {
        flex-direction: column;
        gap: 8px;
    }
    
    /* Smaller hero elements for very small screens */
    .hero-title {
        font-size: 1.6rem;
        margin-top: 10px;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-description {
        font-size: 0.9rem;
        margin-bottom: 10px;
    }
    
    .hero-buttons {
        width: 100%;
    }
    
    .btn-hero {
        width: 100%;
        max-width: 250px;
    }
    
    .section-title h2 {
        font-size: 1.7rem;
    }
    
    .service-card,
    .feature-item,
    .stat-item,
    .staff-card {
        padding: 15px;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .staff-row {
        grid-template-columns: 1fr;
    }
    
    .doctor-photo {
        width: 120px;
        height: 120px;
    }
    
    .staff-photo {
        width: 100px;
        height: 100px;
    }
    
    /* Fix slider height for very small screens */
    .hero-slider {
        height: auto;
        min-height: 350px; /* Even shorter for very small screens */
        padding-bottom: 50px;
    }
    
    .hero-image {
        max-width: 220px; /* Even smaller image */
        margin: 5px auto 10px;
    }
    
    .slide-overlay {
        background: rgba(0, 0, 0, 0.5);
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        width: 100%;
        height: 100%;
    }
    
    /* Make slider navigation more accessible */
    .slider-nav {
        bottom: 15px;
    }
    
    .nav-dot {
        width: 10px;
        height: 10px;
        margin: 0 5px;
    }
    
    .slider-arrow {
        width: 35px;
        height: 35px;
        font-size: 16px;
        bottom: 50%;
    }
    
    .floating-call-btn {
        bottom: 20px;
        left: 20px;
    }
    
    .floating-call-btn a {
        width: 50px;
        height: 50px;
    }
    
    .call-btn-inner i {
        font-size: 20px;
    }
    
    .call-text {
        display: none;
    }
    
    .hero-buttons {
        margin-top: 5px;
    }
    
    /* Keep 2 services per row even on very small screens */
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }
    
    .service-card {
        padding: 12px 8px;
    }
    
    .service-icon {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }
    
    .service-card h4 {
        font-size: 0.9rem;
    }
    
    .service-card p {
        font-size: 0.75rem;
        line-height: 1.3;
    }
    
    .service-link {
        font-size: 0.8rem;
        padding: 5px 0;
    }
    
    /* Keep 2 per row layout for very small screens */
    .staff-member .staff-avatar {
        width: 60px;
        height: 60px;
    }
    
    .staff-member h5 {
        font-size: 0.8rem;
    }
    
    .staff-member span {
        font-size: 0.7rem;
    }
    
    .feature-icon {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }
    
    .feature-item h4 {
        font-size: 0.8rem;
    }
    
    .feature-item p {
        font-size: 0.75rem;
        line-height: 1.3;
    }
    
    /* Keep 2 per row layout for very small screens */
    .staff-photo {
        width: 60px !important;
        height: 60px !important;
    }
}

/* Staff members mobile optimization */
@media (max-width: 768px) {
    .staff-photo {
        width: 80px;
        height: 80px;
        margin: 0 auto 10px;
        object-fit: cover;
        object-position: center top;
        border: 2px solid #fff;
    }
    
    .staff-member {
        height: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        margin-bottom: 0;
        width: 100%;
        padding: 10px 5px;
        box-sizing: border-box;
    }
    
    .staff-member h5 {
        font-size: 0.85rem;
        margin-bottom: 5px;
        text-align: center;
        width: 100%;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    
    .staff-member span {
        font-size: 0.75rem;
        text-align: center;
        width: 100%;
    }
    
    .accountants-row {
        display: flex;
        justify-content: center;
        width: 100%;
    }
    
    .accountants-row .staff-member {
        width: 33%;
        margin: 0 auto;
    }
    
    /* Make all staff members in a row have the same height */
    .row.justify-content-center {
        display: flex;
        flex-wrap: wrap;
        align-items: stretch;
    }
    
    .row.justify-content-center .col-4 {
        display: flex;
        align-items: stretch;
        margin-bottom: 20px;
        height: 170px;
    }
    
    /* Ensure staff category is properly aligned */
    .staff-category {
        margin-bottom: 20px;
    }
    
    .category-title {
        margin-bottom: 15px;
        text-align: center;
    }
}

@media (max-width: 576px) {
    .staff-photo {
        width: 70px;
        height: 70px;
    }
    
    .row.justify-content-center .col-4 {
        height: 150px;
    }
    
    .staff-member h5 {
        font-size: 0.8rem;
    }
    
    .staff-member span {
        font-size: 0.7rem;
    }
}

/* Mobile Fixed Footer Navigation */
.mobile-footer-nav {
    display: none; /* Initial state */
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    max-width: 100%;
    height: 65px;
    background: #405de6d6; /* Light blue background similar to the original */
    z-index: 1000;
    box-shadow: 0 -2px 15px rgba(0, 0, 0, 0.2);
    justify-content: space-between;
    align-items: center;
    padding: 5px 0;
    direction: rtl;
    overflow: hidden;
    -ms-overflow-style: none;  /* Hide scrollbar for IE and Edge */
    scrollbar-width: none;  /* Hide scrollbar for Firefox */
}

/* Hide scrollbar for Chrome, Safari and Opera */
.mobile-footer-nav::-webkit-scrollbar {
    display: none;
    width: 0;
    background: transparent;
}

.mobile-nav-item {
    flex: 1;
    text-align: center;
    position: relative;
}

.mobile-nav-item {
    flex: 1;
}

.mobile-nav-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: white;
    text-decoration: none;
    font-size: 0.8rem;
    padding: 5px;
    transition: all 0.3s ease;
}

.mobile-nav-link i {
    color: white;
}

.mobile-nav-link i {
    font-size: 1.5rem;
    margin-bottom: 3px;
}

.mobile-nav-link span {
    font-size: 0.7rem;
}

/* Hide on desktop */
@media (min-width: 769px) {
    .mobile-footer-nav {
        display: none;
    }
}

/* Show on mobile */
@media (max-width: 768px) {
    .mobile-footer-nav {
        display: flex;
    }
    
    /* Add padding to main content to prevent overlap with fixed footer */
    main {
        padding-bottom: 70px;
    }
    
    /* Hide floating call button on mobile */
    .floating-call-btn {
        display: none;
    }
    
    /* Adjust footer padding to prevent overlap with fixed nav */
    .footer {
        padding-bottom: 80px;
    }
}

/* Mobile Action Buttons */
.mobile-action-buttons {
    display: none; /* Hidden by default */
    flex-direction: row;
    justify-content: space-between;
    padding: 15px;
    gap: 10px;
    margin: 0 15px 15px;
    width: calc(100% - 30px);
    position: relative;
    z-index: 100;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.mobile-action-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px 10px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.85rem;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.mobile-action-btn i {
    margin-left: 5px;
    font-size: 1.1rem;
}

.appointment-btn {
    background: linear-gradient(45deg, #405DE6, #5851DB, #833AB4, #C13584);
    color: white !important;
    border: none;
}

.login-btn {
    background: white;
    color: #833AB4 !important;
    border: 1px solid #C13584;
}

.appointment-btn:hover {
    background: linear-gradient(45deg, #833AB4, #C13584, #E1306C, #F56040);
    transform: translateY(-2px);
}

.login-btn:hover {
    background: rgba(193, 53, 132, 0.1);
    transform: translateY(-2px);
}

/* Show mobile action buttons only on mobile */
@media (max-width: 768px) {
    .mobile-action-buttons {
        display: flex !important;
    }
    
    .hero-slider {
        position: relative;
        margin-bottom: 0;
    }
    
    .services-section {
        padding-top: 10px;
    }
} 
