/* ===================================
   CSS Variables & Base Styles
   =================================== */
:root {
    --primary-color: #34CFC7;
    --secondary-color: #06302E;
    --text-dark: #06302E;
    --text-light: #666;
    --bg-light: #f8f9fa;
    --white: #ffffff;
    --font-primary: 'Plus Jakarta Sans', sans-serif;
    --font-secondary: 'Poppins', sans-serif;
}

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

html {
    max-width: 100%;
    overflow-x: hidden;
    scroll-behavior: smooth;
    height: 100%;
}

body {
    font-family: var(--font-secondary);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
    margin: 0;
    padding: 0;
}

a {
    text-decoration: none;
    color: inherit;
}

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

/* ===================================
   Header Styles
   =================================== */
.header {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0,0,0,0.08);
    background: var(--white);
    width: 100%;
    margin: 0;
    padding: 0;
    display: block;
}

/* Top Info Bar */
.header-top-bar {
    background: var(--secondary-color);
    padding: 8px 0;
    color: var(--white);
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar-left {
    display: flex;
    gap: 30px;
    align-items: center;
    flex: 1;
    overflow: hidden;
}

.running-text-container {
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
    position: relative;
}

.running-text {
    display: inline-flex;
    align-items: center;
    color: var(--white);
    font-size: 14px;
    font-weight: 500;
    white-space: nowrap;
    animation: scroll-text 40s linear infinite;
    gap: 0;
}

.running-text .sentence {
    display: inline-block;
    padding: 0 40px;
}

.running-text .separator {
    display: inline-block;
    color: var(--primary-color);
    font-weight: 700;
    font-size: 16px;
    padding: 0 20px;
    opacity: 0.8;
}

@keyframes scroll-text {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.top-bar-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
}

.top-bar-item i {
    font-size: 14px;
    color: var(--white);
}

.top-bar-item span {
    color: var(--white);
}

.top-bar-item a {
    color: var(--white);
    text-decoration: none;
    transition: opacity 0.3s;
}

.top-bar-item a:hover {
    opacity: 0.8;
}

.top-bar-right {
    display: flex;
    align-items: center;
}

.mobile-menu-toggle {
    background: none;
    border: none;
    color: var(--white);
    font-size: 20px;
    cursor: pointer;
    padding: 5px;
    display: none;
}

/* Main Navigation Bar */
.header-main {
    background: var(--white);
    position: relative;
    width: 100%;
    overflow: visible;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    position: relative;
}

.nav-left {
    position: relative;
    z-index: 2;
}

.logo-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    position: relative;
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.02);
}

.logo-img {
    max-height: 40px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
    transition: filter 0.3s ease;
}

.logo:hover .logo-img {
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.15));
}

.nav-center {
    flex: 1;
    display: flex;
    justify-content: center;
    min-width: 0;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 0;
    padding: 0;
    margin: 0;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
}

.nav-menu li a {
    display: block;
    padding: 12px 18px;
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    transition: all 0.3s;
    position: relative;
}

.nav-menu li a:hover,
.nav-menu li a.active {
    color: var(--primary-color);
}

.nav-menu li a.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 18px;
    right: 18px;
    height: 2px;
    background: var(--primary-color);
}

.nav-menu li a.emergency-link {
    background: var(--primary-color);
    color: var(--white);
    font-weight: 600;
    border-radius: 5px;
    margin-left: 10px;
}

.nav-menu li a.emergency-link:hover {
    background: var(--secondary-color);
}

/* Mega Menu */
.mega-menu-parent {
    position: relative;
}

.mega-menu-parent > a {
    display: flex;
    align-items: center;
    gap: 5px;
}

.mega-menu-parent > a i {
    font-size: 12px;
    transition: transform 0.3s;
}

.mega-menu-parent:hover > a i {
    transform: rotate(180deg);
}

.mega-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: var(--white);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    border-radius: 10px;
    padding: 30px;
    min-width: 650px;
    max-width: 90vw;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    margin-top: 10px;
    z-index: 1000;
    border-top: 3px solid var(--primary-color);
}

.mega-menu-parent:hover .mega-menu {
    opacity: 1;
    visibility: visible;
    margin-top: 0;
}

/* Hide mobile-only elements on desktop */
.mobile-menu-header,
.mobile-menu-footer {
    display: none;
}

.mega-menu-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.mega-menu-column h4 {
    font-family: var(--font-primary);
    color: var(--secondary-color);
    font-size: 18px;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--primary-color);
    font-weight: 600;
}

.mega-menu-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mega-menu-column ul li {
    margin-bottom: 12px;
}

.mega-menu-column ul li a {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-dark);
    text-decoration: none;
    padding: 10px 15px;
    border-radius: 5px;
    transition: all 0.3s;
    font-size: 14px;
    font-weight: 500;
}

.mega-menu-column ul li a i,
.mega-menu-column ul li a svg {
    color: var(--primary-color);
    font-size: 16px;
    width: 20px;
    text-align: center;
    flex-shrink: 0;
}

.mega-menu-column ul li a svg {
    vertical-align: middle;
    margin-right: 8px;
}

.mega-menu-column ul li a:hover {
    background: rgba(52, 207, 199, 0.1);
    color: var(--primary-color);
    transform: translateX(5px);
    padding-left: 20px;
}

.mega-menu-column ul li a:hover i {
    color: var(--secondary-color);
}

/* Simple Mega Menu (no titles) */
.mega-menu.mega-menu-simple {
    min-width: 220px;
    left: 0;
    transform: none;
}

.mega-menu-simple .mega-menu-content {
    display: block;
}

.mega-menu-simple .mega-menu-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mega-menu-simple .mega-menu-links li {
    margin-bottom: 5px;
}

.mega-menu-simple .mega-menu-links li:last-child {
    margin-bottom: 0;
}

.mega-menu-simple .mega-menu-links li a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 15px;
    color: var(--text-dark);
    font-size: 14px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.mega-menu-simple .mega-menu-links li a i {
    color: var(--primary-color);
    width: 20px;
    text-align: center;
}

.mega-menu-simple .mega-menu-links li a:hover {
    background: rgba(52, 207, 199, 0.1);
    color: var(--primary-color);
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 15px;
}

.btn-appointment {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: var(--primary-color);
    color: white;
    border-radius: 8px;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.btn-appointment:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
}

@media (max-width: 992px) {
    .btn-appointment {
        display: none;
    }
}

.search-btn {
    width: 45px;
    height: 45px;
    background: var(--primary-color);
    border: none;
    border-radius: 5px;
    color: var(--white);
    font-size: 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.search-btn:hover {
    background: var(--secondary-color);
    transform: scale(1.05);
}

/* Search Overlay */
.search-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #06302E 0%, #0a4a47 50%, #06302E 100%);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.search-overlay::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 30% 30%, rgba(52, 207, 199, 0.15) 0%, transparent 50%),
                radial-gradient(circle at 70% 70%, rgba(52, 207, 199, 0.1) 0%, transparent 40%);
    animation: searchBgFloat 15s ease-in-out infinite;
}

@keyframes searchBgFloat {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    50% { transform: translate(-2%, -2%) rotate(5deg); }
}

.search-overlay.active {
    opacity: 1;
    visibility: visible;
}

.search-overlay-content {
    width: 90%;
    max-width: 650px;
    text-align: center;
    transform: scale(0.9) translateY(30px);
    opacity: 0;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 1;
}

.search-overlay.active .search-overlay-content {
    transform: scale(1) translateY(0);
    opacity: 1;
    transition-delay: 0.1s;
}

.search-overlay h2 {
    color: var(--white);
    font-family: var(--font-primary);
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 25px;
    opacity: 0.7;
}

.search-close {
    position: fixed;
    top: 40px;
    right: 40px;
    width: 50px;
    height: 50px;
    background: rgba(255,255,255,0.1);
    border: 2px solid rgba(255,255,255,0.2);
    border-radius: 50%;
    color: var(--white);
    font-size: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
}

.search-close:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    transform: rotate(90deg) scale(1.1);
}

.search-form {
    display: flex;
    gap: 0;
    margin-bottom: 40px;
    position: relative;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    border-radius: 60px;
    overflow: hidden;
}

.search-form input {
    flex: 1;
    padding: 22px 35px;
    font-size: 18px;
    border: none;
    outline: none;
    font-family: var(--font-secondary);
    background: var(--white);
    color: var(--text-dark);
}

.search-form input::placeholder {
    color: #999;
}

.search-form button {
    padding: 22px 35px;
    background: var(--primary-color);
    border: none;
    color: var(--white);
    font-size: 22px;
    cursor: pointer;
    transition: all 0.3s;
}

.search-form button:hover {
    background: #2ab8b0;
    padding-left: 40px;
    padding-right: 40px;
}

.search-results {
    max-height: 280px;
    overflow-y: auto;
    margin-bottom: 35px;
    padding: 0 5px;
}

.search-results::-webkit-scrollbar {
    width: 6px;
}

.search-results::-webkit-scrollbar-track {
    background: rgba(255,255,255,0.1);
    border-radius: 3px;
}

.search-results::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 3px;
}

.search-result-item {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 18px 25px;
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 12px;
    margin-bottom: 12px;
    text-decoration: none;
    color: var(--white);
    transition: all 0.3s ease;
}

.search-result-item:hover {
    background: rgba(52, 207, 199, 0.2);
    border-color: var(--primary-color);
    transform: translateX(8px);
    box-shadow: 0 10px 30px rgba(52, 207, 199, 0.2);
}

.search-result-item i {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, var(--primary-color), #2ab8b0);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 18px;
    flex-shrink: 0;
}

.search-result-item span {
    font-weight: 500;
    font-size: 16px;
}

.search-result-item small {
    margin-left: auto;
    background: rgba(255,255,255,0.15);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 12px;
    color: rgba(255,255,255,0.8);
}

.search-suggestions h4 {
    color: rgba(255,255,255,0.5);
    font-size: 12px;
    margin-bottom: 18px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 500;
}

.suggestion-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
}

.suggestion-tags a {
    padding: 12px 24px;
    background: transparent;
    border: 1px solid rgba(255,255,255,0.25);
    color: var(--white);
    border-radius: 30px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.suggestion-tags a::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(52, 207, 199, 0.3), transparent);
    transition: left 0.5s ease;
}

.suggestion-tags a:hover::before {
    left: 100%;
}

.suggestion-tags a:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(52, 207, 199, 0.35);
}

@keyframes fadeSlideIn {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
    padding: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--secondary-color);
    transition: 0.3s;
    border-radius: 2px;
}

/* ===================================
   Hero Slider
   =================================== */
.hero-slider {
    position: relative;
    height: 650px;
    overflow: hidden;
}

.slider-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    background-color: var(--secondary-color);
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* Ensure all slides with background-image have transparent background and proper sizing */
.slide[style*="background-image"] {
    background-color: transparent !important;
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
}

/* Specific rules for slides 2 and 3 - ensure images load from correct path */
.slide-2[style*="background-image"],
.slide-2 {
    background-image: url('../image/slider/2.png') !important;
    background-color: transparent !important;
}


.slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(6, 48, 46, 0.5) 0%, rgba(6, 48, 46, 0.4) 50%, rgba(52, 207, 199, 0.4) 100%);
    z-index: 0;
    pointer-events: none;
}


/* ACTIVE SLIDE - becomes visible - MUST have higher specificity */
.slide.active {
    opacity: 1 !important;
    transition: opacity 1s ease-in-out;
    z-index: 1;
}

/* Ensure active state works for all slide variants */
.slide-2.active,
.slide-3.active {
    opacity: 1 !important;
    transition: opacity 1s ease-in-out;
    z-index: 1;
}

.slide-content {
    text-align: center;
    color: var(--white);
    padding: 40px;
    max-width: 900px;
    animation: fadeInUp 1s ease-out;
    position: relative;
    z-index: 1;
}

.slide-content h2 {
    font-family: var(--font-primary);
    font-size: 52px;
    margin-bottom: 25px;
    font-weight: 700;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
    line-height: 1.2;
}

.slide-content p {
    font-size: 22px;
    margin-bottom: 35px;
    opacity: 0.95;
    font-weight: 400;
    line-height: 1.6;
}

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

.btn {
    padding: 15px 35px;
    border: none;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s;
    display: inline-block;
    font-family: var(--font-secondary);
}

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

.btn-primary:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-secondary:hover {
    background: var(--white);
    color: var(--secondary-color);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: var(--secondary-color);
    border: 2px solid var(--primary-color);
}

.btn-outline:hover {
    background: var(--primary-color);
    color: var(--white);
}

.slider-controls {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 30px;
    pointer-events: none;
    z-index: 10;
}

.slider-controls button {
    background: rgba(255,255,255,0.4);
    border: 2px solid rgba(255,255,255,0.6);
    color: var(--white);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 20px;
    transition: all 0.3s;
    pointer-events: all;
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.slider-controls button:hover {
    background: rgba(255,255,255,0.7);
    border-color: rgba(255,255,255,0.9);
    transform: scale(1.1);
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

.slider-dots {
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.6);
    cursor: pointer;
    transition: all 0.3s;
    border: 2px solid rgba(255,255,255,0.8);
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

.dot.active {
    background: var(--white);
    width: 30px;
    border-radius: 6px;
    border-color: var(--white);
    box-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

/* ===================================
   Statistics Section
   =================================== */
.stats-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f0f9f8 0%, #e8f5f4 100%);
    position: relative;
    overflow: hidden;
}

.stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(6,48,46,0.05)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.5;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    position: relative;
    z-index: 1;
}

.stat-card {
    background: linear-gradient(135deg, var(--secondary-color) 0%, rgba(6, 48, 46, 0.95) 100%);
    padding: 50px 30px;
    text-align: center;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
    border: 2px solid transparent;
}

.stat-card:hover {
    transform: translateY(-15px) scale(1.05);
    box-shadow: 0 20px 50px rgba(6, 48, 46, 0.4);
    background: linear-gradient(135deg, rgba(6, 48, 46, 1) 0%, var(--secondary-color) 100%);
    border-color: var(--primary-color);
}

.stat-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, var(--primary-color), rgba(52, 207, 199, 0.8));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 20px rgba(52, 207, 199, 0.3);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.stat-icon i {
    font-size: 35px;
    color: var(--white);
}

.stat-card:hover .stat-icon {
    transform: scale(1.15) rotate(5deg);
    box-shadow: 0 8px 30px rgba(52, 207, 199, 0.5);
}

