/*
Theme Name: Homeland Modern
Theme URI: https://homelandhospital.com/
Author: Antigravity
Author URI: https://antigravity.ai/
Description: A premium, modern hospital theme for Homeland Hospital.
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: homeland-modern
*/

:root {
    --primary-color: #06D3FD;
    --primary-dark: #17181A;
    --secondary-color: #696B6E;
    --accent-color: #06D3FD;
    --bg-color: #ffffff;
    --bg-light: #E2E3E3;
    --text-color: #495057;
    --heading-color: #17181A;
    --border-color: #dee2e6;
    --white: #ffffff;
    --shadow: 0 10px 30px rgba(0,0,0,0.05);
    --header-height: 90px;
}

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

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.7;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Lora', serif;
    color: var(--heading-color);
    font-weight: 500;
    line-height: 1.3;
}

.container {
    max-width: 1320px; /* Standard premium boxed width */
    margin: 0 auto;
    padding: 0 20px;
}

.grid {
    display: grid;
    gap: 30px;
}

.grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 50px;
    align-items: center;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    padding: 0 15px;
}

/* Utilities */
.text-center { text-align: center !important; }
.d-flex { display: flex; }
.flex-column { flex-direction: column; }
.align-items-center { align-items: center; }
.justify-content-center { justify-content: center !important; }
.justify-content-between { justify-content: space-between; }

.section-title, .section-heading {
    text-align: center;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.section-title span, .section-heading .subtitle, .partners-subtitle {
    display: block;
    text-align: center;
    color: var(--primary-color);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
    font-size: 0.9rem;
}

/* -------------------------------------------------------------------------------- */
/* Buttons */
/* -------------------------------------------------------------------------------- */
.btn {
    display: inline-block;
    padding: 18px 40px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s;
    border: 2px solid transparent;
}

.btn-primary {
    background: var(--primary-color);
    color: var(--primary-dark);
}

.btn-primary:hover {
    background: var(--secondary-color);
    color: #fff;
    transform: translateY(-3px);
}

.btn-outline {
    background: transparent;
    border-color: #fff;
    color: #fff;
}

.btn-outline:hover {
    background: #fff;
    color: var(--primary-dark);
}

/* -------------------------------------------------------------------------------- */
/* Header & Navigation */
/* -------------------------------------------------------------------------------- */

/* Top Bar */
.top-bar {
    background: var(--primary-color);
    color: var(--secondary-color);
    padding: 6px 0;
    font-size: 14px;
    font-weight: 300;
    line-height: 1.5;
}

.top-info span {
    margin-right: 25px;
}

.top-info i {
    color: var(--primary-dark);
    margin-right: 8px;
}

.top-social a {
    color: var(--secondary-color);
    margin-left: 15px;
    transition: opacity 0.3s;
}

.top-social a:hover {
    opacity: 0.7;
    color: var(--secondary-color);
}

/* Header */
#navbar {
    background: #fff;
    padding: 15px 0;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 9999;
}

#navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo img {
    height: 55px;
    width: auto;
}

.main-nav ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.main-nav ul li {
    margin: 0 20px;
    position: relative;
}

.main-nav ul li a {
    font-family: 'Montserrat', sans-serif;
    color: var(--primary-dark);
    font-weight: 700;
    font-size: 15px;
    text-transform: uppercase;
}

.main-nav ul li a:hover,
.main-nav ul li.current-menu-item a {
    color: var(--primary-color);
}

/* Dropdown styling */
.main-nav ul li .sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    min-width: 220px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s;
    flex-direction: column;
    padding: 15px 0;
    border-radius: 8px;
}

.main-nav ul li:hover .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.main-nav ul li .sub-menu li {
    margin: 0;
}

.main-nav ul li .sub-menu li a {
    padding: 10px 25px;
    display: block;
    text-transform: none;
    font-size: 14px;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 30px;
}

.search-trigger {
    color: var(--primary-dark);
    font-size: 18px;
    cursor: pointer;
}

/* -------------------------------------------------------------------------------- */
/* Hero Slider */
/* -------------------------------------------------------------------------------- */
.hero-slider {
    height: 85vh;
}

.hero {
    height: 85vh;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
    z-index: 0;
}

.hero .container {
    max-width: 1650px;
    margin-left: 0;
    margin-right: auto;
    padding-left: 250px;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.3) 50%, rgba(0,0,0,0.1) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    color: #fff;
    max-width: 700px;
}

.hero h1 {
    font-family: 'Lora', serif;
    font-size: 4rem;
    font-weight: 500;
    line-height: 1.1;
    margin-bottom: 25px;
    color: #fff;
}

/* Internal Page Header */
.page-header {
    height: 480px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background-size: cover !important;
    background-position: center !important;
    color: #fff;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(135deg, rgba(6, 211, 253, 0.45) 0%, rgba(1, 44, 95, 0.55) 100%);
    z-index: 1;
}

.page-header .container {
    position: relative;
    z-index: 2;
    text-align: center;
}

.page-header h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 10px;
    text-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.breadcrumb {
    font-size: 0.95rem;
    font-weight: 600;
    opacity: 0.9;
}

.breadcrumb a {
    color: #fff;
    text-decoration: none;
}

.breadcrumb span {
    margin: 0 10px;
    opacity: 0.5;
}

.dt-header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.logo img {
    height: 70px;
    width: auto;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 35px; /* Increased spacing */
    margin: 0;
    padding: 0;
}

nav ul li {
    position: relative;
}

#primary-menu li a {
    font-family: 'Montserrat', sans-serif !important;
    text-decoration: none;
    color: var(--heading-color);
    font-weight: 700;
    font-size: 15px;
    text-transform: uppercase; /* Match reference */
    letter-spacing: 0.5px;
    transition: color 0.3s;
}

