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

html {
    scroll-behavior: smooth;
}

@font-face {
    font-family: 'iransans';
    src: url('./assets/font/woff2/IRANSansXFaNum-Regular.woff2') format('woff2'),
        url('./assets/font/woff/IRANSansXFaNum-Regular.woff') format('woff'),
        url('./assets/font/ttf/IRANSansXFaNum-Regular.ttf') format('ttf');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'iransans';
    src: url('./assets/font/woff2/IRANSansXFaNum-Medium.woff2') format('woff2'),
        url('./assets/font/woff/IRANSansXFaNum-Medium.woff') format('woff'),
        url('./assets/font/ttf/IRANSansXFaNum-Medium.ttf') format('ttf');
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: 'iransans';
    src: url('./assets/font/woff2/IRANSansXFaNum-DemiBold.woff2') format('woff2'),
        url('./assets/font/woff/IRANSansXFaNum-DemiBold.woff') format('woff'),
        url('./assets/font/ttf/IRANSansXFaNum-DemiBold.ttf') format('ttf');
    font-weight: 600;
    font-style: normal;
}

@font-face {
    font-family: 'iransans';
    src: url('./assets/font/woff2/IRANSansXFaNum-Bold.woff2') format('woff2'),
        url('./assets/font/woff/IRANSansXFaNum-Bold.woff') format('woff'),
        url('./assets/font/ttf/IRANSansXFaNum-Bold.ttf') format('ttf');
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: 'iransans';
    src: url('./assets/font/woff2/IRANSansXFaNum-ExtraBold.woff2') format('woff2'),
        url('./assets/font/woff/IRANSansXFaNum-ExtraBold.woff') format('woff'),
        url('./assets/font/ttf/IRANSansXFaNum-ExtraBold.ttf') format('ttf');
    font-weight: 800;
    font-style: normal;
}

@font-face {
    font-family: 'iransans';
    src: url('./assets/font/woff2/IRANSansXFaNum-Black.woff2') format('woff2'),
        url('./assets/font/woff/IRANSansXFaNum-Black.woff') format('woff'),
        url('./assets/font/ttf/IRANSansXFaNum-Black.ttf') format('ttf');
    font-weight: 900;
    font-style: normal;
}

:root {
    --primary-blue: #0042d3;
    --accent-yellow: #f1c40f;
    --accent-cyan: #00c2cb;
    --bg-gray: #f4f6f8;
    --card-gray: #F0F0F0;
    --text-dark: #2d3138;
    --text-muted: #5a6270;
    --border-radius-main: 32px;
    --border-radius-item: 16px;
    --primary-blue-alt: #0046e8;
    --text-dark-alt: #2d2d2d;
    --text-gray-alt: #595959;
    --input-bg: #F0F0F0;
    --border-light: #CECECE;
    --ticker-dark: #3a3a3a;
    --ticker-light: #f0f0f0;
    --yellow-accent: #f1c40f;
}

body {
    font-family: 'iransans', sans-serif;
    background: var(--w-color);
    color: var(--t-color);
    direction: rtl;
}

a {
    text-decoration: none;
    color: inherit;
    cursor: pointer;
    background-color: transparent;
    outline: none;
}

h1,
h2,
h3,
h4,
h5,
h6,
a,
span,
button,
input,
textarea {
    font-family: 'iransans', sans-serif !important;
    color: var(--t-color);
}

button {
    cursor: pointer;
    font-family: 'iransans';
    border: none;
    outline: none;
}

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

.w-space {
    margin: 150px auto 0;
}

.page-section {
    margin-top: clamp(40px, 8vw, 120px);
    padding: 0;
    width: 100%;
}

.page-section:first-of-type {
    margin-top: 0;
}

.container-inner {
    width: 100%;
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 40px;
}

.sec-hero.hero-section {
    width: 100%;
    min-height: 700px;
    height: auto;
    background: url('./assets/images/hero-l.webp') no-repeat center/ cover;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: visible;
    padding: 40px 20px;
}