.stat-number {
    font-family: var(--font-primary);
    font-size: 48px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 10px;
    line-height: 1;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.stat-card:hover .stat-number {
    transform: scale(1.1);
    color: var(--primary-color);
}

.stat-label {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.stat-card:hover .stat-label {
    color: var(--white);
    letter-spacing: 1.5px;
}

/* ===================================
   Quick Services Section
   =================================== */
.quick-services {
    padding: 100px 0;
    background: var(--white);
}

.services-grid-home {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.service-card-home {
    background: var(--white);
    padding: 50px 40px;
    border-radius: 15px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.service-card-home::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.service-card-home:hover::before {
    transform: scaleX(1);
}

.service-card-home:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(52, 207, 199, 0.2);
    border-color: var(--primary-color);
}

.service-icon {
    width: 90px;
    height: 90px;
    margin: 0 auto 30px;
    background: linear-gradient(135deg, rgba(52, 207, 199, 0.1), rgba(52, 207, 199, 0.05));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
}

.service-card-home:hover .service-icon {
    background: linear-gradient(135deg, var(--primary-color), rgba(52, 207, 199, 0.8));
    transform: rotate(5deg) scale(1.1);
}

.service-icon i {
    font-size: 45px;
    color: var(--primary-color);
    transition: all 0.4s ease;
}

.service-card-home:hover .service-icon i {
    color: var(--white);
    transform: scale(1.1);
}

.service-card-home h3 {
    font-family: var(--font-primary);
    font-size: 24px;
    color: var(--secondary-color);
    margin-bottom: 15px;
    text-align: center;
}

.service-card-home p {
    color: var(--text-light);
    margin-bottom: 25px;
    text-align: center;
    line-height: 1.8;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    margin: 0 auto;
    justify-content: center;
    width: 100%;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.service-link:hover {
    color: var(--secondary-color);
    gap: 15px;
}

.service-link i {
    transition: transform 0.3s ease;
}

.service-link:hover i {
    transform: translateX(5px);
}

/* ===================================
   About Preview Section
   =================================== */
.about-preview {
    padding: 100px 0;
    background: linear-gradient(to bottom, var(--white) 0%, var(--bg-light) 100%);
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-family: var(--font-primary);
    font-size: 42px;
    color: var(--secondary-color);
    margin-bottom: 15px;
    font-weight: 700;
    line-height: 1.2;
}

.section-header .tagline {
    color: var(--primary-color);
    font-size: 20px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.section-header p {
    color: var(--text-light);
    font-size: 18px;
    margin-top: 10px;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-text p {
    margin-bottom: 20px;
    color: var(--text-light);
    font-size: 16px;
}

.features-list {
    list-style: none;
    margin: 30px 0;
}

.features-list li {
    padding: 10px 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.features-list i {
    color: var(--primary-color);
}

.about-image {
    height: 400px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.about-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.about-image:hover .about-img {
    transform: scale(1.05);
}

.image-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.image-placeholder i {
    font-size: 120px;
    color: rgba(255,255,255,0.3);
}

/* ===================================
   Departments Preview
   =================================== */
.departments-preview {
    padding: 100px 0;
    background: var(--bg-light);
    position: relative;
}

.departments-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.dept-card {
    background: var(--white);
    padding: 45px 30px;
    text-align: center;
    border-radius: 15px;
    transition: all 0.4s ease;
    border: 2px solid #f0f0f0;
    position: relative;
    overflow: hidden;
}

.dept-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(52, 207, 199, 0.1), transparent);
    transition: left 0.5s ease;
}

.dept-card:hover::after {
    left: 100%;
}

.dept-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(52, 207, 199, 0.25);
}

.dept-card i {
    font-size: 50px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.dept-card h3 {
    font-family: var(--font-primary);
    color: var(--secondary-color);
    margin-bottom: 10px;
}

.dept-card p {
    color: var(--text-light);
    font-size: 14px;
}

.text-center {
    text-align: center;
}

/* ===================================
   Footer - New Design
   =================================== */
.footer-new {
    background: linear-gradient(180deg, var(--secondary-color) 0%, #041f1e 100%);
    color: var(--white);
}

.footer-top {
    padding: 80px 0 60px;
}

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

.footer-brand .footer-logo {
    margin-bottom: 20px;
}

.footer-brand .footer-logo img {
    max-height: 55px;
    width: auto;
}

.footer-desc {
    color: rgba(255,255,255,0.7);
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 25px;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    width: 42px;
    height: 42px;
    background: rgba(255,255,255,0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 16px;
    transition: all 0.3s;
}

.footer-social a:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
}

.footer-links h4,
.footer-contact h4 {
    font-size: 18px;
    color: var(--white);
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 12px;
}

.footer-links h4::after,
.footer-contact h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 2px;
}

.footer-links ul {
    list-style: none;
}

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

.footer-links ul li a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    font-size: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s;
}

.footer-links ul li a i {
    font-size: 10px;
    color: var(--primary-color);
    transition: transform 0.3s;
}

.footer-links ul li a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.footer-links ul li a:hover i {
    transform: translateX(3px);
}

.footer-contact .contact-item {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.footer-contact .contact-icon {
    width: 42px;
    height: 42px;
    background: rgba(52, 207, 199, 0.15);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 16px;
    flex-shrink: 0;
}

.footer-contact .contact-item p,
.footer-contact .contact-item a {
    color: rgba(255,255,255,0.8);
    font-size: 14px;
    text-decoration: none;
    line-height: 1.6;
    margin: 0;
}

.footer-contact .contact-item a:hover {
    color: var(--primary-color);
}

.footer-contact .contact-item span {
    display: block;
    font-size: 12px;
    color: rgba(255,255,255,0.5);
    margin-top: 2px;
}

.footer-bottom-new {
    background: rgba(0,0,0,0.2);
    padding: 20px 0;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom-content p {
    color: rgba(255,255,255,0.6);
    font-size: 14px;
    margin: 0;
}

.footer-bottom-content p a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.footer-bottom-content p a:hover {
    color: var(--white);
}

.footer-bottom-links {
    display: flex;
    gap: 25px;
}

.footer-bottom-links a {
    color: rgba(255,255,255,0.6);
    font-size: 14px;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-bottom-links a:hover {
    color: var(--primary-color);
}

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

@media (max-width: 768px) {
    .footer-top {
        padding: 60px 0 40px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
}

/* ===================================
   Floating Buttons
   =================================== */
.floating-buttons {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.whatsapp-btn,
.emergency-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 24px;
    text-decoration: none;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    transition: all 0.3s;
    animation: pulse 2s infinite;
}

.whatsapp-btn {
    background: #25D366;
}

.emergency-btn {
    background: #e74c3c;
}

.whatsapp-btn:hover,
.emergency-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 20px rgba(0,0,0,0.4);
}

/* Desktop Only Floating Buttons */
.floating-buttons.desktop-only {
    display: flex;
}

@media (max-width: 768px) {
    .floating-buttons.desktop-only {
        display: none;
    }
}

/* Mobile Bottom Navigation */
.mobile-bottom-nav {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #ffffff;
    box-shadow: 0 -2px 20px rgba(0,0,0,0.08);
    z-index: 9999;
    padding: 8px 10px;
    padding-bottom: calc(8px + env(safe-area-inset-bottom));
}

@media (max-width: 768px) {
    .mobile-bottom-nav {
        display: flex;
        justify-content: space-around;
        align-items: flex-end;
    }
    
    body {
        padding-bottom: 75px;
    }
}

.mob-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #64748b;
    padding: 4px 8px;
    transition: all 0.2s ease;
    gap: 2px;
    min-width: 55px;
}

.mob-nav-item span {
    font-size: 0.6rem;
    font-weight: 500;
}

.mob-nav-icon {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    transition: all 0.2s ease;
}

.mob-nav-icon i {
    font-size: 1.1rem;
}

.mob-nav-item:active {
    transform: scale(0.95);
}

.mob-nav-item:active .mob-nav-icon {
    background: rgba(0,166,169,0.1);
}

/* Call Button - Elevated */
.mob-nav-call {
    position: relative;
    margin-top: -20px;
}

.mob-nav-icon-call {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(239, 68, 68, 0.4);
    transition: all 0.2s ease;
}

.mob-nav-icon-call i {
    font-size: 1.2rem;
}

.mob-nav-call span {
    color: #ef4444;
    font-weight: 600;
    margin-top: 4px;
}

.mob-nav-call:active .mob-nav-icon-call {
    transform: scale(0.95);
    box-shadow: 0 2px 10px rgba(239, 68, 68, 0.3);
}

/* WhatsApp */
.mob-nav-whatsapp .mob-nav-icon {
    color: #25D366;
}

.mob-nav-whatsapp span {
    color: #25D366;
}

.mob-nav-whatsapp:active .mob-nav-icon {
    background: rgba(37, 211, 102, 0.1);
}

/* ===================================
   Legal Pages (Privacy & Terms)
   =================================== */
.legal-section {
    padding: 80px 0;
    background: var(--bg-light);
}

.legal-content-wrapper {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 40px;
    align-items: start;
}

.legal-sidebar {
    position: sticky;
    top: 100px;
}

.legal-nav {
    background: white;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}

.legal-nav h4 {
    font-size: 1rem;
    color: var(--text-dark);
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--primary-color);
}

.legal-nav ul {
    list-style: none;
}

.legal-nav ul li {
    margin-bottom: 8px;
}

.legal-nav ul li a {
    color: var(--text-light);
    font-size: 0.9rem;
    transition: all 0.3s ease;
    display: block;
    padding: 8px 12px;
    border-radius: 6px;
}

.legal-nav ul li a:hover {
    color: var(--primary-color);
    background: rgba(0,166,169,0.1);
}

.legal-main {
    background: white;
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}

.legal-update-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(0,166,169,0.1);
    color: var(--primary-color);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 30px;
}

.legal-block {
    margin-bottom: 35px;
    padding-bottom: 35px;
    border-bottom: 1px solid #eee;
}

.legal-block:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.legal-block h2 {
    font-size: 1.4rem;
    color: var(--text-dark);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.legal-block h2 i {
    color: var(--primary-color);
    font-size: 1.2rem;
}

.legal-block h3 {
    font-size: 1.1rem;
    color: var(--text-dark);
    margin: 20px 0 10px;
}

.legal-block p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 15px;
}

.legal-block ul {
    list-style: none;
    margin: 15px 0;
}

.legal-block ul li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 10px 0;
    color: var(--text-light);
    line-height: 1.6;
}

.legal-block ul li i {
    color: var(--primary-color);
    margin-top: 4px;
    flex-shrink: 0;
}

.legal-block ul li i.fa-times {
    color: #e74c3c;
}

.legal-highlight {
    background: linear-gradient(135deg, rgba(231,76,60,0.1), rgba(231,76,60,0.05));
    border-left: 4px solid #e74c3c;
    padding: 20px;
    border-radius: 0 12px 12px 0;
    margin: 20px 0;
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.legal-highlight i {
    color: #e74c3c;
    font-size: 1.2rem;
    margin-top: 2px;
}

.legal-highlight p {
    margin: 0;
    color: var(--text-dark);
}

.legal-contact-info {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 20px;
}

.legal-contact-info .contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-light);
}

.legal-contact-info .contact-item i {
    width: 40px;
    height: 40px;
    background: rgba(0,166,169,0.1);
    color: var(--primary-color);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (max-width: 992px) {
    .legal-content-wrapper {
        grid-template-columns: 1fr;
    }
    
    .legal-sidebar {
        position: relative;
        top: 0;
    }
    
    .legal-nav ul {
        display: flex;
        flex-wrap: wrap;
        gap: 8px;
    }
    
    .legal-nav ul li {
        margin: 0;
    }
}

@media (max-width: 576px) {
    .legal-main {
        padding: 25px;
    }
    
    .legal-block h2 {
        font-size: 1.2rem;
    }
}

/* ===================================
   Animations
   =================================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

/* ===================================
   Page Styles (Common)
   =================================== */
.page-header {
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    color: var(--white);
    padding: 80px 0 40px;
    text-align: center;
}

.page-header h1 {
    font-family: var(--font-primary);
    font-size: 42px;
    margin-bottom: 10px;
}

.page-header p {
    font-size: 18px;
    opacity: 0.9;
}

.page-content {
    padding: 60px 0;
}

/* ===================================
   Responsive Design
   =================================== */

/* Large Desktop Screens (1400px and above) */
@media (min-width: 1400px) {
    .container {
        max-width: 1320px;
    }
    
    .running-text {
        font-size: 15px;
    }
    
    .navbar {
        padding: 10px 0;
    }
    
    .logo-img {
        max-height: 50px;
    }
    
    .nav-menu li a {
        padding: 12px 20px;
        font-size: 16px;
    }
    
    .hero-slider {
        height: 750px;
    }
    
    .slide-content h2 {
        font-size: 60px;
    }
    
    .slide-content p {
        font-size: 24px;
    }
    
    .section-header h2 {
        font-size: 48px;
    }
    
    .stats-grid {
        gap: 50px;
    }
    
    .services-grid-home {
        gap: 50px;
    }
    
    .about-content {
        gap: 60px;
    }
}

/* Extra Large Desktop Screens (1920px and above) */
@media (min-width: 1920px) {
    .container {
        max-width: 1600px;
    }
    
    .navbar {
        padding: 12px 0;
    }
    
    .logo-img {
        max-height: 50px;
    }
    
    .nav-menu li a {
        padding: 14px 22px;
        font-size: 17px;
    }
    
    .hero-slider {
        height: 800px;
    }
    
    .slide-content {
        max-width: 1100px;
    }
    
    .slide-content h2 {
        font-size: 64px;
    }
    
    .slide-content p {
        font-size: 26px;
    }
    
    .section-header h2 {
        font-size: 52px;
    }
    
    .stats-grid {
        gap: 60px;
    }
    
    .stat-card {
        padding: 60px 40px;
    }
    
    .stat-number {
        font-size: 56px;
    }
    
    .services-grid-home {
        gap: 60px;
    }
    
    .about-content {
        gap: 70px;
    }
}

/* Tablet and Medium Screens (769px - 1024px) */
@media (min-width: 769px) and (max-width: 1024px) {
    .container {
        max-width: 100%;
        padding: 0 30px;
    }
    
    .nav-menu li a {
        padding: 12px 14px;
        font-size: 14px;
    }
    
    .mega-menu {
        min-width: 600px;
        max-width: 85vw;
    }
    
    .hero-slider {
        height: 550px;
    }
    
    .slide-content h2 {
        font-size: 38px;
    }
    
    .slide-content p {
        font-size: 20px;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .services-grid-home {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .departments-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Mobile and Small Screens */
/* ===================================
   Mobile Menu - Separate Component
   =================================== */
.mobile-menu {
    display: none;
}

.mobile-overlay {
    display: none;
}

@media (max-width: 768px) {
    .running-text {
        font-size: 12px;
        animation: scroll-text 35s linear infinite;
    }
    
    .running-text .sentence {
        padding: 0 25px;
    }
    
    .running-text .separator {
        font-size: 14px;
        padding: 0 15px;
    }
    
    .top-bar-left {
        flex-wrap: wrap;
        gap: 15px;
    }

    .top-bar-item {
        font-size: 12px;
    }

    .mobile-menu-toggle {
        display: none;
    }

    .logo-img {
        max-height: 45px;
    }

    /* Hide Desktop Nav on Mobile */
    .desktop-nav {
        display: none !important;
    }

    /* Show Hamburger */
    .hamburger {
        display: flex;
        z-index: 100;
    }

    /* Mobile Menu Drawer */
    .mobile-menu {
        display: flex;
        flex-direction: column;
        position: fixed;
        top: 0;
        right: -300px;
        width: 280px;
        height: 100vh;
        background: #fff;
        z-index: 10000;
        transition: right 0.3s ease;
        overflow-y: auto;
        box-shadow: -5px 0 25px rgba(0,0,0,0.15);
    }

    .mobile-menu.active {
        right: 0;
    }

    /* Mobile Menu Header */
    .mobile-menu-header {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 15px;
        background: linear-gradient(135deg, var(--secondary-color), #0a4a47);
    }

    .mobile-logo {
        display: flex;
        align-items: center;
    }

    .mobile-logo-img {
        height: 36px;
        width: auto;
        filter: brightness(0) invert(1);
    }

    .mobile-menu-close {
        background: rgba(255,255,255,0.15);
        border: none;
        width: 34px;
        height: 34px;
        border-radius: 8px;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        color: #fff;
        font-size: 16px;
    }

    /* Mobile Nav List */
    .mobile-nav-list {
        list-style: none;
        padding: 0;
        margin: 0;
        flex: 1;
        overflow-y: auto;
    }

    .mobile-nav-list li {
        border-bottom: 1px solid #f0f0f0;
    }

    .mobile-nav-list li a {
        display: flex;
        align-items: center;
        gap: 12px;
        padding: 14px 20px;
        color: var(--text-dark);
        text-decoration: none;
        font-size: 15px;
        font-weight: 500;
        transition: all 0.2s;
    }

    .mobile-nav-list li a i {
        width: 20px;
        color: var(--primary-color);
        font-size: 15px;
    }

    .mobile-nav-list li a:hover,
    .mobile-nav-list li a.active {
        background: rgba(52, 207, 199, 0.1);
        color: var(--primary-color);
    }

    /* Mobile Submenu */
    .mobile-nav-list li.has-submenu > a {
        justify-content: flex-start;
    }

    .mobile-nav-list li.has-submenu > a .submenu-arrow {
        margin-left: auto;
        font-size: 12px;
        transition: transform 0.3s;
    }

    .mobile-nav-list li.has-submenu.open > a .submenu-arrow {
        transform: rotate(180deg);
    }

    .mobile-submenu {
        display: none;
        list-style: none;
        padding: 0;
        margin: 0;
        background: #f8f9fa;
    }

    .mobile-submenu.open {
        display: block;
    }

    .mobile-submenu li {
        border-bottom: 1px solid #eee;
    }

    .mobile-submenu li:last-child {
        border-bottom: none;
    }

    .mobile-submenu li a {
        display: block;
        padding: 12px 20px 12px 52px;
        color: var(--text-dark);
        text-decoration: none;
        font-size: 14px;
        transition: all 0.2s;
    }

    .mobile-submenu li a:hover {
        background: rgba(52, 207, 199, 0.1);
        color: var(--primary-color);
    }

    /* Mobile CTA Buttons */
    .mobile-menu-cta {
        padding: 15px;
        display: flex;
        flex-direction: column;
        gap: 10px;
    }

    .mobile-emergency-btn {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        padding: 12px 15px;
        background: #e74c3c;
        color: #fff !important;
        border-radius: 8px;
        font-size: 14px;
        font-weight: 600;
        text-decoration: none;
    }

    .mobile-appointment-btn {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        padding: 12px 15px;
        background: var(--primary-color);
        color: #fff !important;
        border-radius: 8px;
        font-size: 14px;
        font-weight: 600;
        text-decoration: none;
    }

    /* Mobile Menu Footer */
    .mobile-menu-footer {
        padding: 15px;
        background: var(--secondary-color);
        margin-top: auto;
    }

    .mobile-social-links {
        display: flex;
        justify-content: center;
        gap: 10px;
        margin-bottom: 10px;
    }

    .mobile-social-links a {
        width: 34px;
        height: 34px;
        border-radius: 8px;
        background: rgba(255,255,255,0.1);
        color: #fff;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 14px;
    }

    .mobile-contact-info {
        text-align: center;
        color: rgba(255,255,255,0.9);
        font-size: 13px;
        margin: 0;
    }

    .mobile-contact-info i {
        color: var(--primary-color);
        margin-right: 6px;
    }

    /* Mobile Overlay */
    .mobile-overlay {
        display: block;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0,0,0,0.5);
        z-index: 9999;
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s;
    }

    .mobile-overlay.active {
        opacity: 1;
        visibility: visible;
    }

    /* Hide mega menu stuff on mobile */
    .mega-menu {
        display: none !important;
        font-weight: 500;
        margin: 0;
    }

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

    /* Hamburger Icon - hide when menu is open */
    .hamburger {
        display: flex;
        z-index: 100;
        position: relative;
    }

    .hamburger.active {
        display: none;
    }

    /* Mobile Menu Overlay */
    .mobile-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        z-index: 999;
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s;
    }

    .mobile-overlay.active {
        opacity: 1;
        visibility: visible;
    }

    .search-btn {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }

    .hero-slider {
        height: 500px;
    }

    .slide-content h2 {
        font-size: 32px;
    }

    .slide-content p {
        font-size: 18px;
    }

    .about-content {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .stat-number {
        font-size: 36px;
    }

    .services-grid-home {
        grid-template-columns: 1fr;
    }

    .departments-grid {
        grid-template-columns: 1fr;
    }

    .section-header h2 {
        font-size: 32px;
    }

    .floating-buttons {
        bottom: 20px;
        right: 20px;
    }

    .whatsapp-btn,
    .emergency-btn {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }

    /* Search overlay mobile */
    .search-close {
        top: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
    }

    .search-form input {
        padding: 16px 20px;
        font-size: 16px;
    }

    .search-form button {
        padding: 16px 25px;
    }
}

@media (max-width: 480px) {
    .slide-content h2 {
        font-size: 28px;
    }

    .slide-content p {
        font-size: 16px;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .btn {
        width: 100%;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .stat-number {
        font-size: 32px;
    }

    .section-header h2 {
        font-size: 28px;
    }
}

/* ===================================
   Additional Page Styles
   =================================== */
.mission-vision {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 50px 0;
}

.mission-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    text-align: center;
    transition: all 0.3s;
}

.mission-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(52, 207, 199, 0.2);
}

.mission-card i {
    font-size: 50px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.mission-card h3 {
    font-family: var(--font-primary);
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.accreditations {
    margin: 60px 0;
}

.accred-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.accred-item {
    background: var(--bg-light);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    border-left: 4px solid var(--primary-color);
}

.accred-item i {
    font-size: 40px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.accred-item h4 {
    color: var(--secondary-color);
    margin-bottom: 10px;
}

.why-choose {
    margin: 60px 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.feature-item {
    background: var(--white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.3s;
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(52, 207, 199, 0.2);
}

.feature-item i {
    font-size: 40px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.feature-item h4 {
    color: var(--secondary-color);
    margin-bottom: 10px;
}

.dept-card-large {
    background: var(--white);
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    margin-bottom: 30px;
    transition: all 0.3s;
    border-left: 4px solid var(--primary-color);
}

.dept-card-large:hover {
    transform: translateX(5px);
    box-shadow: 0 10px 25px rgba(52, 207, 199, 0.2);
}

.dept-card-large i {
    font-size: 50px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.dept-card-large h3 {
    font-family: var(--font-primary);
    color: var(--secondary-color);
    margin-bottom: 15px;
    font-size: 28px;
}

.dept-card-large p {
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.8;
}

.dept-card-large ul {
    list-style: none;
    margin-top: 20px;
}

.dept-card-large ul li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
    color: var(--text-light);
}

.dept-card-large ul li:before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--primary-color);
}

/* Forms */
.form-section {
    background: var(--bg-light);
    padding: 60px 0;
}

.form-container {
    max-width: 800px;
    margin: 0 auto;
    background: var(--white);
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--secondary-color);
    font-weight: 600;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 5px;
    font-family: var(--font-secondary);
    font-size: 16px;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

/* Doctors Page */
.doctors-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.doctor-card {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.3s;
    text-align: center;
}

.doctor-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(52, 207, 199, 0.2);
}

.doctor-image {
    width: 100%;
    height: 300px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    display: flex;
    align-items: center;
    justify-content: center;
}

.doctor-image i {
    font-size: 100px;
    color: rgba(255,255,255,0.3);
}

.doctor-info {
    padding: 30px 20px;
}

.doctor-info h3 {
    font-family: var(--font-primary);
    color: var(--secondary-color);
    margin-bottom: 5px;
}

.doctor-info .specialization {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 15px;
}

.doctor-info .qualification {
    color: var(--text-light);
    font-size: 14px;
    margin-bottom: 15px;
}

.doctor-info .experience {
    color: var(--text-light);
    font-size: 14px;
}

/* Services Page */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.3s;
    border-top: 4px solid var(--primary-color);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(52, 207, 199, 0.2);
}

.service-card i {
    font-size: 50px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.service-card h3 {
    font-family: var(--font-primary);
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.service-card ul {
    list-style: none;
    margin-top: 15px;
}

.service-card ul li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
    color: var(--text-light);
}

.service-card ul li:before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--primary-color);
}

/* Facilities Page */
.facilities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.facility-card {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.3s;
}

.facility-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(52, 207, 199, 0.2);
}

.facility-image {
    width: 100%;
    height: 200px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

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

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

.facility-image i {
    font-size: 80px;
    color: rgba(255,255,255,0.3);
}

.facility-info {
    padding: 30px;
}

.facility-info h3 {
    font-family: var(--font-primary);
    color: var(--secondary-color);
    margin-bottom: 15px;
}

/* Contact Page */
.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.contact-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    text-align: center;
    transition: all 0.3s;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(52, 207, 199, 0.2);
}

.contact-card i {
    font-size: 50px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.contact-card h3 {
    font-family: var(--font-primary);
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.contact-card p,
.contact-card a {
    color: var(--text-light);
    text-decoration: none;
    display: block;
    margin-bottom: 10px;
}

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

.map-container {
    margin-top: 50px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.map-container iframe {
    width: 100%;
    height: 450px;
    border: none;
}

/* Emergency Page */
.emergency-banner {
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    color: var(--white);
    padding: 60px 0;
    text-align: center;
}

.emergency-banner h2 {
    font-family: var(--font-primary);
    font-size: 48px;
    margin-bottom: 20px;
}

.emergency-banner .phone-number {
    font-size: 36px;
    font-weight: 700;
    margin: 20px 0;
}

.emergency-banner .phone-number a {
    color: var(--white);
    text-decoration: none;
}

.emergency-services {
    padding: 60px 0;
}

.emergency-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.emergency-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    text-align: center;
    border-top: 4px solid #e74c3c;
    transition: all 0.3s;
}

.emergency-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(231, 76, 60, 0.2);
}

.emergency-card i {
    font-size: 50px;
    color: #e74c3c;
    margin-bottom: 20px;
}

/* Ayushman Bharat Page */
.insurance-info {
    background: var(--bg-light);
    padding: 40px;
    border-radius: 10px;
    margin-bottom: 40px;
}

.insurance-info h3 {
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.insurance-info ul {
    list-style: none;
    margin-top: 20px;
}

.insurance-info ul li {
    padding: 10px 0;
    padding-left: 30px;
    position: relative;
    color: var(--text-light);
}

.insurance-info ul li:before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--primary-color);
}

/* Admission Page */
.admission-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.step-card {
    background: var(--white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    text-align: center;
    position: relative;
    transition: all 0.3s;
}

.step-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(52, 207, 199, 0.2);
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    margin: 0 auto 20px;
}

.step-card h4 {
    color: var(--secondary-color);
    margin-bottom: 15px;
}

/* ===================================
   Homepage New Sections
   =================================== */

/* Welcome Banner */
.welcome-banner {
    padding: 0;
    margin-top: -30px;
    position: relative;
    z-index: 10;
}

.welcome-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    background: var(--white);
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    overflow: hidden;
}

.welcome-card {
    padding: 30px 25px;
    text-align: center;
    border-right: 1px solid #f0f0f0;
    transition: all 0.3s;
}

.welcome-card:last-child {
    border-right: none;
}

.welcome-card:hover {
    background: var(--primary-color);
}

.welcome-card:hover .welcome-icon,
.welcome-card:hover h3,
.welcome-card:hover p {
    color: var(--white);
}

.welcome-icon {
    font-size: 36px;
    color: var(--primary-color);
    margin-bottom: 15px;
    transition: all 0.3s;
}

.welcome-card h3 {
    font-size: 16px;
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 8px;
    transition: all 0.3s;
}

.welcome-card p {
    font-size: 13px;
    color: var(--text-light);
    margin: 0;
    transition: all 0.3s;
}

/* Section Badge */
.section-badge {
    display: inline-block;
    background: linear-gradient(135deg, rgba(52, 207, 199, 0.1), rgba(6, 48, 46, 0.1));
    color: var(--primary-color);
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

/* About Section Home */
.about-section-home {
    padding: 100px 0;
    background: var(--white);
    position: relative;
    overflow: hidden;
}

.about-home-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-home-content h2 {
    font-size: 38px;
    color: var(--secondary-color);
    margin-bottom: 20px;
    line-height: 1.3;
}

.about-home-content .lead-text {
    font-size: 18px;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 15px;
}

.about-home-content p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 25px;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 30px;
}

.about-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 15px;
    background: #f8fffe;
    border-radius: 8px;
    border-left: 3px solid var(--primary-color);
    transition: all 0.3s;
}

.about-feature:hover {
    transform: translateX(5px);
    background: #f0fffe;
}

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

.about-feature span {
    font-weight: 500;
    color: var(--secondary-color);
    font-size: 14px;
}

.about-home-image {
    position: relative;
}

.about-home-image .image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(6, 48, 46, 0.15);
}

.about-home-image .image-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, transparent 60%, rgba(6, 48, 46, 0.5) 100%);
    z-index: 1;
    pointer-events: none;
}

.about-home-image img {
    width: 100%;
    height: 520px;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.about-home-image:hover img {
    transform: scale(1.05);
}

.experience-badge {
    position: absolute;
    bottom: 25px;
    left: 25px;
    background: var(--primary-color);
    color: var(--white);
    padding: 20px 28px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(52, 207, 199, 0.4);
    z-index: 2;
}

.experience-badge .years {
    display: block;
    font-size: 38px;
    font-weight: 700;
    line-height: 1;
}

.experience-badge .text {
    font-size: 12px;
    font-weight: 600;
    margin-top: 5px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Floating stat badges */
.about-home-image .floating-stat {
    position: absolute;
    background: var(--white);
    border-radius: 12px;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.12);
    z-index: 2;
    animation: floatBadge 3s ease-in-out infinite;
}

.about-home-image .floating-stat i {
    font-size: 22px;
    color: var(--primary-color);
}

.about-home-image .floating-stat .stat-info {
    display: flex;
    flex-direction: column;
}

.about-home-image .floating-stat .stat-info strong {
    font-size: 18px;
    font-weight: 700;
    color: var(--secondary-color);
    line-height: 1;
}

.about-home-image .floating-stat .stat-info span {
    font-size: 11px;
    color: var(--text-light);
    text-transform: uppercase;
}

.about-home-image .floating-stat.stat-1 {
    top: 20px;
    right: 20px;
    animation-delay: 0s;
}

.about-home-image .floating-stat.stat-2 {
    top: 55%;
    right: 20px;
    animation-delay: 0.5s;
}

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

/* Founder Section New */
.founder-section-new {
    padding: 120px 0;
    background: linear-gradient(135deg, #f8fffe 0%, #e8f7f6 100%);
    position: relative;
    overflow: hidden;
}

.founder-bg-shapes .shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.5;
}

.founder-bg-shapes .shape-1 {
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, rgba(52, 207, 199, 0.1), transparent);
    top: -100px;
    right: -100px;
}

.founder-bg-shapes .shape-2 {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, rgba(6, 48, 46, 0.05), transparent);
    bottom: -50px;
    left: -50px;
}

.founder-bg-shapes .shape-3 {
    width: 150px;
    height: 150px;
    background: var(--primary-color);
    opacity: 0.08;
    top: 50%;
    left: 30%;
}

.founder-wrapper {
    display: grid;
    grid-template-columns: 450px 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.founder-image-container {
    position: relative;
}

.founder-image-frame {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(6, 48, 46, 0.2);
}

.founder-image-frame img {
    width: 100%;
    height: 550px;
    object-fit: cover;
    display: block;
}

.founder-glow {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 100px;
    background: linear-gradient(to top, var(--primary-color), transparent);
    opacity: 0.3;
    filter: blur(30px);
}

.founder-experience-badge {
    position: absolute;
    bottom: 30px;
    left: -30px;
    background: var(--white);
    color: var(--secondary-color);
    padding: 18px 22px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 15px 40px rgba(6, 48, 46, 0.18);
    z-index: 3;
    animation: floatBadge 3s ease-in-out infinite;
    border: 1px solid rgba(52, 207, 199, 0.25);
}

.founder-experience-badge .exp-icon {
    width: 50px;
    height: 50px;
    background: rgba(52, 207, 199, 0.15);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: var(--primary-color);
    flex-shrink: 0;
}

.founder-experience-badge .exp-text span {
    display: block;
    font-size: 11px;
    font-weight: 500;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.founder-experience-badge .exp-text strong {
    font-family: var(--font-primary);
    font-size: 28px;
    font-weight: 700;
    color: var(--secondary-color);
    line-height: 1.1;
}

.founder-content-box {
    padding: 20px 0;
}

.founder-label {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.founder-name {
    font-size: 52px;
    color: var(--secondary-color);
    margin-bottom: 15px;
    line-height: 1.1;
}

.founder-credentials {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 25px;
}

.credential-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    background: white;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 500;
    color: #555;
    box-shadow: 0 3px 15px rgba(0,0,0,0.08);
}

.credential-badge.highlight {
    background: linear-gradient(135deg, var(--primary-color), #2ab8b0);
    color: white;
}

.credential-badge i {
    font-size: 14px;
}

.founder-quote {
    position: relative;
    padding: 25px 30px;
    background: white;
    border-radius: 16px;
    margin-bottom: 25px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.06);
    border-left: 4px solid var(--primary-color);
}

.founder-quote p {
    font-size: 16px;
    color: #555;
    font-style: italic;
    line-height: 1.7;
    margin: 0;
}

.founder-bio {
    font-size: 15px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 30px;
}

.founder-specialties {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 35px;
}

.specialty-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.06);
    transition: all 0.3s ease;
}

.specialty-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.specialty-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, rgba(52, 207, 199, 0.1), rgba(6, 48, 46, 0.1));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.specialty-item span {
    font-size: 14px;
    font-weight: 600;
    color: var(--secondary-color);
}

