/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #2563eb;
    --primary-hover: #1d4ed8;
    --text-dark: #111827;
    --text-gray: #6b7280;
    --text-light: #9ca3af;
    --bg-white: #ffffff;
    --bg-gray-50: #f9fafb;
    --bg-gray-100: #f3f4f6;
    --bg-gray-200: #e5e7eb;
    --bg-gray-800: #1f2937;
    --bg-gray-900: #111827;
}

html {
    overflow-x: hidden;
    width: 100%;
    position: relative;
    scroll-behavior: smooth;
}

body {
    font-family: 'Vazirmatn', Arial, sans-serif;
    direction: rtl;
    text-align: right;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
    position: relative;
}

img, video, iframe {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    width: 100%;
    box-sizing: border-box;
}

/* Header Inside Hero */
.header-in-hero {
    position: relative;
    z-index: 10;
    padding: 1rem 0 0.5rem;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.5rem 0;
}

.logo {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.logo-text {
    font-size: 1.25rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
}

.logo-subtext {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.9);
    margin: 0;
}

.desktop-nav {
    display: none;
    gap: 2rem;
}

.desktop-nav a {
    color: rgba(255,255,255,0.9);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.desktop-nav a:hover {
    color: #ffffff;
}

.mobile-menu-btn {
    display: block;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #ffffff;
    cursor: pointer;
}

.mobile-nav {
    display: none;
    flex-direction: column;
    padding-bottom: 1rem;
}

.mobile-nav.active {
    display: flex;
}

.mobile-nav a {
    padding: 0.5rem 0;
    color: rgba(255,255,255,0.9);
    text-decoration: none;
    transition: color 0.3s;
}

.mobile-nav a:hover {
    color: #ffffff;
}

@media (min-width: 768px) {
    .desktop-nav {
        display: flex;
    }
    .mobile-menu-btn {
        display: none;
    }
    .mobile-nav {
        display: none !important;
    }
    
    /* Desktop: Keep buttons next to title in header */
    .reviews .section-header {
        position: relative;
    }
    
    .reviews .carousel-nav-simple {
        position: absolute;
        left: 0;
        top: 50%;
        transform: translateY(-50%);
    }
}

/* Hero Section */
.hero {
    position: relative;
    overflow: hidden;
    padding: 0;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 100vw;
    box-sizing: border-box;
}

.hero-background {
    position: absolute;
    inset: 0;
    background: url('background.jpg') center center / cover no-repeat;
    z-index: 1;
    width: 100%;
    max-width: 100vw;
}

.hero-background::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    z-index: 1;
}

.hero-pattern {
    position: absolute;
    inset: 0;
    opacity: 0.1;
    background: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 20px,
        rgba(255,255,255,0.1) 20px,
        rgba(255,255,255,0.1) 21px
    );
    background-size: 40px 40px;
    z-index: 2;
}

.hero-content {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 10;
    padding: 4rem 0;
    min-height: calc(100vh - 200px);
    flex: 1;
    text-align: center;
}

.hero-text {
    max-width: 800px;
    margin: 0 auto;
}

.hero-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    text-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.hero-description {
    font-size: 1.125rem;
    color: rgba(255,255,255,0.95);
    line-height: 1.8;
    text-shadow: 0 1px 5px rgba(0,0,0,0.2);
}

@media (min-width: 768px) {
    .hero-content {
        padding: 6rem 0;
    }
    .hero-title {
        font-size: 3rem;
    }
}

@media (min-width: 1024px) {
    .hero-title {
        font-size: 3.75rem;
    }
}

/* Info Cards */
.info-cards {
    padding: 3rem 0;
    background: #ffffff;
    width: 100%;
    overflow-x: hidden;
}