.sec-hero .hero-container {
    width: 100%;
    max-width: 1300px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.sec-hero .hero-content {
    flex: 1;
    color: #ffffff;
    z-index: 2;
    max-width: 100%;
}

.sec-hero .hero-title {
    font-size: 4.5rem;
    font-weight: 900;
    margin-bottom: 10px;
    letter-spacing: -1px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
}

.sec-hero .hero-subtitle {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.4;
}

.sec-hero .hero-description {
    font-size: 1.5em;
    font-weight: 300;
    opacity: 0.95;
    margin-bottom: 35px;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 4px 32px;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    width: 220px;
    height: 60px;
}

.btn-yellow {
    background-color: #ffb703;
    color: #0d2149;
    border: 2px solid #ffb703;
    box-shadow: 0 4px 15px rgba(255, 183, 3, 0.3);
}

.btn-yellow:hover {
    background-color: #fca311;
    border-color: #fca311;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 183, 3, 0.45);
}

.btn-outline {
    background-color: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
    transition: all 0.3s ease;
}

.btn-outline:hover {
    background-color: rgba(255, 255, 255, 0.15);
    transform: translateY(-3px);
}

.sec-hero .btn i {
    font-size: 1.2rem;
}

.sec-hero .hero-image-wrapper {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    position: relative;
    height: 100%;
    min-height: 480px;
}

.sec-about .description {
    font-size: 15px;
    font-weight: 400;
    line-height: 1.7;
    margin-bottom: 40px;
    text-align: justify;
}

.sec-consultation .content-text {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-gray-alt);
    text-align: justify;
    margin-bottom: 35px;
}

.accordion-item.active .accordion-content {
    min-height: 140px !important;
}


.sec-testimonials .doctor-name {
    font-size: 16px;
    font-weight: 700;
    color: #333333;
}

.sec-consultation .content-text {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-gray-alt);
    text-align: justify;
    margin-bottom: 35px;
}

.sec-hero .hero-image {
    max-width: 100%;
    height: auto;
    object-fit: contain;
    z-index: 2;
    filter: drop-shadow(0px 10px 20px rgba(0, 0, 0, 0.15));
}

.sec-hero::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 80%, rgba(255, 255, 255, 0.15) 0%, transparent 60%);
    pointer-events: none;
    z-index: 1;
}

.sec-stats-two {
    background-color: #ffffff;
}

.sec-stats-two .stats-two-bg {
    background-color: #F0F0F0;
    border-radius: 24px;
    padding: 40px;
}

.sec-stats-two .header-block {
    display: flex;
    align-items: center;
    margin-bottom: 24px;
    gap: 12px;
}

.sec-stats-two .header-title {
    font-size: 28px;
    font-weight: 900;
    color: #333333;
}

.sec-stats-two .header-square {
    width: 16px;
    height: 16px;
    background-color: #0044ff;
    border-radius: 4px;
    flex-shrink: 0;
}