.founder-cta {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.founder-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 32px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border-radius: 12px;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s ease;
}

.founder-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(52, 207, 199, 0.3);
}

.founder-btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 28px;
    background: white;
    color: var(--secondary-color);
    border-radius: 12px;
    font-weight: 600;
    font-size: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.founder-btn-secondary:hover {
    background: var(--secondary-color);
    color: white;
    transform: translateY(-3px);
}

@media (max-width: 1100px) {
    .founder-wrapper {
        grid-template-columns: 380px 1fr;
        gap: 50px;
    }
    
    .founder-name {
        font-size: 42px;
    }
}

@media (max-width: 992px) {
    .founder-section-new {
        padding: 80px 0;
    }
    
    .founder-wrapper {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .founder-image-container {
        max-width: 400px;
        margin: 0 auto;
    }
    
    .founder-experience-badge {
        left: 0;
    }
    
    .founder-name {
        font-size: 36px;
    }
}

@media (max-width: 576px) {
    .founder-section-new {
        padding: 60px 0;
    }
    
    .founder-image-frame img {
        height: 400px;
    }

    .founder-experience-badge {
        left: 0;
        bottom: 20px;
        padding: 14px 18px;
    }

    .founder-experience-badge .exp-text strong {
        font-size: 22px;
    }
    
    .founder-name {
        font-size: 32px;
    }
    
    .founder-specialties {
        flex-direction: column;
    }
    
    .founder-cta {
        flex-direction: column;
    }
    
    .founder-btn-primary,
    .founder-btn-secondary {
        justify-content: center;
    }
}

/* Stats Section New Design */
.stats-section-new {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--secondary-color) 0%, #0a4a47 100%);
    position: relative;
    overflow: hidden;
}

.stats-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(52, 207, 199, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(52, 207, 199, 0.08) 0%, transparent 40%),
        radial-gradient(circle at 90% 80%, rgba(52, 207, 199, 0.06) 0%, transparent 30%);
    pointer-events: none;
}

.stats-content {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    align-items: center;
}

.stats-text {
    color: var(--white);
}

.stats-text .section-badge.light {
    background: rgba(52, 207, 199, 0.2);
    color: var(--primary-color);
}

.stats-text h2 {
    font-size: 36px;
    margin-bottom: 20px;
    line-height: 1.3;
}

.stats-text p {
    font-size: 16px;
    color: rgba(255,255,255,0.8);
    line-height: 1.8;
}

.stats-grid-new {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.stat-card-new {
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 16px;
    padding: 30px;
    display: flex;
    align-items: center;
    gap: 20px;
    transition: all 0.3s ease;
}

.stat-card-new:hover {
    background: rgba(255,255,255,0.1);
    transform: translateY(-5px);
    border-color: var(--primary-color);
}

.stat-icon-new {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color), #2ab8b0);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: var(--white);
    flex-shrink: 0;
}

.stat-data {
    display: flex;
    flex-direction: column;
}

.stat-number-wrapper {
    display: flex;
    align-items: baseline;
}

.stat-card-new .stat-number {
    font-size: 42px;
    font-weight: 700;
    color: var(--white);
    line-height: 1;
}

.stat-plus {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-color);
    margin-left: 2px;
}

.stat-card-new .stat-label {
    font-size: 14px;
    color: rgba(255,255,255,0.7);
    margin-top: 5px;
}

/* Responsive */
@media (max-width: 1024px) {
    .stats-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .stats-text {
        max-width: 600px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .stats-section-new {
        padding: 60px 0;
    }
    
    .stats-grid-new {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .stat-card-new {
        padding: 25px;
    }
    
    .stat-icon-new {
        width: 60px;
        height: 60px;
        font-size: 24px;
    }
    
    .stat-card-new .stat-number {
        font-size: 32px;
    }
    
    .stats-text h2 {
        font-size: 28px;
    }
}

/* Section Header Center */
.section-header-center {
    text-align: center;
    margin-bottom: 50px;
}

.section-header-center h2 {
    font-size: 36px;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.section-header-center p {
    color: var(--text-light);
    font-size: 16px;
    max-width: 600px;
    margin: 0 auto;
}

/* Departments Section New Design */
.departments-section-new {
    padding: 100px 0;
    background: var(--bg-light);
}

.departments-showcase {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 20px;
    align-items: stretch;
}

/* Main Featured Card */

.dept-main-image {
    position: relative;
    height: 100%;
    min-height: 100%;
    border-radius: 20px;
    overflow: hidden;
}

.dept-main-card {
    grid-row: span 1;
    display: flex;
}

.dept-main-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
}

.dept-main-card:hover .dept-main-image img {
    transform: scale(1.05);
}

.dept-main-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 40px 30px;
    background: linear-gradient(180deg, transparent 0%, rgba(6, 48, 46, 0.95) 100%);
    color: var(--white);
}

.dept-main-overlay h3 {
    font-size: 28px;
    margin-bottom: 10px;
    transition: all 0.3s;
}

.dept-main-overlay p {
    font-size: 15px;
    color: rgba(255,255,255,0.85);
    margin-bottom: 20px;
    line-height: 1.6;
    transition: all 0.3s;
}

.dept-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
    transition: gap 0.3s;
}

.dept-link:hover {
    gap: 12px;
}

/* Mini Department Cards */
.dept-grid-right {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.dept-card-mini {
    background: var(--white);
    padding: 20px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
    transition: all 0.3s;
    border: 1px solid #eee;
    cursor: pointer;
}

.dept-card-mini:hover,
.dept-card-mini.active {
    transform: translateX(5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    border-color: var(--primary-color);
}

.dept-card-mini.active {
    background: linear-gradient(135deg, rgba(52, 207, 199, 0.08), rgba(52, 207, 199, 0.02));
}

.dept-mini-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, rgba(52, 207, 199, 0.15), rgba(52, 207, 199, 0.05));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--primary-color);
    flex-shrink: 0;
    transition: all 0.3s;
}

.dept-card-mini:hover .dept-mini-icon,
.dept-card-mini.active .dept-mini-icon {
    background: var(--primary-color);
    color: var(--white);
}

.dept-mini-info {
    flex: 1;
}

.dept-mini-info h4 {
    font-size: 15px;
    color: var(--secondary-color);
    margin: 0 0 3px 0;
}

.dept-mini-info span {
    font-size: 12px;
    color: var(--text-light);
}

.dept-arrow {
    color: #ccc;
    font-size: 12px;
    transition: all 0.3s;
}

.dept-card-mini:hover .dept-arrow,
.dept-card-mini.active .dept-arrow {
    color: var(--primary-color);
    transform: translateX(3px);
}

.section-footer {
    text-align: center;
    margin-top: 50px;
}

/* Responsive */
@media (max-width: 1024px) {
    .departments-showcase {
        grid-template-columns: 1fr;
    }
    
    .dept-main-card {
        grid-row: span 1;
    }
    
    .dept-main-image {
        min-height: 350px;
    }
}

@media (max-width: 768px) {
    .departments-section-new {
        padding: 60px 0;
    }
    
    .dept-grid-right {
        grid-template-columns: 1fr;
    }
    
    .dept-main-image {
        min-height: 300px;
    }
    
    .dept-main-overlay h3 {
        font-size: 22px;
    }
}

/* Why Choose Us Section - New Design */
.why-choose-section-new {
    position: relative;
    padding: 100px 0;
    background: linear-gradient(135deg, #06302e 0%, #0a4744 50%, #06302e 100%);
    overflow: hidden;
}

.why-choose-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(52, 207, 199, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(52, 207, 199, 0.08) 0%, transparent 50%),
        url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%2334cfc7' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}

.why-choose-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
}

.section-badge-light {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(52, 207, 199, 0.2);
    color: var(--primary-color);
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
    border: 1px solid rgba(52, 207, 199, 0.3);
}

.why-choose-header h2 {
    font-size: 42px;
    color: var(--white);
    margin-bottom: 15px;
    line-height: 1.2;
}

.why-choose-header h2 span {
    color: var(--primary-color);
}

.why-choose-header p {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.7);
    max-width: 600px;
    margin: 0 auto;
}

.why-choose-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    position: relative;
    z-index: 1;
}

.why-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 35px 30px;
    position: relative;
    transition: all 0.4s ease;
    overflow: hidden;
}

.why-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
    opacity: 0;
    transition: opacity 0.3s;
}

.why-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(52, 207, 199, 0.3);
}

.why-card:hover::before {
    opacity: 1;
}

.why-card.featured {
    background: linear-gradient(135deg, rgba(52, 207, 199, 0.15), rgba(52, 207, 199, 0.05));
    border-color: rgba(52, 207, 199, 0.4);
}

.why-card.featured::before {
    opacity: 1;
}

.why-card-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), #2ab5ad);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--white);
    margin-bottom: 20px;
    box-shadow: 0 10px 30px rgba(52, 207, 199, 0.3);
}

.why-card-number {
    position: absolute;
    top: 20px;
    right: 25px;
    font-size: 48px;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.03);
    line-height: 1;
}