.cards-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.info-card {
    background: linear-gradient(135deg, #ffffff 0%, #f9fafb 100%);
    border-radius: 1.25rem;
    padding: 2rem;
    box-shadow: 0 8px 24px rgba(0,0,0,0.08), 0 4px 12px rgba(0,0,0,0.05);
    border: 2px solid rgba(37, 99, 235, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), #60a5fa, var(--primary-color));
    transform: scaleX(0);
    transition: transform 0.4s;
}

.info-card:hover {
    box-shadow: 0 16px 40px rgba(37, 99, 235, 0.15), 0 8px 16px rgba(0,0,0,0.08);
    transform: translateY(-8px);
    border-color: rgba(37, 99, 235, 0.25);
}

.info-card:hover::before {
    transform: scaleX(1);
}

.card-header {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    margin-bottom: 1.5rem;
}

.card-icon {
    width: 4rem;
    height: 4rem;
    background: linear-gradient(135deg, var(--primary-color), #60a5fa);
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    box-shadow: 0 8px 16px rgba(37, 99, 235, 0.3);
    transition: all 0.4s;
}

.info-card:hover .card-icon {
    transform: rotate(5deg) scale(1.1);
    box-shadow: 0 12px 24px rgba(37, 99, 235, 0.4);
}

.card-header h3 {
    font-size: 1.375rem;
    font-weight: 700;
    color: var(--text-dark);
    background: linear-gradient(135deg, var(--primary-color), #60a5fa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.card-phone {
    font-size: 1.875rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.03), rgba(96, 165, 250, 0.03));
    border-radius: 0.75rem;
    border: 1px solid rgba(37, 99, 235, 0.1);
    text-decoration: none;
    transition: all 0.3s;
    color: var(--text-dark);
}

.contact-item:hover {
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.1), rgba(96, 165, 250, 0.1));
    border-color: var(--primary-color);
    transform: translateX(-5px);
}

.contact-item i {
    width: 2.5rem;
    height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-color), #60a5fa);
    border-radius: 0.625rem;
    color: white;
    font-size: 1.125rem;
    box-shadow: 0 4px 8px rgba(37, 99, 235, 0.3);
}

.contact-item span {
    font-size: 1rem;
    font-weight: 500;
}

.card-description {
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.hours-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.hour-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.03), rgba(52, 211, 153, 0.03));
    border-radius: 0.75rem;
    border: 1px solid rgba(16, 185, 129, 0.1);
    transition: all 0.3s;
}

.hour-item:hover {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1), rgba(52, 211, 153, 0.1));
    border-color: #10b981;
}

.hour-item i {
    font-size: 1.25rem;
    width: 2.5rem;
    height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(16, 185, 129, 0.1);
    border-radius: 0.625rem;
}

.text-green {
    color: #10b981;
}

.text-red {
    color: #ef4444;
}

.hour-item .text-red {
    background: rgba(239, 68, 68, 0.1) !important;
}

.btn {
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    border: none;
    font-family: inherit;
    font-size: 1rem;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color) 0%, #1d4ed8 100%);
    color: white;
    border: none;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #1d4ed8 0%, var(--primary-color) 100%);
    box-shadow: 0 6px 16px rgba(37, 99, 235, 0.4);
    transform: translateY(-2px);
}

.btn-outline {
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    background: transparent;
    width: 100%;
    justify-content: center;
    border-radius: 0.75rem;
    padding: 1rem 1.5rem;
    font-weight: 600;
    transition: all 0.4s;
}