nav ul li a:hover {
    color: var(--primary-color);
}

/* Submenu Styles */
nav ul li ul.sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 240px;
    background: #fff;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    border-radius: 12px;
    padding: 15px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    z-index: 1001;
    display: block; /* Overwrite display: flex from nav ul */
}

nav ul li:hover > ul.sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

nav ul li ul.sub-menu li {
    width: 100%;
    position: relative;
    padding: 0;
    margin: 0;
}

#primary-menu .sub-menu li a {
    font-family: 'Montserrat', sans-serif !important;
    padding: 12px 25px;
    font-size: 14px;
    font-weight: 600;
    text-transform: none;
    letter-spacing: 0;
    display: block;
    color: var(--heading-color);
    transition: all 0.3s ease;
}

nav ul li ul.sub-menu li a:hover {
    background: var(--bg-light);
    color: var(--primary-color);
    padding-left: 30px;
}

/* Add indicator for items with children */
nav ul li.menu-item-has-children > a:after {
    content: "\f107";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    margin-left: 8px;
    font-size: 12px;
}

.header-right {
    gap: 30px;
}

.header-search {
    font-size: 18px;
    color: var(--heading-color);
    cursor: pointer;
    transition: color 0.3s;
}

.header-search:hover {
    color: var(--primary-color);
}

.btn-primary {
    background: var(--primary-color);
    color: var(--primary-dark); /* Changed from white to dark for better contrast */
    padding: 12px 28px;
    border-radius: 6px;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 14px;
    box-shadow: none;
}

.btn-primary:hover {
    background: var(--secondary-color);
    color: #fff;
    transform: none;
}

/* Hero Section */
.hero {
    height: 85vh;
    min-height: 700px;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: flex-end;
    padding-bottom: 140px;
    color: var(--white);
}

.hero .container {
    max-width: 1650px;
    margin-left: 0;
    margin-right: auto;
    padding-left: 250px;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(to right, rgba(0,0,0,0.7), rgba(0,0,0,0.2));
    z-index: 2;
}


.hero-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
}

.hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    font-weight: 500;
    line-height: 1.1;
    margin-bottom: 25px;
    color: #fff;
}

