/* ========================================
   GLOBAL STYLES & ROOT VARIABLES
   ======================================== */
:root {
    --primary-blue: #10217d;
    --primary-yellow: #f7a800;
    --text-dark: #000000;
    --text-light: #ffffff;
    --text-gray: #565656;
    --text-muted: #6c87ae;
    --bg-light: #ffffff;
    --bg-light-gray: #f9fbfc;
    --border-color: #dbdde0;
    --poppins: 'Poppins', sans-serif;
}

body {
    margin: 0;
    font-family: 'Poppins', sans-serif;
    background-color: var(--bg-light);
    color: var(--text-dark);
}

* {
    box-sizing: border-box;
}

.container {
    max-width: 1440px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 100px;
    padding-right: 100px;
}

section {
    width: 100%;
    overflow: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

h1, h2, h3, p {
    margin: 0;
}
/* Add this to the HEADER SECTION in main.css */
.header-main-nav.mobile-active {
    display: block;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    z-index: 999;
}

.header-main-nav.mobile-active ul {
    flex-direction: column;
    padding: 20px;
}

.header-main-nav.mobile-active li {
    padding: 10px 0;
    border-bottom: 1px solid #eee;
}
/* Add this to the HEADER SECTION in main.css */
.header-mobile-nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.header-mobile-nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.header-mobile-nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

.header-mobile-nav-toggle span {
    transition: all 0.3s ease;
}
/* Hide mobile-only items on desktop */
.header-mobile-only {
    display: none;
}

/* Show mobile-only items in mobile menu */
@media (max-width: 1200px) {
    .header-mobile-only {
        display: block;
    }
    
    .header-mobile-login {
        background-color: var(--primary-blue);
        color: var(--text-light) !important;
        padding: 10px 20px;
        border-radius: 32px;
        display: inline-block;
        text-align: center;
        margin-top: 10px;
    }
    
    .header-mobile-login:hover {
        background-color: var(--primary-yellow);
    }
}
@media (max-width: 1200px) {
    .header-main-nav {
        display: none;
    }
    
    .header-main-nav.mobile-active {
        display: block;
    }
}
/* ========================================
   HEADER SECTION
   ======================================== */
.header-site-header {
    background-color: var(--bg-light);
    box-shadow: 0px 4px 32px 0px rgba(0, 0, 0, 0.1);
    padding: 25px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 100px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-logo {
    display: block;
    width: 183px;
    height: auto;
    float: left;
    align-items: center;
}

.header-logo img {
    width: 100%;
    height: auto;
    float: left;
}

.header-main-nav ul {
    display: flex;
    gap: 40px;
}

.header-main-nav li a {
    display: flex;
    align-items: center;
    gap: 7px;
    font-family: 'Manrope', sans-serif;
    font-size: 16px;
    color: var(--text-dark);
    transition: color 0.3s;
    
}

.header-main-nav li a:hover {
    color: var(--primary-blue);
}

.header-main-nav li a img {
    width: 15px;
    height: 15px;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.header-phone-number {
    font-family: 'Manrope', sans-serif;
    font-size: 14px;
    color: var(--primary-blue);
}

.header-phone-number strong {
    font-weight: 700;
}

.header-btn {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding: 12px 22px;
    border-radius: 32px;
    font-weight: 500;
    font-size: 16px;
    cursor: pointer;
    border: none;
    text-align: center;
}

.header-btn-primary {
    background-color: var(--primary-blue);
    color: var(--text-light);
}

.header-btn-primary:hover {
    background-color: var(--primary-yellow);
    color: var(--text-light);
}

.header-mobile-nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
}

.header-mobile-nav-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--text-dark);
    margin: 5px 0;
}

/* ========================================
   HERO SECTION
   ======================================== */
.hero-section {
    min-height: 620px;
    background: url("../images/doctor-with-stethascope.png") no-repeat right bottom #7a98a2;
    background-size: contain;
    padding: 100px 0;
    text-align: center;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}

.hero-content h1 {
    font-family: 'Poppins', sans-serif;
    font-size: 25px;
    font-weight: 400;
    line-height: 1.5;
    color: var(--text-dark);
    max-width: 550px;
}

.hero-search-container {
    min-width: 1000px;
}

.hero-tab-container {
    display: block;
    width: 100%;
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0px 16px 32px rgba(0,0,0,0.32);
}

.hero-tab-navigation {
    display: flex;
    background: #f8f9fa;
    border-bottom: 1px solid #e9ecef;
}

.hero-tab-button {
    flex: 1;
    background: none;
    border: none;
    padding: 20px 24px;
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 500;
    color: #10217D;
    cursor: pointer;
    transition: all 0.3s ease;
    border-bottom: 3px solid transparent;
    position: relative;
}

.hero-tab-button:hover {
    background: #e9ecef;
    color: #495057;
}

.hero-tab-button.active {
    background: white;
    color: #007bff;
    border-bottom-color: #ffa500;
}