.sec-stats-two .cards-wrapper {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.sec-stats-two .card {
    flex: 1;
    background-color: #ffffff;
    border-radius: 32px;
    padding: 20px 20px 20px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border: 1px solid #CECECE;
    gap: 42px;
}

.sec-stats-two .card-info {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.sec-stats-two .card-number {
    font-size: 32px;
    font-weight: 900;
    color: #0044ff;
    margin-bottom: 4px;
}

.sec-stats-two .card-text {
    font-size: 16px;
    font-weight: 700;
    color: #333333;
    text-align: center;
}

.sec-stats-two .card-icon {
    width: 80px;
    height: 80px;
    object-fit: contain;
    background-color: #f9f9f9;
    border-radius: 50%;
}

.sec-about .about-box {
    background-color: #0644d3;
    border-radius: 32px;
    padding: 48px;
    display: flex;
    align-items: center;
    gap: 48px;
}

.sec-about .content-wrapper {
    flex: 1;
    color: #ffffff;
    display: flex;
    flex-direction: column;
}

.sec-about .section-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
}

.sec-about .header-square {
    width: 16px;
    height: 16px;
    background-color: #ffb703;
    border-radius: 4px;
}

.sec-about .section-title {
    font-size: 28px;
    font-weight: 900;
    color: #ffffff;
}

.sec-about .description {
    font-size: 16px;
    font-weight: 400;
    line-height: 2.2;
    margin-bottom: 40px;
    text-align: justify;
}

.sec-about .buttons-group {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.sec-about .image-wrapper {
    width: 100%;
    border-radius: 32px;
    overflow: hidden;
    flex: 1;
}

.sec-services {
    background-color: #f2f2f2;
    padding: clamp(30px, 5vw, 60px) 0;
}

.sec-services .header-block {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin-bottom: 40px;
}

.sec-services .header-square {
    width: 16px;
    height: 16px;
    background-color: #0044ff;
    border-radius: 4px;
    margin-left: 12px;
}

.sec-services .header-title {
    font-size: 28px;
    font-weight: 900;
    color: #333333;
}

.sec-services .cards-wrapper {
    display: flex;
    gap: 24px;
    justify-content: space-between;
}

.sec-services .card {
    flex: 1;
    border-radius: 48px;
    padding: 50px 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.sec-services .card-icon {
    width: 110px;
    height: 110px;
    object-fit: contain;
    margin-bottom: 24px;
}

.sec-services .card-content {
    display: flex;
    flex-direction: column;
}

.sec-services .card-title {
    font-size: 20px;
    font-weight: 900;
    margin-bottom: 16px;
}

.sec-services .card-desc {
    font-size: 15px;
    font-weight: 400;
    line-height: 2;
}

.sec-services .card-white {
    background-color: #ffffff;
}

.sec-services .card-white .card-title {
    color: #0044ff;
}

.sec-services .card-white .card-desc {
    color: #555555;
}

.sec-services .card-blue {
    background-color: #0066ff;
}

.sec-services .card-blue .card-title,
.sec-services .card-blue .card-desc {
    color: #ffffff;
}

.sec-testimonials .testimonials-box {
    background-color: #0644d3;
    border-radius: 32px;
    padding: 40px 48px;
    width: 100%;
    overflow: hidden;
}

.sec-testimonials .section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 32px;
}

.sec-testimonials .title-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
}

.sec-testimonials .section-title {
    font-size: 28px;
    font-weight: 900;
    color: #ffffff;
}

.sec-testimonials .header-square {
    width: 16px;
    height: 16px;
    background-color: #ffb703;
    border-radius: 4px;
}

.sec-testimonials .slider-nav {
    display: flex;
    gap: 12px;
    z-index: 10;
    color: #0042C8;
}

.slider-nav i {
    font-size: 14px;
    color: #0042C8;
}

.sec-testimonials .nav-btn {
    width: 40px;
    height: 40px;
    background-color: #ffb703;
    color: #000000;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    border: none;
    cursor: pointer;
    font-size: 16px;
    transition: opacity 0.3s ease;
    padding-top: 2px;
}

.sec-testimonials .nav-btn:hover {
    opacity: 0.8;
}

.sec-testimonials .testimonial-card {
    background-color: #ffffff;
    border-radius: 32px;
    padding: 16px;
    display: flex;
    flex-direction: column;
    text-align: right;
    height: 100%;
}

.sec-testimonials .doctor-info-wrap {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
}

.sec-testimonials .doctor-avatar {
    width: 100px;
    height: 100px;
    border-radius: 24px;
    object-fit: cover;
    background-color: #eaedf1;
}

.sec-testimonials .doctor-details {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
}

.sec-testimonials .doctor-name {
    font-size: 18px;
    font-weight: 900;
    color: #333333;
}

.sec-testimonials .doctor-badges {
    display: flex;
    gap: 8px;
}

.sec-testimonials .badge {
    padding: 8px 14px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.sec-testimonials .badge-blue {
    background-color: #0042C8;
    color: #ffffff;
}

.sec-testimonials .badge-yellow {
    background-color: #ffb703;
    color: #000000;
}

.sec-testimonials .testimonial-text {
    font-size: 15px;
    font-weight: 400;
    color: #3B3B3B;
    line-height: 2;
}

.sec-consultation .container-inner {
    padding-top: 0;
    padding-bottom: 0;
}

.sec-consultation .hero-section-consult {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}

.sec-consultation .content-column {
    flex: 0 0 50%;
    max-width: 50%;
}

.sec-consultation .content-title-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
}

.sec-consultation .header-square {
    width: 16px;
    height: 16px;
    background-color: #0044ff;
    border-radius: 4px;
    flex-shrink: 0;
}

.sec-consultation .content-title {
    font-size: 28px;
    font-weight: 900;
    color: var(--text-dark-alt);
}

.sec-consultation .content-title-icon {
    display: inline-flex;
    align-items: center;
    font-size: 24px;
    font-weight: 900;
    color: var(--text-dark-alt);
}

.sec-consultation .content-text {
    font-size: 15.5px;
    line-height: 2.3;
    color: var(--text-gray-alt);
    text-align: justify;
    margin-bottom: 35px;
}

.sec-consultation .btn-outline {
    background-color: transparent;
    color: var(--text-dark-alt);
    border: 2px solid var(--text-dark-alt);
    transition: all 0.3s ease;
}

.sec-consultation .btn-outline:hover {
    background-color: rgba(45, 45, 45, 0.08);
    transform: translateY(-3px);
}

.sec-consultation .btn svg {
    width: 18px;
    height: 18px;
    margin-left: 10px;
    fill: currentColor;
}

.sec-consultation .form-column {
    flex: 1;
    max-width: 100%;
    display: flex;
    justify-content: flex-start;
}

.sec-consultation .form-card {
    width: 100%;
    background-color: #ffffff;
    border: 1px solid var(--border-light);
    border-radius: 32px;
    padding: 60px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.02);
}