.hero p {
    font-size: 1.25rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

.hero-btns .btn {
    margin-right: 15px;
}

.hero-action-row {
    display: flex;
    align-items: center;
    gap: 60px; /* Perfectly equal spacing between all 3 items */
    flex-wrap: wrap;
}

.mr-40 { margin-right: 40px; }

@media (max-width: 991px) {
    .hero-action-row {
        flex-direction: column;
        align-items: flex-start !important;
        gap: 30px;
    }
    .hero-trust-items {
        flex-direction: column;
        align-items: flex-start !important;
        gap: 20px;
    }
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.trust-icon {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 18px;
}

.trust-text {
    font-size: 0.9rem;
    line-height: 1.3;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
}

.mt-40 { margin-top: 40px; }
.mr-40 { margin-right: 40px; }

/* Hero Booking Overlay */
.swiper-slide {
    position: relative;
    overflow: hidden;
}

.hero-video {
    position: absolute !important;
    top: 50% !important;
    left: 50% !important;
    transform: translate(-50%, -50%) !important;
    min-width: 100% !important;
    min-height: 100% !important;
    width: auto !important;
    height: auto !important;
    object-fit: cover;
    z-index: 1 !important;
}

/* Ensure content sits above video and background overlays */
.hero-content {
    position: relative;
    z-index: 10 !important;
}

.hero-slider {
    position: relative;
    overflow: visible; /* Allow overlap */
}

.hero-booking-overlay {
    position: absolute;
    bottom: -60px;
    left: 0;
    right: 0;
    z-index: 1000;
}

.booking-bar {
    background: #fff;
    padding: 30px 40px;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
}

.booking-title h3 {
    font-size: 1.25rem;
    font-weight: 500;
    margin-bottom: 5px;
}

.booking-title p {
    font-size: 0.9rem;
    color: var(--secondary-color);
    margin: 0;
    opacity: 1;
}

.booking-form-mini {
    flex-grow: 1;
    gap: 15px;
}

.form-item {
    position: relative;
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    padding: 10px 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.form-item i {
    color: var(--primary-color);
    font-size: 16px;
}

.form-item input {
    border: none;
    background: transparent;
    width: 100%;
    font-size: 14px;
    font-weight: 600;
}

.form-item input:focus {
    outline: none;
}

.btn-full {
    width: 100%;
}

/* Feature Cards */
.features {
    margin-top: 50px; /* Pushed down to make room for overlay */
    position: relative;
    z-index: 10;
}

/* Modern Footer Redesign */
.site-footer {
    background: #17181A;
    color: #fff;
    padding: 80px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr 1fr;
    gap: 40px;
}

.footer-logo img {
    max-width: 250px;
    margin-bottom: 25px;
}

.footer-slogan {
    color: #999;
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 30px;
}

.footer-contact-info p {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    color: #fff;
    margin-bottom: 15px;
    font-size: 0.95rem;
}

.footer-contact-info i {
    color: #06D3FD;
    margin-top: 5px;
}

.footer-column h3 {
    color: #fff;
    font-size: 1.2rem;
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 15px;
}

.footer-column h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 30px;
    height: 2px;
    background: #06D3FD;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 15px;
}

.footer-links li a {
    color: #999;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-links li a:hover {
    color: #06D3FD;
    transform: translateX(5px);
}

.footer-bottom {
    margin-top: 80px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
    color: #666;
    font-size: 0.9rem;
}

@media (max-width: 1200px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }
}

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

.feature-card {
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: transform 0.3s;
}

.feature-card:hover {
    transform: translateY(-10px);
}

.feature-card i {
    font-size: 50px;
    color: var(--primary-color);
    margin-bottom: 25px;
    display: block;
}

.feature-card h3 {
    margin-bottom: 15px;
    font-size: 1.5rem;
}

/* About Section */
section {
    padding: 70px 0;
}

.about-img {
    position: relative;
}

.about-img img {
    width: 100%;
    border-radius: 30px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
}

.experience-badge {
    position: absolute;
    bottom: -30px;
    right: -30px;
    background: var(--primary-color);
    color: var(--primary-dark);
    padding: 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 15px 35px rgba(6, 211, 253, 0.3);
    z-index: 5;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.experience-badge h3 {
    font-size: 2.5rem;
    margin-bottom: 0;
    line-height: 1;
}

.experience-badge p {
    font-size: 0.9rem;
    margin: 5px 0 0;
    font-weight: 700;
    text-transform: uppercase;
}

.about-text span {
    color: var(--primary-color);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 15px;
}

.about-text h2 {
    font-size: 3.2rem;
    margin-bottom: 25px;
    line-height: 1.1;
}

.about-features {
    list-style: none;
    margin: 35px 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.about-features li {
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--heading-color);
}

.about-features i {
    color: var(--primary-color);
    font-size: 1.2rem;
}

.about-btn-wrap {
    text-align: right;
    margin-top: 30px;
}

/* Testimonials Archive */
.testimonial-grid-main {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    padding: 80px 0;
}

.testimonial-card-static {
    background: #fff;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid #f0f0f0;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
}

.testimonial-card-static:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    border-color: #E6F8FF;
}

.testimonial-hero {
    background: #007DA1;
}

@media (max-width: 991px) {
    .testimonial-grid-main {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767px) {
    .testimonial-grid-main {
        grid-template-columns: 1fr;
    }
}

/* -------------------------------------------------------------------------------- */
/* Services Archive & Appointment Footer */
/* -------------------------------------------------------------------------------- */

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

.service-card-visual {
    position: relative;
    min-height: 360px;
    height: auto;
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 35px;
    color: #fff;
    text-decoration: none;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.service-visual-img {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-size: cover;
    background-position: center;
    transition: transform 0.6s ease;
    z-index: 1;
}

.service-visual-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(0deg, rgba(23, 24, 26, 0.98) 0%, rgba(23, 24, 26, 0.4) 60%, rgba(23, 24, 26, 0) 100%);
    z-index: 2;
}

.service-visual-content {
    position: relative;
    z-index: 3;
    display: flex;
    flex-direction: column;
}

.service-visual-icon {
    width: 60px !important;
    height: 60px !important;
    min-width: 60px !important;
    min-height: 60px !important;
    background: var(--primary-color) !important;
    border-radius: 12px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    margin-bottom: 25px;
    margin-right: auto; /* Prevent stretching into a pill */
    box-shadow: 0 10px 20px rgba(6, 211, 253, 0.3);
}

.service-visual-icon i {
    font-size: 24px !important;
    color: var(--primary-dark) !important; /* Medical symbol is now dark */
    background: transparent !important;
    display: block !important;
    line-height: 1 !important;
}

.service-card-visual:hover .service-visual-img {
    transform: scale(1.1);
}

.service-card-visual:hover .service-visual-icon {
    transform: rotateY(180deg);
}

.service-visual-link {
    display: inline-block;
    margin-top: 20px;
    font-weight: 800;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 1px;
    color: var(--primary-color);
}

/* Appointment Section */
.appointment-section.bg-light {
    background: #f8fafc;
}

.appointment-promo h2 {
    font-size: 3rem;
    line-height: 1.1;
    margin-bottom: 25px;
}

.appointment-form-card {
    background: #fff;
    padding: 50px;
    border-radius: 30px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.05);
}

.appointment-form-mini .form-group input,
.appointment-form-mini .form-group select {
    width: 100%;
    padding: 16px 20px;
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    font-family: inherit;
    font-weight: 500;
}

@media (max-width: 991px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
}

.mt-40 { margin-top: 40px; }
.w-100 { width: 100%; }

/* Value/Lifestyle Cards */
.lifestyle-card {
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    border: 1px solid #F3F4F6;
    transition: all 0.3s ease;
}

.lifestyle-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary-color);
}

.placeholder-image {
    width: 80px;
    height: 80px;
    background: rgba(6, 211, 253, 0.1);
    border-radius: 50%;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.placeholder-image i {
    font-size: 32px;
    color: var(--primary-color);
}

.lifestyle-card h3 {
    font-size: 1.5rem;
    color: #111827;
    margin-bottom: 15px;
}

.lifestyle-card p {
    color: #6B7280;
    font-size: 0.95rem;
    line-height: 1.6;
}

.jobs-list {
    max-width: 900px;
    margin: 50px auto 0;
}

.job-item {
    background: #fff;
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: 1px solid #f0f0f0;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.02);
    transition: all 0.3s ease;
}

.job-item:hover {
    transform: translateX(10px);
    border-color: #007DA1;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.job-info h3 {
    font-size: 1.4rem;
    margin-bottom: 10px;
    color: #17181A;
}

.job-meta {
    display: flex;
    gap: 20px;
    color: #696B6E;
    font-size: 0.9rem;
}

.job-meta i {
    color: #007DA1;
    margin-right: 5px;
}

@media (max-width: 768px) {
    .job-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }
}

.btn-secondary {
    background: #007DA1;
    color: #fff;
    padding: 16px 40px;
    border-radius: 50px;
    font-weight: 700;
    transition: all 0.3s;
    display: inline-block;
}

.btn-secondary:hover {
    background: #005f7a;
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 125, 161, 0.2);
}
.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title span {
    color: var(--primary-color);
    font-weight: 700;
    text-transform: uppercase;
    display: block;
    margin-bottom: 15px;
}