.hero-tab-subtitle {
    display: block;
    font-size: 12px;
    line-height: 12px;
    font-weight: 400;
    margin-top: 2px;
    color: #10217D;
    opacity: 0.6;
}

.hero-tab-content {
    padding: 24px 32px;
}

.hero-content-panel {
    display: none;
}

.hero-content-panel.active {
    display: block;
}

.hero-accordion-container {
    display: none;
}

.hero-accordion-item {
    border-bottom: 1px solid #e9ecef;
}

.hero-accordion-header {
    background: none;
    border: none;
    width: 100%;
    padding: 20px 24px;
    text-align: left;
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 500;
    color: #495057;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.hero-accordion-header:hover {
    background: #f8f9fa;
}

.hero-accordion-header.active {
    background: #e3f2fd;
    color: #007bff;
    border-left: 4px solid #ffa500;
}

.hero-accordion-icon {
    transition: transform 0.3s ease;
}

.hero-accordion-header.active .hero-accordion-icon {
    transform: rotate(180deg);
}

.hero-accordion-content {
    display: none;
    padding: 0 24px 24px 24px;
    background: white;
}

.hero-accordion-content.active {
    display: block;
}

.hero-form-container {
    display: flex;
    flex-direction: row;
    align-items: end;
    border: 2px solid #e9ecef;
    border-radius: 6px;
}

.hero-form-group {
    flex: 1;
}

.hero-select-dropdown, 
.hero-search-input {
    width: 100%;
    padding: 12px 16px;            
    border: none;
    border-radius: 8px;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    transition: border-color 0.3s ease;
    background: white;
}

.hero-select-dropdown:focus, 
.hero-search-input:focus {
    outline: none;
    border-color: #007bff;
}

.hero-search-input::placeholder {
    color: #6c757d;
}

.hero-select-dropdown {
    border-radius: 4px;
    background: url("../images/chevron-down.svg") no-repeat right 8px center #fff;
    background-size: 24px;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.hero-search-input {
    border-radius: 0px;
    border-left: solid 2px #e9ecef;
}

.hero-search-button {
    background: #ffa500;
    color: #000;
    border: none;
    padding: 12px 32px;
    border-radius: 4px;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
    white-space: nowrap;
}

.hero-search-button:hover {
    background: #e69500;
}

/* ========================================
   DOCTORS SECTION
   ======================================== */
.doctors-section {
    background-color: var(--bg-light-gray);
    padding: 60px 0; 
}

.doctors-section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 32px;
}

.doctors-section-header h2 {
    font-size: 32px;
    font-weight: 700;
    color: var(--primary-blue);
}

.doctors-section-header h2 .doctors-highlight {
    color: var(--primary-yellow);
}

.doctors-view-all-link {
    font-size: 16px;
    font-weight: 500;
    color: var(--text-muted);
}

.doctors-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 20px;
}

.doctors-card {
    background-color: var(--bg-light);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 10px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    text-align: left;
}
.image-wrapper-1x1 {
	position: relative;
	width: 100%;
	height: auto;
	float: left;
	padding: 0% 0% 100% 0%;
	border-radius: 4px;
	overflow: hidden;
}
.image-wrapper-1x1 img {
	position: absolute;
	width: 100%;
	height: auto;
	top: 0px;
	left: 0px;
	z-index: 1;
}
.doctors-photo {
    width: 100%;
    /*height: 160px;*/
    object-fit: cover;
    border-radius: 4px;
}

.doctors-info {
    flex-grow: 1;
}

.doctors-info h3 {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 4px;
}

.doctors-info p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.4;
}

.doctors-btn {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding: 12px 22px;
    border-radius: 4px;
    font-weight: 500;
    font-size: 16px;
    cursor: pointer;
    text-align: center;
}

.doctors-btn-outline {
    width: 100%;
    padding: 12px 0;
    background-color: transparent;
    color: var(--primary-blue);
    border: 1px solid var(--primary-blue);
}

.doctors-btn-outline:hover {
    color: #fff;
    background: var(--primary-blue);
}

.doctors-mobile-view-all {
    display: none;
    text-align: center;
    margin-top: 30px;
}

/* ========================================
   QUICK CONSULT SECTION
   ======================================== */
.consult-quick-section {
    background-color: var(--primary-yellow);
    padding: 80px 0;
}

.consult-section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 32px;
}

.consult-section-header h2 {
    font-size: 32px;
    font-weight: 700;
    color: var(--text-dark);
}

.consult-section-header h2 .consult-highlight {
    color: var(--primary-blue);
}

.consult-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
    margin-bottom: 24px;
}

.consult-item {
    background-color: var(--bg-light);
    border-radius: 8px;
    padding: 10px;
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 14px;
    font-weight: 600;
    color: #527c88;
}

.consult-icon-wrapper {
    background-color: #1BA9B5;
    border-radius: 50%;
    width: 66px;
    height: 66px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
}