.btn-outline:hover {
    background: linear-gradient(135deg, var(--primary-color), #60a5fa);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 16px rgba(37, 99, 235, 0.3);
}

.info-cards-special {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
}

@media (min-width: 768px) {
    .info-cards-special {
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem;
    }
    
    .cards-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Services Section */
.services {
    padding: 5rem 0;
    background: linear-gradient(to bottom, #f9fafb 0%, #ffffff 100%);
    width: 100%;
    overflow-x: hidden;
    position: relative;
}

.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: linear-gradient(to bottom, rgba(37, 99, 235, 0.02), transparent);
    pointer-events: none;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 1;
}

.section-title {
    font-size: 2.75rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #1e293b 0%, #3b82f6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.title-underline {
    width: 8rem;
    height: 0.35rem;
    background: linear-gradient(90deg, var(--primary-color), #60a5fa);
    margin: 0 auto 1.5rem;
    border-radius: 2px;
    box-shadow: 0 4px 8px rgba(37, 99, 235, 0.3);
}

.section-description {
    font-size: 1.125rem;
    color: var(--text-gray);
    max-width: 48rem;
    margin: 0 auto;
    line-height: 1.8;
    font-weight: 400;
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    position: relative;
    z-index: 1;
}

.service-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    border-radius: 1.25rem;
    padding: 2.5rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08), 0 4px 12px rgba(0,0,0,0.05);
    border: 1px solid rgba(37, 99, 235, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), #60a5fa, var(--primary-color));
    transform: scaleX(0);
    transition: transform 0.4s;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    box-shadow: 0 20px 40px rgba(37, 99, 235, 0.15), 0 8px 16px rgba(0,0,0,0.1);
    transform: translateY(-8px);
    border-color: rgba(37, 99, 235, 0.3);
}

.service-icon {
    width: 5rem;
    height: 5rem;
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    border-radius: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 2rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 8px 20px rgba(37, 99, 235, 0.25);
    transition: all 0.4s;
    position: relative;
}

.service-card:hover .service-icon {
    transform: rotate(5deg) scale(1.1);
    box-shadow: 0 12px 28px rgba(37, 99, 235, 0.35);
}

.service-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
    position: relative;
}

.service-card p {
    color: var(--text-gray);
    line-height: 1.9;
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.service-link {
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    background: rgba(37, 99, 235, 0.05);
}

.service-link:hover {
    gap: 0.75rem;
    background: rgba(37, 99, 235, 0.1);
    transform: translateX(-4px);
}

@media (min-width: 768px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2.5rem;
    }
    .section-title {
        font-size: 3.25rem;
    }
}

@media (min-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 3rem;
    }
    .service-card {
        padding: 3rem;
    }
}

/* Why Choose Us */
.why-choose-us {
    padding: 4rem 0;
    background: url('bg2.jpg') center center / cover no-repeat;
    width: 100%;
    overflow-x: hidden;
    position: relative;
}

.why-choose-us::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index: 1;
}

.why-choose-us .container {
    position: relative;
    z-index: 2;
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.feature-card {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-radius: 1.5rem;
    padding: 2.5rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.25);
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2),
        inset 0 -1px 0 rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    opacity: 0;
    transition: opacity 0.4s;
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-card::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s;
}

.feature-card:hover::after {
    opacity: 1;
}

.feature-card:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateY(-6px);
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.4),
        0 8px 32px rgba(37, 99, 235, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.35);
}

.feature-icon {
    width: 5rem;
    height: 5rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 2rem;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 
        0 8px 24px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    transition: all 0.4s;
    position: relative;
}

.feature-icon::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.3), transparent);
    opacity: 0;
    transition: opacity 0.4s;
}

.feature-card:hover .feature-icon {
    transform: rotate(5deg) scale(1.1);
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 
        0 12px 32px rgba(37, 99, 235, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.feature-card:hover .feature-icon::before {
    opacity: 1;
}

.feature-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.feature-card p {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.9;
    font-size: 1rem;
}

@media (min-width: 768px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Reviews Section */
.reviews {
    padding: 5rem 0;
    background: linear-gradient(to bottom, #ffffff 0%, #f9fafb 100%);
    width: 100%;
    overflow-x: hidden;
    position: relative;
}

.section-title-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    width: 100%;
    position: relative;
}

.section-title {
    margin: 0;
    flex: 0 0 auto;
}


.reviews::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: linear-gradient(to bottom, rgba(37, 99, 235, 0.02), transparent);
    pointer-events: none;
}

.reviews-carousel-wrapper {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    overflow: hidden !important;
    height: auto;
    min-height: 300px;
}

.reviews-carousel {
    position: relative;
    width: 100%;
    overflow: hidden !important;
    height: auto;
    min-height: 300px;
    max-height: 500px;
}

.carousel-container {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
    position: relative;
    padding: 1.5rem 1rem 0;
}

@media (max-width: 767px) {
    .carousel-container {
        gap: 1.5rem;
    }
}

.review-card {
    flex-shrink: 0;
    width: 100%;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    border-radius: 1rem;
    padding: 1.5rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08), 0 4px 12px rgba(0,0,0,0.05);
    border: 1px solid rgba(37, 99, 235, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.review-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), #60a5fa, var(--primary-color));
    transform: scaleX(0);
    transition: transform 0.4s;
}

.review-card:hover::before {
    transform: scaleX(1);
}

.review-card::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.05) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s;
}