.why-card h3 {
    font-size: 20px;
    color: var(--white);
    margin-bottom: 12px;
    font-weight: 600;
}

.why-card p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.7;
    margin: 0;
}

@media (max-width: 1024px) {
    .why-choose-cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .why-choose-section-new {
        padding: 70px 0;
    }
    
    .why-choose-header h2 {
        font-size: 30px;
    }
    
    .why-choose-cards {
        grid-template-columns: 1fr;
    }
    
    .why-card {
        padding: 25px 20px;
    }
}

/* Facilities Section - Bento Grid */
.facilities-section-new {
    padding: 100px 0;
    background: var(--bg-light);
}

.facilities-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 50px;
    gap: 30px;
}

.facilities-header-left h2 {
    font-size: 40px;
    color: var(--secondary-color);
    margin: 15px 0;
    line-height: 1.2;
}

.facilities-header-left h2 span {
    color: var(--primary-color);
}

.facilities-header-left p {
    color: var(--text-light);
    font-size: 16px;
    max-width: 500px;
    margin: 0;
}

.facilities-bento {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: 280px 280px;
    gap: 20px;
}

.bento-item {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
}

.bento-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.bento-item:hover img {
    transform: scale(1.1);
}

.bento-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 25px;
    background: linear-gradient(180deg, transparent 0%, rgba(6, 48, 46, 0.95) 100%);
    color: var(--white);
    transform: translateY(20px);
    opacity: 0.9;
    transition: all 0.4s ease;
}

.bento-item:hover .bento-overlay {
    transform: translateY(0);
    opacity: 1;
}

.bento-icon {
    width: 45px;
    height: 45px;
    background: var(--primary-color);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    margin-bottom: 15px;
    transition: transform 0.3s;
}

.bento-item:hover .bento-icon {
    transform: scale(1.1);
}

.bento-overlay h3 {
    font-size: 18px;
    margin-bottom: 8px;
    font-weight: 600;
}

.bento-overlay p {
    font-size: 13px;
    color: rgba(255,255,255,0.8);
    margin: 0;
    line-height: 1.5;
}

/* Bento Grid Sizes */
.bento-large {
    grid-column: span 2;
    grid-row: span 2;
}

@media (max-width: 1024px) {
    .facilities-bento {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: auto;
    }
    
    .bento-large {
        grid-column: span 2;
        grid-row: span 1;
    }
    
    .bento-item {
        height: 250px;
    }
}

@media (max-width: 768px) {
    .facilities-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .facilities-header-left h2 {
        font-size: 30px;
    }
    
    .facilities-bento {
        grid-template-columns: 1fr;
    }
    
    .bento-large,
    .bento-wide {
        grid-column: span 1;
    }
    
    .bento-item {
        height: 220px;
    }
    
    .bento-overlay {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Trust Section - Combined Insurance & Testimonials */
.trust-section {
    position: relative;
    padding: 100px 0;
    background: linear-gradient(135deg, #06302e 0%, #0a4744 100%);
    overflow: hidden;
}

.trust-bg-shapes {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 10% 20%, rgba(52, 207, 199, 0.1) 0%, transparent 40%),
        radial-gradient(circle at 90% 80%, rgba(52, 207, 199, 0.08) 0%, transparent 40%);
    pointer-events: none;
}

.trust-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.trust-left h2 {
    font-size: 44px;
    color: var(--white);
    line-height: 1.2;
    margin: 20px 0;
}

.trust-left h2 span {
    color: var(--primary-color);
}

.trust-left > p {
    color: rgba(255,255,255,0.7);
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 30px;
}

.insurance-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 35px;
}

.insurance-tag {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    background: rgba(255,255,255,0.1);
    border-radius: 30px;
    border: 1px solid rgba(255,255,255,0.15);
    transition: all 0.3s;
}

.insurance-tag:hover {
    background: rgba(52, 207, 199, 0.2);
    border-color: var(--primary-color);
}

.insurance-tag i {
    color: var(--primary-color);
    font-size: 14px;
}

.insurance-tag span {
    color: var(--white);
    font-size: 14px;
    font-weight: 500;
}

/* Testimonial Slider */
.trust-right {
    position: relative;
}

.testimonial-slider {
    position: relative;
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(10px);
    border-radius: 24px;
    padding: 40px;
    border: 1px solid rgba(255,255,255,0.1);
    min-height: 280px;
}

.testimonial-slide {
    display: none;
}

.testimonial-slide.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.quote-icon {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--white);
    margin-bottom: 25px;
}

.testimonial-slide > p {
    font-size: 17px;
    line-height: 1.8;
    color: rgba(255,255,255,0.9);
    margin-bottom: 30px;
    font-style: italic;
}

.testimonial-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.testimonial-author-new {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-initials {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), #2ab5ad);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--white);
    font-size: 16px;
}

.testimonial-author-new h4 {
    font-size: 16px;
    color: var(--white);
    margin-bottom: 3px;
}

.testimonial-author-new span {
    font-size: 13px;
    color: rgba(255,255,255,0.6);
}

.testimonial-stars i {
    color: #ffc107;
    font-size: 14px;
    margin-left: 2px;
}

.testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 25px;
}

.testimonial-dots .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,0.3);
    cursor: pointer;
    transition: all 0.3s;
}

.testimonial-dots .dot.active {
    background: var(--primary-color);
    width: 30px;
    border-radius: 5px;
}

/* Info Bar */
.info-bar {
    background: var(--white);
    padding: 0;
    border-bottom: 1px solid #eee;
}

.info-bar-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.info-bar-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 30px 25px;
    border-right: 1px solid #eee;
    transition: all 0.3s;
}

.info-bar-item:last-child {
    border-right: none;
}

.info-bar-item:hover {
    background: var(--bg-light);
}

.info-bar-item i {
    font-size: 24px;
    color: var(--primary-color);
}

.info-bar-item strong {
    display: block;
    font-size: 15px;
    color: var(--secondary-color);
    margin-bottom: 3px;
}

.info-bar-item span {
    font-size: 13px;
    color: var(--text-light);
}

@media (max-width: 1024px) {
    .trust-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .trust-left h2 {
        font-size: 36px;
    }
    
    .info-bar-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .info-bar-item:nth-child(2) {
        border-right: none;
    }
    
    .info-bar-item {
        border-bottom: 1px solid #eee;
    }
}

@media (max-width: 768px) {
    .trust-section {
        padding: 70px 0;
    }
    
    .trust-left h2 {
        font-size: 30px;
    }
    
    .testimonial-slider {
        padding: 30px 25px;
    }
    
    .info-bar-grid {
        grid-template-columns: 1fr;
    }
    
    .info-bar-item {
        border-right: none;
    }
}

/* FAQ Section */
.faq-section {
    padding: 100px 0;
    background: var(--bg-light);
}

.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    align-items: start;
}

.faq-left h2 {
    font-size: 38px;
    color: var(--secondary-color);
    margin: 15px 0 20px;
    line-height: 1.3;
}

.faq-left h2 span {
    color: var(--primary-color);
}

.faq-left > p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 30px;
}

.faq-contact {
    padding: 30px;
    background: linear-gradient(135deg, var(--secondary-color), #0a4744);
    border-radius: 16px;
    margin-top: 30px;
}

.faq-contact p {
    color: rgba(255,255,255,0.8);
    margin-bottom: 18px;
    font-size: 16px;
    font-weight: 500;
}

.faq-contact .btn {
    background: var(--white);
    color: var(--secondary-color);
}

.faq-contact .btn:hover {
    background: var(--primary-color);
    color: var(--white);
}

.faq-right {
    display: flex;
    flex-direction: column;
}

.faq-item {
    background: var(--white);
    border-radius: 14px;
    margin-bottom: 15px;
    overflow: hidden;
    border: 1px solid #eee;
    transition: all 0.3s;
}

.faq-item:hover {
    border-color: var(--primary-color);
}

.faq-item.active {
    border-color: var(--primary-color);
    box-shadow: 0 10px 30px rgba(52, 207, 199, 0.1);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 22px 25px;
    cursor: pointer;
    gap: 15px;
}

.faq-question span {
    font-size: 16px;
    font-weight: 600;
    color: var(--secondary-color);
}

.faq-question i {
    width: 30px;
    height: 30px;
    background: var(--bg-light);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    color: var(--secondary-color);
    transition: all 0.3s;
    flex-shrink: 0;
}

.faq-item.active .faq-question i {
    background: var(--primary-color);
    color: var(--white);
    transform: rotate(45deg);
}

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

.faq-item.active .faq-answer {
    max-height: 200px;
}

.faq-answer p {
    padding: 0 25px 22px;
    color: var(--text-light);
    line-height: 1.8;
    font-size: 15px;
}

@media (max-width: 1024px) {
    .faq-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .faq-section {
        padding: 70px 0;
    }
    
    .faq-left h2 {
        font-size: 30px;
    }
    
    .faq-question {
        padding: 18px 20px;
    }
    
    .faq-question span {
        font-size: 15px;
    }
}

/* CTA Section - Final Clean Design */
.cta-final {
    padding: 80px 0;
    background: var(--bg-light);
}

.cta-final-box {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 50px;
    padding: 60px 70px;
    background: linear-gradient(135deg, var(--secondary-color) 0%, #0a4744 100%);
    border-radius: 24px;
    position: relative;
    overflow: hidden;
}

.cta-final-box::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: rgba(52, 207, 199, 0.1);
    border-radius: 50%;
}

.cta-final-box::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: 10%;
    width: 200px;
    height: 200px;
    background: rgba(52, 207, 199, 0.08);
    border-radius: 50%;
}

.cta-final-content {
    position: relative;
    z-index: 1;
    flex: 1;
}

.cta-final-content h2 {
    font-size: 32px;
    color: var(--white);
    margin-bottom: 12px;
    line-height: 1.3;
}

.cta-final-content p {
    color: rgba(255,255,255,0.8);
    font-size: 16px;
    margin: 0;
}

.cta-final-actions {
    display: flex;
    gap: 15px;
    position: relative;
    z-index: 1;
    flex-shrink: 0;
}

.btn-cta-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 12px;
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    transition: all 0.3s;
}

.btn-cta-primary:hover {
    background: var(--white);
    color: var(--secondary-color);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.btn-cta-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255,255,255,0.3);
    border-radius: 12px;
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    transition: all 0.3s;
}

.btn-cta-secondary:hover {
    background: var(--white);
    color: var(--secondary-color);
    border-color: var(--white);
    transform: translateY(-3px);
}

@media (max-width: 1024px) {
    .cta-final-box {
        flex-direction: column;
        text-align: center;
        padding: 50px 40px;
    }
    
    .cta-final-content h2 {
        font-size: 28px;
    }
}

@media (max-width: 768px) {
    .cta-final {
        padding: 60px 0;
    }
    
    .cta-final-box {
        padding: 40px 25px;
        border-radius: 16px;
    }
    
    .cta-final-content h2 {
        font-size: 24px;
    }
    
    .cta-final-actions {
        flex-direction: column;
        width: 100%;
    }
    
    .btn-cta-primary,
    .btn-cta-secondary {
        justify-content: center;
        width: 100%;
    }
}

.btn-white {
    background: var(--white);
    color: var(--secondary-color);
    padding: 15px 35px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
}

.btn-white:hover {
    background: var(--secondary-color);
    color: var(--white);
}

.btn-outline-white {
    background: transparent;
    color: var(--white);
    padding: 15px 35px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    border: 2px solid var(--white);
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 10px;
}

.btn-outline-white:hover {
    background: var(--white);
    color: var(--secondary-color);
}

/* Responsive for new sections */
@media (max-width: 1024px) {
    .welcome-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .welcome-card {
        border-bottom: 1px solid #f0f0f0;
    }
    
    .welcome-card:nth-child(2) {
        border-right: none;
    }
    
    .about-home-grid,
    .why-choose-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .departments-home-grid,
    .facilities-preview-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .stat-card:nth-child(2)::after {
        display: none;
    }
}

@media (max-width: 768px) {
    .welcome-banner {
        margin-top: -20px;
    }
    
    .welcome-grid {
        grid-template-columns: 1fr;
    }
    
    .welcome-card {
        border-right: none;
        border-bottom: 1px solid #f0f0f0;
    }
    
    .welcome-card:last-child {
        border-bottom: none;
    }
    
    .about-section-home,
    .departments-section-home,
    .why-choose-section,
    .facilities-preview-section {
        padding: 60px 0;
    }
    
    .about-home-content h2,
    .section-header-center h2,
    .why-choose-content h2,
    .cta-content h2 {
        font-size: 28px;
    }
    
    .about-features {
        grid-template-columns: 1fr;
    }
    
    .experience-badge {
        left: 20px;
        bottom: 20px;
        padding: 20px;
    }
    
    .experience-badge .years {
        font-size: 32px;
    }
    
    .departments-home-grid,
    .facilities-preview-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }
    
    .stat-card::after {
        display: none;
    }
    
    .stat-number {
        font-size: 36px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}

/* Legal Pages */
.legal-content {
    max-width: 900px;
    margin: 0 auto;
    background: var(--white);
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.legal-content h2 {
    color: var(--secondary-color);
    margin-top: 30px;
    margin-bottom: 15px;
}

.legal-content h3 {
    color: var(--secondary-color);
    margin-top: 25px;
    margin-bottom: 10px;
}

.legal-content p {
    color: var(--text-light);
    margin-bottom: 15px;
    line-height: 1.8;
}

.legal-content ul {
    margin: 20px 0;
    padding-left: 30px;
}

.legal-content ul li {
    color: var(--text-light);
    margin-bottom: 10px;
    line-height: 1.8;
}

/* Responsive Updates */
@media (max-width: 768px) {
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .mission-vision,
    .accred-grid,
    .features-grid,
    .departments-grid,
    .doctors-grid,
    .services-grid,
    .facilities-grid,
    .contact-info-grid,
    .emergency-grid,
    .admission-steps {
        grid-template-columns: 1fr;
    }
    
    .about-content {
        grid-template-columns: 1fr;
    }
}

/* Medium Screens (769px - 1024px) - Additional adjustments */
@media (min-width: 769px) and (max-width: 1024px) {
    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
}

/* ===================================
   About Page - New Styles
   =================================== */

/* Page Hero */
.page-hero {
    position: relative;
    padding-top: 80px;
    padding-bottom: 80px;
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(135deg, var(--secondary-color), #0a4744);
}

.page-hero .container {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: inherit;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 500px;
    height: 500px;
    background: rgba(52, 207, 199, 0.08);
    border-radius: 50%;
    pointer-events: none;
}

.page-hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 350px;
    height: 350px;
    background: rgba(52, 207, 199, 0.05);
    border-radius: 50%;
    pointer-events: none;
}

.page-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.page-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(6, 48, 46, 0.95) 0%, rgba(6, 48, 46, 0.8) 100%);
}

.page-hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.breadcrumbs {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 14px;
    margin-bottom: 20px;
}

.breadcrumbs a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    transition: color 0.3s;
}

.breadcrumbs a:hover {
    color: var(--white);
}

.breadcrumbs span {
    color: rgba(255,255,255,0.5);
}

.page-hero-content h1 {
    font-size: 42px;
    color: var(--white);
    margin-bottom: 12px;
    line-height: 1.2;
}

.page-hero-content > p {
    font-size: 16px;
    color: rgba(255,255,255,0.7);
    margin: 0;
    max-width: 500px;
    margin: 0 auto;
}

/* Legacy breadcrumb support */
.breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-size: 14px;
}

.breadcrumb a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    transition: color 0.3s;
}

.breadcrumb a:hover {
    color: var(--primary-color);
}

.breadcrumb i {
    font-size: 10px;
    color: rgba(255,255,255,0.5);
}

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

/* About Intro - New Modern Design */
.about-intro-new {
    padding: 100px 0;
    background: var(--white);
    overflow: hidden;
}

.about-intro-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-intro-left {
    position: relative;
}

.about-image-stack {
    position: relative;
    padding: 30px;
}

.about-img-main {
    position: relative;
    z-index: 2;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(0,0,0,0.15);
}

.about-img-main img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    display: block;
}

.about-img-secondary {
    position: absolute;
    bottom: 0;
    right: -30px;
    width: 200px;
    height: 200px;
    border-radius: 20px;
    overflow: hidden;
    border: 5px solid var(--white);
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
    z-index: 3;
}

.about-img-secondary img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-experience-card {
    position: absolute;
    top: 0;
    left: 0;
    background: linear-gradient(135deg, var(--secondary-color), #0a4744);
    padding: 25px 30px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 15px 40px rgba(6, 48, 46, 0.4);
    z-index: 4;
}

.about-experience-card .exp-icon {
    width: 50px;
    height: 50px;
    background: rgba(255,255,255,0.15);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: var(--primary-color);
}

.about-experience-card .exp-years {
    display: block;
    font-size: 38px;
    font-weight: 700;
    color: var(--white);
    line-height: 1;
}

.about-experience-card .exp-text {
    font-size: 13px;
    color: rgba(255,255,255,0.8);
}

.about-intro-right h2 {
    font-size: 40px;
    color: var(--secondary-color);
    margin: 15px 0 20px;
    line-height: 1.2;
}

.about-intro-right h2 span {
    color: var(--primary-color);
}

.intro-highlight {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 17px;
    margin-bottom: 20px;
}

.about-intro-right > p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 25px;
}

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

.about-feature {
    display: flex;
    align-items: center;
    gap: 10px;
}

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

.about-feature span {
    font-size: 14px;
    color: var(--secondary-color);
    font-weight: 500;
}

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

.about-stat-card {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: var(--bg-light);
    border-radius: 16px;
    transition: all 0.3s;
}

.about-stat-card:hover {
    background: linear-gradient(135deg, rgba(52, 207, 199, 0.1), rgba(52, 207, 199, 0.05));
    transform: translateY(-3px);
}

.about-stat-card .stat-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), #2ab5ad);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--white);
    flex-shrink: 0;
}

.about-stat-card .stat-number {
    display: block;
    font-size: 24px;
    font-weight: 700;
    color: var(--secondary-color);
    line-height: 1;
}

.about-stat-card .stat-text {
    font-size: 12px;
    color: var(--text-light);
}

@media (max-width: 1024px) {
    .about-intro-wrapper {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .about-img-secondary {
        right: 0;
    }
    
    .about-features-list {
        grid-template-columns: 1fr;
    }
    
    .about-stats-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .about-intro-new {
        padding: 70px 0;
    }
    
    .about-intro-right h2 {
        font-size: 28px;
    }
    
    .about-img-main img {
        height: 350px;
    }
    
    .about-img-secondary {
        width: 150px;
        height: 150px;
    }
    
    .about-experience-card {
        padding: 20px;
    }
    
    .about-experience-card .exp-years {
        font-size: 28px;
    }
    
    .about-stats-grid {
        grid-template-columns: 1fr;
    }
}

/* Mission Vision Values - New Design */
.mvv-section-new {
    position: relative;
    padding: 100px 0;
    background: linear-gradient(135deg, #06302e 0%, #0a4744 100%);
    overflow: hidden;
}

.mvv-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 10% 20%, rgba(52, 207, 199, 0.1) 0%, transparent 40%),
        radial-gradient(circle at 90% 80%, rgba(52, 207, 199, 0.08) 0%, transparent 40%);
    pointer-events: none;
}