.sec-consultation .form-header {
    font-size: 22px;
    font-weight: 800;
    text-align: center;
    color: var(--text-dark-alt);
    margin-bottom: 35px;
}

.sec-consultation .form-header .blue-text {
    color: var(--primary-blue-alt);
}

.sec-consultation .input-wrapper {
    display: flex;
    align-items: center;
    background-color: var(--input-bg);
    border-radius: 16px;
    padding: 16px 20px;
    margin-bottom: 20px;
    gap: 12px;
}

.sec-consultation .input-wrapper.textarea-wrapper {
    align-items: flex-start;
}

.sec-consultation .input-wrapper svg {
    width: 22px;
    height: 22px;
    color: #4f70dd;
    flex-shrink: 0;
}

.sec-consultation .input-wrapper input,
.sec-consultation .input-wrapper textarea {
    width: 100%;
    border: none;
    background: transparent;
    outline: none;
    font-size: 15px;
    color: var(--text-dark-alt);
    text-align: right;
}

.sec-consultation .input-wrapper input::placeholder,
.sec-consultation .input-wrapper textarea::placeholder {
    color: #8892a0;
}

.sec-consultation .input-wrapper textarea {
    resize: none;
    height: 100px;
}

.sec-consultation .submit-button {
    width: 100%;
    background-color: var(--primary-blue-alt);
    color: #ffffff;
    border: none;
    border-radius: 14px;
    padding: 18px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin-top: 10px;
}

.sec-consultation .submit-button:hover {
    background-color: #0036b5;
}

.sec-brands .brands-section {
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    overflow: hidden;
}

.sec-brands .brands-title-bar {
    background-color: var(--ticker-dark, #111111);
    color: #ffffff;
    padding: 14px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 15px;
    font-weight: 700;
}

.brands-ticker-container {
    width: 100%;
    overflow: hidden;
    padding: 25px 0;
    background-color: #ffffff;
    direction: ltr;
}

.ticker-track {
    display: flex;
    width: max-content;
    animation: scroll-ticker 25s linear infinite;
}

.logo-item {
    flex-shrink: 0;
    width: 160px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 30px;
}

.logo-item img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s ease;
}

.logo-item img:hover {
    filter: grayscale(0%);
    opacity: 1;
}

@keyframes scroll-ticker {
    0% {
        transform: translate3d(0, 0, 0);
    }

    100% {
        transform: translate3d(-33.3333%, 0, 0);
    }
}

.sec-consultation .yellow-square {
    width: 10px;
    height: 10px;
    background-color: var(--yellow-accent);
    border-radius: 2px;
}