.review-card:hover::after {
    opacity: 1;
}

.review-card:hover {
    box-shadow: 0 20px 40px rgba(37, 99, 235, 0.15), 0 8px 16px rgba(0,0,0,0.1);
    transform: translateY(-6px);
    border-color: rgba(37, 99, 235, 0.3);
}

.review-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.review-avatar-wrapper {
    position: relative;
}

.review-avatar {
    width: 4.5rem;
    height: 4.5rem;
    border-radius: 50%;
    border: 3px solid rgba(37, 99, 235, 0.15);
    box-shadow: 0 6px 16px rgba(0,0,0,0.15);
    transition: all 0.3s;
    object-fit: cover;
}

.review-card:hover .review-avatar {
    border-color: rgba(37, 99, 235, 0.3);
    transform: scale(1.05);
}

.review-avatar-badge {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 1.5rem;
    height: 1.5rem;
    background: linear-gradient(135deg, var(--primary-color), #60a5fa);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.625rem;
    border: 2px solid white;
    box-shadow: 0 2px 6px rgba(0,0,0,0.2);
}

.review-info {
    flex: 1;
}

.review-info h4 {
    font-weight: 700;
    color: var(--text-dark);
    font-size: 1.125rem;
    margin-bottom: 0.375rem;
}

.review-time {
    font-size: 0.875rem;
    color: var(--text-gray);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.review-time i {
    font-size: 0.75rem;
}

.review-stars {
    display: flex;
    gap: 0.375rem;
    color: #fbbf24;
    margin-bottom: 1rem;
    font-size: 1.125rem;
    filter: drop-shadow(0 2px 4px rgba(251, 191, 36, 0.3));
}

.review-text {
    color: var(--text-gray);
    line-height: 1.75;
    font-size: 0.9375rem;
    margin-bottom: 0.75rem;
    position: relative;
    padding-right: 0;
}

.review-footer {
    display: flex;
    justify-content: flex-end;
    margin-top: 1rem;
}

.review-quote {
    font-size: 2rem;
    color: rgba(37, 99, 235, 0.1);
    line-height: 1;
}

.carousel-nav-simple {
    display: flex !important;
    flex-direction: row;
    align-items: center;
    gap: 0.5rem;
    margin: 0;
    padding: 0;
    position: relative;
    z-index: 30;
    width: auto;
    flex-shrink: 0;
}

.review-counter {
    font-size: 0.65rem;
    color: #1e40af;
    font-weight: 600;
    padding: 0.25rem 0.5rem;
    background: #ffffff;
    border-radius: 0.75rem;
    border: 1px solid var(--primary-color);
    box-shadow: 0 1px 4px rgba(37, 99, 235, 0.2);
    min-width: 40px;
    text-align: center;
    white-space: nowrap;
}

.nav-btn-simple {
    width: 1.75rem;
    height: 1.75rem;
    border-radius: 50%;
    border: 1px solid var(--primary-color);
    background: #ffffff;
    color: var(--primary-color);
    cursor: pointer;
    display: flex !important;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    font-size: 0.65rem;
    box-shadow: 0 2px 6px rgba(37, 99, 235, 0.2);
    position: relative;
    z-index: 31;
    padding: 0;
}

.nav-btn-simple:hover {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
    box-shadow: 0 3px 8px rgba(37, 99, 235, 0.3);
    transform: scale(1.1);
}

.nav-btn-simple:active {
    transform: scale(0.95);
}

.nav-btn-simple i {
    display: block;
    line-height: 1;
}

@media (max-width: 767px) {
    .carousel-container {
        gap: 1.25rem;
    }
    .review-card {
        padding: 1.25rem;
    }
}

@media (min-width: 768px) {
    .review-card {
        padding: 1.75rem;
    }
}

/* Blog Section */
.blog {
    padding: 5rem 0;
    background: linear-gradient(to bottom, #ffffff 0%, #f9fafb 100%);
    width: 100%;
    overflow-x: hidden;
    position: relative;
}

.blog-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 3rem;
}

.blog-card {
    background: #ffffff;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08), 0 2px 8px rgba(0,0,0,0.04);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(37, 99, 235, 0.08);
}

.blog-card:hover {
    box-shadow: 0 20px 40px rgba(37, 99, 235, 0.15), 0 8px 16px rgba(0,0,0,0.1);
    transform: translateY(-6px);
    border-color: rgba(37, 99, 235, 0.2);
}

.blog-image {
    width: 100%;
    height: 14rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    overflow: hidden;
    position: relative;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-card:hover .blog-image img {
    transform: scale(1.08);
}

.blog-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 40%;
    background: linear-gradient(to top, rgba(0,0,0,0.3), transparent);
    pointer-events: none;
}

.blog-content {
    padding: 1.75rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.blog-content h3 {
    font-size: 1.375rem;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.6;
    margin-bottom: 0.875rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-excerpt {
    font-size: 0.9375rem;
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 1.25rem;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden
}

.blog-meta {
    margin-top: auto;
    display: flex;
    align-items: center;
    gap: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #e5e7eb;
}

.blog-date {
    font-size: 0.875rem;
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.blog-date i {
    font-size: 0.875rem;
    color: var(--primary-color);
}

.blog-more {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 3.5rem;
    padding: 0 1rem;
    width: 100%;
}

.blog-more .btn {
    padding: 1.125rem 3rem;
    font-size: 1.0625rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    border-radius: 0.75rem;
}

.blog-more .btn i {
    font-size: 1.125rem;
}

@media (min-width: 768px) {
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2.5rem;
    }
    
    .blog-image {
        height: 16rem;
    }
    
    .blog-content {
        padding: 2rem;
    }
    
    .blog-content h3 {
        font-size: 1.5rem;
    }
}

@media (min-width: 1024px) {
    .blog-grid {
        gap: 3rem;
    }
    
    .blog-image {
        height: 18rem;
    }
}

/* CTA Section */
.cta {
    padding: 4rem 0;
    background: #f3f4f6;
    position: relative;
    overflow: hidden;
    width: 100%;
}

.cta-pattern {
    position: absolute;
    inset: 0;
    opacity: 0.02;
    background: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 20px,
        rgba(0,0,0,0.1) 20px,
        rgba(0,0,0,0.1) 21px
    );
    background-size: 40px 40px;
}

.cta-content {
    text-align: center;
    position: relative;
    z-index: 10;
}

.cta-cards-wrapper {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    position: relative;
    z-index: 10;
}

.cta-main {
    text-align: center;
    background: linear-gradient(135deg, var(--primary-color) 0%, #1d4ed8 100%);
    padding: 3rem 2rem;
    border-radius: 1.5rem;
    box-shadow: 0 20px 40px rgba(37, 99, 235, 0.3);
    position: relative;
    overflow: hidden;
}

.cta-main::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, transparent 50%);
    pointer-events: none;
}

.cta-main h2 {
    font-size: 1.75rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 8px rgba(0,0,0,0.2);
    position: relative;
    z-index: 1;
}

.cta-phone {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 2rem;
    font-weight: 700;
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s;
    background: rgba(255, 255, 255, 0.2);
    padding: 1rem 2rem;
    border-radius: 1rem;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    position: relative;
    z-index: 1;
}

.cta-phone:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(0,0,0,0.2);
}

.cta-phone i {
    font-size: 1.5rem;
}

.cta .cards-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .cta .cards-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .cta-main h2 {
        font-size: 2.25rem;
    }
    .cta-phone {
        font-size: 2.5rem;
    }
}