.section-title h2 {
    font-size: 3rem;
}


/* CTA */
.cta-section {
    background: linear-gradient(rgba(6, 211, 253, 0.9), rgba(23, 24, 26, 0.9)), url('assets/hero1.jpg');
    background-size: cover;
    background-attachment: fixed;
    color: #fff;
    padding: 120px 0;
}

.cta-section h2 {
    font-size: 3.5rem;
    color: #fff;
    margin-bottom: 20px;
}

.cta-section p {
    font-size: 1.25rem;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Footer */
footer {
    background: var(--primary-dark);
    color: rgba(255,255,255,0.7);
    padding: 100px 0 30px;
}

footer h3 {
    color: #fff;
    margin-bottom: 30px;
}

footer ul {
    list-style: none;
}

footer ul li {
    margin-bottom: 12px;
}

footer ul li a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s;
}

footer ul li a:hover {
    color: var(--white);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    margin-top: 60px;
    padding-top: 30px;
    text-align: center;
}

/* Responsive */
@media (max-width: 992px) {
    .grid-2, .grid-3, .features .grid, .services-grid {
        grid-template-columns: 1fr;
    }
    .hero h1 { font-size: 3rem; }
}

/* Page Header */
.page-header {
    height: 400px;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    color: #fff;
    margin-bottom: 0;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.6);
}

.page-header .container {
    position: relative;
    z-index: 1;
}

.page-header h1 {
    font-size: 3.5rem;
    color: #fff;
    margin: 0;
}

.breadcrumb {
    margin-top: 15px;
    font-weight: 600;
}

.breadcrumb a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
}

.breadcrumb span {
    color: var(--accent-color);
}

/* Single Service */
.grid-service {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 50px;
}

.service-featured-image {
    margin-bottom: 30px;
}

.service-featured-image img {
    width: 100%;
    border-radius: 20px;
}

.service-sidebar {
    position: sticky;
    top: 120px;
}

.sidebar-widget {
    background: var(--bg-light);
    padding: 30px;
    border-radius: 20px;
    margin-bottom: 30px;
}

.sidebar-widget h3 {
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--border-color);
}

.service-list {
    list-style: none;
}

.service-list li {
    margin-bottom: 10px;
}

.service-list li a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    background: #fff;
    border-radius: 10px;
    text-decoration: none;
    color: var(--heading-color);
    font-weight: 600;
    transition: all 0.3s;
}

.service-list li.active a, .service-list li a:hover {
    background: var(--primary-color);
    color: #fff;
}

.contact-widget {
    background: var(--primary-color);
    color: #fff;
}

.contact-widget h3 {
    color: #fff;
    border-color: rgba(255,255,255,0.2);
}

.phone-box {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 20px;
}

.phone-box i {
    font-size: 24px;
    background: rgba(255,255,255,0.2);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

/* Appointment Form */
.appointment-form-wrap {
    background: #fff;
    padding: 50px;
    border-radius: 30px;
    box-shadow: var(--shadow);
}

.form-group {
    margin-bottom: 20px;
}

.appointment-form input, .appointment-form select, .appointment-form textarea {
    width: 100%;
    padding: 15px 20px;
    border: 1px solid var(--border-color);
    border-radius: 10px;
    background: var(--bg-light);
    font-family: inherit;
    font-size: 16px;
}

.opening-hours {
    list-style: none;
}

.opening-hours li {
    display: flex;
    justify-content: space-between;
    padding: 15px 0;
    border-bottom: 1px solid var(--border-color);
    font-weight: 600;
}

/* Team Grid */
.team-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.3s;
}

.team-card:hover {
    transform: translateY(-10px);
}

.team-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.team-info {
    padding: 25px;
    text-align: center;
}

.team-info h3 {
    margin-bottom: 5px;
}

.team-info span {
    color: var(--primary-color);
    font-weight: 600;
    display: block;
    margin-bottom: 15px;
}