.consult-cta-wrapper {
    width: 100%;
    float: left;
    padding: 0px 0px 24px 0px;
}

.consult-view-all {
    font-size: 16px;
    font-weight: 500;
    color: #000000;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.consult-view-all:hover {
    color: var(--primary-blue);
}

/* ========================================
   SHOP SECTION
   ======================================== */
.shop-section {
    position: relative;
    background: url("../images/medicine-bg.png") no-repeat left top;
    background-size: cover;
    padding: 80px 0;
}

.shop-section::before {
    position: absolute;
    content: '';
    width: 100%;
    height: 100%;
    top: 0px;
    left: 0px;
    background: rgba(16,33,125,0.8);
}

.shop-content-box {
    position: relative;
    background-color: var(--bg-light);
    border-radius: 10px;
    padding: 60px 0px;
    z-index: 1;
}

.shop-section-header {
    justify-content: center;
    position: relative;
    text-align: center;
    flex-direction: row;
    align-items: center;
    margin-bottom: 0px;
    gap: 16px;
    display: flex;
}

.shop-section-header h2, .section-heading {
    font-size: 32px;
    font-weight: 700;
    color: var(--primary-blue);
}

.shop-section-header h2 .shop-highlight, .text-highlight {
    color: var(--primary-yellow);
}

.shop-section-subtitle {
    text-align: center;
    color: var(--text-muted);
    font-size: 14px;
    max-width: 560px;
    margin: 10px auto 24px auto;
}

.shop-carousel-container {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 0px 0px 40px 0px;
}

.shop-carousel-wrapper {
    overflow: hidden;
    position: relative;
	padding-right: 60px;
}

.shop-carousel-track {
    display: flex;
    gap: 16px;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    width: max-content;
	padding: 0px 60px;
}
.shop-carousel-item {
    flex: 0 0 200px;
    background: white;
    border-radius: 15px;
    text-align: center;
    /*box-shadow: 0 5px 15px rgba(0,0,0,0.1);*/
    transition: transform 0.3s ease;
}

.shop-carousel-item:hover {
    transform: translateY(-5px);
}

.shop-item-image {
    width: 100%;
    height: auto;
    border-radius: 10px;
    /*padding: 10px 10px 0px 10px;*/
    display: flex;
    align-items: center;
    justify-content: center;
}

.shop-item-image img {
    width: 100%;
    height: auto;
}

.shop-item-title {
    display: inline-block;
    width: 100%;
    font-size: 14px;
    font-weight: 600;
    line-height: 64px;
    color: #527C88;
}

.shop-carousel-button {
    position: absolute;
    top: 35%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    background: white;
    border: none;
    border-radius: 50%;
    box-shadow: 0 3px 10px rgba(0,0,0,0.2);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 5;
    transition: all 0.3s ease;
}

.shop-carousel-button:hover {
    background: #f7fafc;
    transform: translateY(-50%) scale(1.1);
}

.shop-carousel-button:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.shop-carousel-button.shop-prev {
    left: 40px;
}

.shop-carousel-button.shop-next {
    right: 40px;
}

.shop-cta-wrapper {
    width: 100%;
    float: left;
    padding: 0px 0px 24px 0px;
}

.shop-all-wrapper {
    text-align: center;
    padding: 0px 0px 24px 0px;
}

.shop-view-all {
    color: #527C88;
    font-size: 16px;
    text-decoration: none;
    transition: color 0.3s ease;
}

.shop-view-all:hover {
    color: #f6ad55;
}

/* ========================================
   WELLNESS PROGRAMS SECTION
   ======================================== */
.wellness-container {
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    padding: 60px 0;
    background-color: #ffffff;
    position: relative;
    overflow: hidden;
}

.wellness-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    padding: 0 100px;
}

.wellness-title {
    font-family: "Poppins", Helvetica;
    font-weight: 700;
    font-size: 32px;
    letter-spacing: 0.96px;
    line-height: normal;
}

.wellness-title-accent {
    color: #f7a800;
}

.wellness-title-main {
    color: #10217d;
}

.wellness-view-all {
    font-family: "Poppins", Helvetica;
    font-weight: 500;
    font-size: 16px;
    color: #000000;
    letter-spacing: 0.32px;
    line-height: 20px;
    text-decoration: underline;
    cursor: pointer;
    transition: color 0.3s ease;
}

.wellness-view-all:hover {
    color: #10217d;
}

.wellness-carousel-container {
    position: relative;
    width: 100%;
}

.wellness-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 56px;
    height: 56px;
    background-color: #ffffff;
    border: 1px solid #dbdde0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.wellness-arrow:hover {
    background-color: #f7a800;
    border-color: #f7a800;
    color: #ffffff;
}

.wellness-arrow:disabled {
    opacity: 0;
    cursor: not-allowed;
}

.wellness-arrow-prev {
    left: 40px;
}

.wellness-arrow-next {
    right: 40px;
}