.mvv-wrapper {
    position: relative;
    z-index: 1;
}

.mvv-header {
    text-align: center;
    margin-bottom: 60px;
}

.mvv-header h2 {
    font-size: 42px;
    color: var(--white);
    margin: 15px 0;
    line-height: 1.2;
}

.mvv-header h2 span {
    color: var(--primary-color);
}

.mvv-header > p {
    color: rgba(255,255,255,0.7);
    font-size: 17px;
    max-width: 600px;
    margin: 0 auto;
}

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

.mvv-card-new {
    background: rgba(255,255,255,0.03);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 24px;
    padding: 40px 35px;
    position: relative;
    transition: all 0.4s ease;
    overflow: hidden;
}

.mvv-card-new:hover {
    transform: translateY(-10px);
    background: rgba(255,255,255,0.06);
    border-color: rgba(52, 207, 199, 0.3);
}

.mvv-card-new.highlight {
    background: linear-gradient(135deg, rgba(52, 207, 199, 0.15), rgba(52, 207, 199, 0.05));
    border-color: rgba(52, 207, 199, 0.3);
}

.mvv-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 25px;
}

.mvv-number {
    font-size: 48px;
    font-weight: 800;
    color: rgba(255,255,255,0.05);
    line-height: 1;
}

.mvv-icon-new {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), #2ab5ad);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--white);
    box-shadow: 0 10px 30px rgba(52, 207, 199, 0.3);
}

.mvv-card-new h3 {
    font-size: 24px;
    color: var(--white);
    margin-bottom: 15px;
}

.mvv-card-new p {
    color: rgba(255,255,255,0.7);
    line-height: 1.8;
    font-size: 15px;
    margin-bottom: 25px;
}

.mvv-line {
    height: 3px;
    width: 50px;
    background: linear-gradient(90deg, var(--primary-color), transparent);
    border-radius: 2px;
}

@media (max-width: 1024px) {
    .mvv-cards-new {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .mvv-section-new {
        padding: 70px 0;
    }
    
    .mvv-header h2 {
        font-size: 30px;
    }
    
    .mvv-card-new {
        padding: 30px 25px;
    }
}

/* Why Choose Us - About Page with Carousel */
.why-choose-about {
    padding: 100px 0;
    background: var(--bg-light);
}

.why-choose-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.why-choose-left h2 {
    font-size: 38px;
    color: var(--secondary-color);
    margin: 15px 0 20px;
    line-height: 1.2;
}

.why-choose-left h2 span {
    color: var(--primary-color);
}

.why-choose-left > p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 35px;
}

.why-features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.why-feature-card {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: var(--white);
    border-radius: 16px;
    transition: all 0.3s;
    border: 1px solid transparent;
}

.why-feature-card:hover {
    border-color: var(--primary-color);
    transform: translateX(5px);
    box-shadow: 0 10px 30px rgba(52, 207, 199, 0.1);
}

.why-feature-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, rgba(52, 207, 199, 0.15), rgba(52, 207, 199, 0.05));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--primary-color);
    flex-shrink: 0;
    transition: all 0.3s;
}

.why-feature-card:hover .why-feature-icon {
    background: var(--primary-color);
    color: var(--white);
}

.why-feature-text h4 {
    font-size: 16px;
    color: var(--secondary-color);
    margin-bottom: 3px;
}

.why-feature-text p {
    font-size: 13px;
    color: var(--text-light);
    margin: 0;
}

/* Why Carousel */
.why-choose-right {
    position: relative;
}

.why-carousel {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(0,0,0,0.2);
}

.why-carousel-slides {
    position: relative;
    height: 500px;
}

.why-carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.6s ease;
}

.why-carousel-slide.active {
    opacity: 1;
}

.why-carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.carousel-slide-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 40px 30px;
    background: linear-gradient(180deg, transparent 0%, rgba(6, 48, 46, 0.95) 100%);
    color: var(--white);
}

.carousel-slide-overlay h3 {
    font-size: 24px;
    margin-bottom: 8px;
}

.carousel-slide-overlay p {
    font-size: 15px;
    color: rgba(255,255,255,0.8);
    margin: 0;
}

.why-carousel-controls {
    position: absolute;
    bottom: 30px;
    right: 30px;
    display: flex;
    align-items: center;
    gap: 15px;
    z-index: 10;
}

.carousel-prev,
.carousel-next {
    width: 45px;
    height: 45px;
    background: rgba(255,255,255,0.2);
    backdrop-filter: blur(10px);
    border: none;
    border-radius: 12px;
    color: var(--white);
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s;
}

.carousel-prev:hover,
.carousel-next:hover {
    background: var(--primary-color);
}

.carousel-dots {
    display: flex;
    gap: 8px;
}

.carousel-dot {
    width: 8px;
    height: 8px;
    background: rgba(255,255,255,0.4);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s;
}

.carousel-dot.active {
    background: var(--primary-color);
    width: 24px;
    border-radius: 4px;
}

@media (max-width: 1024px) {
    .why-choose-layout {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .why-carousel-slides {
        height: 400px;
    }
}

@media (max-width: 768px) {
    .why-choose-about {
        padding: 70px 0;
    }
    
    .why-choose-left h2 {
        font-size: 28px;
    }
    
    .why-features-grid {
        grid-template-columns: 1fr;
    }
    
    .why-carousel-slides {
        height: 350px;
    }
    
    .carousel-slide-overlay h3 {
        font-size: 20px;
    }
}

/* Equipment Section - New Design */
.equipment-section-new {
    position: relative;
    padding: 100px 0;
    background: linear-gradient(135deg, #06302e 0%, #0a4744 100%);
    overflow: hidden;
}

.equipment-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(52, 207, 199, 0.1) 0%, transparent 40%),
        radial-gradient(circle at 80% 20%, rgba(52, 207, 199, 0.08) 0%, transparent 40%);
    pointer-events: none;
}

.equipment-wrapper {
    position: relative;
    z-index: 1;
}

.equipment-header {
    text-align: center;
    margin-bottom: 50px;
}

.equipment-header h2 {
    font-size: 42px;
    color: var(--white);
    margin: 15px 0;
    line-height: 1.2;
}

.equipment-header h2 span {
    color: var(--primary-color);
}

.equipment-header > p {
    color: rgba(255,255,255,0.7);
    font-size: 17px;
    max-width: 600px;
    margin: 0 auto;
}

.equipment-showcase {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: stretch;
}

.equipment-main {
    display: flex;
}

.equipment-main-card {
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 24px;
    padding: 40px;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.equipment-main-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), #2ab5ad);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: var(--white);
    margin-bottom: 25px;
    box-shadow: 0 15px 40px rgba(52, 207, 199, 0.3);
}

.equipment-main-content h3 {
    font-size: 26px;
    color: var(--white);
    margin-bottom: 15px;
}

.equipment-main-content > p {
    color: rgba(255,255,255,0.7);
    line-height: 1.8;
    margin-bottom: 25px;
}

.equipment-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.equipment-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255,255,255,0.9);
    font-size: 15px;
    margin-bottom: 12px;
}

.equipment-features li i {
    width: 24px;
    height: 24px;
    background: rgba(52, 207, 199, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    color: var(--primary-color);
}

.equipment-grid-new {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.equipment-item {
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 16px;
    padding: 25px;
    transition: all 0.3s;
}

.equipment-item:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(52, 207, 199, 0.3);
    transform: translateY(-5px);
}

.equipment-item-icon {
    width: 50px;
    height: 50px;
    background: rgba(52, 207, 199, 0.15);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--primary-color);
    margin-bottom: 15px;
    transition: all 0.3s;
}

.equipment-item:hover .equipment-item-icon {
    background: var(--primary-color);
    color: var(--white);
}

.equipment-item h4 {
    font-size: 17px;
    color: var(--white);
    margin-bottom: 5px;
}

.equipment-item p {
    font-size: 13px;
    color: rgba(255,255,255,0.6);
    margin: 0;
}

@media (max-width: 1024px) {
    .equipment-showcase {
        grid-template-columns: 1fr;
    }
    
    .equipment-grid-new {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .equipment-section-new {
        padding: 70px 0;
    }
    
    .equipment-header h2 {
        font-size: 30px;
    }
    
    .equipment-main-card {
        padding: 30px;
    }
    
    .equipment-grid-new {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ==================== DEPARTMENTS PAGE ==================== */

/* Department Filter */
.dept-filter-section {
    padding: 40px 0;
    background: var(--white);
    border-bottom: 1px solid #eee;
}

.dept-filter-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
}

.dept-filter-btn {
    padding: 12px 24px;
    background: var(--bg-light);
    border: none;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-color);
    cursor: pointer;
    transition: all 0.3s;
}

.dept-filter-btn:hover {
    background: rgba(52, 207, 199, 0.1);
    color: var(--primary-color);
}

.dept-filter-btn.active {
    background: var(--primary-color);
    color: var(--white);
}

/* Departments Page Grid */
.departments-page-section {
    padding: 80px 0;
    background: var(--bg-light);
}

.departments-page-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.dept-page-card {
    position: relative;
    background: var(--white);
    border-radius: 20px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    border: 1px solid #eee;
    transition: all 0.3s;
    overflow: hidden;
}

.dept-page-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(52, 207, 199, 0.15);
}

.dept-page-card.highlighted {
    animation: cardHighlight 3s ease-out;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(0, 166, 169, 0.3), 0 20px 50px rgba(52, 207, 199, 0.2);
}

@keyframes cardHighlight {
    0%, 20% {
        transform: scale(1.02);
        box-shadow: 0 0 0 4px rgba(0, 166, 169, 0.5), 0 20px 50px rgba(52, 207, 199, 0.3);
    }
    100% {
        transform: scale(1);
        box-shadow: none;
    }
}

.dept-page-card.featured {
    border-color: var(--primary-color);
    background: linear-gradient(135deg, rgba(52, 207, 199, 0.05), rgba(52, 207, 199, 0.02));
}

.dept-page-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--primary-color);
    color: var(--white);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
}

.dept-page-icon {
    width: 65px;
    height: 65px;
    background: linear-gradient(135deg, var(--primary-color), #2ab5ad);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    color: var(--white);
    margin-bottom: 20px;
}

.dept-page-content {
    flex: 1;
}

.dept-page-content h3 {
    font-size: 20px;
    color: var(--secondary-color);
    margin-bottom: 10px;
}

.dept-page-content > p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 15px;
}

.dept-features {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
}

.dept-features li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--text-color);
    margin-bottom: 8px;
}

.dept-features li i {
    color: var(--primary-color);
    font-size: 10px;
}

.dept-page-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    color: var(--primary-color);
    text-decoration: none;
    transition: all 0.3s;
    margin-top: auto;
}

.dept-page-link:hover {
    gap: 12px;
    color: var(--secondary-color);
}

/* Equipment Showcase */
.dept-equipment-section {
    padding: 80px 0;
    background: var(--white);
}

.dept-equipment-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
    margin-top: 50px;
}

.dept-equipment-section .equipment-item {
    text-align: center;
    padding: 30px 20px;
    background: var(--bg-light);
    border-radius: 16px;
    transition: all 0.3s;
}

.dept-equipment-section .equipment-item:hover {
    background: var(--white);
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
    transform: translateY(-5px);
}

.dept-equipment-section .equipment-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), #2ab5ad);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--white);
    margin: 0 auto 15px;
}

.dept-equipment-section .equipment-item h4 {
    font-size: 16px;
    color: var(--secondary-color);
    margin-bottom: 5px;
}

.dept-equipment-section .equipment-item p {
    font-size: 13px;
    color: var(--text-light);
    margin: 0;
}

/* OT Section */
.dept-ot-section {
    padding: 80px 0;
    background: var(--bg-light);
}

.ot-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.ot-content .section-tag {
    display: inline-block;
    background: rgba(52, 207, 199, 0.1);
    color: var(--primary-color);
    padding: 8px 16px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 15px;
}

.ot-content h2 {
    font-size: 36px;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.ot-content > p {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 30px;
}

.ot-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.ot-feature {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.ot-feature-icon {
    width: 50px;
    height: 50px;
    background: var(--white);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--primary-color);
    flex-shrink: 0;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.ot-feature h4 {
    font-size: 17px;
    color: var(--secondary-color);
    margin-bottom: 5px;
}

.ot-feature p {
    font-size: 14px;
    color: var(--text-light);
    margin: 0;
}

.ot-image {
    position: relative;
}

.ot-image img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    border-radius: 20px;
}

.ot-badge {
    position: absolute;
    bottom: 30px;
    left: 30px;
    background: var(--white);
    padding: 20px 30px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.ot-badge-number {
    display: block;
    font-size: 36px;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1;
}

.ot-badge-text {
    font-size: 13px;
    color: var(--text-light);
}

/* Page CTA Section (Reusable) */
.page-cta-section {
    padding: 60px 0;
    background: var(--bg-light);
}

.page-cta-box {
    display: flex;
    align-items: center;
    gap: 30px;
    padding: 40px 50px;
    background: linear-gradient(135deg, var(--secondary-color), #0a4744);
    border-radius: 20px;
    position: relative;
    overflow: hidden;
}

.page-cta-box::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
}

.page-cta-icon {
    width: 70px;
    height: 70px;
    background: rgba(255,255,255,0.15);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: white;
    flex-shrink: 0;
}

.page-cta-content {
    flex: 1;
}

.page-cta-content h2 {
    font-size: 26px;
    color: var(--white);
    margin-bottom: 8px;
}

.page-cta-content p {
    font-size: 15px;
    color: rgba(255,255,255,0.7);
    margin: 0;
}

.page-cta-actions {
    display: flex;
    gap: 15px;
    flex-shrink: 0;
}

.page-cta-actions .btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    background: var(--primary-color);
    border-radius: 10px;
    color: var(--white);
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    transition: all 0.3s;
}

.page-cta-actions .btn-primary:hover {
    background: var(--white);
    color: var(--secondary-color);
    transform: translateY(-2px);
}

.page-cta-actions .btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 10px;
    color: var(--white);
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    transition: all 0.3s;
}

.page-cta-actions .btn-secondary:hover {
    background: var(--white);
    color: var(--secondary-color);
}

@media (max-width: 992px) {
    .page-cta-box {
        flex-direction: column;
        text-align: center;
        padding: 40px 30px;
    }
    
    .page-cta-actions {
        flex-direction: column;
        width: 100%;
    }
    
    .page-cta-actions a {
        justify-content: center;
    }
}

/* Departments Page Responsive */
@media (max-width: 1200px) {
    .departments-page-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .dept-equipment-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 992px) {
    .departments-page-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .ot-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .ot-image {
        order: -1;
    }
    
    .dept-cta-box {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .dept-filter-section {
        padding: 30px 0;
    }
    
    .departments-page-section {
        padding: 60px 0;
    }
    
    .departments-page-grid {
        grid-template-columns: 1fr;
    }
    
    .dept-equipment-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .dept-cta-actions {
        flex-direction: column;
        width: 100%;
    }
    
    .dept-cta-actions a {
        justify-content: center;
    }
}

/* ==================== END DEPARTMENTS PAGE ==================== */

/* ==================== DEPARTMENT DETAIL PAGE ==================== */

/* Department Detail Section */
.dept-detail-section {
    padding: 80px 0;
    background: var(--white);
}

.dept-detail-grid {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 40px;
    align-items: start;
}

.dept-detail-sidebar {
    align-self: start;
    position: sticky;
    top: 100px;
}

.dept-detail-intro .section-tag {
    display: inline-block;
    background: rgba(52, 207, 199, 0.1);
    color: var(--primary-color);
    padding: 8px 16px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 15px;
}

.dept-detail-intro h2 {
    font-size: 36px;
    color: var(--secondary-color);
    margin-bottom: 20px;
    line-height: 1.3;
}

.dept-detail-intro p {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 15px;
}

.dept-highlights {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 35px;
}

.dept-highlight-item {
    display: flex;
    gap: 15px;
    padding: 20px;
    background: var(--bg-light);
    border-radius: 14px;
    transition: all 0.3s;
}

.dept-highlight-item:hover {
    background: rgba(52, 207, 199, 0.08);
    transform: translateY(-3px);
}

.dept-highlight-item .highlight-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), #2ab5ad);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--white);
    flex-shrink: 0;
}

.dept-highlight-item .highlight-icon i {
    font-size: 20px;
    color: white;
}

.highlight-content h4 {
    font-size: 16px;
    color: var(--secondary-color);
    margin-bottom: 5px;
}

.highlight-content p {
    font-size: 13px;
    color: var(--text-light);
    margin: 0;
}

/* Sidebar */
.dept-image-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 15px;
}

.dept-image-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.dept-image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
}

.dept-tag {
    background: var(--primary-color);
    color: var(--white);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.dept-quick-contact {
    background: var(--bg-light);
    border-radius: 16px;
    padding: 25px;
    text-align: center;
}

.dept-quick-contact h4 {
    font-size: 18px;
    color: var(--secondary-color);
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.dept-quick-contact h4 i {
    color: var(--primary-color);
}

.dept-quick-contact > p {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 20px;
}

.btn-book {
    display: block;
    padding: 14px 30px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 10px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
    margin-bottom: 20px;
}

.btn-book:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
}

.quick-call {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding-top: 20px;
    border-top: 1px solid #ddd;
}

.quick-call i {
    width: 40px;
    height: 40px;
    background: rgba(52, 207, 199, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
}

.quick-call span {
    font-size: 12px;
    color: var(--text-light);
    display: block;
}

.quick-call a {
    font-size: 16px;
    font-weight: 600;
    color: var(--secondary-color);
    text-decoration: none;
}

/* Services Section */
.dept-services-section {
    padding: 80px 0;
    background: var(--bg-light);
}

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

.dept-service-card {
    background: var(--white);
    border-radius: 16px;
    padding: 30px;
    text-align: center;
    border: 1px solid #eee;
    transition: all 0.3s;
}

.dept-service-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(52, 207, 199, 0.1);
}

.service-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(52, 207, 199, 0.1), rgba(52, 207, 199, 0.05));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: var(--primary-color);
    margin: 0 auto 20px;
    transition: all 0.3s;
}

.dept-service-card .service-icon i {
    color: var(--primary-color);
    transition: all 0.3s;
}

.dept-service-card:hover .service-icon {
    background: linear-gradient(135deg, var(--primary-color), #2ab5ad);
    color: var(--white);
}

.dept-service-card:hover .service-icon i {
    color: var(--white);
}

.dept-service-card h4 {
    font-size: 18px;
    color: var(--secondary-color);
    margin-bottom: 10px;
}

.dept-service-card p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
}

/* Why Choose Section */
.dept-why-section {
    padding: 80px 0;
    background: var(--white);
}

.dept-why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.dept-why-content .section-tag {
    display: inline-block;
    background: rgba(52, 207, 199, 0.1);
    color: var(--primary-color);
    padding: 8px 16px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 15px;
}

.dept-why-content h2 {
    font-size: 36px;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.dept-why-content > p {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 30px;
}

.dept-why-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.dept-why-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    color: var(--text-color);
    margin-bottom: 15px;
}

.dept-why-list li i {
    color: var(--primary-color);
    font-size: 18px;
}