.team-social {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.team-social a {
    width: 40px;
    height: 40px;
    background: var(--bg-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    transition: all 0.3s;
}
/* About Page */
.about-mission {
    margin-top: 40px;
}

.mission-box {
    background: var(--bg-light);
    padding: 30px;
    border-radius: 20px;
}

.mission-box i {
    font-size: 30px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.stat-item h2 {
    font-size: 3.5rem;
    margin-bottom: 5px;
    color: #fff;
}

/* Departments */
.dept-card {
    background: #fff;
    padding: 40px;
    border-radius: 20px;
    box-shadow: var(--shadow);
    text-align: center;
    border: 1px solid var(--border-color);
}

.dept-icon {
    font-size: 40px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.btn-text {
    color: #fff;
    background: #007DA1;
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 35px;
    border-radius: 50px;
    transition: all 0.3s ease;
    width: fit-content;
    margin: 0 auto;
}

/* FAQ */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: #fff;
    border: 1px solid var(--border-color);
    border-radius: 15px;
    margin-bottom: 15px;
    overflow: hidden;
}

.faq-question {
    padding: 20px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    background: #fff;
}

.faq-question h3 {
    font-size: 1.1rem;
    margin: 0;
}

.faq-answer {
    padding: 0 30px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 0 30px 25px;
    max-height: 500px;
}

.mb-60 { margin-bottom: 60px; }

.section-title-small {
    margin-bottom: 30px;
    text-align: left;
}

.section-title-small h2 {
    font-size: 2rem;
    font-weight: 800;
    color: #111827;
    margin-bottom: 10px;
    text-transform: capitalize;
}

.title-line {
    width: 60px;
    height: 4px;
    background: #06D3FD;
    border-radius: 2px;
}

/* -------------------------------------------------------------------------------- */
/* Single Service Page */
/* -------------------------------------------------------------------------------- */
.grid-service {
    display: grid;
    grid-template-columns: 8fr 4fr;
    gap: 50px;
}

.service-main-content .service-featured-image img {
    width: 100%;
    border-radius: 20px;
    margin-bottom: 40px;
}

.entry-content {
    font-size: 1.1rem;
    line-height: 1.8;
}

/* Sidebar Widgets */
.service-sidebar .sidebar-widget {
    background: #f4f4f4;
    padding: 35px;
    border-radius: 20px;
    margin-bottom: 30px;
}

.service-sidebar .sidebar-widget h3 {
    font-size: 1.4rem;
    margin-bottom: 25px;
}

/* Service Navigation List */
.service-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-list li {
    margin-bottom: 12px;
}

.service-list li a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #fff;
    padding: 18px 25px;
    border-radius: 12px;
    color: var(--primary-dark);
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 4px 10px rgba(0,0,0,0.03);
}

.service-list li a i {
    font-size: 0.8rem;
    color: #cbd5e1;
}

.service-list li a:hover {
    padding-left: 30px;
    color: #fff;
    background: var(--primary-color);
}

.service-list li a:hover i {
    color: #fff;
}

.service-list li.active a {
    background: var(--primary-color);
    color: #fff;
}

.service-list li.active a i {
    color: #fff;
}

/* Emergency Call Widget */
.contact-widget {
    background: var(--secondary-color) !important;
    color: #fff;
    text-align: center;
}

.contact-widget h3 {
    color: #fff !important;
}

.contact-widget p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 25px;
}

.phone-box {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    background: rgba(255, 255, 255, 0.15);
    padding: 20px;
    border-radius: 12px;
    font-size: 1.3rem;
    font-weight: 800;
}

.phone-box i {
    background: #fff;
    color: var(--primary-color);
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 1rem;
}

@media (max-width: 991px) {
    .grid-service {
        grid-template-columns: 1fr;
    }
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 40px;
}

.gallery-stack-item {
    text-align: center;
}

.gallery-stack {
    position: relative;
    width: 100%;
    aspect-ratio: 4/3;
    margin-bottom: 25px;
    cursor: pointer;
    perspective: 1000px;
}

.stack-layer {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    border-radius: 20px;
    background-size: cover;
    background-position: center;
    background-color: #fff;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border: 5px solid #fff;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* Layer positioning */
.stack-layer:nth-child(1) { z-index: 3; transform: rotate(0deg); }
.stack-layer:nth-child(2) { z-index: 2; transform: rotate(-4deg) translate(-8px, -8px); background-color: #f9fafb; border-color: #f9fafb; opacity: 0.9; }
.stack-layer:nth-child(3) { z-index: 1; transform: rotate(4deg) translate(8px, 8px); background-color: #f3f4f6; border-color: #f3f4f6; opacity: 0.8; }

/* Hover effects */
.gallery-stack:hover .stack-layer:nth-child(1) { transform: translateY(-15px) rotate(-1deg); box-shadow: 0 20px 40px rgba(0,0,0,0.15); }
.gallery-stack:hover .stack-layer:nth-child(2) { transform: rotate(-8deg) translate(-25px, -15px); }
.gallery-stack:hover .stack-layer:nth-child(3) { transform: rotate(8deg) translate(25px, -15px); }

.stack-info h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 5px;
}

.stack-info span {
    color: #6B7280;
    font-size: 0.9rem;
    font-weight: 600;
}

/* Hidden gallery for Fancybox */
.hidden-gallery { display: none; }
/* Clinic Times Table */
.title-accent span {
    color: var(--primary-color);
}

.timeline-table-card {
    background: #fff;
    border-radius: 24px;
    box-shadow: 0 15px 50px rgba(0,0,0,0.05);
    overflow: hidden;
    margin-top: 40px;
}

.timeline-header {
    background: #06D3FD; /* Accurate blue from screenshot */
    display: flex;
    padding: 20px 40px;
    color: #fff;
    text-transform: uppercase;
    font-weight: 800;
    font-size: 0.85rem;
    letter-spacing: 1px;
}

.timeline-row {
    display: flex;
    padding: 25px 40px;
    border-bottom: 1px solid #f0f0f0;
    align-items: center;
    transition: background 0.3s;
}

.timeline-row:hover {
    background: #f9f9f9;
}

.timeline-row:last-child {
    border-bottom: none;
}

.th-col, .td-col {
    flex: 1;
}

.specialty {
    font-weight: 800;
    color: #696B6E;
    font-size: 1.1rem;
}

.days {
    color: #696B6E;
    font-weight: 700;
    font-size: 0.9rem;
    padding-right: 20px;
}

.specialist {
    color: #333;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
}

.specialist i {
    color: #d0d0d0;
}

.slot span {
    background: #f0f7ff;
    color: #4a90e2;
    padding: 10px 25px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 0.85rem;
    display: inline-block;
}

@media (max-width: 992px) {
    .timeline-header { display: none; }
    .timeline-row { flex-direction: column; text-align: center; gap: 15px; }
    .days { padding-right: 0; }
}

/* Opening Hours (Small Widget) */
.opening-hours-detailed {
    background: #fff;
    border-radius: 20px;
    padding: 20px 40px;
    box-shadow: var(--shadow);
    margin-top: 30px;
}

.hour-row {
    display: flex;
    justify-content: space-between;
    padding: 15px 0;
    border-bottom: 1px solid var(--border-color);
    font-weight: 600;
}

.hour-row:last-child {
    border-bottom: none;
}

/* Contact Page */
.contact-info-wrap h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.contact-methods {
    margin: 40px 0;
}

.method-item {
    display: flex;
    align-items: center;
    gap: 25px;
    margin-bottom: 35px;
}

.method-item i {
    width: auto;
    height: auto;
    background: transparent;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #9CA3AF; /* Premium gray */
    font-size: 32px;
    flex-shrink: 0;
}

.method-item h3 {
    font-size: 1.1rem;
    margin-bottom: 2px;
    font-weight: 800;
    color: #111827;
}

.method-item p {
    font-size: 1rem;
    color: #6B7280;
    margin: 0;
}

.contact-social .social-icons {
    display: flex;
    gap: 15px;
    margin-top: 15px;
}

.contact-social .social-icons a {
    width: 40px;
    height: 40px;
    background: #f3f4f6;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #4B5563;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.contact-social .social-icons a:hover {
    background: #06D3FD;
    color: #fff;
    transform: translateY(-3px);
}

.contact-form-wrap {
    background: #fff;
    padding: 60px;
    border-radius: 32px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.08);
}

.contact-form .form-group {
    margin-bottom: 24px;
}

.contact-form input, 
.contact-form textarea {
    width: 100%;
    padding: 16px 20px;
    background: #F9FAFB;
    border: 1px solid #E5E7EB;
    border-radius: 12px;
    font-family: inherit;
    font-size: 1rem;
    color: #111827;
    transition: all 0.2s ease;
}

.contact-form input::placeholder, 
.contact-form textarea::placeholder {
    color: #9CA3AF;
}

.contact-form input:focus, 
.contact-form textarea:focus {
    outline: none;
    border-color: #06D3FD;
    background: #fff;
    box-shadow: 0 0 0 4px rgba(6, 211, 253, 0.1);
}

.contact-form .btn-primary {
    width: 100%;
    padding: 18px;
    border-radius: 12px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    background: #06D3FD;
    border: none;
    box-shadow: 0 10px 15px -3px rgba(6, 211, 253, 0.3);
}

.contact-form .btn-primary:hover {
    background: #05bce1;
    transform: translateY(-2px);
    box-shadow: 0 20px 25px -5px rgba(6, 211, 253, 0.4);
}

.map-section {
    padding: 0;
}

.google-map iframe {
    line-height: 0;
    display: block;
}

/* Partners Section (Redesign) */
.partners-section {
    padding: 80px 0;
    background: #fff;
    border-top: 1px solid #f0f0f0;
}

.partners-subtitle {
    display: block;
    font-size: 0.75rem;
    font-weight: 700;
    color: #999;
    letter-spacing: 2px;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.partners-title {
    color: #06D3FD;
    font-weight: 800;
    font-size: 1.8rem;
    margin-bottom: 50px;
}

.partners-slider {
    width: 100%;
    margin: 40px auto 0;
    overflow: hidden;
    padding: 20px 0 60px;
}

.swiper-wrapper {
    display: flex !important;
    align-items: center;
    transition-property: transform;
}

.swiper-slide {
    flex-shrink: 0;
    width: auto;
    height: 100%;
    position: relative;
    transition-property: transform;
}

.partner-box {
    background: #fff;
    border: 1px solid #E6F8FF;
    border-radius: 15px;
    height: 150px;
    width: 260px;
    margin: 0 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 6px 15px rgba(6, 211, 253, 0.05);
}

.partner-box:hover {
    box-shadow: 0 20px 45px rgba(6, 211, 253, 0.15);
    border-color: #06D3FD;
    transform: translateY(-10px);
}

.partner-box img {
    max-width: 100%;
    max-height: 90px;
    width: auto;
    object-fit: contain;
    display: block;
}

/* Testimonials Section */
.testimonials-section {
    padding: 100px 0;
    background: #f8fbff;
}

.section-heading {
    margin-bottom: 60px;
}

.section-heading .subtitle {
    display: block;
    color: #007DA1; /* Darker blue for contrast */
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.85rem;
    margin-bottom: 10px;
}

.section-heading h2 {
    font-size: 2.5rem;
    color: #333;
}

.testimonial-card {
    background: #fff;
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05);
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
    margin-bottom: 40px; /* Space for pagination */
}

.testimonial-card:hover {
    transform: translateY(-10px);
}

.testimonial-quote {
    color: var(--primary-color);
    font-size: 3.5rem;
    margin-bottom: 10px;
    opacity: 0.5; /* Increased from 0.2 */
    display: inline-block;
}

.testimonial-text {
    color: #696B6E;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 30px;
    font-style: italic;
    flex-grow: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 20px;
    border-top: 1px solid #f0f0f0;
    padding-top: 25px;
}

.author-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    background: #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-avatar i {
    font-size: 3rem;
    color: #ccc;
}

.author-meta h4 {
    margin: 0;
    color: #333;
    font-size: 1.1rem;
    font-weight: 700;
}

.author-meta span {
    color: var(--primary-color);
    font-size: 0.9rem;
    font-weight: 600;
}

.testimonials-slider {
    padding-bottom: 30px;
}

/* Lifestyle Section */
.lifestyle-section {
    padding: 100px 0;
    background: #fff;
}

.text-between {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    border-bottom: 2px solid #f0f0f0;
    padding-bottom: 20px;
}

/* Removed redundant .btn-text definition */

/* Hover effects handled globally */

.lifestyle-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.lifestyle-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
}