.sec-consultation .brands-ticker-container {
    background-color: var(--ticker-light);
    padding: 30px 0;
    overflow: hidden;
    position: relative;
    display: flex;
}

.sec-consultation .ticker-track {
    display: flex;
    align-items: center;
    gap: 100px;
    width: max-content;
    animation: infiniteScroll 25s linear infinite;
}

.sec-consultation .logo-item {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.sec-consultation .logo-item svg {
    height: 40px;
    fill: #333333;
    opacity: 0.85;
    transition: opacity 0.3s ease;
}

.sec-consultation .logo-item svg:hover {
    opacity: 1;
}

@keyframes infiniteScroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.sec-faq .faq-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}

.sec-faq .faq-accordion-column {
    flex: 0 0 58%;
    max-width: 58%;
}

.sec-faq .accordion-card {
    background-color: var(--card-gray);
    border-radius: var(--border-radius-main);
    padding: 50px;
    width: 100%;
}

.sec-faq .accordion-main-title {
    font-size: 28px;
    font-weight: 900;
    text-align: center;
    color: var(--text-dark);
    margin-bottom: 35px;
}

.sec-faq .accordion-item {
    background-color: #ffffff;
    border-radius: var(--border-radius-item);
    margin-bottom: 24px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.01);
    transition: all 0.3s ease;
}

.sec-faq .accordion-item:last-child {
    margin-bottom: 0;
}

.sec-faq .accordion-header {
    padding: 20px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    user-select: none;
}

.sec-faq .accordion-header-right {
    display: flex;
    align-items: center;
    gap: 14px;
}

.sec-faq .status-square {
    width: 12px;
    height: 12px;
    border-radius: 3px;
    background-color: var(--accent-yellow);
    flex-shrink: 0;
    transition: background-color 0.3s ease;
}

.sec-faq .accordion-item.active .status-square {
    background-color: var(--primary-blue);
}

.sec-faq .accordion-title {
    font-size: 15.5px;
    font-weight: 700;
    color: var(--text-dark);
}