@media (min-width: 1024px) {
    .cta-main h2 {
        font-size: 2.5rem;
    }
    .cta-phone {
        font-size: 3rem;
    }
}

/* Footer */
.footer {
    background: var(--bg-gray-900);
    background-image: url('bg3.jpg');
    background-size: cover;
    background-position: center 24%;
    background-attachment: fixed;
    color: white;
    padding: 3rem 0 1.5rem;
    width: 100%;
    overflow-x: hidden;
    position: relative;
}

/* Fix background-attachment for mobile */
@media (max-width: 768px) {
    .footer {
        background-attachment: scroll;
    }
}

.footer-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

.footer .container {
    position: relative;
    z-index: 2;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-col h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.footer-info {
    color: #d1d5db;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-info i {
    margin-left: 0.5rem;
}

.footer-bold {
    font-weight: 700;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-links a {
    color: #d1d5db;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--primary-color);
}

.footer-description {
    color: #d1d5db;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.social-links {
    display: flex;
    gap: 0.75rem;
}

.social-link {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    background: var(--bg-gray-800);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: background 0.3s;
}

.social-link:hover {
    background: var(--primary-color);
}

.footer-copyright {
    border-top: 1px solid #374151;
    padding-top: 2rem;
    text-align: center;
    color: #9ca3af;
}

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .footer-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Special Info Cards Styles */
.contact-card-special,
.hours-card-special {
    position: relative;
    background: #ffffff;
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 4px 12px rgba(0,0,0,0.06), 0 2px 6px rgba(0,0,0,0.04);
    border: 1px solid rgba(37, 99, 235, 0.08);
    transition: all 0.3s ease;
    overflow: hidden;
}

.contact-card-special::before,
.hours-card-special::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), #60a5fa);
    transform: scaleX(0);
    transition: transform 0.3s;
}