.lifestyle-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.card-image {
    height: 240px;
    position: relative;
    overflow: hidden;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

/* Consolidated into global .btn-text */

.btn-text:hover {
    background: #005f7a;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 125, 161, 0.3);
}

.card-category {
    position: absolute;
    top: 20px;
    left: 20px;
    background: #007DA1; /* Darker background for white text */
    color: #fff;
    padding: 6px 15px;
    border-radius: 5px;
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.read-more {
    font-weight: 800;
    color: #007DA1; /* Darker blue */
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.read-more:hover {
    color: #005f7a;
    gap: 12px;
}

.placeholder-image {
    width: 100%;
    height: 100%;
    background: #f8fbff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: #e6f8ff;
}

.card-content {
    padding: 30px;
}

.card-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
    font-size: 0.85rem;
    color: #999;
}

.card-meta i {
    color: var(--primary-color);
    margin-right: 5px;
}

.card-content h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    line-height: 1.4;
}

.card-content h3 a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease;
}

.card-content h3 a:hover {
    color: var(--primary-color);
}

.card-content p {
    color: #696B6E;
    margin-bottom: 25px;
    line-height: 1.7;
}

.read-more {
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

@media (max-width: 991px) {
    .lifestyle-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .lifestyle-grid {
        grid-template-columns: 1fr;
    }
    .text-between {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }
}

/* Lifestyle Archive */
.archive-hero {
    background: #007DA1;
    padding: 100px 0;
    color: #fff;
}

.archive-hero .subtitle {
    color: #E6F8FF;
    display: block;
    margin-bottom: 15px;
}

.archive-hero h1 {
    color: #fff;
    font-size: 3.5rem;
    margin-bottom: 20px;
}

.archive-hero p {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 700px;
    margin: 0 auto;
}

.blog-filters {
    background: #f8fbff;
    padding: 40px 0;
    border-bottom: 1px solid #eee;
}

.filter-wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

.category-filters {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 8px 20px;
    border-radius: 50px;
    background: #fff;
    color: #696B6E;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 700;
    border: 1px solid #dee2e6;
    transition: all 0.3s ease;
}

.filter-btn:hover, .filter-btn.active {
    background: #007DA1;
    color: #fff;
    border-color: #007DA1;
}

.blog-search form {
    display: flex;
    background: #fff;
    border-radius: 50px;
    overflow: hidden;
    border: 1px solid #dee2e6;
    width: 350px;
}

.blog-search input {
    border: none;
    padding: 12px 25px;
    width: 100%;
    outline: none;
    font-size: 0.95rem;
}

.blog-search button {
    background: #007DA1;
    color: #fff;
    border: none;
    padding: 0 25px;
    cursor: pointer;
    font-size: 1.1rem;
}

.archive-grid-section {
    padding: 80px 0;
}

.pagination-wrap {
    margin-top: 60px;
    text-align: center;
    display: flex;
    justify-content: center;
    gap: 10px;
}

.pagination-wrap a, .pagination-wrap span {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #fff;
    border: 1px solid #eee;
    color: #333;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
}

.pagination-wrap span.current {
    background: #007DA1;
    color: #fff;
    border-color: #007DA1;
}

.pagination-wrap a:hover {
    background: #007DA1;
    color: #fff;
    border-color: #007DA1;
}

@media (max-width: 991px) {
    .filter-wrap {
        flex-direction: column;
        align-items: stretch;
    }
    .blog-search form {
        width: 100%;
    }
}
.grid-clinics {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    padding: 80px 0;
}

.clinic-card-premium {
    background: #fff;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: all 0.4s ease;
    border: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
}

.clinic-card-premium:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
    border-color: var(--primary-color);
}