.wellness-arrow svg {
    width: 20px;
    height: 20px;
    color: #10217d;
}

.wellness-arrow:hover svg {
    color: #ffffff;
}

.wellness-cards-viewport {
    margin: 0 100px;
    position: relative;
    margin-bottom: 24px;
}

.wellness-cards-viewport::-webkit-scrollbar {
    display: none;
}

.wellness-cards-viewport {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.wellness-cards-wrapper {
    display: flex;
    gap: 48px;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.wellness-card {
    min-width: 380px;
    background-color: #ffffff;
    border-radius: 16px;
    border: 1px solid #e5e5e5;
    padding: 32px;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
    position: relative;
}

.wellness-card:hover {
    box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
}

.wellness-card:nth-child(3) {
    opacity: 1;
}

.wellness-card:nth-child(4),
.wellness-card:nth-child(5) {
    opacity: 0.5;
}

.wellness-card-icon-wrapper {
    width: 80px;
    height: 80px;
    background-color: #e8f2ff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.wellness-card-icon-wrapper svg {
    width: 32px;
    height: 32px;
}

.wellness-card-title {
    font-family: "Poppins", Helvetica;
    font-weight: 600;
    font-size: 24px;
    color: #000000;
    margin: 0 0 16px 0;
    line-height: 1.2;
}

.wellness-card-description {
    font-family: "Poppins", Helvetica;
    font-weight: 400;
    font-size: 14px;
    color: #6c87ae;
    line-height: 22px;
    margin: 0 0 24px 0;
    flex: 1;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}

.wellness-card-footer {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.wellness-card-price {
    display: flex;
    font-family: "Poppins", Helvetica;
    font-size: 24px;
    line-height: 1;
    margin: 0;
}

.wellness-currency {
    font-weight: 500;
    color: #1ba9b5;
}

.wellness-amount {
    font-weight: 600;
    color: #1ba9b5;
}

.wellness-book-btn {
    width: auto;
    padding: 12px 32px;
    background-color: #ffffff;
    border: 1px solid #10217d;
    border-radius: 4px;
    font-family: "Poppins", Helvetica;
    font-weight: 500;
    font-size: 16px;
    color: #10217d;
    letter-spacing: 0.16px;
    line-height: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.wellness-book-btn:hover {
    background-color: #10217d;
    color: #ffffff;
}

.wellness-cta-wrapper {
    width: 100%;
    float: left;
    padding: 0px 0px 24px 0px;
}

/* ========================================
   Q CARE POLYCLINIC SECTION
   ======================================== */
.qcare-container {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    padding: 60px 0px 0px 0px;
    background-color: #ffffff;
    overflow: visible;
}

.qcare-content-wrapper {
    display: flex;
    gap: 64px;
    align-items: center;
    position: relative;
}

.qcare-video-section {
    position: relative;
    flex: 0 0 666px;
    height: 472px;
}

.qcare-video-thumbnail {
    position: relative;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 32px;
    box-shadow: 0px 12px 36px rgba(0, 0, 0, 0.16);
    z-index: 1;
}

.qcare-video-overlay {
    position: absolute;
    width: 133px;
    height: 129px;
    bottom: -40px;
    right: -40px;
    background-color: #fff4da;
    border-radius: 66.43px / 64.5px;
    z-index: 1;
}

.qcare-play-button {
    position: absolute;
    width: 80px;
    height: 78px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: none;
    border: none;
    cursor: pointer;
    z-index: 2;
    transition: transform 0.3s ease;
}

.qcare-play-button:hover {
    transform: translate(-50%, -50%) scale(1.1);
}

.qcare-play-button img {
    width: 100%;
    height: 100%;
}

.qcare-text-section {
    flex: 1;
    position: relative;
    padding: 40px;
}

.qcare-decorative-corner {
    position: absolute;
    width: 183px;
    height: 178px;
    top: 0;
    left: 0;
    background-color: #eff0ff;
    border-radius: 0px 0px 100px 0px;
}

.qcare-content {
    position: relative;
    z-index: 1;
}

.qcare-title {
    font-family: "Poppins", Helvetica;
    font-weight: 400;
    font-size: 32px;
    color: #000000;
    letter-spacing: 0;
    line-height: normal;
    margin-bottom: 24px;
    -webkit-text-stroke: 1px #000000;
}

.qcare-description {
    font-family: "Poppins", Helvetica;
    font-weight: 400;
    font-size: 16px;
    color: #565656;
    line-height: 25.6px;
    letter-spacing: 0;
    margin-bottom: 32px;
    max-width: 548px;
}

.qcare-know-more {
    display: inline-block;
    font-family: "Poppins", Helvetica;
    font-weight: 500;
    font-size: 16px;
    color: #527c88;
    letter-spacing: 0.32px;
    line-height: 20px;
    text-decoration: underline;
    cursor: pointer;
    transition: color 0.3s ease;
}

.qcare-know-more:hover {
    color: #10217d;
}

/* ========================================
   BOOK APPOINTMENT SECTION
   ======================================== */
.appointment-container {
    width: 100%;
    max-width: 1310px;
    margin: 0 auto;
    padding: 0px 32px;
    position: relative;
}

.appointment-wrapper {
    position: relative;
    width: 100%;
    height: 397px;
}

.appointment-decoration-top {
    position: absolute;
    width: 175px;
    height: 154px;
    top: -74px;
    right: -32px;
    z-index: 0;
}

.appointment-decoration-corner {
    position: absolute;
    width: 183px;
    height: 183px;
    bottom: 60px;
    left: -32px;
    background-color: #fff4da;
    border-radius: 0px 0px 100px 0px;
    transform: rotate(90deg);
    transform-origin: center;
}

.appointment-content {
    position: relative;
    width: 100%;
    height: 301px;
    margin-top: 176px;
    background-color: #f4f9ff;
    border-radius: 75px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.appointment-text-section {
    padding: 60px 80px;
    z-index: 2;
    position: relative;
}

.appointment-title {
    font-family: "Poppins", Helvetica;
    font-weight: 400;
    font-size: 40px;
    color: #000000;
    letter-spacing: 0;
    line-height: normal;
    margin: 0px;
    -webkit-text-stroke: 1px #000000;
}

.appointment-description {
    font-family: "Poppins", Helvetica;
    font-weight: 400;
    font-size: 18px;
    color: #757575;
    letter-spacing: 0;
    line-height: 28.8px;
    margin: 0px 0px 32px 0px;
    max-width: 587px;
}

.appointment-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 20px 40px;
    background-color: #10217d;
    border: none;
    border-radius: 60px;
    font-family: "Poppins", Helvetica;
    font-weight: 400;
    font-size: 16px;
    color: #ffffff;
    letter-spacing: 1.04px;
    line-height: normal;
    cursor: pointer;
    transition: all 0.3s ease;
    -webkit-text-stroke: 0.5px #ffffff;
}

.appointment-button:hover {
    background-color: #0a1550;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(16, 33, 125, 0.3);
}

.appointment-image-section {
    position: relative;
    flex: 0 0 555px;
    height: 100%;
}

.appointment-bg-shape {
    position: absolute;
    width: 92%;
    height: 300px;
    top: 0;
    right: 0;
    object-fit: cover;
}

.appointment-doctor-img {
    position: absolute;
    width: 336px;
    height: 504px;
    bottom: 0;
    right: 0px;
    object-fit: cover;
    border-radius: 0px 0px 48px 0px;
    z-index: 2;
}

/* ========================================
   FOOD CALORIES SECTION
   ======================================== */
.calories-container {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    padding: 100px 48px;
    background-image: url('https://c.animaapp.com/mewgj73mFlV5IB/img/frame-51.svg');
    background-size: 100% 100%;
    background-repeat: no-repeat;
}

.calories-wrapper {
    display: flex;
    justify-content: space-between;
    gap: 60px;
    position: relative;
}

.calories-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 24px;
    padding: 90px 0px 0px 0px;
}

.calories-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

.calories-subtitle {
    font-family: "Poppins", Helvetica;
    font-weight: 500;
    font-size: 20px;
    color: #fb9333;
    text-align: center;
    letter-spacing: -0.40px;
    line-height: 36px;
    margin: 0;
    max-width: 450px;
}

.calories-title {
    font-family: "Poppins", Helvetica;
    font-weight: 600;
    font-size: 48px;
    color: #585858;
    text-align: center;
    letter-spacing: -1.2px;
    line-height: 56px;
    margin: 0;
}

.calories-description {
    font-family: "Poppins", Helvetica;
    font-weight: 500;
    font-size: 16px;
    color: #575757;
    text-align: center;
    letter-spacing: -0.32px;
    line-height: 25.6px;
    opacity: 0.7;
    margin: 0;
    max-width: 462px;
}

.calories-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    padding: 20px 32px;
    background-color: #fb9333;
    border: none;
    border-radius: 100px;
    font-family: "Poppins", Helvetica;
    font-weight: 500;
    font-size: 18px;
    color: #ffffff;
    text-align: center;
    letter-spacing: -0.36px;
    line-height: 25.2px;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.calories-button:hover {
    background-color: #e57f2a;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(251, 147, 51, 0.3);
}

.calories-illustration {
    position: relative;
    width: 515px;
    height: 587px;
    flex-shrink: 0;
}

.calories-bg-group1 {
    position: absolute;
    width: 107px;
    height: 107px;
    top: 174px;
    right: 11px;
}

.calories-bg-group2 {
    position: absolute;
    width: 159px;
    height: 141px;
    top: 123px;
    left: 58px;
}

.calories-bg-main {
    position: absolute;
    width: 515px;
    height: 585px;
    top: -56px;
    left: 0;
}

.calories-vector {
    position: absolute;
    width: 144px;
    height: 39px;
    bottom: 0;
    right: 27px;
}

.calories-display-card {
    position: absolute;
    width: 148px;
    height: 151px;
    top: 432px;
    right: 44px;
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 21.91px;
    backdrop-filter: blur(3.13px) brightness(100%);
    -webkit-backdrop-filter: blur(3.13px) brightness(100%);
    padding: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.calories-card-content {
    margin-bottom: 8px;
}

.calories-card-label {
    font-family: "Poppins", Helvetica;
    font-weight: 500;
    font-size: 12.5px;
    color: #575757;
    margin: 0 0 4px 0;
}

.calories-card-value {
    font-family: "Poppins", Helvetica;
    font-size: 18.8px;
    line-height: 24px;
    margin: 0;
}

.calories-value-number {
    font-weight: 600;
    color: #2b2b2b;
}

.calories-value-unit {
    color: #565656;
}

.calories-chart {
    position: relative;
    width: 95px;
    height: 57px;
}

.calories-chart-bg {
    display: flex;
    gap: 6px;
    position: absolute;
    bottom: 0;
}

.calories-bar {
    width: 8px;
    height: 57px;
    background-color: #f5f5f5;
    border-radius: 78.27px;
}

.calories-chart-fill {
    display: flex;
    gap: 6px;
    position: absolute;
    bottom: 0;
    align-items: flex-end;
}

.calories-bar-fill {
    width: 8px;
    border-radius: 78.27px;
    background: linear-gradient(
        180deg,
        rgba(255, 215, 160, 1) 0%,
        rgba(251, 147, 51, 1) 100%
    );
    height: 0;
    transition: height 0.8s ease-out;
}

@keyframes growFromBottom {
    from {
        height: 0;
    }
    to {
        height: var(--bar-height);
    }
}

.calories-reviews-card {
    position: absolute;
    width: 225px;
    height: 55px;
    top: 455px;
    left: 5px;
    background-color: #ffffff;
    border-radius: 27.39px;
    box-shadow: 0px 15.65px 31.31px rgba(255, 211, 71, 0.14);
    display: flex;
    align-items: center;
    padding: 4px;
}

.calories-avatar {
    width: 51px;
    height: 47px;
    border-radius: 50%;
    margin-right: 10px;
}

.calories-reviews-content {
    flex: 1;
}

.calories-reviews-title {
    font-family: "Poppins", Helvetica;
    font-weight: 600;
    font-size: 12.5px;
    color: #575757;
    margin: 0 0 5px 0;
}

.calories-reviews-rating {
    display: flex;
    align-items: center;
    gap: 5px;
    font-family: "Poppins", Helvetica;
    font-size: 9.4px;
    margin: 0;
}

.calories-star {
    width: 11px;
    height: 11px;
}

.calories-rating-number {
    font-weight: 600;
    color: #565656;
}

.calories-rating-count {
    color: rgba(86, 86, 86, 0.5);
}

.calories-heart-icon {
    position: absolute;
    width: 58px;
    height: 58px;
    top: -20px;
    right: 16px;
    transform: rotate(30.14deg);
}

.calories-heart-bg {
    position: absolute;
    width: 55px;
    height: 55px;
    top: 2px;
    left: 2px;
    background-color: #ffac37;
    border-radius: 7.83px;
}

.calories-heart-img {
    position: absolute;
    width: 43px;
    height: 43px;
    top: 8px;
    left: 8px;
    transform: rotate(-30.14deg);
}

.calories-heart-overlay {
    position: absolute;
    width: 56px;
    height: 56px;
    top: 1px;
    left: 2px;
    background-color: rgba(254, 234, 206, 0.1);
    border-radius: 7.83px;
    transform: rotate(-0.47deg);
    backdrop-filter: blur(1.96px) brightness(100%);
    -webkit-backdrop-filter: blur(1.96px) brightness(100%);
}

/* ========================================
   FOOTER SECTION
   ======================================== */
.footer-site-footer {
    padding: 40px 0 40px;
}

.footer-main {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    padding-bottom: 40px;
}

.footer-about {
    flex: 2;
}
.footer-logo {
	width: 248px;
	height: auto;
	float: left;
}
.footer-logo img {
	width: 100%;
	height: auto;
}
.footer-about .footer-logo {
    margin-bottom: 12px;
    display: block;
}

.footer-about p {
    float: left;
    font-size: 14px;
    line-height: 1.5;
    color: var(--text-dark);
    max-width: 430px;
}

.footer-links, 
.footer-social {
    flex: 1;
}

.footer-links h4, 
.footer-social h4 {
    font-family: 'Manrope', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #527c88;
    margin-bottom: 16px;
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links li a {
    font-family: 'Manrope', sans-serif;
    font-size: 14px;
    color: var(--text-dark);
}

.footer-social-icons {
    display: flex;
    gap: 10px;
}

.footer-social-icons a img {
    width: 24px;
    height: 24px;
}

.footer-bottom {
    border-top: 1px solid var(--border-color);
    padding-top: 30px;
    text-align: center;
    font-size: 14px;
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */
@media (max-width: 1200px) {
    .container {
        padding-left: 40px;
        padding-right: 40px;
    }
    
    .header-container {
        padding: 0 40px;
    }
    
    .header-main-nav {
        display: none;
    }
    
    .header-actions .header-phone-number {
        display: none;
    } 
    .header-actions {
        display: none;  /* This hides both phone number AND login button on mobile */
    }
    
    .header-mobile-only {
        display: block;  /* This shows the login in hamburger menu only */
    }
    
    .header-mobile-nav-toggle {
        display: block;
    }
    
    .doctors-grid {
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    }
    
    .wellness-header,
    .wellness-cards-viewport {
        margin: 0 60px;
    }
    
    .wellness-arrow-prev {
        left: 20px;
    }
    
    .wellness-arrow-next {
        right: 20px;
    }
    
    .wellness-card {
        min-width: 340px;
    }
    
    .qcare-container {
        padding: 40px 20px;
    }
    
    .qcare-content-wrapper {
        flex-direction: column;
    }
    
    .qcare-video-section {
        flex: none;
        width: 100%;
        max-width: 666px;
    }
    
    .appointment-container {
        max-width: 100%;
        padding: 40px 20px;
    }
    
    .appointment-content {
        flex-direction: column;
        height: auto;
        padding: 40px 30px;
    }
    
    .appointment-text-section {
        padding: 40px 30px;
        text-align: center;
    }
    
    .appointment-image-section {
        display: none;
    }
    
    .calories-container {
        padding: 60px 40px;
    }
    
    .calories-wrapper {
        flex-direction: column;
        align-items: center;
    }
    
    .calories-content {
        padding: 30px;
    }
    
    .footer-main {
        flex-wrap: wrap;
    }
	.footer-logo {
		width: 190px;
	}
    .footer-about {
        flex-basis: 100%;
    }
    
    .footer-links, 
    .footer-social {
        flex-basis: 45%;
    }
}

@media (max-width: 992px) {
    .doctors-grid {
        /*grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));*/
		grid-template-columns: repeat(2, 1fr);
		gap:16px;
    }
	.doctors-section-header h2, .consult-section-header h2, .shop-section-header h2, .section-heading {
		font-size: 26px;
		line-height: 34px;
		text-align: center;
	}
	.doctors-info h3 {
		font-size: 14px;
		line-height: 22px;
		text-align: center;
	}
	.doctors-info p {
		font-size: 12px;
		text-align: center;
	}
	.doctors-btn {
		font-size: 14px;
	}
	.consult-section-header {
		align-items: center;
		justify-content: center;
	}
	.header-main-nav ul{
		gap:0px;
	}
	.header-main-nav li, .header-main-nav.mobile-active li {
		padding: 0px;
	}
	.header-main-nav li a {
		padding: 16px 0px;
	}
	.header-phone-number {
		display: block;
		text-align: center;
		padding: 16px;
		background: #FFE1A0;
		border-radius: 32px;
		margin-top: 16px;
	}
	.header-mobile-login {
		justify-content: center;
	}
}

@media (max-width: 768px) {
    .container {
        padding-left: 20px;
        padding-right: 20px;
    }
    
    .header-container {
        padding: 0 20px;
    }
    
    .header-logo div {
        transform: scale(0.8);
        transform-origin: left;
    }
    
    .hero-section {
        padding: 24px 0;
    }
    
    .hero-content h1 {
        font-size: 22px;
    }
    
    .hero-search-container {
        display: flex;
        flex-direction: column;
        min-width: auto;
        width: 100%;
        background: #fff;
        padding: 0px;
        border-radius: 16px;
        overflow: hidden;
        box-shadow: 0px 8px 16px rgba(0,0,0,0.16);
    }
    
    .hero-tab-container {
        display: none;
    }
    
    .hero-accordion-container {
        display: block;
    }
    
    .hero-form-container {
        flex-direction: column;
        gap: 8px;
        align-items: stretch;
		border: none;
    }
	.hero-accordion-content.active {
		background: linear-gradient(0deg, #00488E, #e3f2fd);
	}
	.hero-accordion-header.active {
		border: none;
	}
	.hero-search-input, .hero-form-group select {
		min-height: 48px;
		border: solid 1px #d9d9d9;
		border-radius: 4px;
	}
    .hero-tab-content, 
    .hero-accordion-content {
        padding: 20px;
    }
    
    .doctors-section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
		padding: 0px 40px;
    }
    
    .doctors-section-header .doctors-view-all-link {
        display: none;
    }
    
    .doctors-mobile-view-all {
        display: block;
    }
    
    .consult-grid {
        grid-template-columns: repeat(2, 1fr);
		gap:16px;
    }
	.consult-quick-section {
		padding: 60px 0px 20px 0px;
	}
    .shop-section-header h2 {
        font-size: 24px;
    }
    
    .shop-section-header {
        flex-direction: column;
    }
	.shop-section-header a {
		display: none;
	}
    
    .shop-carousel-item {
        flex: 0 0 200px;
    }
    
    .shop-carousel-wrapper {
        padding: 0 40px;
    }
    
    .wellness-container {
        padding: 60px 0px 0px 0px;
    }
	.wellness-carousel-container {
		margin-bottom: 40px;
	}
    .wellness-header,
    .wellness-cards-viewport {
        margin: 0 20px;
    }
	.wellness-header {
		justify-content: center;
		padding: 0px 0px 24px 0px;
	}
    .wellness-title {
        font-size: 24px;
    }
	.wellness-card-icon-wrapper {
		width: 64px;
		height: 64px;
	}
	.wellness-book-btn {
		font-size: 14px;
		padding: 12px 24px;
	}
    .wellness-arrow {
        width: 40px;
        height: 40px;
    }
    
    .wellness-arrow-prev {
        left: 10px;
    }
    
    .wellness-arrow-next {
        right: 10px;
    }
    
    .wellness-card {
        min-width: 280px;
        padding: 24px;
    }
    
    .wellness-cards-wrapper {
        padding-left: 20px;
		gap:24px;
    }
	.wellness-card-title {
		font-size: 18px;
	}
    
    .qcare-container {
        padding: 30px 15px;
    }
    
    .qcare-video-section {
        height: 300px;
    }
    
    .qcare-text-section {
        padding: 20px;
    }
    
    .qcare-title {
        font-size: 24px;
    }
    
    .qcare-description {
        font-size: 14px;
        line-height: 22px;
    }
    
    .qcare-decorative-corner {
        width: 120px;
        height: 120px;
    }
    
    .qcare-video-overlay {
        width: 80px;
        height: 80px;
        bottom: 20px;
        right: 20px;
    }
    
    .qcare-play-button {
        width: 60px;
        height: 60px;
    }
    
    .appointment-wrapper {
        height: auto;
    }
    
    .appointment-title {
        font-size: 28px;
    }
    
    .appointment-description {
        font-size: 16px;
        line-height: 24px;
    }
    
    .appointment-text-section {
        padding: 30px 20px;
    }
    
    .appointment-button {
        padding: 16px 32px;
        font-size: 14px;
    }
    
    .appointment-decoration-top {
        width: 100px;
        height: 87px;
    }
    
    .appointment-decoration-corner {
        width: 100px;
        height: 100px;
        bottom:-25px;
    }
    
    .appointment-content {
        border-radius: 30px;
		margin-top: 0px;
    }
    
    .calories-container {
        padding: 40px 20px;
        background-size: cover;
		margin-top: 40px;
    }
    .shop-section-subtitle {
        padding:8px 16px;
    }
	.shop-carousel-container {
		padding: 0px 0px 24px 0px;
	}
    .calories-title {
        font-size: 32px;
        line-height: 40px;
    }
    
    .calories-subtitle {
        font-size: 16px;
		line-height: 24px;
		padding: 0px 24px;
    }
    
    .calories-description {
        font-size: 14px;
        line-height: 22px;
    }
    
    .calories-button {
        padding: 16px 24px;
        font-size: 16px;
    }
    
    .calories-illustration {
        width: 100%;
        max-width: 400px;
        height: 450px;
    }
    
    .calories-bg-main {
        width: 100%;
        height: auto;
    }
    
    .calories-display-card {
        transform: scale(0.8);
        top: auto;
        bottom: 100px;
        right: 20px;
    }
    
    .calories-reviews-card {
        transform: scale(0.8);
        left: 21px;
        top: 335px;
    }
    .shop-carousel-button.shop-prev {
    left: 0px;
    }
	.consult-icon-wrapper {
		width: 40px;
		height: 40px;
	}
	.consult-icon-wrapper img {
		width: 100%;
		height: auto;
	}
    .consult-item { 
    padding: 8px;
}
    .shop-carousel-button.shop-next {
        right: 10px;
    }
    .footer-links, 
    .footer-social {
        flex-basis: 100%;
    }
}

@media (max-width: 480px) {
/*    body {
        padding: 10px;
    }*/
    
    .hero-tab-button {
        padding: 16px 12px;
        font-size: 14px;
    }
    
    .hero-accordion-header {
        padding: 16px 20px;
        font-size: 14px;
    }
    
    .hero-tab-content, 
    .hero-accordion-content {
        padding: 16px;
    }
    
    .shop-carousel-item {
        width: 140px;
    }
    
    .shop-carousel-track {
		padding: 0px;
	}
    
    .shop-item-image {
		position: relative;
        width: 100%;
        height: auto;
    }
    
    .shop-item-title {
        font-size: 1rem;
    }
}