.sec-faq .chevron-icon {
    width: 20px;
    height: 20px;
    color: var(--primary-blue);
    transition: transform 0.3s ease, color 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sec-faq .accordion-item.active .chevron-icon {
    transform: rotate(180deg);
    color: var(--text-dark);
}

.sec-faq .accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.sec-faq .accordion-inner-text {
    padding: 0 24px 24px 50px;
    font-size: 14.5px;
    line-height: 2.2;
    color: var(--text-muted);
    text-align: justify;
    border-top: 1px solid #f5f6f8;
    padding-top: 16px;
}

.sec-faq .faq-image {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.sec-faq .faq-image {
    width: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.sec-faq .faq-image img {
    width: 100%;
}

.sec-faq .cyan-question-mark {
    font-size: 120px;
    font-weight: 900;
    color: var(--accent-cyan);
    line-height: 1;
    margin-bottom: -20px;
    z-index: 2;
}

.sec-faq .doctor-bg-shape {
    width: 100%;
    height: 340px;
    background-color: #f0f3f6;
    border-radius: 50% 50% 40% 40% / 40% 40% 60% 60%;
    position: absolute;
    top: 60px;
    z-index: 1;
}

.sec-faq .doctor-avatar-placeholder {
    width: 280px;
    height: 360px;
    position: relative;
    z-index: 2;
    margin-top: 10px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.sec-faq .doctor-avatar-placeholder svg {
    width: 100%;
    height: 100%;
}

.sec-faq .badge-banner {
    background-color: var(--primary-blue);
    border-radius: 24px;
    width: 100%;
    padding: 24px 30px;
    text-align: center;
    box-shadow: 0 12px 30px rgba(0, 66, 211, 0.2);
    z-index: 3;
    margin-top: -40px;
}

.sec-faq .badge-text-top {
    color: #ffffff;
    font-size: 26px;
    font-weight: 800;
    margin-bottom: 8px;
    display: block;
}

.sec-faq .badge-text-bottom {
    font-size: 32px;
    font-weight: 900;
    display: block;
}

.sec-faq .text-yellow {
    color: var(--accent-yellow);
}

.sec-faq .text-white {
    color: #ffffff;
}

@media (max-width: 1400px) {
    .sec-stats-two .card {
        gap: 22px;
    }
}

@media (max-width: 1200px) {
    .sec-stats-two .cards-wrapper {
        grid-template-columns: repeat(2, 1fr);
    }

    .sec-about .about-box {
        flex-direction: column;
        padding: 32px;
        gap: 32px;
    }

    .sec-consultation .form-card {
        padding: 40px;
    }

    .about-box .hero-buttons {
        justify-content: center;
    }
}

@media (max-width: 1024px) {
    .container-inner {
        padding: 0 20px;
    }

    .sec-hero .hero-container {
        flex-direction: column-reverse;
        text-align: center;
        gap: 30px;
    }

    .sec-hero .hero-content {
        max-width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .sec-hero.hero-section {
        width: 100%;
        min-height: 820px;
        height: auto;
        background: url('./assets/images/hero-s.webp') no-repeat center/ cover;
        display: flex;
        align-items: end;
        justify-content: center;
        position: relative;
        overflow: hidden;
        padding: 40px 20px;
    }

    .sec-stats-two .cards-wrapper {
        flex-wrap: wrap;
    }

    .sec-about .content-wrapper,
    .sec-about .image-wrapper {
        width: 100%;
    }

    .sec-services .cards-wrapper {
        flex-direction: column;
        gap: 24px;
    }

    .sec-services .card {
        border-radius: 32px;
        padding: 30px 24px;
        flex-direction: row;
        align-items: center;
        text-align: right;
        gap: 24px;
    }

    .sec-services .card-icon {
        width: 90px;
        height: 90px;
        margin-bottom: 0;
        flex-shrink: 0;
    }

    .sec-services .card-content {
        align-items: flex-start;
        flex: 1;
    }

    .sec-consultation .hero-section-consult {
        flex-direction: column;
        gap: 50px;
    }

    .sec-consultation .content-column,
    .sec-consultation .form-column {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .sec-consultation .form-column {
        justify-content: center;
    }

    .sec-faq .faq-wrapper {
        flex-direction: column;
        gap: 50px;
    }

    .sec-faq .faq-accordion-column,
    .sec-faq .faq-illustration-column {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .form-column {
        width: 100%;
    }

    .faq-accordion-column {
        order: 2;
    }

    .sec-faq .faq-image img {
        width: 70%;
    }
}

@media (max-width: 992px) {
    .sec-hero .hero-image-wrapper {
        min-height: 350px;
        width: 100%;
    }

    .sec-hero .hero-image {
        max-height: 400px;
    }
}

@media (max-width: 768px) {
    .sec-hero.hero-section {
        min-height: 680px;
    }

    .sec-testimonials .testimonials-box {
        padding: 32px 24px;
    }

    .sec-testimonials .slider-nav {
        width: fit-content;
        justify-content: flex-end;
    }

    .sec-faq .accordion-card {
        padding: 30px;
    }

    .sec-hero .hero-title {
        font-size: 2.2rem !important;
    }

    .sec-hero .hero-subtitle {
        font-size: 1.4rem !important;
    }

    .sec-stats-two .header-title,
    .sec-about .section-title,
    .sec-services .header-title,
    .sec-testimonials .section-title,
    .sec-consultation .content-title,
    .sec-faq .accordion-main-title {
        font-size: 22px !important;
    }

    .sec-faq .accordion-title {
        font-size: 14px !important;
    }
}

@media (max-width: 600px) {
    .sec-stats-two .card {
        min-width: 100%;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 4px;
        padding: 20px;
    }
}

@media (max-width: 576px) {
    .sec-hero.hero-section {
        min-height: 660px;
        padding: 30px 15px;
    }

    .sec-hero .hero-buttons {
        flex-direction: row;
        width: 100%;
        flex-wrap: nowrap;
    }

.sec-hero .hero-description {
    margin-bottom: 25px;
    font-size: 1.1em;
    text-align: center;
}
    .sec-hero .btn {
        width: 100%;
    }
    
    .sec-stats-two .cards-wrapper {
    gap: 12px;
}

.sec-about .description {
    font-size: 15px;
    font-weight: 400;
    line-height: 1.7;
    margin-bottom: 40px;
    text-align: justify;
}

.sec-consultation .content-text {
    font-size: 15;
    line-height: 1.7;
    color: var(--text-gray-alt);
    text-align: justify;
    margin-bottom: 35px;
}

    .sec-about .about-box {
        padding: 24px;
    }

    .sec-about .buttons-group {
        flex-direction: column;
        width: 100%;
    }

    .sec-about .btn {
        width: 100%;
    }
        .sec-consultation .input-wrapper {
    padding: 10px 20px;
    margin-bottom: 12px;
    gap: 12px;
}
.sec-consultation .input-wrapper input, .sec-consultation .input-wrapper textarea {
    font-size: 14px !important;
}
}

@media (max-width: 480px) {
    .sec-hero.hero-section {
        min-height: 620px;
    }

    .sec-stats-two .stats-two-bg {
        padding: 20px;
    }

    .btn {
        padding: 4px 16px;
    }

    .sec-testimonials .doctor-avatar {
        width: 90px;
        height: 90px;
    }

    .sec-testimonials .doctor-info-wrap {
        margin-bottom: 12px;
    }

    .sec-testimonials .badge {
        font-size: 12px;
        padding: 8px;
    }

    .sec-testimonials .testimonial-text {
        font-size: 14px;
        line-height: 1.7;
    }

    .sec-hero .hero-title {
        font-size: 1.8rem !important;
    }

    .sec-hero .hero-subtitle {
        font-size: 1.1rem !important;
    }

    .sec-stats-two .header-title,
    .sec-about .section-title,
    .sec-services .header-title,
    .sec-testimonials .section-title,
    .sec-consultation .content-title,
    .sec-faq .accordion-main-title {
        font-size: 18px !important;
    }

    .sec-faq .accordion-header {
        padding: 16px;
    }

    .sec-faq .accordion-title {
        font-size: 13px !important;
        line-height: 2;
    }

    .sec-faq .accordion-header {
        padding: 16px;
    }

    .sec-consultation .form-header {
        font-size: 16px !important;
    }

    .sec-faq .accordion-inner-text {
        padding: 16px;
        font-size: 14px;
        line-height: 1.7;
    }

    .sec-about .hero-buttons,
    .sec-consultation .hero-buttons {
        display: flex !important;
        flex-direction: row !important;
        flex-wrap: nowrap !important;
        gap: 8px !important;
        width: 100% !important;
    }

    .sec-about .hero-buttons .btn,
    .sec-consultation .hero-buttons .btn {
        flex: 1 1 50% !important;
        width: 50% !important;
        font-size: 0.85rem !important;
        height: 48px !important;
        padding: 0 4px !important;
        border-radius: 12px !important;
    }
}

@media (max-width: 390px) {
    .sec-stats-two .card-number {
        font-size: 24px;
    }

.sec-hero.hero-section {
    min-height: 500px;
    background-position: 92%;
}

    .sec-consultation .form-card {
        padding: 20px;
    }

    .btn {
        padding: 4px 10px;
        height: 52px;
    }

    .sec-services .card {
        padding: 16px;
        gap: 12px;
    }

    .sec-services .card-icon {
        width: 70px;
        height: 70px;
    }

    .sec-services .card-title {
        font-size: 15px;
        font-weight: 700;
        margin-bottom: 16px;
    }

    .sec-services .card-desc {
        font-size: 15px;
        line-height: 1.7;
    }

    .sec-about .image-wrapper {
        border-radius: 24px;
    }

    .sec-faq .accordion-card {
        padding: 20px;
    }
    
    span.badge.badge-yellow {
    display: none;
}
}

@media (max-width: 360px) {
    .sec-hero.hero-section {
        min-height: 480px;
        background-position: 82%;
    }

    .sec-hero .hero-description {
        font-size: 1rem;
        margin-bottom: 10px;
    }

    .hero-buttons {
        gap: 10px;
    }

    .btn {
        font-size: 1rem;
        font-weight: 700;
        cursor: pointer;
    }

    .card.card-white {
        padding: 16px;
    }
}