.clinic-image img {
    width: 100%;
    height: 240px;
    object-fit: cover;
}

.clinic-content {
    padding: 30px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.clinic-content h3 {
    font-size: 1.6rem;
    margin-bottom: 15px;
    color: var(--heading-color);
}

.clinic-info {
    margin-bottom: 25px;
    color: var(--text-color);
    font-size: 0.95rem;
}

.clinic-info i {
    color: var(--primary-color);
    margin-right: 10px;
}

.clinic-actions {
    display: flex;
    gap: 15px;
    margin-top: auto;
}

.btn-primary.btn-sm {
    background: var(--primary-color);
    color: var(--primary-dark);
}

.btn-sm {
    padding: 12px 20px;
    font-size: 0.85rem;
    border-radius: 12px;
    font-weight: 700;
}

.btn-outline.btn-sm {
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
}

@media (max-width: 992px) {
    .grid-clinics { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .grid-clinics { grid-template-columns: 1fr; }
}

.mt-50 { margin-top: 50px; }

/* Modern Job Application Form */
.application-form-wrap {
    background: #ffffff;
    padding: 50px;
    border-radius: 24px;
    box-shadow: 0 15px 50px rgba(0,0,0,0.06);
    border: 1px solid #F3F4F6;
}

.modern-form label {
    display: block;
    font-weight: 700;
    color: #111827;
    margin-bottom: 10px;
    font-size: 0.95rem;
}

.modern-form input[type="text"],
.modern-form input[type="email"],
.modern-form input[type="tel"],
.modern-form input[type="url"],
.modern-form textarea {
    width: 100%;
    padding: 18px 25px;
    border: 1.5px solid #E5E7EB;
    border-radius: 14px;
    background: #F9FAFB;
    font-size: 1rem;
    color: #111827;
    transition: all 0.3s ease;
    outline: none;
}

.modern-form input:focus,
.modern-form textarea:focus {
    border-color: var(--primary-color);
    background: #fff;
    box-shadow: 0 0 0 4px rgba(6, 211, 253, 0.1);
}

.modern-form textarea {
    min-height: 150px;
    resize: vertical;
}

/* File Upload Premium Style */
.file-upload-wrapper {
    background: #F8FAFC;
    border: 2px dashed #CBD5E1;
    border-radius: 18px;
    padding: 40px;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
}

.file-upload-wrapper:hover {
    background: rgba(6, 211, 253, 0.05);
    border-color: var(--primary-color);
}

.file-upload-label i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 15px;
    display: block;
}

.file-upload-label span {
    display: block;
    font-weight: 700;
    color: #475569;
    font-size: 1rem;
}

/* Job List Deadline Style */
.job-deadline {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #D63638;
    font-size: 0.85rem;
    font-weight: 700;
    margin-top: 10px;
    text-transform: uppercase;
}

.job-deadline i {
    font-size: 14px;
}

.badge-deadline {
    background: #FDE8E8;
    color: #9B1C1C;
    font-weight: 700;
}

.job-header-clean {
    border-bottom: 1px solid #E5E7EB;
    padding-bottom: 30px;
}

.job-clean-title {
    font-size: 3rem;
    font-weight: 800;
    color: #111827;
    margin-bottom: 15px;
}

.job-header-clean .breadcrumb {
    color: #6B7280;
    font-size: 0.9rem;
}

.job-header-clean .breadcrumb a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 700;
}