.contact-card-special:hover::before,
.hours-card-special:hover::before {
    transform: scaleX(1);
}

.contact-card-special:hover,
.hours-card-special:hover {
    box-shadow: 0 8px 24px rgba(0,0,0,0.1), 0 4px 12px rgba(0,0,0,0.06);
    transform: translateY(-4px);
    border-color: rgba(37, 99, 235, 0.2);
}

.card-bg-pattern {
    display: none;
}

.card-content {
    position: relative;
}

.card-icon-wrapper {
    width: 3.5rem;
    height: 3.5rem;
    background: linear-gradient(135deg, var(--primary-color), #60a5fa);
    border-radius: 0.875rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
    box-shadow: 0 4px 16px rgba(37, 99, 235, 0.25);
    transition: all 0.3s;
}

.contact-card-special:hover .card-icon-wrapper {
    transform: scale(1.05);
}

.card-icon-wrapper.hours {
    background: linear-gradient(135deg, #10b981, #34d399);
    box-shadow: 0 4px 16px rgba(16, 185, 129, 0.25);
}

.card-icon-wrapper i {
    font-size: 1.5rem;
    color: white;
}

.pulse-ring {
    display: none;
}

.contact-card-special h3,
.hours-card-special h3 {
    font-size: 1.375rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.card-subtitle {
    text-align: center;
    color: var(--text-gray);
    font-size: 0.875rem;
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

.contact-channels {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

@media (max-width: 768px) {
    .contact-channels {
        grid-template-columns: 1fr;
    }
}

.channel-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    padding: 1.25rem;
    background: #f9fafb;
    border: 1px solid rgba(37, 99, 235, 0.1);
    border-radius: 0.875rem;
    text-decoration: none;
    transition: all 0.3s;
    color: var(--text-dark);
}

.channel-item:hover {
    background: white;
    border-color: var(--primary-color);
    transform: translateY(-4px);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.15);
}

.channel-item.primary {
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.03), rgba(96, 165, 250, 0.03));
    border-color: rgba(37, 99, 235, 0.2);
}

.channel-item i {
    width: 2.5rem;
    height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-color), #60a5fa);
    border-radius: 0.75rem;
    color: white;
    font-size: 1.25rem;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.25);
}

.channel-item div {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    text-align: center;
}

.channel-label {
    font-size: 0.75rem;
    color: var(--text-gray);
    font-weight: 500;
}

.channel-value {
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary-color);
}

.channel-item span:not(.channel-label):not(.channel-value) {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-dark);
}

.hours-timeline {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    position: relative;
    padding-right: 2rem;
}

.hours-timeline::before {
    content: '';
    position: absolute;
    right: 0.75rem;
    top: 0.75rem;
    bottom: 0.75rem;
    width: 2px;
    background: linear-gradient(to bottom, #10b981, #f59e0b, #ef4444);
}

.timeline-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    transition: all 0.3s;
}