.dept-why-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.dept-stat-card {
    background: linear-gradient(135deg, var(--secondary-color), #0a4744);
    border-radius: 16px;
    padding: 30px;
    text-align: center;
}

.stat-number {
    font-size: 36px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.stat-label {
    font-size: 14px;
    color: rgba(255,255,255,0.8);
}

/* FAQ Section */
.dept-faq-section {
    padding: 80px 0;
    background: var(--bg-light);
}

.dept-faq-grid {
    max-width: 800px;
    margin: 50px auto 0;
}

.dept-faq-item {
    background: var(--white);
    border-radius: 12px;
    margin-bottom: 15px;
    overflow: hidden;
    border: 1px solid #eee;
}

.dept-faq-item .faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    cursor: pointer;
    transition: all 0.3s;
}

.dept-faq-item .faq-question:hover {
    background: var(--bg-light);
}

.dept-faq-item .faq-question h4 {
    font-size: 16px;
    color: var(--secondary-color);
    margin: 0;
}

.dept-faq-item .faq-question i {
    color: var(--primary-color);
    transition: transform 0.3s;
}

.dept-faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.dept-faq-item .faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.dept-faq-item.active .faq-answer {
    max-height: 200px;
}

.dept-faq-item .faq-answer p {
    padding: 0 25px 20px;
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.7;
    margin: 0;
}

/* Responsive */
@media (max-width: 1024px) {
    .dept-detail-grid {
        grid-template-columns: 1fr;
    }
    
    .dept-detail-sidebar {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 25px;
    }
    
    .dept-image-card {
        margin-bottom: 0;
    }
    
    .dept-services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .dept-detail-section,
    .dept-services-section,
    .dept-why-section,
    .dept-faq-section {
        padding: 60px 0;
    }
    
    .dept-detail-sidebar {
        grid-template-columns: 1fr;
    }
    
    .dept-highlights {
        grid-template-columns: 1fr;
    }
    
    .dept-services-grid {
        grid-template-columns: 1fr;
    }
    
    .dept-why-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .dept-why-stats {
        order: -1;
    }
    
    .dept-detail-intro h2,
    .dept-why-content h2 {
        font-size: 28px;
    }
}

/* ==================== END DEPARTMENT DETAIL PAGE ==================== */

/* ==================== DOCTORS PAGE ==================== */

.doctors-page-section {
    padding: 80px 0;
    background: var(--bg-light);
}

.doctors-page-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-top: 50px;
}

.doctor-card-new {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid #eee;
    transition: all 0.3s;
}

.doctor-card-new:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(52, 207, 199, 0.15);
}

.doctor-card-image {
    position: relative;
    height: 220px;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    overflow: hidden;
}

.doctor-avatar-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
}

.doctor-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(6, 48, 46, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s;
}

.doctor-card-new:hover .doctor-card-overlay {
    opacity: 1;
}

.quick-view-btn {
    padding: 12px 24px;
    background: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s;
}

.quick-view-btn:hover {
    background: var(--white);
    color: var(--secondary-color);
    transform: scale(1.05);
}

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

.doctor-dept {
    display: inline-block;
    padding: 5px 12px;
    background: rgba(52, 207, 199, 0.1);
    color: var(--primary-color);
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 12px;
}

.doctor-card-info h3 {
    font-size: 18px;
    color: var(--secondary-color);
    margin-bottom: 8px;
}

.doctor-qualification {
    font-size: 13px;
    color: var(--text-light);
    margin-bottom: 15px;
}

.doctor-meta {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
}

.doctor-meta span {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: var(--text-light);
}

.doctor-meta i {
    color: var(--primary-color);
}

.doctor-book-btn {
    display: block;
    padding: 12px 20px;
    background: var(--bg-light);
    color: var(--secondary-color);
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
}

.doctor-book-btn:hover {
    background: var(--primary-color);
    color: var(--white);
}

/* Doctor Modal */
.doctor-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
    padding: 20px;
}

.doctor-modal.active {
    opacity: 1;
    visibility: visible;
}

.doctor-modal-content {
    background: var(--white);
    border-radius: 24px;
    max-width: 800px;
    width: 100%;
    position: relative;
    transform: scale(0.9);
    transition: all 0.3s;
}

.doctor-modal.active .doctor-modal-content {
    transform: scale(1);
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: var(--bg-light);
    border: none;
    border-radius: 50%;
    font-size: 18px;
    color: var(--text-color);
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s;
}

.modal-close:hover {
    background: var(--primary-color);
    color: var(--white);
}

.modal-body {
    display: flex;
    gap: 25px;
    padding: 25px;
}

.modal-doctor-image {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    flex-shrink: 0;
    width: 220px;
    height: 260px;
    overflow: hidden;
}

.modal-avatar-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    border-radius: 12px;
}

.modal-doctor-info {
    flex: 1;
}

.modal-dept {
    display: inline-block;
    padding: 5px 12px;
    background: rgba(52, 207, 199, 0.1);
    color: var(--primary-color);
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 10px;
}

.modal-doctor-info h2 {
    font-size: 24px;
    color: var(--secondary-color);
    margin-bottom: 5px;
}

.modal-qualification {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 15px;
}

.modal-details {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
}

.modal-detail-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 12px;
    background: var(--bg-light);
    border-radius: 10px;
}

.modal-detail-item i {
    width: 32px;
    height: 32px;
    background: rgba(52, 207, 199, 0.15);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 14px;
}

.modal-detail-item span {
    display: block;
    font-size: 11px;
    color: var(--text-light);
}

.modal-detail-item strong {
    font-size: 13px;
    color: var(--secondary-color);
}

.modal-specializations {
    margin-bottom: 0;
}

.modal-specializations h4 {
    font-size: 14px;
    color: var(--secondary-color);
    margin-bottom: 8px;
}

.modal-specializations ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.modal-specializations li {
    padding: 6px 12px;
    background: var(--bg-light);
    border-radius: 20px;
    font-size: 12px;
    color: var(--text-color);
}

.modal-actions {
    display: flex;
    gap: 10px;
}

.modal-book-btn {
    flex: 1;
    padding: 12px 20px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.3s;
}

.modal-book-btn:hover {
    background: var(--secondary-color);
}

.modal-call-btn {
    padding: 12px 20px;
    background: var(--bg-light);
    color: var(--secondary-color);
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s;
}

.modal-call-btn:hover {
    background: var(--secondary-color);
    color: var(--white);
}

/* Doctors Page Responsive */
@media (max-width: 1200px) {
    .doctors-page-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 992px) {
    .doctors-page-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .modal-body {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .modal-doctor-image {
        padding: 20px;
    }
    
    .modal-details {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .modal-specializations ul {
        justify-content: center;
    }
    
    .modal-actions {
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .doctors-page-section {
        padding: 60px 0;
    }
    
    .doctors-page-grid {
        grid-template-columns: 1fr;
    }
    
    .modal-doctor-info {
        padding: 25px;
    }
    
    .modal-doctor-info h2 {
        font-size: 22px;
    }
    
    .modal-actions {
        flex-direction: column;
    }
}

/* ==================== END DOCTORS PAGE ==================== */

/* ==================== SERVICES PAGE ==================== */

/* Featured Services */
.services-featured-section {
    padding: 80px 0;
    background: var(--white);
}

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

.service-featured-card {
    position: relative;
    padding: 40px 30px;
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    min-height: 280px;
    transition: all 0.4s;
}

.service-featured-card.emergency {
    background: linear-gradient(135deg, var(--secondary-color), #0a4744);
}

.service-featured-card.pharmacy {
    background: linear-gradient(135deg, #0a4744, var(--secondary-color));
}

.service-featured-card.insurance {
    background: linear-gradient(135deg, var(--primary-color), #1a9e96);
}

.featured-card-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 100% 0%, rgba(255,255,255,0.1) 0%, transparent 50%),
        radial-gradient(circle at 0% 100%, rgba(255,255,255,0.08) 0%, transparent 50%);
    pointer-events: none;
}

.service-featured-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0,0,0,0.2);
}

.featured-card-content {
    position: relative;
    z-index: 1;
    flex: 1;
}

.featured-icon {
    width: 70px;
    height: 70px;
    background: rgba(255,255,255,0.15);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: var(--white);
    margin-bottom: 25px;
}

.featured-icon.pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(255,255,255,0.4); }
    50% { box-shadow: 0 0 0 15px rgba(255,255,255,0); }
}

.featured-card-content h3 {
    font-size: 24px;
    color: var(--white);
    margin-bottom: 10px;
}

.featured-card-content p {
    font-size: 15px;
    color: rgba(255,255,255,0.8);
    margin-bottom: 20px;
    line-height: 1.6;
}

.featured-badge {
    display: inline-block;
    padding: 6px 14px;
    background: rgba(255,255,255,0.2);
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    color: var(--white);
}

.featured-link {
    position: absolute;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: rgba(255,255,255,0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 18px;
    text-decoration: none;
    transition: all 0.3s;
}

.featured-link:hover {
    background: var(--white);
    color: var(--secondary-color);
    transform: scale(1.1);
}

/* Services Categories */
.services-categories-section {
    padding: 80px 0;
    background: var(--bg-light);
}

.services-category {
    margin-bottom: 50px;
}

.services-category:last-child {
    margin-bottom: 0;
}

.category-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}

.category-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), #2ab5ad);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--white);
}

.category-header h3 {
    font-size: 24px;
    color: var(--secondary-color);
}

.services-category-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.service-item-new {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 25px;
    background: var(--white);
    border-radius: 16px;
    border: 1px solid #eee;
    transition: all 0.3s;
    cursor: pointer;
}

.service-item-new:hover {
    border-color: var(--primary-color);
    transform: translateX(10px);
    box-shadow: 0 10px 30px rgba(52, 207, 199, 0.1);
}

.service-item-icon {
    width: 55px;
    height: 55px;
    background: rgba(52, 207, 199, 0.1);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: var(--primary-color);
    flex-shrink: 0;
    transition: all 0.3s;
}

.service-item-new:hover .service-item-icon {
    background: var(--primary-color);
    color: var(--white);
}

.service-item-content {
    flex: 1;
}

.service-item-content h4 {
    font-size: 17px;
    color: var(--secondary-color);
    margin-bottom: 5px;
}

.service-item-content p {
    font-size: 14px;
    color: var(--text-light);
    margin: 0;
    line-height: 1.5;
}

.service-item-arrow {
    width: 35px;
    height: 35px;
    background: var(--bg-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    font-size: 12px;
    transition: all 0.3s;
}

.service-item-new:hover .service-item-arrow {
    background: var(--primary-color);
    color: var(--white);
}

/* Amenities Section */
.services-amenities-section {
    padding: 80px 0;
    background: var(--white);
}

.amenities-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.amenities-content .section-tag {
    display: inline-block;
    background: rgba(52, 207, 199, 0.1);
    color: var(--primary-color);
    padding: 8px 16px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 15px;
}

.amenities-content h2 {
    font-size: 36px;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.amenities-content > p {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 30px;
}

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

.amenity-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 20px 15px;
    background: var(--bg-light);
    border-radius: 14px;
    transition: all 0.3s;
}

.amenity-item:hover {
    background: rgba(52, 207, 199, 0.1);
    transform: translateY(-5px);
}

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

.amenity-item span {
    font-size: 13px;
    font-weight: 600;
    color: var(--secondary-color);
}

.amenities-image {
    position: relative;
}

.amenities-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 20px;
}

.amenities-badge {
    position: absolute;
    bottom: 30px;
    left: 30px;
    background: var(--white);
    padding: 20px 30px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.badge-number {
    display: block;
    font-size: 36px;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1;
}

.badge-text {
    font-size: 13px;
    color: var(--text-light);
}

/* Payment Section */
.services-payment-section {
    padding: 80px 0;
    background: var(--bg-light);
}

.payment-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
}

.payment-card {
    background: var(--white);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    border: 1px solid #eee;
    transition: all 0.3s;
}

.payment-card:hover {
    border-color: var(--primary-color);
    box-shadow: 0 15px 40px rgba(52, 207, 199, 0.1);
}

.payment-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color), #2ab5ad);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: var(--white);
    margin: 0 auto 20px;
}

.payment-card h3 {
    font-size: 22px;
    color: var(--secondary-color);
    margin-bottom: 10px;
}

.payment-card > p {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 25px;
}

.payment-options {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.payment-options span {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: var(--bg-light);
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    color: var(--secondary-color);
}

.payment-options span i {
    color: var(--primary-color);
}

.insurance-logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
}

.insurance-logos span {
    padding: 10px 18px;
    background: var(--bg-light);
    border-radius: 30px;
    font-size: 13px;
    font-weight: 500;
    color: var(--secondary-color);
}

/* Services Page Responsive */
@media (max-width: 1024px) {
    .services-featured-grid {
        grid-template-columns: 1fr;
    }
    
    .service-featured-card {
        min-height: auto;
    }
    
    .services-category-grid {
        grid-template-columns: 1fr;
    }
    
    .amenities-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .amenities-image {
        order: -1;
    }
    
    .payment-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .services-featured-section,
    .services-categories-section,
    .services-amenities-section,
    .services-payment-section {
        padding: 60px 0;
    }
    
    .amenities-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .payment-options {
        flex-direction: column;
        align-items: center;
    }
}

/* ==================== END SERVICES PAGE ==================== */

/* Insurance & CTA Combined Section */
.insurance-cta-section {
    padding: 80px 0;
    background: var(--bg-light);
}

.insurance-cta-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1.2fr;
    gap: 25px;
}

.insurance-card-new,
.payment-card-new {
    background: var(--white);
    border-radius: 20px;
    padding: 30px;
    border: 1px solid #eee;
    transition: all 0.3s;
}

.insurance-card-new:hover,
.payment-card-new:hover {
    border-color: var(--primary-color);
    box-shadow: 0 15px 40px rgba(52, 207, 199, 0.1);
}

.insurance-card-header,
.payment-card-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}

.insurance-icon,
.payment-icon {
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, var(--primary-color), #2ab5ad);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: var(--white);
}

.insurance-card-header h3,
.payment-card-header h3 {
    font-size: 20px;
    color: var(--secondary-color);
    margin-bottom: 3px;
}

.insurance-card-header p,
.payment-card-header p {
    font-size: 13px;
    color: var(--text-light);
    margin: 0;
}

.insurance-tags-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.insurance-tag-new {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 15px;
    background: var(--bg-light);
    border-radius: 10px;
    transition: all 0.3s;
}

.insurance-tag-new:hover {
    background: rgba(52, 207, 199, 0.1);
}

.insurance-tag-new i {
    color: var(--primary-color);
    font-size: 14px;
}

.insurance-tag-new span {
    font-size: 14px;
    font-weight: 500;
    color: var(--secondary-color);
}

.payment-options-grid {
    display: flex;
    gap: 15px;
}

.payment-option {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 20px 15px;
    background: var(--bg-light);
    border-radius: 14px;
    transition: all 0.3s;
}

.payment-option:hover {
    background: rgba(52, 207, 199, 0.1);
    transform: translateY(-3px);
}

.payment-option-icon {
    width: 45px;
    height: 45px;
    background: rgba(52, 207, 199, 0.15);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: var(--primary-color);
}

.payment-option span {
    font-size: 14px;
    font-weight: 600;
    color: var(--secondary-color);
}

/* CTA Card */
.cta-card-new {
    position: relative;
    background: linear-gradient(135deg, var(--secondary-color), #0a4744);
    border-radius: 20px;
    padding: 35px;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.cta-card-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 100% 0%, rgba(52, 207, 199, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 0% 100%, rgba(52, 207, 199, 0.15) 0%, transparent 50%);
    pointer-events: none;
}

.cta-card-content {
    position: relative;
    z-index: 1;
}

.cta-card-content h3 {
    font-size: 24px;
    color: var(--white);
    margin-bottom: 10px;
}

.cta-card-content > p {
    font-size: 14px;
    color: rgba(255,255,255,0.7);
    margin-bottom: 25px;
    line-height: 1.6;
}

.cta-card-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.cta-btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 28px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 12px;
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    transition: all 0.3s;
}

.cta-btn-primary:hover {
    background: var(--white);
    color: var(--secondary-color);
    transform: translateY(-2px);
}

.cta-btn-phone {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 20px;
    background: rgba(255,255,255,0.1);
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s;
}

.cta-btn-phone:hover {
    background: rgba(255,255,255,0.2);
}

.cta-btn-phone i {
    width: 36px;
    height: 36px;
    background: rgba(255,255,255,0.15);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 14px;
}

.cta-btn-phone span {
    font-size: 16px;
    font-weight: 600;
    color: var(--white);
}

@media (max-width: 1024px) {
    .insurance-cta-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .cta-card-new {
        grid-column: span 2;
    }
}

@media (max-width: 768px) {
    .insurance-cta-section {
        padding: 60px 0;
    }
    
    .insurance-cta-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-card-new {
        grid-column: span 1;
    }
    
    .insurance-tags-grid {
        grid-template-columns: 1fr;
    }
}

/* About Page Responsive */
@media (max-width: 1024px) {
    .about-intro-grid,
    .about-features-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .mvv-grid {
        grid-template-columns: 1fr;
    }
    
    .equipment-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .insurance-box {
        flex-direction: column;
        text-align: center;
    }
    
    .insurance-content p {
        max-width: 100%;
    }
    
    .payment-methods {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .page-hero-content {
        padding: 80px 0 50px;
    }
    
    .page-hero-content h1 {
        font-size: 32px;
    }
    
    .about-intro-content h2,
    .about-features-content h2 {
        font-size: 28px;
    }
    
    .about-stats-row {
        gap: 25px;
    }
    
    .about-stat .stat-num {
        font-size: 28px;
    }
    
    .equipment-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .insurance-box {
        padding: 30px 25px;
    }
    
    .experience-badge-about {
        right: 10px;
        bottom: -10px;
        padding: 20px;
    }
}

/* Large Screens (1025px - 1399px) */
@media (min-width: 1025px) and (max-width: 1399px) {
    .container {
        max-width: 1200px;
    }
    
    .mega-menu {
        min-width: 700px;
    }
    
    .departments-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* ===== EMERGENCY PAGE ===== */
.emergency-hotline-section {
    padding: 0;
    margin-top: -30px;
    position: relative;
    z-index: 10;
}

.emergency-hotline-card {
    background: white;
    border-radius: 16px;
    padding: 25px 40px;
    display: flex;
    align-items: center;
    gap: 25px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
    border-left: 5px solid #c0392b;
}

.hotline-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #c0392b, #8e2424);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: pulse-emergency 2s infinite;
}

@keyframes pulse-emergency {
    0%, 100% { box-shadow: 0 0 0 0 rgba(192, 57, 43, 0.4); }
    50% { box-shadow: 0 0 0 15px rgba(192, 57, 43, 0); }
}

.hotline-icon i {
    font-size: 24px;
    color: white;
}

.hotline-content {
    flex: 1;
}

.hotline-content span {
    font-size: 14px;
    color: #666;
    display: block;
    margin-bottom: 5px;
}

.hotline-content a {
    font-size: 28px;
    font-weight: 700;
    color: #c0392b;
}

.hotline-btn {
    padding: 15px 35px;
    background: linear-gradient(135deg, #c0392b, #8e2424);
    color: white;
    border-radius: 30px;
    font-weight: 600;
    font-size: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.hotline-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(192, 57, 43, 0.3);
}

/* Emergency Stats */
.emergency-stats-section {
    padding: 60px 0;
}

.emergency-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.emergency-stat-card {
    background: white;
    border-radius: 16px;
    padding: 25px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.emergency-stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}

.emergency-stat-card .stat-icon {
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, rgba(192, 57, 43, 0.1), rgba(142, 36, 36, 0.1));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.emergency-stat-card .stat-icon i {
    font-size: 22px;
    color: #c0392b;
}

.emergency-stat-card .stat-info h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 3px;
}

.emergency-stat-card .stat-info p {
    font-size: 13px;
    color: #666;
}

/* Emergency About */
.emergency-about-section {
    padding: 80px 0;
    background: var(--bg-light);
}

.emergency-about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.emergency-about-content h2 {
    font-size: 36px;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.emergency-about-content > p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 15px;
}

.emergency-features {
    margin-top: 25px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.emergency-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    color: #444;
}

.emergency-feature i {
    color: #c0392b;
}

.emergency-about-image {
    position: relative;
}

.emergency-about-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

.emergency-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: linear-gradient(135deg, #c0392b, #8e2424);
    color: white;
    padding: 15px 25px;
    border-radius: 30px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
}

/* Emergency Services */
.emergency-services-section {
    padding: 80px 0;
}

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

.emergency-service-card {
    background: white;
    border-radius: 16px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 25px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border-bottom: 3px solid transparent;
}

.emergency-service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
    border-bottom-color: #c0392b;
}