.job-header-clean .breadcrumb span {
    margin: 0 5px;
    color: #9CA3AF;
}
}
. m t - 5 0  
   m a r g i n - t o p :   5 0 p x ;    
 
/* Global Layout Overrides */
.hero .container { max-width: 1320px !important; margin: 0 auto !important; padding-left: 80px !important; }


/* Section Spacing Overrides */
.partners-section { padding-bottom: 30px !important; }
.testimonials-section { padding-top: 30px !important; }


/* -------------------------------------------------------------------------------- */
/* About Us Page Components */
/* -------------------------------------------------------------------------------- */
.about-page-header { background-position: center 30%; }
.history-image .image-wrapper { position: relative; }
.history-image img.main-img { width: 100%; border-radius: 30px; box-shadow: 0 30px 60px rgba(0,0,0,0.15); }
.experience-box { position: absolute; bottom: 40px; left: -30px; background: var(--primary-color); padding: 30px; border-radius: 20px; box-shadow: 0 15px 35px rgba(6,211,253,0.3); z-index: 5; text-align: center; }
.experience-box h3 { font-size: 2.8rem; line-height: 1; margin: 0; color: var(--primary-dark); }
.experience-box p { font-size: 0.85rem; font-weight: 700; text-transform: uppercase; margin: 5px 0 0; color: var(--primary-dark); }
.milestones { display: flex; gap: 30px; border-top: 1px solid #eee; padding-top: 30px; }
.milestone-item .year { display: block; font-family: 'Lora', serif; font-size: 1.8rem; color: var(--primary-color); font-weight: 600; margin-bottom: 5px; }
.milestone-item p { font-size: 0.9rem; font-weight: 600; line-height: 1.3; }
.philosophy-card { background: #fff; padding: 50px 40px; border-radius: 25px; box-shadow: 0 15px 40px rgba(0,0,0,0.05); text-align: center; transition: all 0.4s ease; border: 1px solid #f0f0f0; }
.philosophy-card:hover { transform: translateY(-10px); border-color: var(--primary-color); }
.card-icon { width: 70px; height: 70px; background: rgba(6,211,253,0.1); color: var(--primary-color); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 30px; margin: 0 auto 30px; }
.values-list { list-style: none; padding: 0; text-align: left; margin-top: 20px; }
.values-list li { margin-bottom: 10px; font-weight: 600; font-size: 0.95rem; display: flex; align-items: center; gap: 10px; }
.values-list i { color: var(--primary-color); }
.team-main-img { width: 100%; border-radius: 30px; box-shadow: 0 20px 40px rgba(0,0,0,0.1); }
.about-quick-ctas .no-gap { gap: 0; }
.cta-block { display: block; text-decoration: none; padding: 80px 50px; position: relative; overflow: hidden; transition: all 0.4s ease; }
.cta-inner { position: relative; z-index: 2; }
.cta-inner i { font-size: 40px; color: #fff; margin-bottom: 25px; opacity: 0.8; }
.cta-inner h3 { color: #fff; font-size: 1.8rem; margin-bottom: 15px; }
.cta-link { color: #fff; font-weight: 700; text-transform: uppercase; font-size: 0.9rem; letter-spacing: 1px; display: flex; align-items: center; gap: 10px; transition: gap 0.3s; }
.cta-block:hover .cta-link { gap: 20px; }
.block-cyan { background: var(--primary-color); }
.block-dark { background: var(--primary-dark); }
.block-accent { background: #007DA1; }
.cta-block::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: #000; opacity: 0; transition: opacity 0.3s; }
.cta-block:hover::before { opacity: 0.1; }


/* Simplified About CTAs */
.simple-cta-card { background: #fff; padding: 40px; border-radius: 20px; box-shadow: 0 10px 30px rgba(0,0,0,0.05); text-align: center; border: 1px solid #f0f0f0; transition: all 0.3s ease; }
.simple-cta-card:hover { transform: translateY(-5px); border-color: var(--primary-color); }
.simple-cta-card i { font-size: 35px; color: var(--primary-color); margin-bottom: 20px; display: block; }
.simple-cta-card h3 { font-size: 1.4rem; margin-bottom: 15px; }
.simple-cta-card p { font-size: 0.95rem; margin-bottom: 20px; color: #666; }


/* Standardized Clinical Buttons */
.btn-outline-primary { background: transparent !important; border: 1.5px solid var(--primary-color) !important; color: var(--primary-color) !important; padding: 8px 20px !important; border-radius: 6px !important; font-size: 14px !important; font-weight: 700 !important; text-transform: uppercase !important; display: inline-flex !important; align-items: center !important; gap: 10px !important; transition: all 0.3s ease !important; }
.btn-outline-primary:hover { background: var(--primary-color) !important; color: var(--primary-dark) !important; transform: translateY(-3px) !important; }
/* Force Menu Style on About Page Small Buttons */
.about-simple-ctas .btn-primary { padding: 8px 20px !important; border-radius: 6px !important; font-size: 14px !important; display: inline-flex !important; align-items: center !important; gap: 10px !important; }


/* Global Button Polish */
.btn, .btn-primary, .btn-outline, .btn-outline-primary, .btn-text { text-decoration: none !important; }