.timeline-item:hover {
    transform: translateX(-4px);
}

.timeline-marker {
    width: 0.875rem;
    height: 0.875rem;
    border-radius: 50%;
    background: #10b981;
    border: 2px solid white;
    box-shadow: 0 2px 6px rgba(16, 185, 129, 0.3);
    flex-shrink: 0;
    margin-top: 0.375rem;
    position: relative;
    z-index: 5;
}

.timeline-marker.warning {
    background: #f59e0b;
    box-shadow: 0 2px 6px rgba(245, 158, 11, 0.3);
}

.timeline-marker.closed {
    background: #ef4444;
    box-shadow: 0 2px 6px rgba(239, 68, 68, 0.3);
}

.timeline-content {
    display: flex;
    flex-direction: column;
    gap: 0.375rem;
    flex: 1;
    padding: 0.875rem 1.125rem;
    background: #f9fafb;
    border-radius: 0.875rem;
    border: 1px solid rgba(37, 99, 235, 0.08);
}

.timeline-item.closed .timeline-content {
    background: rgba(239, 68, 68, 0.03);
    border-color: rgba(239, 68, 68, 0.15);
}

.timeline-day {
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--text-dark);
}

.timeline-time {
    font-size: 0.875rem;
    color: var(--text-gray);
    font-weight: 500;
}

.timeline-item.closed .timeline-time {
    color: #ef4444;
    font-weight: 600;
}

/* Smooth Scroll */
html {
    scroll-behavior: smooth;
}

/* Responsive Improvements for Mobile */
@media (max-width: 768px) {
    /* Hero Section Mobile */
    .hero-title {
        font-size: 1.75rem;
    }
    
    .hero-description {
        font-size: 0.95rem;
    }
    
    .hero-content {
        padding: 2rem 0;
    }
    
    /* Services Mobile */
    .services {
        padding: 3rem 0;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .section-description {
        font-size: 0.95rem;
    }
    
    /* Services Grid Mobile */
    .services-grid {
        gap: 2rem;
    }
    
    .service-card {
        padding: 2rem 1.5rem;
    }
    
    .service-icon {
        width: 4rem;
        height: 4rem;
        font-size: 1.75rem;
    }
    
    .service-card h3 {
        font-size: 1.25rem;
    }
    
    /* Why Choose Us Mobile */
    .why-choose-us {
        padding: 3rem 0;
    }
    
    .features-grid {
        gap: 1.5rem;
    }
    
    .feature-card {
        padding: 1.75rem;
    }
    
    /* Reviews Mobile */
    .reviews {
        padding: 3rem 0;
    }
    
    .reviews .section-title-wrapper {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .reviews .section-title {
        margin-bottom: 0.5rem;
    }
    
    .reviews .title-underline {
        margin-bottom: 1rem;
    }
    
    .reviews .carousel-nav-simple {
        margin: 0.75rem 0 0;
    }
    
    .reviews .review-card {
        padding: 1.25rem;
    }
    
    /* Blog Mobile */
    .blog {
        padding: 3rem 0;
    }
    
    .blog-card {
        border-radius: 0.875rem;
    }
    
    .blog-content {
        padding: 1.5rem;
    }
    
    .blog-content h3 {
        font-size: 1.125rem;
    }
    
    /* CTA Mobile */
    .cta {
        padding: 3rem 0;
    }
    
    .contact-card-special,
    .hours-card-special {
        padding: 1.5rem;
    }
    
    .card-icon-wrapper {
        width: 3rem;
        height: 3rem;
    }
    
    .card-icon-wrapper i {
        font-size: 1.25rem;
    }
    
    .contact-card-special h3,
    .hours-card-special h3 {
        font-size: 1.125rem;
    }
    
    /* Footer Mobile */
    .footer {
        padding: 2rem 0 1rem;
    }
    
    .footer-grid {
        gap: 1.5rem;
    }
    
    .footer-col h3 {
        font-size: 1.125rem;
    }
    
    .social-link {
        width: 2.25rem;
        height: 2.25rem;
        font-size: 0.875rem;
    }
}