.service-icon-box {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(192, 57, 43, 0.1), rgba(142, 36, 36, 0.1));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: all 0.3s ease;
}

.emergency-service-card:hover .service-icon-box {
    background: linear-gradient(135deg, #c0392b, #8e2424);
}

.service-icon-box i {
    font-size: 28px;
    color: #c0392b;
    transition: all 0.3s ease;
}

.emergency-service-card:hover .service-icon-box i {
    color: white;
}

.emergency-service-card h4 {
    font-size: 18px;
    color: var(--secondary-color);
    margin-bottom: 10px;
}

.emergency-service-card p {
    font-size: 14px;
    color: #666;
}

/* ICU Section */
.emergency-icu-section {
    padding: 80px 0;
    background: var(--bg-light);
}

.emergency-icu-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.icu-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

.icu-content h2 {
    font-size: 36px;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.icu-content > p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 25px;
}

.icu-features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-bottom: 25px;
}

.icu-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    background: white;
    padding: 15px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 500;
    color: #444;
}

.icu-feature i {
    color: #c0392b;
    font-size: 18px;
}

.icu-also h4 {
    font-size: 16px;
    color: var(--secondary-color);
    margin-bottom: 12px;
}

.icu-tags {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.icu-tag {
    background: linear-gradient(135deg, #c0392b, #8e2424);
    color: white;
    padding: 8px 18px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
}

/* Emergency Steps */
.emergency-steps-section {
    padding: 80px 0;
}

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

.emergency-step {
    text-align: center;
    position: relative;
}

.emergency-step::after {
    content: '';
    position: absolute;
    top: 35px;
    right: -15px;
    width: 30px;
    height: 2px;
    background: linear-gradient(90deg, #c0392b, #8e2424);
}

.emergency-step:last-child::after {
    display: none;
}

.emergency-step .step-number {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #c0392b, #8e2424);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 700;
    color: white;
    margin: 0 auto 20px;
}

.emergency-step h4 {
    font-size: 18px;
    color: var(--secondary-color);
    margin-bottom: 10px;
}

.emergency-step p {
    font-size: 14px;
    color: #666;
}

/* Insurance Section */
.emergency-insurance-section {
    padding: 60px 0;
    background: var(--bg-light);
}

.emergency-insurance-card {
    background: white;
    border-radius: 20px;
    padding: 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
}

.insurance-content h3 {
    font-size: 22px;
    color: var(--secondary-color);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.insurance-content h3 i {
    color: var(--primary-color);
}

.insurance-content > p {
    color: #666;
    margin-bottom: 20px;
    max-width: 600px;
}

.insurance-list {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.insurance-list span {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #444;
}

.insurance-list span i {
    color: #27ae60;
}

.insurance-link-btn {
    padding: 15px 30px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border-radius: 30px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.insurance-link-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(52, 207, 199, 0.3);
}

/* Emergency FAQ */
.emergency-faq-section {
    padding: 80px 0;
}

.emergency-faq-grid {
    max-width: 800px;
    margin: 40px auto 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.emergency-faq-item {
    background: white;
    border-radius: 12px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.08);
    overflow: hidden;
}

.emergency-faq-item .faq-question {
    padding: 20px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.emergency-faq-item .faq-question:hover {
    background: var(--bg-light);
}

.emergency-faq-item .faq-question h4 {
    font-size: 16px;
    color: var(--secondary-color);
    font-weight: 600;
}

.emergency-faq-item .faq-question i {
    color: #c0392b;
    transition: transform 0.3s ease;
}

.emergency-faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.emergency-faq-item .faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.emergency-faq-item.active .faq-answer {
    max-height: 200px;
    padding: 0 25px 20px;
}

.emergency-faq-item .faq-answer p {
    font-size: 14px;
    color: #666;
    line-height: 1.7;
}

/* Emergency Page CTA */
.emergency-page-cta {
    background: linear-gradient(135deg, #c0392b, #8e2424);
}

.emergency-page-cta .page-cta-box {
    background: rgba(255,255,255,0.1);
}

.emergency-page-cta .page-cta-box::before {
    background: rgba(255,255,255,0.08);
}

.emergency-page-cta .page-cta-icon {
    background: rgba(255,255,255,0.2);
    color: white;
}

.emergency-page-cta .page-cta-actions .btn-primary {
    background: white;
    color: #c0392b;
}

.emergency-page-cta .page-cta-actions .btn-primary:hover {
    background: #f8f8f8;
    color: #8e2424;
}

.emergency-page-cta .page-cta-actions .btn-secondary {
    border-color: white;
    color: white;
}

.emergency-page-cta .page-cta-actions .btn-secondary:hover {
    background: white;
    color: #c0392b;
}

/* Emergency Responsive */
@media (max-width: 992px) {
    .emergency-hotline-card {
        flex-direction: column;
        text-align: center;
        padding: 30px;
    }
    
    .emergency-stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .emergency-about-grid,
    .emergency-icu-grid {
        grid-template-columns: 1fr;
    }
    
    .emergency-services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .emergency-steps-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .emergency-step::after {
        display: none;
    }
    
    .emergency-insurance-card {
        flex-direction: column;
        text-align: center;
    }
    
}

@media (max-width: 576px) {
    .emergency-stats-grid {
        grid-template-columns: 1fr;
    }
    
    .emergency-services-grid {
        grid-template-columns: 1fr;
    }
    
    .emergency-steps-grid {
        grid-template-columns: 1fr;
    }
    
    .icu-features-grid {
        grid-template-columns: 1fr;
    }
}

/* ===== CONTACT PAGE ===== */
.contact-info-section {
    padding: 80px 0;
    background: white;
}

.contact-cards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.contact-info-card {
    background: white;
    border-radius: 16px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 25px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.contact-info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}

.contact-info-card.highlight {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
}

.contact-info-card.highlight .contact-card-icon {
    background: rgba(255,255,255,0.2);
}

.contact-info-card.highlight h3,
.contact-info-card.highlight p,
.contact-info-card.highlight a {
    color: white;
}

.contact-info-card.highlight .contact-note i {
    color: white;
}

.contact-card-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(52, 207, 199, 0.1), rgba(6, 48, 46, 0.1));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.contact-card-icon i {
    font-size: 24px;
    color: var(--primary-color);
}

.contact-info-card.highlight .contact-card-icon i {
    color: white;
}

.contact-info-card h3 {
    font-size: 18px;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.contact-info-card p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

.contact-info-card a {
    color: var(--secondary-color);
    font-weight: 600;
    display: block;
    margin-bottom: 5px;
}

.contact-phone {
    font-size: 20px !important;
    font-weight: 700 !important;
}

.contact-note {
    margin-top: 15px;
    font-size: 13px !important;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.contact-note i {
    color: var(--primary-color);
}

.contact-card-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 15px;
    font-size: 14px;
    color: var(--primary-color) !important;
    transition: all 0.3s ease;
}

.contact-card-link:hover {
    gap: 12px;
}

/* Contact Form Section */
.contact-form-section {
    padding: 80px 0;
}

.contact-form-grid {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 60px;
    align-items: start;
}

.contact-form-info .section-tag {
    margin-bottom: 15px;
}

.contact-form-info h2 {
    font-size: 36px;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.contact-form-info > p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 30px;
}

.contact-info-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.contact-info-item i {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 18px;
    flex-shrink: 0;
}

.contact-info-item h4 {
    font-size: 16px;
    color: var(--secondary-color);
    margin-bottom: 5px;
}

.contact-info-item p {
    font-size: 14px;
    color: #666;
}

.contact-form-container {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

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

.contact-form-container label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
}

.contact-form-container input,
.contact-form-container select,
.contact-form-container textarea {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    font-size: 15px;
    transition: all 0.3s ease;
}

.contact-form-container input:focus,
.contact-form-container select:focus,
.contact-form-container textarea:focus {
    border-color: var(--primary-color);
    outline: none;
    box-shadow: 0 0 0 3px rgba(52, 207, 199, 0.1);
}

.contact-form-container .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

/* Map Section */
.contact-map-section {
    padding: 80px 0;
}

.contact-map-section .section-header-center {
    margin-bottom: 40px;
}

.map-wrapper {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.map-container {
    height: 450px;
    position: relative;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.map-info-overlay {
    position: absolute;
    top: 30px;
    left: 30px;
    background: white;
    border-radius: 16px;
    padding: 25px 30px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
    max-width: 320px;
    z-index: 10;
}

.map-info-overlay h3 {
    font-size: 18px;
    color: var(--secondary-color);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.map-info-overlay h3 i {
    color: var(--primary-color);
}

.map-info-overlay p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 5px;
}

.map-info-overlay .map-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 15px;
    padding: 10px 20px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border-radius: 25px;
    font-weight: 600;
    font-size: 13px;
    transition: all 0.3s ease;
}

.map-info-overlay .map-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(52, 207, 199, 0.3);
}

/* Message Form Section */
.contact-message-section {
    padding: 60px 0 80px;
    background: var(--bg-light);
    margin-top: -40px;
    position: relative;
    z-index: 10;
}

.contact-message-grid {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 60px;
    align-items: start;
}

.contact-message-info .section-tag {
    margin-bottom: 15px;
}

.contact-message-info h2 {
    font-size: 36px;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.contact-message-info > p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 35px;
}

.contact-quick-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

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

.quick-info-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.quick-info-icon i {
    font-size: 18px;
    color: white;
}

.quick-info-item span {
    font-size: 13px;
    color: #888;
    display: block;
    margin-bottom: 3px;
}

.quick-info-item a,
.quick-info-item p {
    font-size: 16px;
    font-weight: 600;
    color: var(--secondary-color);
    margin: 0;
}

.message-form-container {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

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

.message-form-container label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
}

.message-form-container input,
.message-form-container textarea {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    font-size: 15px;
    transition: all 0.3s ease;
}

.message-form-container input:focus,
.message-form-container textarea:focus {
    border-color: var(--primary-color);
    outline: none;
    box-shadow: 0 0 0 3px rgba(52, 207, 199, 0.1);
}

.message-form-container .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

/* Contact Responsive */
@media (max-width: 992px) {
    .contact-cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .contact-form-grid {
        grid-template-columns: 1fr;
    }
    
    .map-wrapper {
        grid-template-columns: 1fr;
    }
    
    .map-info {
        padding: 30px;
    }
}

@media (max-width: 992px) {
    .contact-message-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .contact-cards-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-form-container .form-row,
    .message-form-container .form-row {
        grid-template-columns: 1fr;
    }
    
    .contact-form-container,
    .message-form-container {
        padding: 25px;
    }
    
    .map-info-overlay {
        position: relative;
        top: 0;
        left: 0;
        max-width: 100%;
        border-radius: 0;
    }
}

/* ===== AYUSHMAN BHARAT PAGE ===== */
.ayushman-highlights {
    padding: 60px 0;
    background: var(--bg-light);
    margin-top: -40px;
    position: relative;
    z-index: 10;
}

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

.ayushman-highlight-card {
    background: white;
    border-radius: 16px;
    padding: 30px;
    display: flex;
    align-items: center;
    gap: 20px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.ayushman-highlight-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}

.ayushman-highlight-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #f97316, #ea580c);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.ayushman-highlight-icon i {
    font-size: 24px;
    color: white;
}

.ayushman-highlight-content h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 5px;
}

.ayushman-highlight-content p {
    font-size: 14px;
    color: #666;
}

/* About Section */
.ayushman-about-section {
    padding: 80px 0;
}

.ayushman-about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.ayushman-about-content .section-tag {
    margin-bottom: 15px;
}

.ayushman-about-content h2 {
    font-size: 36px;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.ayushman-about-content > p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 15px;
}

.ayushman-benefits {
    margin-top: 25px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    color: #444;
}

.benefit-item i {
    color: var(--primary-color);
}

.ayushman-about-image {
    display: flex;
    align-items: center;
    justify-content: center;
}

.ayushman-about-image img {
    width: 100%;
    max-width: 550px;
    border-radius: 16px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    object-fit: cover;
}

/* Covered Services Section */
.ayushman-services-section {
    padding: 80px 0;
    background: var(--bg-light);
}

.ayushman-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.ayushman-service-card {
    background: white;
    padding: 25px 20px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    text-decoration: none;
    border: 1px solid #eee;
}

.ayushman-service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,166,169,0.15);
    border-color: var(--primary-color);
}

.ayushman-service-card i,
.ayushman-service-card svg {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 12px;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.ayushman-service-card span {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-dark);
    display: block;
}

/* Process Section */
.ayushman-process-section {
    padding: 80px 0;
    background: var(--bg-light);
}

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

.ayushman-step {
    background: white;
    border-radius: 16px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 25px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    position: relative;
}

.ayushman-step:hover {
    transform: translateY(-5px);
}

.ayushman-step::after {
    content: '';
    position: absolute;
    top: 50%;
    right: -15px;
    width: 30px;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transform: translateY(-50%);
}

.ayushman-step:last-child::after {
    display: none;
}

.step-num {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
    color: white;
    margin: 0 auto 20px;
}

.step-info h4 {
    font-size: 18px;
    color: var(--secondary-color);
    margin-bottom: 8px;
}

.step-info p {
    font-size: 14px;
    color: #666;
}

/* Eligibility Section */
.ayushman-eligibility-section {
    padding: 80px 0;
}

.eligibility-card {
    background: linear-gradient(135deg, var(--secondary-color), #0a4744);
    border-radius: 20px;
    padding: 50px;
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 50px;
    align-items: center;
    color: white;
}

.eligibility-content h3 {
    font-size: 24px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.eligibility-content > p {
    opacity: 0.9;
    margin-bottom: 25px;
    line-height: 1.7;
}

.eligibility-options {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.eligibility-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 25px;
    background: white;
    color: var(--secondary-color);
    border-radius: 30px;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
}

.eligibility-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

.eligibility-btn.secondary {
    background: rgba(255,255,255,0.15);
    color: white;
}

.eligibility-btn.secondary:hover {
    background: rgba(255,255,255,0.25);
}

.eligibility-docs h4 {
    font-size: 18px;
    margin-bottom: 20px;
}

.eligibility-docs ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.eligibility-docs ul li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255,255,255,0.15);
    font-size: 15px;
}

.eligibility-docs ul li:last-child {
    border-bottom: none;
}

.eligibility-docs ul li i {
    opacity: 0.8;
}

/* Form Section */
.ayushman-form-section {
    padding: 80px 0;
    background: var(--bg-light);
}

.ayushman-form-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: start;
}

.ayushman-form-info .section-tag {
    margin-bottom: 15px;
}

.ayushman-form-info h2 {
    font-size: 36px;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.ayushman-form-info > p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 30px;
}

.form-contact-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

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

.form-contact-item i {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 18px;
}

.form-contact-item h4 {
    font-size: 14px;
    color: #666;
    font-weight: 500;
    margin-bottom: 3px;
}

.form-contact-item p {
    font-size: 16px;
    color: var(--secondary-color);
    font-weight: 600;
}

.ayushman-form-container {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

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

.ayushman-form-container label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
}

.ayushman-form-container input,
.ayushman-form-container select,
.ayushman-form-container textarea {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    font-size: 15px;
    transition: all 0.3s ease;
}

.ayushman-form-container input:focus,
.ayushman-form-container select:focus,
.ayushman-form-container textarea:focus {
    border-color: var(--primary-color);
    outline: none;
    box-shadow: 0 0 0 3px rgba(52, 207, 199, 0.1);
}

.ayushman-form-container .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.btn-primary.full-width {
    width: 100%;
    padding: 16px;
    font-size: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary.full-width:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(52, 207, 199, 0.3);
}

/* Partners Section */
.ayushman-partners-section {
    padding: 60px 0;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-top: 40px;
}

.partner-card {
    background: white;
    border-radius: 12px;
    padding: 30px 20px;
    text-align: center;
    box-shadow: 0 3px 15px rgba(0,0,0,0.06);
    transition: all 0.3s ease;
}

.partner-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.partner-card i {
    font-size: 32px;
    color: var(--primary-color);
    margin-bottom: 15px;
    display: block;
}

.partner-card span {
    font-weight: 600;
    color: var(--secondary-color);
}

/* Responsive */
@media (max-width: 992px) {
    .ayushman-highlight-grid {
        grid-template-columns: 1fr;
    }
    
    .ayushman-about-grid {
        grid-template-columns: 1fr;
    }
    
    .ayushman-steps {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .ayushman-step::after {
        display: none;
    }
    
    .eligibility-card {
        grid-template-columns: 1fr;
        padding: 35px;
    }
    
    .ayushman-form-grid {
        grid-template-columns: 1fr;
    }
    
    .partners-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .ayushman-steps {
        grid-template-columns: 1fr;
    }
    
    .ayushman-form-container .form-row {
        grid-template-columns: 1fr;
    }
    
    .eligibility-options {
        flex-direction: column;
    }
}

/* ===== FACILITIES PAGE ===== */
.facilities-highlights {
    padding: 60px 0;
    background: var(--bg-light);
    margin-top: -40px;
    position: relative;
    z-index: 10;
}

.highlights-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.highlight-card {
    background: white;
    border-radius: 16px;
    padding: 30px 20px;
    text-align: center;
    box-shadow: 0 5px 25px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.highlight-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}

.highlight-card .highlight-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
}

.highlight-card .highlight-icon i {
    font-size: 24px;
    color: white;
}

.highlight-num {
    font-size: 32px;
    font-weight: 700;
    color: var(--secondary-color);
    line-height: 1;
    margin-bottom: 5px;
}

.highlight-label {
    font-size: 14px;
    color: #666;
}

/* Facility Section */
.facility-section {
    padding: 80px 0;
}

.facility-section.bg-light {
    background: var(--bg-light);
}

.facility-showcase {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.facility-showcase.reverse {
    direction: rtl;
}

.facility-showcase.reverse > * {
    direction: ltr;
}

.facility-showcase-content .section-tag {
    margin-bottom: 15px;
}

.facility-showcase-content h2 {
    font-size: 36px;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.facility-showcase-content > p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 25px;
}

.facility-features {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.facility-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    color: #444;
}

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

.facility-showcase-image {
    position: relative;
}

.facility-showcase-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

.image-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: white;
    padding: 12px 20px;
    border-radius: 30px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
}

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

.image-badge span {
    font-weight: 600;
    color: var(--secondary-color);
    font-size: 14px;
}

/* Equipment Cards Grid */
.equipment-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-top: 50px;
}

.equipment-card-new {
    background: white;
    border-radius: 16px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 25px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.equipment-card-new:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}

.equipment-card-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(52, 207, 199, 0.1), rgba(6, 48, 46, 0.1));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: all 0.3s ease;
}

.equipment-card-new:hover .equipment-card-icon {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
}

.equipment-card-icon i {
    font-size: 28px;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.equipment-card-new:hover .equipment-card-icon i {
    color: white;
}

.equipment-card-new h4 {
    font-size: 18px;
    color: var(--secondary-color);
    margin-bottom: 10px;
}

.equipment-card-new p {
    font-size: 14px;
    color: #666;
}

/* Amenities Cards Grid */
.amenities-cards-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
    margin-top: 50px;
}

.amenity-card-new {
    background: white;
    border-radius: 16px;
    padding: 25px 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.06);
    transition: all 0.3s ease;
}

.amenity-card-new:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.amenity-card-icon {
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
}

.amenity-card-icon i {
    font-size: 22px;
    color: white;
}

.amenity-card-new h4 {
    font-size: 15px;
    color: var(--secondary-color);
    margin-bottom: 5px;
}

.amenity-card-new p {
    font-size: 12px;
    color: #888;
}

/* Facilities Responsive */
@media (max-width: 992px) {
    .highlights-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .facility-showcase {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .facility-showcase.reverse {
        direction: ltr;
    }
    
    .equipment-cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .amenities-cards-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 576px) {
    .highlights-grid {
        grid-template-columns: 1fr;
    }
    
    .equipment-cards-grid {
        grid-template-columns: 1fr;
    }
    
    .amenities-cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .facility-showcase-image img {
        height: 280px;
    }
}

/* ===== PATIENT GUIDE PAGE ===== */
.patient-quick-section {
    padding: 60px 0;
    background: var(--bg-light);
    margin-top: -40px;
    position: relative;
    z-index: 10;
}

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

.patient-quick-card {
    background: white;
    border-radius: 16px;
    padding: 30px;
    display: flex;
    align-items: center;
    gap: 20px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.patient-quick-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}

.quick-card-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.quick-card-icon i {
    font-size: 24px;
    color: white;
}

.quick-card-content h3 {
    font-size: 14px;
    color: #666;
    font-weight: 500;
    margin-bottom: 5px;
}

.quick-card-content .highlight {
    font-size: 20px;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 3px;
}

.quick-card-content span {
    font-size: 13px;
    color: #888;
}

/* Admission Process */
.patient-admission-section {
    padding: 80px 0;
}

.admission-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin: 50px 0 40px;
}

.admission-step {
    text-align: center;
    position: relative;
}

.admission-step::after {
    content: '';
    position: absolute;
    top: 30px;
    right: -15px;
    width: 30px;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
}

.admission-step:last-child::after {
    display: none;
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    color: white;
    margin: 0 auto 20px;
}

.step-content h4 {
    font-size: 18px;
    color: var(--secondary-color);
    margin-bottom: 10px;
}

.step-content p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

.documents-required {
    background: linear-gradient(135deg, var(--secondary-color), #0a4744);
    border-radius: 20px;
    padding: 40px;
    color: white;
}

.documents-required h4 {
    font-size: 20px;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 10px;
}

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

.document-item {
    background: rgba(255,255,255,0.1);
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    transition: all 0.3s ease;
}

.document-item:hover {
    background: rgba(255,255,255,0.2);
    transform: translateY(-3px);
}

.document-item i {
    font-size: 28px;
    margin-bottom: 10px;
    display: block;
}

.document-item span {
    font-size: 14px;
}

/* Payment & Insurance */
.patient-payment-section {
    padding: 80px 0;
    background: var(--bg-light);
}

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

.payment-info-card,
.insurance-info-card {
    background: white;
    border-radius: 20px;
    padding: 35px;
    box-shadow: 0 5px 30px rgba(0,0,0,0.08);
}

.info-card-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.info-card-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.info-card-icon i {
    font-size: 20px;
    color: white;
}

.info-card-header h3 {
    font-size: 20px;
    color: var(--secondary-color);
    margin-bottom: 3px;
}

.info-card-header p {
    font-size: 14px;
    color: #666;
}

.payment-methods-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-bottom: 20px;
}

.payment-method {
    background: var(--bg-light);
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    transition: all 0.3s ease;
}

.payment-method:hover {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
}

.payment-method:hover .method-icon {
    background: rgba(255,255,255,0.2);
    color: white;
}

.method-icon {
    width: 50px;
    height: 50px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 10px;
    font-size: 20px;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.payment-method span {
    font-weight: 600;
    font-size: 14px;
}

.payment-note {
    font-size: 13px;
    color: #888;
    display: flex;
    align-items: center;
    gap: 8px;
}

.payment-note i {
    color: var(--primary-color);
}

.insurance-partners-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-bottom: 20px;
}

.insurance-partner {
    background: var(--bg-light);
    border-radius: 10px;
    padding: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.insurance-partner:hover {
    background: #e8f5f4;
}

.insurance-partner.featured {
    grid-column: span 2;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    flex-direction: column;
    align-items: flex-start;
    padding: 20px;
}

.insurance-partner.featured small {
    font-size: 12px;
    opacity: 0.8;
}

.insurance-partner i {
    color: var(--primary-color);
}

.insurance-partner.featured i {
    color: white;
}

.insurance-partner span {
    font-weight: 600;
    font-size: 14px;
}

.insurance-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
}

.insurance-link:hover {
    color: var(--secondary-color);
    gap: 12px;
}

/* Patient Amenities */
.patient-amenities-section {
    padding: 80px 0;
}

.amenities-showcase {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: stretch;
}

.amenities-showcase-content .section-tag {
    margin-bottom: 15px;
}

.amenities-showcase-content h2 {
    font-size: 36px;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.amenities-showcase-content > p {
    color: #666;
    margin-bottom: 30px;
}

.amenities-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.amenity-row {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 15px;
    background: var(--bg-light);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.amenity-row:hover {
    background: white;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transform: translateX(5px);
}

.amenity-row .amenity-icon {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.amenity-row .amenity-icon i {
    font-size: 18px;
    color: white;
}

.amenity-details h4 {
    font-size: 16px;
    color: var(--secondary-color);
    margin-bottom: 5px;
}

.amenity-details p {
    font-size: 14px;
    color: #666;
}

.amenities-showcase-visual {
    display: flex;
    flex-direction: column;
    gap: 20px;
    height: 100%;
}

.amenities-showcase-visual .visual-card {
    flex: 1;
}

.amenities-showcase-visual .visual-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.visual-card {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
}

.visual-card img {
    width: 100%;
    height: 100%;
    min-height: 250px;
    object-fit: cover;
}

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

.mini-amenity {
    background: white;
    border-radius: 12px;
    padding: 20px 15px;
    text-align: center;
    box-shadow: 0 3px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.mini-amenity:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

.mini-amenity i {
    font-size: 24px;
    color: var(--primary-color);
    margin-bottom: 10px;
    display: block;
}

.mini-amenity span {
    font-size: 13px;
    font-weight: 600;
    color: #333;
}

/* Discharge Process */
.patient-discharge-section {
    padding: 60px 0;
    background: var(--bg-light);
}

.discharge-card {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 5px 30px rgba(0,0,0,0.08);
}

.discharge-content h3 {
    font-size: 22px;
    color: var(--secondary-color);
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.discharge-content h3 i {
    color: var(--primary-color);
}

.discharge-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 25px;
}

.discharge-step {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.discharge-step .step-num {
    width: 30px;
    height: 30px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 700;
    color: white;
    flex-shrink: 0;
}

.discharge-step p {
    font-size: 14px;
    color: #666;
    line-height: 1.5;
}

.discharge-note {
    background: #fff8e1;
    border-radius: 10px;
    padding: 15px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.discharge-note i {
    color: #f9a825;
    font-size: 18px;
}

.discharge-note p {
    font-size: 14px;
    color: #666;
}

/* Patient FAQ */
.patient-faq-section {
    padding: 80px 0;
}

.patient-faq-grid {
    max-width: 800px;
    margin: 40px auto 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.patient-faq-item {
    background: white;
    border-radius: 12px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.08);
    overflow: hidden;
}

.patient-faq-item .faq-question {
    padding: 20px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.patient-faq-item .faq-question:hover {
    background: var(--bg-light);
}

.patient-faq-item .faq-question h4 {
    font-size: 16px;
    color: var(--secondary-color);
    font-weight: 600;
}

.patient-faq-item .faq-question i {
    color: var(--primary-color);
    transition: transform 0.3s ease;
}

.patient-faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.patient-faq-item .faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.patient-faq-item.active .faq-answer {
    max-height: 200px;
    padding: 0 25px 20px;
}

.patient-faq-item .faq-answer p {
    font-size: 14px;
    color: #666;
    line-height: 1.7;
}

/* Responsive */
@media (max-width: 992px) {
    .patient-quick-grid {
        grid-template-columns: 1fr;
    }
    
    .admission-steps {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .admission-step::after {
        display: none;
    }
    
    .documents-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .payment-insurance-grid {
        grid-template-columns: 1fr;
    }
    
    .amenities-showcase {
        grid-template-columns: 1fr;
    }
    
    .discharge-steps {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .admission-steps {
        grid-template-columns: 1fr;
    }
    
    .documents-grid {
        grid-template-columns: 1fr;
    }
    
    .payment-methods-grid {
        grid-template-columns: 1fr;
    }
    
    .amenities-mini-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .discharge-steps {
        grid-template-columns: 1fr;
    }
}

/* ===== APPOINTMENT PAGE ===== */
.appointment-info-section {
    padding: 60px 0 40px;
    background: var(--bg-light);
}

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

.appointment-info-card {
    background: white;
    padding: 25px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 2px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.appointment-info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.appointment-info-card.highlight {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
}

.appointment-info-card.highlight .info-icon {
    background: rgba(255,255,255,0.2);
    color: white;
}

.appointment-info-card.highlight a {
    color: white;
    font-size: 1.2rem;
    font-weight: 600;
}

.appointment-info-card .info-icon {
    width: 60px;
    height: 60px;
    background: var(--bg-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-size: 1.4rem;
    color: var(--primary-color);
}

.appointment-info-card h3 {
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.appointment-info-card p {
    color: #666;
    font-size: 0.9rem;
    margin: 0;
}

.appointment-info-card.highlight p {
    color: rgba(255,255,255,0.9);
}

.appointment-form-section {
    padding: 80px 0;
}

.appointment-form-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: start;
}

.appointment-form-info .section-tag {
    display: inline-block;
    margin-bottom: 15px;
}

.appointment-form-info h2 {
    font-size: 2.2rem;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.appointment-form-info > p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 30px;
}

.appointment-benefits {
    margin-bottom: 30px;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
}

.benefit-item i {
    color: var(--primary-color);
    font-size: 1.1rem;
}

.benefit-item span {
    color: #555;
}

.appointment-contact {
    background: var(--bg-light);
    padding: 25px;
    border-radius: 12px;
}

.appointment-contact h4 {
    font-size: 1rem;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.appointment-phone {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 8px;
}

.appointment-phone i {
    font-size: 1.2rem;
}

.appointment-contact > p {
    color: #666;
    font-size: 0.85rem;
    margin: 0;
}

.appointment-form-container {
    background: white;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    border: 1px solid #eee;
}

.appointment-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.appointment-form .form-group {
    margin-bottom: 0;
}

.appointment-form label {
    display: block;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.appointment-form input,
.appointment-form select,
.appointment-form textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    font-family: inherit;
}

.appointment-form input:focus,
.appointment-form select:focus,
.appointment-form textarea:focus {
    border-color: var(--primary-color);
    outline: none;
    box-shadow: 0 0 0 3px rgba(0, 166, 169, 0.1);
}

.appointment-form textarea {
    resize: vertical;
    min-height: 80px;
}

.appointment-form .btn-primary.full-width {
    width: 100%;
    padding: 15px;
    font-size: 1rem;
    margin-top: 10px;
}

.form-note {
    text-align: center;
    color: #888;
    font-size: 0.85rem;
    margin-top: 15px;
}

.form-note i {
    margin-right: 5px;
}

.appointment-depts-section {
    padding: 80px 0;
    background: var(--bg-light);
}

.appointment-depts-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.dept-quick-card {
    background: white;
    padding: 30px 20px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 2px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.dept-quick-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    background: var(--primary-color);
    color: white;
}

.dept-quick-card i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 12px;
    display: block;
    transition: color 0.3s ease;
}

.dept-quick-card:hover i {
    color: white;
}

.dept-quick-card span {
    font-weight: 500;
    font-size: 0.95rem;
}

/* Department Sidebar Appointment Form */
.dept-appointment-form {
    background: white;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    border: 1px solid #e8e8e8;
}

.dept-appointment-form h4 {
    font-size: 1rem;
    margin-bottom: 4px;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 8px;
}

.dept-appointment-form h4 i {
    color: var(--primary-color);
}

.dept-appointment-form > p {
    color: var(--text-light);
    font-size: 0.8rem;
    margin-bottom: 15px;
}

.dept-appointment-form .form-group {
    margin-bottom: 12px;
}

.dept-appointment-form label {
    display: block;
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 5px;
}

.dept-appointment-form input,
.dept-appointment-form select {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 0.85rem;
    background: #f9f9f9;
    transition: all 0.3s ease;
}

.dept-appointment-form input:focus,
.dept-appointment-form select:focus {
    outline: none;
    border-color: var(--primary-color);
    background: white;
    box-shadow: 0 0 0 3px rgba(0,166,169,0.1);
}

.dept-appointment-form .btn-primary {
    width: 100%;
    padding: 12px;
    font-size: 0.9rem;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    margin-top: 8px;
    transition: all 0.3s ease;
}

.dept-appointment-form .btn-primary:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,166,169,0.3);
}

.dept-appointment-form .quick-call {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid #eee;
}

.dept-appointment-form .quick-call i {
    width: 36px;
    height: 36px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.85rem;
}

.dept-appointment-form .quick-call span {
    font-size: 0.7rem;
    color: var(--text-light);
    display: block;
}

.dept-appointment-form .quick-call a {
    font-weight: 600;
    color: var(--text-dark);
    font-size: 0.9rem;
}

/* Flatpickr Custom Theme */
.flatpickr-calendar {
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
    border: none;
}

.flatpickr-months .flatpickr-month {
    background: var(--primary-color);
    border-radius: 12px 12px 0 0;
}

.flatpickr-current-month .flatpickr-monthDropdown-months,
.flatpickr-current-month input.cur-year {
    color: white;
    font-weight: 600;
}

.flatpickr-months .flatpickr-prev-month,
.flatpickr-months .flatpickr-next-month {
    fill: white;
}

.flatpickr-months .flatpickr-prev-month:hover,
.flatpickr-months .flatpickr-next-month:hover {
    fill: white;
}

span.flatpickr-weekday {
    color: var(--primary-color);
    font-weight: 600;
}

.flatpickr-day.selected,
.flatpickr-day.selected:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
}

.flatpickr-day:hover {
    background: rgba(0,166,169,0.1);
}

.flatpickr-day.today {
    border-color: var(--primary-color);
}

@media (max-width: 992px) {
    .appointment-info-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .appointment-form-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .appointment-depts-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 576px) {
    .appointment-info-grid {
        grid-template-columns: 1fr;
    }
    
    .appointment-form-container {
        padding: 25px;
    }
    
    .appointment-form .form-row {
        grid-template-columns: 1fr;
    }
    
    .appointment-depts-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Modal Appointment Form */
.modal-appointment-form {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.modal-appointment-form h4 {
    font-size: 1rem;
    margin-bottom: 15px;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 8px;
}

.modal-appointment-form h4 i {
    color: var(--primary-color);
}

.modal-appointment-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-bottom: 10px;
}

.modal-appointment-form .form-group {
    margin: 0;
}

.modal-appointment-form input,
.modal-appointment-form select {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.modal-appointment-form input:focus,
.modal-appointment-form select:focus {
    border-color: var(--primary-color);
    outline: none;
}

.modal-appointment-form .btn-primary.full-width {
    width: 100%;
    padding: 12px;
    margin-top: 5px;
}

/* ===================================
   Form submission feedback (on-page toast)
   =================================== */
.form-feedback-toast {
    position: fixed;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%) translateY(120%);
    z-index: 10050;
    max-width: min(520px, calc(100vw - 32px));
    width: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.35s ease, transform 0.35s ease, visibility 0.35s;
    pointer-events: none;
}

.form-feedback-toast--visible {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
    pointer-events: auto;
}

.form-feedback-toast__inner {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 16px 18px;
    border-radius: 12px;
    box-shadow: 0 12px 40px rgba(6, 48, 46, 0.22);
    font-family: var(--font-secondary);
    font-size: 0.95rem;
    line-height: 1.45;
}

.form-feedback-toast--success .form-feedback-toast__inner {
    background: #0d4f3d;
    color: #fff;
    border: 1px solid rgba(52, 207, 199, 0.35);
}

.form-feedback-toast--error .form-feedback-toast__inner {
    background: #7f1d1d;
    color: #fff;
    border: 1px solid rgba(252, 165, 165, 0.4);
}

.form-feedback-toast--warning .form-feedback-toast__inner {
    background: #78350f;
    color: #fff;
    border: 1px solid rgba(253, 230, 138, 0.5);
}

.form-feedback-toast__icon {
    flex-shrink: 0;
    font-size: 1.35rem;
    margin-top: 2px;
    opacity: 0.95;
}

.form-feedback-toast--success .form-feedback-toast__icon {
    color: var(--primary-color);
}

.form-feedback-toast__text {
    flex: 1;
    margin: 0;
}

.form-feedback-toast__close {
    flex-shrink: 0;
    background: transparent;
    border: none;
    color: inherit;
    cursor: pointer;
    padding: 4px;
    margin: -4px -4px 0 0;
    opacity: 0.85;
    line-height: 1;
    border-radius: 6px;
}

.form-feedback-toast__close:hover {
    opacity: 1;
    background: rgba(255, 255, 255, 0.12);
}

@media (max-width: 480px) {
    .form-feedback-toast {
        bottom: 16px;
        max-width: calc(100vw - 24px);
    }

    .form-feedback-toast__inner {
        padding: 14px 14px;
        font-size: 0.9rem;
    }
}

