/*=============
RESET
==============*/

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{

    font-family:'Poppins',sans-serif;
    background:#ffffff;
    color:#222;
}

a{
    text-decoration:none;
}

ul{
    list-style:none;
}

img{
    max-width:100%;
}

/*===================
GLOBAL
====================*/

.container{

    width:90%;
    max-width:1300px;
    margin:auto;

}

/*==================
HEADER
===================*/

header{

    position:fixed;
    top:0;
    left:0;
    width:100%;
    background:#fff;

    z-index:999;

    box-shadow:0 10px 35px rgba(0,0,0,.05);

}

header .container{

    display:flex;
    justify-content:space-between;
    align-items:center;

    height:90px;

}

/*==================
LOGO
===================*/

.logo{

    display:flex;
    align-items:center;
    gap:14px;

}

.logo img{

    width:56px;

}

.logo-text h2{

    color:#031C13;
    font-size:24px;
    font-weight:700;

    line-height:1;

}

.logo-text span{

    color:#666;
    font-size:13px;

}

/*===================
NAVIGATION
===================*/

nav ul{

    display:flex;
    gap:35px;

}

nav a{

    color:#444;
    font-weight:500;

    transition:.3s;

    position:relative;

}

nav a:hover{

    color:#031C13;

}

nav a.active{

    color:#031C13;
    font-weight:600;

}

nav a.active::after{

    content:'';

    position:absolute;

    bottom:-10px;

    left:0;

    width:100%;

    height:3px;

    border-radius:20px;

    background:#031C13;

}

/*=====================
BUTTON
======================*/

.appointment-btn{

    background:#031C13;

    color:#fff;

    padding:14px 26px;

    border-radius:50px;

    display:flex;

    align-items:center;

    gap:10px;

    font-size:15px;

    transition:.35s;

}

.appointment-btn:hover{

    background:#06392a;

    transform:translateY(-2px);

}

/*====================
MENU BUTTON
=====================*/

.menu-btn{

    display:none;

    font-size:28px;

    cursor:pointer;

    color:#031C13;

}

/*=========================
RESPONSIVE
==========================*/

@media(max-width:992px){

nav{

    position:fixed;

    top:90px;

    right:-100%;

    width:300px;

    height:calc(100vh - 90px);

    background:#fff;

    transition:.4s;

    box-shadow:-10px 0 40px rgba(0,0,0,.08);

}

nav.active{

    right:0;

}

nav ul{

    flex-direction:column;

    padding:40px;

    gap:28px;

}

.menu-btn{

    display:block;

}

.appointment-btn{

    display:none;

}

}

@media(max-width:768px){



header .container{

    height:80px;

}

nav{

    top:80px;
    height:calc(100vh - 80px);

}

}












/*=========================
HERO
=========================*/

.hero{

    padding-top:150px;
    padding-bottom:90px;

    overflow:hidden;

    position:relative;

    background:

    linear-gradient(135deg,#f6faff,#ffffff);

}

.hero-container{

    display:grid;

    grid-template-columns:1fr 1fr;

    align-items:center;

    gap:70px;

}

.hero-content{

    animation:slideLeft 1s;

}

.hero-badge{

    display:inline-flex;

    align-items:center;

    gap:10px;

    padding:12px 22px;

    border-radius:50px;

    background:#eef7f4;

    color:#031C13;

    margin-bottom:30px;

    font-weight:600;

}

.hero h1{

    font-size:65px;

    line-height:1.15;

    color:#111;

}

.hero h1 span{

    color:#031C13;

}

.hero p{

    margin:30px 0;

    color:#666;

    font-size:18px;

    line-height:1.9;

}

.hero-buttons{

    display:flex;

    gap:20px;

}

.btn-primary{

    padding:18px 35px;

    background:#031C13;

    color:#fff;

    border-radius:50px;

    transition:.35s;

}

.btn-outline{

    padding:18px 35px;

    border:2px solid #031C13;

    color:#031C13;

    border-radius:50px;

}

.btn-primary:hover{

    transform:translateY(-6px);

}

.btn-outline:hover{

    background:#031C13;

    color:#fff;

}

.hero-image{

    position:relative;

    text-align:center;

}

.hero-image img{

    width:100%;
    max-width:580px;
    border-radius:10px;
    animation:float 5s ease-in-out infinite;

}

.floating-card{

    position:absolute;

    background:#fff;

    border-radius:20px;

    padding:18px;

    display:flex;

    gap:15px;

    align-items:center;

    box-shadow:0 20px 50px rgba(0,0,0,.08);

}

.card1{

    top:50px;
    left:-20px;

}

.card2{

    bottom:60px;
    right:-20px;

}

.floating-card i{

    width:55px;

    height:55px;

    border-radius:50%;

    background:#031C13;

    color:#fff;

    display:flex;

    justify-content:center;

    align-items:center;

}

/* Floating Shapes */

.hero-shape{

    position:absolute;

    border-radius:50%;

    background:#031C13;

    opacity:.05;

}

.shape1{

    width:320px;
    height:320px;

    top:-120px;
    right:-120px;

}

.shape2{

    width:150px;
    height:150px;

    bottom:120px;
    left:-70px;

}

.shape3{

    width:70px;
    height:70px;

    right:20%;
    top:25%;

}

/* Animations */

@keyframes float{

0%{

transform:translateY(0);

}

50%{

transform:translateY(-20px);

}

100%{

transform:translateY(0);

}

}

@keyframes slideLeft{

from{

opacity:0;

transform:translateX(-70px);

}

to{

opacity:1;

transform:none;

}

}

/* Mobile */

@media(max-width:992px){

.hero-container{

grid-template-columns:1fr;

text-align:center;

}

.hero h1{

font-size:45px;

}

.hero-buttons{

justify-content:center;


}

.btn-primary {
    padding: 8px 15px;
    
}

.hero-image{

margin-top:40px;

}

.card1{

left:0;

}

.card2{

right:0;

}

}

@media(max-width:576px){

.hero{

padding-top:120px;

}

.hero h1{

font-size:34px;

}

.hero p{

font-size:16px;

}

.btn-primary,
.btn-outline{

width:100%;
text-align:center;

}


.card1 {
    top: 150px;
    left: -20px;
}
}



.hidden{

opacity:0;

transform:translateY(80px);

transition:1s ease;

}

.show{

opacity:1;

transform:translateY(0);

}











/*============================
Statistics
=============================*/

.stats{

    margin-top:-55px;
    position:relative;
    z-index:50;

}

.stats-wrapper{

    background:#fff;

    border-radius:25px;

    display:grid;

    grid-template-columns:repeat(4,1fr);

    box-shadow:0 20px 60px rgba(0,0,0,.08);

    overflow:hidden;

    backdrop-filter:blur(20px);

}

.stat-card{

    display:flex;

    align-items:center;

    gap:18px;

    padding:28px;

    transition:.4s;

    position:relative;

}

.stat-card:not(:last-child){

    border-right:1px solid #f2f2f2;

}

.stat-card:hover{

    transform:translateY(-8px);

}

.icon{

    width:60px;
    height:60px;

    border-radius:50%;

    background:#ECF8F3;

    color:#031C13;

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:24px;

    flex-shrink:0;

}

.stat-card h2{

    font-size:32px;

    color:#031C13;

    font-weight:700;

}

.stat-card p{

    margin-top:5px;

    color:#777;

    font-size:15px;

}

/*============================
Responsive
=============================*/

@media(max-width:991px){

.stats-wrapper{

grid-template-columns:repeat(2,1fr);

}

.stat-card:nth-child(2){

border-right:none;

}

.stat-card{

border-bottom:1px solid #eee;

}

}

@media(max-width:600px){

.stats{

margin-top:30px;

}

.stats-wrapper{

grid-template-columns:1fr;

border-radius:18px;

}

.stat-card{

border-right:none !important;

padding:22px;

}

.stat-card:last-child{

border-bottom:none;

}

}









/*=========================
ABOUT
=========================*/

.about{

    padding:120px 0;
    background:#f8fbfa;
    position:relative;
    overflow:hidden;

}

.about::before{

    content:"";

    position:absolute;

    width:450px;
    height:450px;

    background:#031C13;
    opacity:.03;

    border-radius:50%;

    top:-150px;
    right:-120px;

}

.about-grid{

    display:grid;
    grid-template-columns:1fr 1fr;
    gap:80px;
    align-items:center;

}

.about-image{

    position:relative;

}

.about-image img{

    width:100%;
    border-radius:30px;
    transition:.6s;

    box-shadow:0 25px 60px rgba(0,0,0,.08);

}

.about-image:hover img{

    transform:scale(1.03);

}

.experience-card{

    position:absolute;

    bottom:30px;
    right:-30px;

    background:#031C13;
    color:#fff;

    padding:30px;

    border-radius:20px;

    text-align:center;

    box-shadow:0 20px 50px rgba(0,0,0,.15);

}

.experience-card h2{

    font-size:42px;

}

.section-tag{

    display:inline-block;

    padding:10px 18px;

    border-radius:30px;

    background:#ECF8F3;

    color:#031C13;

    font-weight:600;

    margin-bottom:20px;

}

.about-content h2{

    font-size:48px;

    line-height:1.2;

    margin-bottom:25px;

}

.about-content h2 span{

    color:#031C13;

}

.about-content p{

    color:#666;

    line-height:1.9;

    margin-bottom:35px;

}

.about-features{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:20px;

    margin-bottom:40px;

}

.feature{

    display:flex;

    align-items:center;

    gap:12px;

}

.feature i{

    color:#031C13;

    font-size:20px;

}

@media(max-width:992px){

.about-grid{

grid-template-columns:1fr;

}

.about-content{

text-align:center;

}

.about-features{

grid-template-columns:1fr;

}

.experience-card{

right:20px;

}

}









/*==========================================
        MEDICAL SERVICES
==========================================*/

.services{
    padding:60px 0;
    background:#f8fbfa;
}

.section-header{
    text-align:center;
    max-width:700px;
    margin:0 auto 30px;
}

.section-header h2{
    font-size:48px;
    color:#111;
    margin:5px 0;
}

.section-header h2 span{
    color:#031C13;
}

.section-header p{
    color:#666;
    line-height:1.8;
}

/*==============================
Grid
==============================*/

.services-slider{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:30px;

}

/*==============================
Card
==============================*/

.service-card{

    position:relative;

    overflow:hidden;

    border-radius:22px;

    background:#fff;

    box-shadow:0 15px 35px rgba(0,0,0,.08);

    transition:.4s;

    cursor:pointer;

}

.service-card:hover{

    transform:translateY(-10px);

    box-shadow:0 25px 50px rgba(0,0,0,.15);

}

/*==============================
Image
==============================*/

.service-card img{

    width:100%;

    height:260px;

    object-fit:cover;

    transition:.6s;

}

.service-card:hover img{

    transform:scale(1.08);

}

/*==============================
Overlay
==============================*/

.overlay{

    padding:30px;

    background:#fff;

}

.service-icon{

    width:60px;

    height:60px;

    border-radius:50%;

    background:#031C13;

    color:#fff;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:24px;

    margin-bottom:20px;

    transition:.4s;

}

.service-card:hover .service-icon{

    transform:rotate(12deg) scale(1.1);

}

.overlay h3{

    font-size:24px;

    color:#111;

    margin-bottom:15px;

}

.overlay p{

    color:#666;

    line-height:1.7;

    margin-bottom:25px;

}

.overlay a{

    display:inline-flex;

    align-items:center;

    gap:10px;

    color:#031C13;

    font-weight:600;

    transition:.3s;

}

.overlay a i{

    transition:.3s;

}

.overlay a:hover i{

    transform:translateX(6px);

}

/*==============================
Green Top Border
==============================*/

.service-card::before{

    content:"";

    position:absolute;

    top:0;

    left:0;

    width:100%;

    height:5px;

    background:#031C13;

    transform:scaleX(0);

    transition:.4s;

    transform-origin:left;

}

.service-card:hover::before{

    transform:scaleX(1);

}

/*==============================
Responsive
==============================*/

@media(max-width:1100px){

.services-slider{

grid-template-columns:repeat(2,1fr);

}

}

@media(max-width:768px){

.services{

padding:90px 0;

}

.section-header h2{

font-size:36px;

}

.services-slider{

grid-template-columns:1fr;

}

}











/*==========================================
        DOCTORS SECTION (Premium)
==========================================*/
.doctors {
    padding: 130px 0;
    background: #ffffff;
    position: relative;
    overflow: hidden;
}

.doctors::before {
    content: "";
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(3,28,19,0.04) 0%, transparent 70%);
    pointer-events: none;
}

.doctors-wrapper {
    position: relative;
    margin-top: 20px;
}

.doctors-track {
    display: flex;
    gap: 30px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 20px 10px 40px;
    scrollbar-width: none; /* Firefox */
}

.doctors-track::-webkit-scrollbar {
    display: none; /* Chrome/Safari */
}

/* Doctor Card */
.doctor-card {
    flex: 0 0 300px;
    background: #fff;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.07);
    transition: all 0.45s cubic-bezier(0.22, 1, 0.36, 1);
    border: 1px solid rgba(3,28,19,0.05);
}

.doctor-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 30px 60px rgba(3,28,19,0.12);
}

/* Image */
.doctor-img {
    position: relative;
    height: 320px;
    overflow: hidden;
}

.doctor-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.doctor-card:hover .doctor-img img {
    transform: scale(1.08);
}

/* Rating Badge */
.doctor-badge {
    position: absolute;
    top: 18px;
    right: 18px;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(8px);
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    color: #031C13;
    display: flex;
    align-items: center;
    gap: 5px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.doctor-badge i {
    color: #f5a623;
}

/* Info */
.doctor-info {
    padding: 28px 26px 32px;
    text-align: center;
}

.doctor-info h3 {
    font-size: 22px;
    color: #111;
    margin-bottom: 6px;
    font-weight: 700;
}

.specialty {
    display: inline-block;
    font-size: 14px;
    color: #031C13;
    background: rgba(3,28,19,0.07);
    padding: 5px 16px;
    border-radius: 50px;
    margin-bottom: 16px;
    font-weight: 500;
}

.rating {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3px;
    margin-bottom: 22px;
    color: #f5a623;
    font-size: 14px;
}

.rating span {
    color: #777;
    margin-left: 8px;
    font-size: 13px;
}

/* Button */
.btn-doctor {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 14px;
    background: #031C13;
    color: #fff;
    border-radius: 14px;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-doctor:hover {
    background: #0a3d2a;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(3,28,19,0.25);
}

/* Navigation Arrows */
.doctor-nav {
    position: absolute;
    top: 45%;
    transform: translateY(-50%);
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: #fff;
    border: none;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    color: #031C13;
    font-size: 18px;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.doctor-nav:hover {
    background: #031C13;
    color: #fff;
    transform: translateY(-50%) scale(1.08);
}

.doctor-nav.prev {
    left: -27px;
}

.doctor-nav.next {
    right: -27px;
}

/* CTA under doctors */
.doctors-cta {
    text-align: center;
    margin-top: 50px;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: #031C13;
    color: #fff;
    padding: 18px 40px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: #0a3d2a;
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(3,28,19,0.25);
}

.btn-primary i {
    transition: transform 0.3s ease;
}

.btn-primary:hover i {
    transform: translateX(5px);
}

/* Responsive */
@media (max-width: 1200px) {
    .doctor-nav.prev { left: 0; }
    .doctor-nav.next { right: 0; }
}

@media (max-width: 768px) {
    .doctors {
        padding: 90px 0;
    }
    .doctor-card {
        flex: 0 0 280px;
    }
    .doctor-img {
        height: 280px;
    }
    .doctor-nav {
        width: 46px;
        height: 46px;
        font-size: 16px;
    }
}








/*==========================================
        FACILITIES SECTION (Exact Match)
==========================================*/
.facilities {
    padding: 0;
    background: linear-gradient(90deg, #0a2540 0%, #123a5c 50%, #0d2e4a 100%);
}

.facilities-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
    padding: 70px 0;
}

/* Left Text */
.facilities-text {
    flex: 0 0 320px;
    color: #fff;
}

.facilities-text h2 {
    font-size: 32px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 18px;
    color: #fff;
}

.facilities-text p {
    font-size: 15px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.85);
    margin: 0;
    max-width: 280px;
}

/* Right Cards */
.facilities-cards {
    display: flex;
    gap: 18px;
    flex: 1;
    justify-content: flex-end;
}

/* Card */
.facility-card {
    flex: 1;
    max-width: 180px;
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.facility-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

/* Image */
.facility-img {
    height: 130px;
    overflow: hidden;
}

.facility-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.45s ease;
}

.facility-card:hover .facility-img img {
    transform: scale(1.08);
}

/* Label */
.facility-content {
    padding: 14px 10px;
    text-align: center;
    background: #fff;
}

.facility-content h3 {
    font-size: 14px;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0;
    line-height: 1.3;
}

/* Responsive */
@media (max-width: 1100px) {
    .facilities-inner {
        flex-direction: column;
        text-align: center;
        gap: 40px;
        padding: 60px 0;
    }

    .facilities-text {
        flex: none;
        max-width: 100%;
    }

    .facilities-text p {
        max-width: 100%;
        margin: 0 auto;
    }

    .facilities-cards {
        justify-content: center;
        flex-wrap: wrap;
    }

    .facility-card {
        max-width: 160px;
    }
}

@media (max-width: 600px) {
    .facilities-cards {
        gap: 12px;
    }

    .facility-card {
        max-width: 140px;
    }

    .facility-img {
        height: 110px;
    }

    .facilities-text h2 {
        font-size: 26px;
    }
}











/*==========================================
        NEWS & HEALTH TIPS
==========================================*/
.news {
    padding: 100px 0 120px;
    background: #f4f7fb;
}

.news-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 45px;
}

.news-header h2 {
    font-size: 32px;
    font-weight: 700;
    color: #111;
    margin: 0;
}

.news-header .view-all {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #031C13;
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.news-header .view-all i {
    transition: transform 0.3s ease;
}

.news-header .view-all:hover {
    color: #0a3d2a;
}

.news-header .view-all:hover i {
    transform: translateX(5px);
}

/* Grid */
.news-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
}

/* Card */
.news-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
    transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
    border: 1px solid rgba(3, 28, 19, 0.04);
    cursor: pointer;
}

.news-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 22px 45px rgba(3, 28, 19, 0.12);
}

/* Image */
.news-img {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.news-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.news-card:hover .news-img img {
    transform: scale(1.08);
}

/* Category Badge */
.news-category {
    position: absolute;
    left: 16px;
    bottom: 16px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(6px);
    color: #031C13;
    font-size: 12px;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: 50px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

/* Content */
.news-content {
    padding: 22px 20px 26px;
}

.news-content h3 {
    font-size: 17px;
    font-weight: 600;
    color: #111;
    line-height: 1.45;
    margin: 0 0 12px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-date {
    font-size: 13px;
    color: #888;
}

/* Responsive */
@media (max-width: 1100px) {
    .news-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .news {
        padding: 80px 0 90px;
    }

    .news-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }

    .news-header h2 {
        font-size: 26px;
    }

    .news-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }

    .news-img {
        height: 220px;
    }
}









/*==========================================
        FINAL CTA SECTION
==========================================*/
.cta {
    padding: 0;
    background: linear-gradient(90deg, #010B02 0%, #02210C 45%, #022110 100%);
    position: relative;
    overflow: hidden;
}

.cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    padding: 70px 0;
    position: relative;
    z-index: 2;
}

/* Left Side */
.cta-left {
    flex: 1;
    color: #fff;
}

.cta-left h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 14px;
    color: #fff;
    line-height: 1.25;
}

.cta-left p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 32px;
    max-width: 420px;
    line-height: 1.6;
}

/* Features */
.cta-features {
    display: flex;
    flex-wrap: wrap;
    gap: 28px;
}

.cta-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14.5px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.95);
}

.cta-feature i {
    width: 38px;
    height: 38px;
    background: rgba(255, 255, 255, 0.12);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: #fff;
}

/* Right Card */
.cta-card {
    background: #fff;
    border-radius: 24px;
    padding: 36px 40px;
    min-width: 340px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
    text-align: center;
}

.cta-card-label {
    display: block;
    font-size: 14px;
    color: #666;
    margin-bottom: 12px;
    font-weight: 500;
}

.cta-phone {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin-bottom: 28px;
}

.cta-phone i {
    width: 48px;
    height: 48px;
    background: #031C13;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.cta-phone a {
    font-size: 26px;
    font-weight: 700;
    color: #111;
    text-decoration: none;
    letter-spacing: -0.5px;
}

.cta-phone a:hover {
    color: #031C13;
}

/* Button */
.cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 100%;
    background: #031C13;
    color: #fff;
    padding: 16px 24px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.cta-btn:hover {
    background: #0a3d2a;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(3, 28, 19, 0.3);
}

.cta-btn i {
    transition: transform 0.3s ease;
}

.cta-btn:hover i {
    transform: translateX(5px);
}

/* Responsive */
@media (max-width: 992px) {
    .cta-inner {
        flex-direction: column;
        text-align: center;
        gap: 40px;
        padding: 60px 0;
    }

    .cta-left p {
        margin-left: auto;
        margin-right: auto;
    }

    .cta-features {
        justify-content: center;
    }

    .cta-card {
        min-width: 100%;
        max-width: 400px;
    }
}

@media (max-width: 576px) {
    .cta-left h2 {
        font-size: 28px;
    }

    .cta-phone a {
        font-size: 22px;
    }

    .cta-features {
        flex-direction: column;
        align-items: center;
        gap: 18px;
    }
}











/*==========================================
            PAGE HERO
==========================================*/

.page-hero{

    position:relative;
    padding: 120px 0;

    height:500px;

    display:flex;

    align-items:center;

    overflow:hidden;

    background:url("../images/laboratory.jpg") center center/cover no-repeat;

}

.hero-overlay{

    position:absolute;

    inset:0;

    background:linear-gradient(
        90deg,
        rgba(3,28,19,.92),
        rgba(3,28,19,.75),
        rgba(3,28,19,.45)
    );

}

.page-hero .container{

    position:relative;

    z-index:5;

}

.page-hero-content{

    max-width:650px;

    color:#fff;

    animation:fadeUp 1s ease;

}

.page-tag{

    display:inline-flex;

    align-items:center;

    gap:10px;

    background:rgba(255,255,255,.12);

    backdrop-filter:blur(12px);

    padding:12px 22px;

    border-radius:50px;

    font-weight:500;

    margin-bottom:25px;

}

.page-tag i{

    color:#4ade80;

}

.page-hero h1{

    font-size:60px;

    line-height:1.15;

    margin-bottom:20px;

}

.page-hero h1 span{

    color:#7ee0b8;

}

.page-hero p{

    font-size:18px;

    line-height:1.9;

    color:#f2f2f2;

    margin-bottom:35px;

}

.breadcrumb{

    display:flex;

    align-items:center;

    gap:15px;

}

.breadcrumb a{

    color:#fff;

    font-weight:600;

}

.breadcrumb span{

    color:#7ee0b8;

}

.breadcrumb h5{

    color:#7ee0b8;

    font-size:16px;

    font-weight:500;

}

/*=============================
Floating Circles
=============================*/

.floating-circle{

    position:absolute;

    border-radius:50%;

    background:rgba(255,255,255,.08);

    animation:float 7s ease-in-out infinite;

}

.circle-one{

    width:220px;

    height:220px;

    top:-60px;

    right:120px;

}

.circle-two{

    width:120px;

    height:120px;

    bottom:40px;

    right:350px;

    animation-delay:2s;

}

/*=============================
Animations
=============================*/

@keyframes fadeUp{

    from{

        opacity:0;

        transform:translateY(50px);

    }

    to{

        opacity:1;

        transform:translateY(0);

    }

}

@keyframes float{

    0%,100%{

        transform:translateY(0);

    }

    50%{

        transform:translateY(-20px);

    }

}

/*=============================
Responsive
=============================*/

@media(max-width:992px){

.page-hero{

height:420px;

}

.page-hero h1{

font-size:48px;

}

}

@media(max-width:768px){

.page-hero{

height:380px;

text-align:center;

}

.page-hero-content{

margin:auto;

}

.breadcrumb{

justify-content:center;

}

.page-hero h1{

font-size:38px;

}

.page-hero p{

font-size:16px;

}

}

@media(max-width:576px){

.page-hero{

height:340px;

}

.page-tag{

font-size:14px;

padding:10px 18px;

}

.page-hero h1{

font-size:30px;

}
.page-hero{

    position:relative;
    padding: 120px 0;

    height:500px;

}
}












/*==========================================
        WHO WE ARE
==========================================*/
.who-we-are {
    padding: 120px 0;
    background: #ffffff;
}

.who-we-are-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
}

/* Image Side */
.who-image {
    position: relative;
}

.who-image img {
    width: 100%;
    height: 560px;
    object-fit: cover;
    border-radius: 24px;
    box-shadow: 0 25px 60px rgba(3, 28, 19, 0.12);
}

/* Experience Badge */
.experience-badge {
    position: absolute;
    bottom: 30px;
    left: 30px;
    background: #031C13;
    color: #fff;
    padding: 22px 28px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    gap: 16px;
    box-shadow: 0 15px 40px rgba(3, 28, 19, 0.3);
}

.experience-badge .number {
    font-size: 42px;
    font-weight: 700;
    line-height: 1;
}

.experience-badge .text {
    font-size: 14px;
    font-weight: 500;
    line-height: 1.4;
    opacity: 0.9;
}

/* Content Side */
.who-content .section-tag {
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    color: #031C13;
    background: rgba(3, 28, 19, 0.08);
    padding: 6px 16px;
    border-radius: 50px;
    margin-bottom: 18px;
}

.who-content h2 {
    font-size: 40px;
    font-weight: 700;
    color: #111;
    line-height: 1.25;
    margin-bottom: 24px;
}

.who-content h2 span {
    color: #031C13;
}

.who-content > p {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 18px;
}

/* Features */
.who-features {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.who-feature {
    display: flex;
    align-items: flex-start;
    gap: 18px;
}

.who-feature .icon {
    width: 52px;
    height: 52px;
    min-width: 52px;
    background: rgba(3, 28, 19, 0.08);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #031C13;
    font-size: 20px;
}

.who-feature h4 {
    font-size: 17px;
    font-weight: 600;
    color: #111;
    margin-bottom: 4px;
}

.who-feature p {
    font-size: 14.5px;
    color: #666;
    margin: 0;
    line-height: 1.5;
}

/* Responsive */
@media (max-width: 992px) {
    .who-we-are-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .who-image img {
        height: 420px;
    }

    .who-content h2 {
        font-size: 32px;
    }
}

@media (max-width: 576px) {
    .who-we-are {
        padding: 90px 0;
    }

    .who-image img {
        height: 360px;
    }

    .experience-badge {
        bottom: 20px;
        left: 20px;
        padding: 16px 20px;
    }

    .experience-badge .number {
        font-size: 32px;
    }
}









/*==========================================
        VISION, MISSION & VALUES
==========================================*/
.vmv {
    padding: 120px 0;
    background: #f8fbfa;
}

.vmv .section-header {
    text-align: center;
    max-width: 650px;
    margin: 0 auto 60px;
}

.vmv .section-header h2 {
    font-size: 40px;
    color: #111;
    margin: 16px 0;
}

.vmv .section-header h2 span {
    color: #031C13;
}

.vmv .section-header p {
    color: #666;
    font-size: 16px;
    line-height: 1.7;
}

/* Main 3 Cards */
.vmv-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 70px;
}

.vmv-card {
    background: #fff;
    border-radius: 22px;
    padding: 45px 35px;
    text-align: center;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
    border: 1px solid rgba(3, 28, 19, 0.04);
}

.vmv-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(3, 28, 19, 0.1);
}

.vmv-icon {
    width: 70px;
    height: 70px;
    background: rgba(3, 28, 19, 0.08);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: #031C13;
    font-size: 28px;
    transition: all 0.3s ease;
}

.vmv-card:hover .vmv-icon {
    background: #031C13;
    color: #fff;
}

.vmv-card h3 {
    font-size: 22px;
    font-weight: 700;
    color: #111;
    margin-bottom: 16px;
}

.vmv-card p {
    font-size: 15px;
    line-height: 1.75;
    color: #666;
    margin: 0;
}


/* Core Values */
.core-values {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 24px;
}

.core-value {
    background: #fff;
    border-radius: 18px;
    padding: 30px 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
}

.core-value:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(3, 28, 19, 0.1);
}

.core-icon {
    width: 54px;
    height: 54px;
    background: rgba(3, 28, 19, 0.08);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
    color: #031C13;
    font-size: 22px;
}

.core-value h4 {
    font-size: 16px;
    font-weight: 600;
    color: #111;
    margin-bottom: 6px;
}

.core-value p {
    font-size: 13.5px;
    color: #777;
    margin: 0;
    line-height: 1.5;
}

/*========== Responsive + Mobile Slider ==========*/
@media (max-width: 1100px) {
    .core-values {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 900px) {
    .vmv-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
        margin-bottom: 50px;
    }

    .core-values {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        gap: 18px;
        padding-bottom: 15px;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none; /* Firefox */
    }

    .core-values::-webkit-scrollbar {
        display: none; /* Chrome, Safari */
    }

    .core-value {
        flex: 0 0 200px;
        scroll-snap-align: start;
    }
}

@media (max-width: 700px) {
    .vmv {
        padding: 90px 0;
    }

    .vmv .section-header h2 {
        font-size: 32px;
    }
}

@media (max-width: 480px) {
    .core-value {
        flex: 0 0 180px;
        padding: 26px 16px;
    }

    .core-icon {
        width: 48px;
        height: 48px;
        font-size: 20px;
    }
}








/*==========================================
        TEAM MEMBERS
==========================================*/
.team {
    padding: 120px 0;
    background: #ffffff;
}

.team .section-header {
    text-align: center;
    max-width: 650px;
    margin: 0 auto 60px;
}

.team .section-header h2 {
    font-size: 40px;
    color: #111;
    margin: 16px 0;
}

.team .section-header h2 span {
    color: #031C13;
}

.team .section-header p {
    color: #666;
    font-size: 16px;
    line-height: 1.7;
}

/* Grid */
.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

/* Card */
.team-card {
    background: #fff;
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06);
    transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
    border: 1px solid rgba(3, 28, 19, 0.04);
}

.team-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 30px 60px rgba(3, 28, 19, 0.12);
}

/* Image */
.team-img {
    position: relative;
    height: 300px;
    overflow: hidden;
}

.team-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.team-card:hover .team-img img {
    transform: scale(1.08);
}

/* Social Icons */
.team-social {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(3, 28, 19, 0.85), transparent);
    display: flex;
    justify-content: center;
    gap: 12px;
    padding: 25px 15px 20px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease;
}

.team-card:hover .team-social {
    opacity: 1;
    transform: translateY(0);
}

.team-social a {
    width: 40px;
    height: 40px;
    background: #fff;
    color: #031C13;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.team-social a:hover {
    background: #031C13;
    color: #fff;
    transform: translateY(-3px);
}

/* Info */
.team-info {
    padding: 28px 24px 32px;
    text-align: center;
}

.team-info h3 {
    font-size: 20px;
    font-weight: 700;
    color: #111;
    margin-bottom: 6px;
}

.team-info .position {
    display: inline-block;
    font-size: 13.5px;
    font-weight: 500;
    color: #031C13;
    background: rgba(3, 28, 19, 0.08);
    padding: 5px 14px;
    border-radius: 50px;
    margin-bottom: 14px;
}

.team-info p {
    font-size: 14.5px;
    color: #666;
    line-height: 1.65;
    margin: 0;
}

/* Responsive */
@media (max-width: 1100px) {
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .team {
        padding: 90px 0;
    }

    .team .section-header h2 {
        font-size: 32px;
    }

    .team-grid {
        grid-template-columns: 1fr;
        max-width: 380px;
        margin: 0 auto;
    }

    .team-img {
        height: 320px;
    }
}









/*==========================================
        STATISTICS
==========================================*/
.stats {
    padding: 100px 0;
    background: linear-gradient(135deg, #031C13 0%, #0a3d2a 100%);
    position: relative;
    overflow: hidden;
}

.stats::before {
    content: "";
    position: absolute;
    inset: 0;
    background: url('images/pattern.png') center/cover;
    opacity: 0.04;
    pointer-events: none;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
    position: relative;
    z-index: 2;
}

.stat-card {
    text-align: center;
    padding: 35px 15px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.35s ease;
}

.stat-card:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateY(-8px);
}

.stat-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.12);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: #fff;
    font-size: 24px;
}

.stat-card h3 {
    font-size: 42px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px;
    line-height: 1;
}

.stat-card p {
    font-size: 14.5px;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
    font-weight: 500;
}

/*========== Responsive + Mobile Slider ==========*/
@media (max-width: 1200px) {
    .stats-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 24px;
    }
}

@media (max-width: 900px) {
    .stats {
        padding: 80px 0;
    }

    .stats-grid {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        gap: 18px;
        padding-bottom: 15px;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none; /* Firefox */
    }

    .stats-grid::-webkit-scrollbar {
        display: none; /* Chrome, Safari */
    }

    .stat-card {
        flex: 0 0 220px;
        scroll-snap-align: start;
        padding: 30px 18px;
    }

    .stat-card h3 {
        font-size: 36px;
    }
}

@media (max-width: 480px) {
    .stat-card {
        flex: 0 0 190px;
    }

    .stat-card h3 {
        font-size: 32px;
    }

    .stat-icon {
        width: 52px;
        height: 52px;
        font-size: 20px;
    }
}





















/*==========================================
            SERVICES HERO
==========================================*/

.services-hero{

    position:relative;

    height:550px;

    display:flex;

    align-items:center;

    overflow:hidden;

    background:url("../images/hospital.jpg") center center/cover no-repeat;

}

.services-hero .hero-overlay{

    position:absolute;

    inset:0;

    background:linear-gradient(
        90deg,
        rgba(3,28,19,.92),
        rgba(3,28,19,.75),
        rgba(3,28,19,.45)
    );

}

.services-hero .container{

    position:relative;

    z-index:10;

}

.page-hero-content{

    max-width:700px;

    color:#fff;

}

.page-tag{

    display:inline-flex;

    align-items:center;

    gap:10px;

    padding:12px 22px;

    border-radius:50px;

    background:rgba(255,255,255,.12);

    backdrop-filter:blur(10px);

    margin-bottom:25px;

}

.page-tag i{

    color:#80ffbf;

}

.page-hero-content h1{

    font-size:62px;

    line-height:1.15;

    margin-bottom:20px;

}

.page-hero-content h1 span{

    color:#6ee7b7;

}

.page-hero-content p{

    font-size:18px;

    line-height:1.9;

    color:#f5f5f5;

    margin-bottom:35px;

}

/*==========================
Buttons
==========================*/

.hero-buttons{

    display:flex;

    gap:20px;

    margin-bottom:40px;

}

.btn-outline-light{

    padding:16px 34px;

    border:2px solid rgba(255,255,255,.4);

    color:#fff;

    border-radius:50px;

    transition:.4s;

}

.btn-outline-light:hover{

    background:#fff;

    color:#031C13;

}

/*==========================
Breadcrumb
==========================*/

.breadcrumb{

    display:flex;

    align-items:center;

    gap:15px;

}

.breadcrumb a{

    color:#fff;

    font-weight:600;

}

.breadcrumb h5{

    color:#7ee0b8;

    font-size:16px;

    font-weight:500;

}

/*==========================
Floating Shapes
==========================*/

.floating-circle{

    position:absolute;

    border-radius:50%;

    background:rgba(255,255,255,.08);

    animation:float 7s ease-in-out infinite;

}

.circle-one{

    width:220px;

    height:220px;

    top:-60px;

    right:120px;

}

.circle-two{

    width:140px;

    height:140px;

    bottom:60px;

    right:300px;

    animation-delay:2s;

}

/*==========================
Responsive
==========================*/

@media(max-width:992px){

.services-hero{

height:480px;

}

.page-hero-content h1{

font-size:48px;

}

}

@media(max-width:768px){

.services-hero{

height:420px;

text-align:center;

}

.page-hero-content{

margin:auto;

}

.hero-buttons{

justify-content:center;

flex-wrap:wrap;

}

.breadcrumb{

justify-content:center;

}

.page-hero-content h1{

font-size:38px;

}

.page-hero-content p{

font-size:16px;

}

}

@media(max-width:576px){

.services-hero{

height:380px;

}

.page-hero-content h1{

font-size:30px;

}



.hero-buttons a{

width:100%;

text-align:center;

}
.services-hero{


    height:550px;

}

}








/*==========================================
        ALL MEDICAL SERVICES
==========================================*/
.services-list {
    padding: 60px 0;
    background: #f8fbfa;
}

.services-list .section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.services-list .section-header h2 {
    font-size: 40px;
    color: #111;
    margin: 16px 0;
}

.services-list .section-header h2 span {
    color: #031C13;
}

.services-list .section-header p {
    color: #666;
    font-size: 16px;
    line-height: 1.7;
}

/* Grid */
.services-list-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
}

/* Card */
.service-item {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
    border: 1px solid rgba(3, 28, 19, 0.04);
}

.service-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(3, 28, 19, 0.12);
}

/* Image */
.service-item-img {
    height: 200px;
    overflow: hidden;
}

.service-item-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-item:hover .service-item-img img {
    transform: scale(1.08);
}

/* Content */
.service-item-content {
    padding: 28px 24px 30px;
    position: relative;
}

.service-item-icon {
    width: 52px;
    height: 52px;
    background: #031C13;
    color: #fff;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin-bottom: 18px;
    transition: all 0.3s ease;
}

.service-item:hover .service-item-icon {
    transform: rotate(8deg) scale(1.08);
}

.service-item-content h3 {
    font-size: 19px;
    font-weight: 700;
    color: #111;
    margin-bottom: 12px;
}

.service-item-content p {
    font-size: 14.5px;
    color: #666;
    line-height: 1.7;
    margin-bottom: 20px;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    color: #031C13;
    text-decoration: none;
    transition: all 0.3s ease;
}

.service-link i {
    transition: transform 0.3s ease;
}

.service-link:hover i {
    transform: translateX(5px);
}

/* Responsive */
@media (max-width: 1200px) {
    .services-list-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 900px) {
    .services-list-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .services-list {
        padding: 90px 0;
    }

    .services-list .section-header h2 {
        font-size: 32px;
    }

    .services-list-grid {
        grid-template-columns: 1fr;
        max-width: 420px;
        margin: 0 auto;
    }

    .service-item-img {
        height: 220px;
    }
}












/*==========================================
        PATIENT TESTIMONIALS
==========================================*/
.testimonials {
    padding: 60px 0;
    background: #ffffff;
}

.testimonials .section-header {
    text-align: center;
    max-width: 650px;
    margin: 0 auto 60px;
}

.testimonials .section-header h2 {
    font-size: 40px;
    color: #111;
    margin: 16px 0;
}

.testimonials .section-header h2 span {
    color: #031C13;
}

.testimonials .section-header p {
    color: #666;
    font-size: 16px;
    line-height: 1.7;
}

/* Grid */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
}

/* Card */
.testimonial-card {
    background: #f8fbfa;
    border-radius: 22px;
    padding: 35px 28px;
    transition: all 0.4s ease;
    border: 1px solid rgba(3, 28, 19, 0.04);
    display: flex;
    flex-direction: column;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 45px rgba(3, 28, 19, 0.1);
    background: #fff;
}

/* Rating */
.testimonial-rating {
    color: #f5a623;
    font-size: 14px;
    margin-bottom: 18px;
    display: flex;
    gap: 3px;
}

/* Text */
.testimonial-text {
    font-size: 15px;
    line-height: 1.75;
    color: #444;
    margin-bottom: 28px;
    flex-grow: 1;
}

/* Author */
.testimonial-author {
    display: flex;
    align-items: center;
    gap: 14px;
}

.testimonial-author img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #031C13;
}

.testimonial-author h4 {
    font-size: 16px;
    font-weight: 600;
    color: #111;
    margin-bottom: 3px;
}

.testimonial-author span {
    font-size: 13px;
    color: #031C13;
    font-weight: 500;
}

/*========== Responsive + Mobile Slider ==========*/
@media (max-width: 1200px) {
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 900px) {
    .testimonials {
        padding: 90px 0;
    }

    .testimonials .section-header h2 {
        font-size: 32px;
    }

    .testimonials-grid {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        gap: 20px;
        padding-bottom: 15px;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none; /* Firefox */
    }

    .testimonials-grid::-webkit-scrollbar {
        display: none; /* Chrome, Safari */
    }

    .testimonial-card {
        flex: 0 0 320px;
        scroll-snap-align: start;
    }
}

@media (max-width: 480px) {
    .testimonial-card {
        flex: 0 0 290px;
        padding: 30px 24px;
    }
}











/*==========================================
            DOCTORS HERO
==========================================*/

.doctors-hero{

    position:relative;

    height:550px;

    display:flex;

    align-items:center;

    overflow:hidden;

    background:url("../images/pharmacy.jpg") center center/cover no-repeat;

}

.doctors-hero .hero-overlay{

    position:absolute;

    inset:0;

    background:linear-gradient(
        90deg,
        rgba(3,28,19,.92),
        rgba(3,28,19,.75),
        rgba(3,28,19,.35)
    );

}

.doctors-hero .container{

    position:relative;

    z-index:10;

}

.page-hero-content{

    max-width:720px;

    color:#fff;

    animation:fadeUp .8s ease;

}

.page-tag{

    display:inline-flex;

    align-items:center;

    gap:10px;

    padding:12px 22px;

    background:rgba(255,255,255,.12);

    backdrop-filter:blur(12px);

    border-radius:50px;

    margin-bottom:25px;

    color:#fff;

    font-weight:500;

}

.page-tag i{

    color:#7ee0b8;

}

.page-hero-content h1{

    font-size:60px;

    line-height:1.15;

    margin-bottom:20px;

}

.page-hero-content h1 span{

    color:#7ee0b8;

}

.page-hero-content p{

    font-size:18px;

    line-height:1.9;

    color:#f5f5f5;

    max-width:650px;

    margin-bottom:35px;

}

/*==================================
Buttons
==================================*/

.hero-buttons{

    display:flex;

    gap:20px;

    margin-bottom:35px;

}

.btn-outline-light{

    padding:15px 34px;

    border:2px solid rgba(255,255,255,.35);

    color:#fff;

    border-radius:50px;

    transition:.35s;

}

.btn-outline-light:hover{

    background:#fff;

    color:#031C13;

}

/*==================================
Breadcrumb
==================================*/

.breadcrumb{

    display:flex;

    align-items:center;

    gap:15px;

}

.breadcrumb a{

    color:#fff;

    font-weight:600;

}

.breadcrumb span{

    color:#7ee0b8;

}

.breadcrumb h5{

    color:#7ee0b8;

    font-weight:500;

}

/*==================================
Floating Circles
==================================*/

.floating-circle{

    position:absolute;

    border-radius:50%;

    background:rgba(255,255,255,.08);

    animation:float 7s ease-in-out infinite;

}

.circle-one{

    width:230px;

    height:230px;

    top:-60px;

    right:120px;

}

.circle-two{

    width:140px;

    height:140px;

    bottom:60px;

    right:320px;

    animation-delay:2s;

}

/*==================================
Animations
==================================*/

@keyframes fadeUp{

    from{

        opacity:0;

        transform:translateY(40px);

    }

    to{

        opacity:1;

        transform:translateY(0);

    }

}

@keyframes float{

    0%,100%{

        transform:translateY(0);

    }

    50%{

        transform:translateY(-20px);

    }

}

/*==================================
Responsive
==================================*/

@media(max-width:992px){

.doctors-hero{

height:470px;

}

.page-hero-content h1{

font-size:48px;

}

}

@media(max-width:768px){

.doctors-hero{

height:420px;

text-align:center;

}

.page-hero-content{

margin:auto;

}

.hero-buttons{

justify-content:center;

flex-wrap:wrap;

}

.breadcrumb{

justify-content:center;

}

.page-hero-content h1{

font-size:38px;

}

.page-hero-content p{

font-size:16px;

}

}

@media(max-width:576px){

.doctors-hero{

height:380px;

}

.page-hero-content h1{

font-size:30px;

}

.hero-buttons{

flex-direction:column;

}

.hero-buttons a{

width:100%;

text-align:center;

}

.doctors-hero{

    position:relative;

    height:550px;


}

}






/*==========================================
        FIND YOUR SPECIALIST
==========================================*/
.find-doctor {
    padding: 120px 0;
    background: #f8fbfa;
}

.find-doctor .section-header {
    text-align: center;
    max-width: 650px;
    margin: 0 auto 50px;
}

.find-doctor .section-header h2 {
    font-size: 40px;
    color: #111;
    margin: 16px 0;
}

.find-doctor .section-header h2 span {
    color: #031C13;
}

.find-doctor .section-header p {
    color: #666;
    font-size: 16px;
    line-height: 1.7;
}

/* Filter Bar */
.doctor-filters {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 16px;
    margin-bottom: 50px;
    background: #fff;
    padding: 20px;
    border-radius: 18px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.filter-group {
    position: relative;
}

.filter-group.search-group i {
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    color: #031C13;
    font-size: 15px;
}

.filter-group input,
.filter-group select {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    font-size: 14.5px;
    font-family: inherit;
    color: #333;
    background: #f9fafb;
    outline: none;
    transition: all 0.3s ease;
    appearance: none;
}

.filter-group.search-group input {
    padding-left: 45px;
}

.filter-group input:focus,
.filter-group select:focus {
    border-color: #031C13;
    background: #fff;
    box-shadow: 0 0 0 3px rgba(3, 28, 19, 0.08);
}

.filter-group select {
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23031C13' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
}

/* Doctors Grid */
.doctors-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
}

/* Doctor Card */
.doctor-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 12px 35px rgba(0,0,0,0.06);
    transition: all 0.4s ease;
    border: 1px solid rgba(3,28,19,0.04);
}

.doctor-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(3,28,19,0.12);
}

.doctor-card.hide {
    display: none;
}

.doctor-img {
    position: relative;
    height: 260px;
    overflow: hidden;
}

.doctor-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.doctor-card:hover .doctor-img img {
    transform: scale(1.08);
}

.availability {
    position: absolute;
    top: 16px;
    left: 16px;
    background: rgba(255,255,255,0.95);
    color: #555;
    font-size: 12px;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: 50px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.availability.available {
    background: #031C13;
    color: #fff;
}

.availability.online {
    background: #0ea5e9;
    color: #fff;
}

.doctor-info {
    padding: 24px 22px 28px;
    text-align: center;
}

.doctor-info h3 {
    font-size: 18px;
    font-weight: 700;
    color: #111;
    margin-bottom: 6px;
}

.specialty {
    display: inline-block;
    font-size: 13px;
    color: #031C13;
    background: rgba(3,28,19,0.08);
    padding: 4px 14px;
    border-radius: 50px;
    margin-bottom: 14px;
    font-weight: 500;
}

.doctor-meta {
    display: flex;
    justify-content: center;
    gap: 18px;
    margin-bottom: 20px;
    font-size: 13.5px;
    color: #666;
}

.doctor-meta i {
    color: #f5a623;
    margin-right: 4px;
}

.doctor-meta span:last-child i {
    color: #031C13;
}

.btn-doctor {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 13px;
    background: #031C13;
    color: #fff;
    border-radius: 12px;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-doctor:hover {
    background: #0a3d2a;
    transform: translateY(-2px);
}

/* No Results */
.no-results {
    text-align: center;
    padding: 80px 20px;
    color: #666;
}

.no-results i {
    font-size: 50px;
    color: #031C13;
    margin-bottom: 20px;
    opacity: 0.5;
}

.no-results h3 {
    font-size: 22px;
    color: #111;
    margin-bottom: 8px;
}

/* Responsive */
@media (max-width: 1200px) {
    .doctors-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 900px) {
    .doctor-filters {
        grid-template-columns: 1fr 1fr;
    }

    .doctors-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .find-doctor {
        padding: 90px 0;
    }

    .find-doctor .section-header h2 {
        font-size: 32px;
    }

    .doctor-filters {
        grid-template-columns: 1fr;
    }

    .doctors-grid {
        grid-template-columns: 1fr;
        max-width: 380px;
        margin: 0 auto;
    }
}






/*==========================================
        PATIENT TESTIMONIALS
==========================================*/
.testimonials {
    padding: 120px 0;
    background: #ffffff;
}

.testimonials .section-header {
    text-align: center;
    max-width: 650px;
    margin: 0 auto 60px;
}

.testimonials .section-header h2 {
    font-size: 40px;
    color: #111;
    margin: 16px 0;
}

.testimonials .section-header h2 span {
    color: #031C13;
}

.testimonials .section-header p {
    color: #666;
    font-size: 16px;
    line-height: 1.7;
}

/* Grid */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
}

/* Card */
.testimonial-card {
    background: #f8fbfa;
    border-radius: 22px;
    padding: 35px 28px;
    transition: all 0.4s ease;
    border: 1px solid rgba(3, 28, 19, 0.04);
    display: flex;
    flex-direction: column;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 45px rgba(3, 28, 19, 0.1);
    background: #fff;
}

/* Rating */
.testimonial-rating {
    color: #f5a623;
    font-size: 14px;
    margin-bottom: 18px;
    display: flex;
    gap: 3px;
}

/* Text */
.testimonial-text {
    font-size: 15px;
    line-height: 1.75;
    color: #444;
    margin-bottom: 28px;
    flex-grow: 1;
}

/* Author */
.testimonial-author {
    display: flex;
    align-items: center;
    gap: 14px;
}

.testimonial-author img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #031C13;
}

.testimonial-author h4 {
    font-size: 16px;
    font-weight: 600;
    color: #111;
    margin-bottom: 3px;
}

.testimonial-author span {
    font-size: 13px;
    color: #031C13;
    font-weight: 500;
}

/*========== Responsive + Mobile Slider ==========*/
@media (max-width: 1200px) {
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 900px) {
    .testimonials {
        padding: 90px 0;
    }

    .testimonials .section-header h2 {
        font-size: 32px;
    }

    .testimonials-grid {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        gap: 20px;
        padding-bottom: 15px;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }

    .testimonials-grid::-webkit-scrollbar {
        display: none;
    }

    .testimonial-card {
        flex: 0 0 320px;
        scroll-snap-align: start;
    }
}

@media (max-width: 480px) {
    .testimonial-card {
        flex: 0 0 290px;
        padding: 30px 24px;
    }
}





/*==========================================
        DOCTORS PAGE CTA
==========================================*/
.doctors-cta {
    padding: 0;
    background: linear-gradient(90deg, #031C13 0%, #0a3d2a 50%, #031C13 100%);
    position: relative;
    overflow: hidden;
}

.doctors-cta .cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    padding: 80px 0;
    position: relative;
    z-index: 2;
}

.doctors-cta .cta-left {
    flex: 1;
    color: #fff;
}

.doctors-cta .cta-left h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #fff;
    line-height: 1.25;
}

.doctors-cta .cta-left p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 32px;
    max-width: 480px;
    line-height: 1.7;
}

.doctors-cta .cta-features {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
}

.doctors-cta .cta-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14.5px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.95);
}

.doctors-cta .cta-feature i {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.12);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: #fff;
}

/* Right Card */
.doctors-cta .cta-card {
    background: #fff;
    border-radius: 24px;
    padding: 40px 42px;
    min-width: 340px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.25);
    text-align: center;
}

.doctors-cta .cta-card-label {
    display: block;
    font-size: 14px;
    color: #666;
    margin-bottom: 14px;
    font-weight: 500;
}

.doctors-cta .cta-phone {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin-bottom: 28px;
}

.doctors-cta .cta-phone i {
    width: 50px;
    height: 50px;
    background: #031C13;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.doctors-cta .cta-phone a {
    font-size: 26px;
    font-weight: 700;
    color: #111;
    text-decoration: none;
    letter-spacing: -0.5px;
}

.doctors-cta .cta-phone a:hover {
    color: #031C13;
}

.doctors-cta .cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 100%;
    background: #031C13;
    color: #fff;
    padding: 16px 24px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.doctors-cta .cta-btn:hover {
    background: #0a3d2a;
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(3, 28, 19, 0.3);
}

.doctors-cta .cta-btn i {
    transition: transform 0.3s ease;
}

.doctors-cta .cta-btn:hover i {
    transform: translateX(5px);
}

/* Responsive */
@media (max-width: 992px) {
    .doctors-cta .cta-inner {
        flex-direction: column;
        text-align: center;
        gap: 40px;
        padding: 70px 0;
    }

    .doctors-cta .cta-left p {
        margin-left: auto;
        margin-right: auto;
    }

    .doctors-cta .cta-features {
        justify-content: center;
    }

    .doctors-cta .cta-card {
        min-width: 100%;
        max-width: 400px;
    }
}

@media (max-width: 576px) {
    .doctors-cta .cta-left h2 {
        font-size: 28px;
    }

    .doctors-cta .cta-phone a {
        font-size: 22px;
    }

    .doctors-cta .cta-features {
        flex-direction: column;
        align-items: center;
        gap: 16px;
    }
}



















/*==========================================
            FACILITIES HERO
==========================================*/

.facilities-hero{

    position:relative;

    display:flex;

    align-items:center;

    min-height:560px;

    background:url("../images/hospital.jpg") center center/cover no-repeat;

    overflow:hidden;

}

.facilities-hero .hero-overlay{

    position:absolute;

    inset:0;

    background:linear-gradient(
        90deg,
        rgba(3,28,19,.95),
        rgba(3,28,19,.82),
        rgba(3,28,19,.35)
    );

}

.facilities-hero .container{

    position:relative;

    z-index:2;

}

.page-hero-content{

    max-width:700px;

    color:#fff;

    animation:heroFade .8s ease;

}

.page-tag{

    display:inline-flex;

    align-items:center;

    gap:10px;

    padding:12px 24px;

    border-radius:50px;

    background:rgba(255,255,255,.12);

    backdrop-filter:blur(12px);

    margin-bottom:25px;

    font-size:15px;

    font-weight:600;

}

.page-tag i{

    color:#7EE0B8;

}

.page-hero-content h1{

    font-size:64px;

    line-height:1.15;

    margin-bottom:20px;

    color:#fff;

}

.page-hero-content h1 span{

    color:#7EE0B8;

}

.page-hero-content p{

    font-size:18px;

    line-height:1.9;

    color:#f3f3f3;

    margin-bottom:40px;

}

.hero-buttons{

    display:flex;

    align-items:center;

    gap:18px;

    margin-bottom:40px;

}

.btn-outline-light{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    padding:16px 34px;

    border-radius:50px;

    border:2px solid rgba(255,255,255,.35);

    color:#fff;

    transition:.35s;

}

.btn-outline-light:hover{

    background:#fff;

    color:#031C13;

}

.breadcrumb{

    display:flex;

    align-items:center;

    gap:12px;

    flex-wrap:wrap;

}

.breadcrumb a{

    color:#fff;

    font-weight:600;

}

.breadcrumb span{

    color:#7EE0B8;

}

.breadcrumb h5{

    color:#7EE0B8;

    font-size:16px;

    font-weight:500;

    margin:0;

}

/*============================
Floating Shapes
============================*/

.floating-circle{

    position:absolute;

    border-radius:50%;

    background:rgba(255,255,255,.08);

    animation:float 7s ease-in-out infinite;

}

.circle-one{

    width:230px;

    height:230px;

    top:-70px;

    right:90px;

}

.circle-two{

    width:140px;

    height:140px;

    bottom:60px;

    right:320px;

    animation-delay:2s;

}

/*============================
Animations
============================*/

@keyframes heroFade{

    from{

        opacity:0;

        transform:translateY(40px);

    }

    to{

        opacity:1;

        transform:translateY(0);

    }

}

@keyframes float{

    0%,100%{

        transform:translateY(0);

    }

    50%{

        transform:translateY(-18px);

    }

}

/*=================================
Responsive
=================================*/

@media(max-width:992px){

    .facilities-hero{

        min-height:480px;

    }

    .page-hero-content{

        max-width:600px;

    }

    .page-hero-content h1{

        font-size:48px;

    }

}

@media(max-width:768px){

    .facilities-hero{

        min-height:430px;

        text-align:center;

        padding:50px 0 70px;

    }

    .page-hero-content{

        margin:auto;

    }

    .page-hero-content h1{

        font-size:38px;

    }

    .page-hero-content p{

        font-size:16px;

    }

    .hero-buttons{

        justify-content:center;

        flex-wrap:wrap;

    }

    .breadcrumb{

        justify-content:center;

    }

    .circle-one{

        width:150px;

        height:150px;

        right:-40px;

    }

    .circle-two{

        width:90px;

        height:90px;

        right:40px;

        bottom:30px;

    }

}

@media(max-width:576px){

    .facilities-hero{

        min-height:380px;

        padding:50px 0 60px;

    }

    .page-tag{

        font-size:13px;

        padding:10px 18px;

    }

    .page-hero-content h1{

        font-size:30px;

    }

    .page-hero-content p{

        font-size:15px;

        margin-bottom:30px;

    }

    .hero-buttons{

        flex-direction:column;

        width:100%;

        gap:15px;

    }

    .hero-buttons a{

        width:100%;

        text-align:center;

    }

}






/*==========================================
        OUR FACILITIES (Facilities Page)
==========================================*/
.facilities-list {
    padding: 60px 0;
    background: #f8fbfa;
}

.facilities-list .section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.facilities-list .section-header h2 {
    font-size: 40px;
    color: #111;
    margin: 16px 0;
}

.facilities-list .section-header h2 span {
    color: #031C13;
}

.facilities-list .section-header p {
    color: #666;
    font-size: 16px;
    line-height: 1.7;
}

/* Grid */
.facilities-list-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
}

/* Card */
.facility-item {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
    border: 1px solid rgba(3, 28, 19, 0.04);
}

.facility-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(3, 28, 19, 0.12);
}

/* Image */
.facility-item-img {
    position: relative;
    height: 210px;
    overflow: hidden;
}

.facility-item-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.facility-item:hover .facility-item-img img {
    transform: scale(1.08);
}

/* Overlay Icon */
.facility-overlay {
    position: absolute;
    inset: 0;
    background: rgba(3, 28, 19, 0.55);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.facility-item:hover .facility-overlay {
    opacity: 1;
}

.facility-overlay i {
    font-size: 40px;
    color: #fff;
    transform: scale(0.7);
    transition: transform 0.4s ease;
}

.facility-item:hover .facility-overlay i {
    transform: scale(1);
}

/* Content */
.facility-item-content {
    padding: 26px 22px 30px;
}

.facility-item-content h3 {
    font-size: 19px;
    font-weight: 700;
    color: #111;
    margin-bottom: 10px;
}

.facility-item-content p {
    font-size: 14.5px;
    color: #666;
    line-height: 1.7;
    margin: 0;
}

/* Responsive */
@media (max-width: 1200px) {
    .facilities-list-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 900px) {
    .facilities-list-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .facilities-list {
        padding: 90px 0;
    }

    .facilities-list .section-header h2 {
        font-size: 32px;
    }

    .facilities-list-grid {
        grid-template-columns: 1fr;
        max-width: 420px;
        margin: 0 auto;
    }

    .facility-item-img {
        height: 230px;
    }
}







/*==========================================
        PATIENT TESTIMONIALS
==========================================*/
.testimonials {
    padding: 60px 0;
    background: #ffffff;
}

.testimonials .section-header {
    text-align: center;
    max-width: 650px;
    margin: 0 auto 60px;
}

.testimonials .section-header h2 {
    font-size: 40px;
    color: #111;
    margin: 16px 0;
}

.testimonials .section-header h2 span {
    color: #031C13;
}

.testimonials .section-header p {
    color: #666;
    font-size: 16px;
    line-height: 1.7;
}

/* Grid */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
}

/* Card */
.testimonial-card {
    background: #f8fbfa;
    border-radius: 22px;
    padding: 35px 28px;
    transition: all 0.4s ease;
    border: 1px solid rgba(3, 28, 19, 0.04);
    display: flex;
    flex-direction: column;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 45px rgba(3, 28, 19, 0.1);
    background: #fff;
}

/* Rating */
.testimonial-rating {
    color: #f5a623;
    font-size: 14px;
    margin-bottom: 18px;
    display: flex;
    gap: 3px;
}

/* Text */
.testimonial-text {
    font-size: 15px;
    line-height: 1.75;
    color: #444;
    margin-bottom: 28px;
    flex-grow: 1;
}

/* Author */
.testimonial-author {
    display: flex;
    align-items: center;
    gap: 14px;
}

.testimonial-author img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #031C13;
}

.testimonial-author h4 {
    font-size: 16px;
    font-weight: 600;
    color: #111;
    margin-bottom: 3px;
}

.testimonial-author span {
    font-size: 13px;
    color: #031C13;
    font-weight: 500;
}

/*========== Responsive + Mobile Slider ==========*/
@media (max-width: 1200px) {
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 900px) {
    .testimonials {
        padding: 90px 0;
    }

    .testimonials .section-header h2 {
        font-size: 32px;
    }

    .testimonials-grid {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        gap: 20px;
        padding-bottom: 15px;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }

    .testimonials-grid::-webkit-scrollbar {
        display: none;
    }

    .testimonial-card {
        flex: 0 0 320px;
        scroll-snap-align: start;
    }
}

@media (max-width: 480px) {
    .testimonial-card {
        flex: 0 0 290px;
        padding: 30px 24px;
    }
}










/*==========================================
        FACILITY IMAGE GALLERY
==========================================*/
.facility-gallery {
    padding: 60px 0;
    background: #f8fbfa;
}

.facility-gallery .section-header {
    text-align: center;
    max-width: 650px;
    margin: 0 auto 45px;
}

.facility-gallery .section-header h2 {
    font-size: 40px;
    color: #111;
    margin: 16px 0;
}

.facility-gallery .section-header h2 span {
    color: #031C13;
}

.facility-gallery .section-header p {
    color: #666;
    font-size: 16px;
    line-height: 1.7;
}

/* Filter Buttons */
.gallery-filters {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 45px;
}

.gallery-filter {
    padding: 10px 22px;
    border: 1px solid #e5e7eb;
    background: #fff;
    color: #555;
    font-size: 14px;
    font-weight: 500;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
}

.gallery-filter:hover,
.gallery-filter.active {
    background: #031C13;
    color: #fff;
    border-color: #031C13;
}

/* Gallery Grid */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.gallery-item {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    height: 240px;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

/* Overlay */
.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(3, 28, 19, 0.85) 0%, transparent 60%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay h4 {
    color: #fff;
    font-size: 17px;
    font-weight: 600;
    margin-bottom: 4px;
}

.gallery-overlay span {
    color: rgba(255, 255, 255, 0.8);
    font-size: 13px;
}

/* Hide filtered items */
.gallery-item.hide {
    display: none;
}

/* Responsive */
@media (max-width: 1100px) {
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .facility-gallery {
        padding: 90px 0;
    }

    .facility-gallery .section-header h2 {
        font-size: 32px;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
    }

    .gallery-item {
        height: 200px;
    }
}

@media (max-width: 480px) {
    .gallery-grid {
        grid-template-columns: 1fr;
        max-width: 360px;
        margin: 0 auto;
    }

    .gallery-item {
        height: 240px;
    }
}






/*==========================================
        CTA SECTION
==========================================*/
.cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #031C13 0%, #0a2e22 100%);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 50%;
    top: -150px;
    right: -100px;
}

.cta-section::after {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 50%;
    bottom: -100px;
    left: -80px;
}

.cta-content {
    text-align: center;
    max-width: 750px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.cta-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 22px;
}

.cta-content h2 {
    font-size: 40px;
    color: #fff;
    margin-bottom: 18px;
    line-height: 1.3;
}

.cta-content p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 35px;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.cta-buttons .btn-primary {
    background: #fff;
    color: #031C13;
    padding: 15px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 15px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.cta-buttons .btn-primary:hover {
    background: #e8f5f0;
    transform: translateY(-3px);
}

.cta-buttons .btn-outline-light {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.4);
    padding: 13px 30px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 15px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.cta-buttons .btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #fff;
    transform: translateY(-3px);
}

/* Responsive */
@media (max-width: 768px) {
    .cta-section {
        padding: 80px 0;
    }

    .cta-content h2 {
        font-size: 30px;
    }

    .cta-content p {
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .cta-content h2 {
        font-size: 26px;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .cta-buttons .btn-primary,
    .cta-buttons .btn-outline-light {
        width: 100%;
        justify-content: center;
        max-width: 280px;
    }
}






/*==========================================
            NEWS HERO
==========================================*/

.news-hero{

    position:relative;

    display:flex;

    align-items:center;

    min-height:560px;

    background:url("../images/news-elderly.jpg") center center/cover no-repeat;

    overflow:hidden;

}

.news-hero .hero-overlay{

    position:absolute;

    inset:0;

    background:linear-gradient(
        90deg,
        rgba(3,28,19,.95),
        rgba(3,28,19,.80),
        rgba(3,28,19,.35)
    );

}

.news-hero .container{

    position:relative;

    z-index:10;

}

.page-hero-content{

    max-width:700px;

    color:#fff;

    animation:fadeHero .8s ease;

}

.page-tag{

    display:inline-flex;

    align-items:center;

    gap:10px;

    padding:12px 22px;

    background:rgba(255,255,255,.12);

    backdrop-filter:blur(12px);

    border-radius:50px;

    margin-bottom:25px;

    font-weight:600;

}

.page-tag i{

    color:#7EE0B8;

}

.page-hero-content h1{

    font-size:62px;

    line-height:1.15;

    margin-bottom:20px;

}

.page-hero-content h1 span{

    color:#7EE0B8;

}

.page-hero-content p{

    font-size:18px;

    line-height:1.9;

    color:#f3f3f3;

    margin-bottom:40px;

}

/*==========================
Buttons
==========================*/

.hero-buttons{

    display:flex;

    gap:18px;

    margin-bottom:40px;

}

.btn-outline-light{

    display:inline-flex;

    justify-content:center;

    align-items:center;

    padding:16px 34px;

    border-radius:50px;

    border:2px solid rgba(255,255,255,.35);

    color:#fff;

    transition:.35s;

}

.btn-outline-light:hover{

    background:#fff;

    color:#031C13;

}

/*==========================
Breadcrumb
==========================*/

.breadcrumb{

    display:flex;

    align-items:center;

    gap:12px;

    flex-wrap:wrap;

}

.breadcrumb a{

    color:#fff;

    font-weight:600;

}

.breadcrumb span{

    color:#7EE0B8;

}

.breadcrumb h5{

    color:#7EE0B8;

    margin:0;

    font-size:16px;

    font-weight:500;

}

/*==========================
Floating Shapes
==========================*/

.floating-circle{

    position:absolute;

    border-radius:50%;

    background:rgba(255,255,255,.08);

    animation:float 7s ease-in-out infinite;

}

.circle-one{

    width:220px;

    height:220px;

    top:-60px;

    right:100px;

}

.circle-two{

    width:130px;

    height:130px;

    bottom:60px;

    right:320px;

    animation-delay:2s;

}

/*==========================
Animations
==========================*/

@keyframes fadeHero{

    from{

        opacity:0;

        transform:translateY(40px);

    }

    to{

        opacity:1;

        transform:translateY(0);

    }

}

@keyframes float{

    0%,100%{

        transform:translateY(0);

    }

    50%{

        transform:translateY(-18px);

    }

}

/*==========================
Responsive
==========================*/

@media(max-width:992px){

.news-hero{

min-height:480px;

}

.page-hero-content h1{

font-size:48px;

}

}

@media(max-width:768px){

.news-hero{

min-height:420px;

text-align:center;

padding:90px 0 70px;

}

.page-hero-content{

margin:auto;

}

.page-hero-content h1{

font-size:38px;

}

.page-hero-content p{

font-size:16px;

}

.hero-buttons{

justify-content:center;

flex-wrap:wrap;

}

.breadcrumb{

justify-content:center;

}

.circle-one{

width:150px;

height:150px;

right:-40px;

}

.circle-two{

width:90px;

height:90px;

right:40px;

bottom:30px;

}

}

@media(max-width:576px){

.news-hero{

min-height:380px;

padding:80px 0 60px;

}

.page-tag{

font-size:13px;

padding:10px 18px;

}

.page-hero-content h1{

font-size:30px;

}

.page-hero-content p{

font-size:15px;

margin-bottom:30px;

}

.hero-buttons{

flex-direction:column;

gap:15px;

}

.hero-buttons a{

width:100%;

text-align:center;

}

}











/*==========================================
        FEATURED ARTICLE
==========================================*/
.featured-article {
    padding: 60px 0 80px;
    background: #fff;
}

.featured-article .section-header {
    text-align: center;
    margin-bottom: 50px;
}

.featured-article .section-header h2 {
    font-size: 40px;
    color: #111;
    margin: 14px 0 0;
}

.featured-article .section-header h2 span {
    color: #031C13;
}

/* Featured Card */
.featured-card {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 0;
    background: #fff;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(3, 28, 19, 0.08);
    border: 1px solid #eef2f0;
}

.featured-img {
    position: relative;
    overflow: hidden;
    min-height: 420px;
}

.featured-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.featured-card:hover .featured-img img {
    transform: scale(1.05);
}

.featured-badge {
    position: absolute;
    top: 24px;
    left: 24px;
    background: #031C13;
    color: #fff;
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.featured-badge i {
    color: #7EE0B8;
}

.featured-content {
    padding: 50px 45px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.featured-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 22px;
}

.featured-meta span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #666;
}

.featured-meta i {
    color: #031C13;
}

.featured-content h3 {
    font-size: 28px;
    line-height: 1.35;
    color: #111;
    margin-bottom: 18px;
}

.featured-content p {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 30px;
}

.featured-content .btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    width: fit-content;
    padding: 14px 28px;
    background: #031C13;
    color: #fff;
    border-radius: 50px;
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.featured-content .btn-primary:hover {
    background: #0a2e22;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(3, 28, 19, 0.2);
}

.featured-content .btn-primary i {
    transition: transform 0.3s ease;
}

.featured-content .btn-primary:hover i {
    transform: translateX(4px);
}

/* Responsive */
@media (max-width: 992px) {
    .featured-card {
        grid-template-columns: 1fr;
    }

    .featured-img {
        min-height: 320px;
    }

    .featured-content {
        padding: 40px 30px;
    }

    .featured-content h3 {
        font-size: 24px;
    }
}

@media (max-width: 576px) {
    .featured-article {
        padding: 80px 0 60px;
    }

    .featured-article .section-header h2 {
        font-size: 30px;
    }

    .featured-content {
        padding: 30px 22px;
    }

    .featured-content h3 {
        font-size: 21px;
    }

    .featured-meta {
        gap: 14px;
    }
}





/*==========================================
        LATEST NEWS GRID
==========================================*/
.latest-news {
    padding: 60px 0 100px;
    background: #f8fbfa;
}

.latest-news .section-header {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 55px;
}

.latest-news .section-header h2 {
    font-size: 40px;
    color: #111;
    margin: 14px 0 16px;
}

.latest-news .section-header h2 span {
    color: #031C13;
}

.latest-news .section-header p {
    color: #666;
    font-size: 16px;
    line-height: 1.7;
}

/* Grid */
.news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* Card */
.news-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid #eef2f0;
    transition: all 0.35s ease;
    display: flex;
    flex-direction: column;
}

.news-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 45px rgba(3, 28, 19, 0.1);
}

.news-card-img {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.news-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.news-card:hover .news-card-img img {
    transform: scale(1.08);
}



.news-card-content {
    padding: 26px 24px 28px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.news-meta {
    display: flex;
    gap: 18px;
    margin-bottom: 14px;
    flex-wrap: wrap;
}

.news-meta span {
    font-size: 13px;
    color: #777;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.news-meta i {
    color: #031C13;
    font-size: 13px;
}

.news-card-content h3 {
    font-size: 19px;
    line-height: 1.4;
    color: #111;
    margin-bottom: 12px;
    transition: color 0.3s ease;
}

.news-card:hover .news-card-content h3 {
    color: #031C13;
}

.news-card-content p {
    font-size: 15px;
    line-height: 1.7;
    color: #666;
    margin-bottom: 22px;
    flex-grow: 1;
}

.news-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    color: #031C13;
    text-decoration: none;
    transition: gap 0.3s ease;
}

.news-link:hover {
    gap: 12px;
}

.news-link i {
    font-size: 13px;
    transition: transform 0.3s ease;
}

/* Load More */
.news-load-more {
    text-align: center;
    margin-top: 55px;
}

.news-load-more .btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    border: 2px solid #031C13;
    color: #031C13;
    border-radius: 50px;
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.news-load-more .btn-outline:hover {
    background: #031C13;
    color: #fff;
}

/* Responsive */
@media (max-width: 1100px) {
    .news-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .latest-news {
        padding: 70px 0 80px;
    }

    .latest-news .section-header h2 {
        font-size: 32px;
    }

    .news-grid {
        grid-template-columns: 1fr;
        max-width: 420px;
        margin: 0 auto;
        gap: 25px;
    }
}

@media (max-width: 480px) {
    .latest-news .section-header h2 {
        font-size: 28px;
    }

    .news-card-content {
        padding: 22px 20px 24px;
    }

    .news-card-content h3 {
        font-size: 17px;
    }
}









/*==========================================
        HEALTH TIPS
==========================================*/
.health-tips {
    padding: 60px 0;
    background: #fff;
}

.health-tips .section-header {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 50px;
}

.health-tips .section-header h2 {
    font-size: 40px;
    color: #111;
    margin: 14px 0 16px;
}

.health-tips .section-header h2 span {
    color: #031C13;
}

.health-tips .section-header p {
    color: #666;
    font-size: 16px;
    line-height: 1.7;
}

/* Tabs */
.tips-tabs {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 50px;
}

.tip-tab {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 22px;
    background: #f4f7f6;
    border: 1px solid #e5ebe8;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
    color: #555;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
}

.tip-tab i {
    font-size: 14px;
}

.tip-tab:hover {
    background: #e8f5f0;
    color: #031C13;
}

.tip-tab.active {
    background: #031C13;
    color: #fff;
    border-color: #031C13;
    box-shadow: 0 8px 20px rgba(3, 28, 19, 0.2);
}

/* Tips Grid */
.tips-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.tip-card {
    background: #f8fbfa;
    border: 1px solid #eef2f0;
    border-radius: 18px;
    padding: 30px 24px;
    transition: all 0.35s ease;
    position: relative;
    overflow: hidden;
}

.tip-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 0;
    background: #031C13;
    transition: height 0.35s ease;
}

.tip-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 35px rgba(3, 28, 19, 0.08);
    background: #fff;
}

.tip-card:hover::before {
    height: 100%;
}

.tip-icon {
    width: 54px;
    height: 54px;
    background: #031C13;
    color: #7EE0B8;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.tip-card:hover .tip-icon {
    background: #7EE0B8;
    color: #031C13;
}

.tip-card h3 {
    font-size: 18px;
    color: #111;
    margin-bottom: 12px;
    line-height: 1.4;
}

.tip-card p {
    font-size: 14.5px;
    color: #666;
    line-height: 1.7;
    margin-bottom: 18px;
}

.tip-tag {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    color: #031C13;
    background: #e8f5f0;
    padding: 5px 12px;
    border-radius: 50px;
}

/* Hide filtered cards */
.tip-card.hide {
    display: none;
}

/* Responsive */
@media (max-width: 1100px) {
    .tips-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .health-tips {
        padding: 80px 0;
    }

    .health-tips .section-header h2 {
        font-size: 32px;
    }

    .tips-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 18px;
    }

    .tip-card {
        padding: 24px 20px;
    }
}

@media (max-width: 520px) {
    .tips-grid {
        grid-template-columns: 1fr;
        max-width: 380px;
        margin: 0 auto;
    }

    .tips-tabs {
        gap: 10px;
    }

    .tip-tab {
        padding: 10px 16px;
        font-size: 13px;
    }
}







/*==========================================
        NEWSLETTER SUBSCRIPTION
==========================================*/
.newsletter-section {
    padding: 60px 0;
    background: linear-gradient(135deg, #031C13 0%, #0a2e22 50%, #031C13 100%);
    position: relative;
    overflow: hidden;
}

.newsletter-box {
    position: relative;
    background: rgba(255, 255, 255, 0.07);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 28px;
    text-align: center;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
}

.newsletter-content {
    position: relative;
    z-index: 2;
    max-width: 620px;
    margin: 0 auto;
}

.newsletter-tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(126, 224, 184, 0.15);
    color: #7EE0B8;
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 24px;
    border: 1px solid rgba(126, 224, 184, 0.25);
}

.newsletter-content h2 {
    font-size: 38px;
    color: #fff;
    margin-bottom: 18px;
    line-height: 1.3;
}

.newsletter-content p {
    font-size: 16.5px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.75;
    margin-bottom: 35px;
}

/* Form */
.newsletter-form .form-group {
    display: flex;
    gap: 0;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 60px;
    padding: 6px;
    max-width: 520px;
    margin: 0 auto 18px;
    transition: all 0.3s ease;
}

.newsletter-form .form-group:focus-within {
    border-color: rgba(126, 224, 184, 0.5);
    box-shadow: 0 0 0 4px rgba(126, 224, 184, 0.1);
}

.newsletter-form input {
    flex: 1;
    background: transparent;
    border: none;
    outline: none;
    padding: 16px 24px;
    font-size: 15px;
    color: #fff;
    font-family: inherit;
}

.newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.newsletter-form button {
    background: #7EE0B8;
    color: #031C13;
    border: none;
    padding: 14px 28px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    font-family: inherit;
    white-space: nowrap;
}

.newsletter-form button:hover {
    background: #fff;
    transform: scale(1.03);
}

.form-note {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.form-note i {
    font-size: 12px;
}

/* Decorative Circles */
.newsletter-decoration {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 1;
}

.deco-circle {
    position: absolute;
    border-radius: 50%;
    background: rgba(126, 224, 184, 0.08);
}

.circle-1 {
    width: 280px;
    height: 280px;
    top: -100px;
    right: -80px;
}

.circle-2 {
    width: 180px;
    height: 180px;
    bottom: -60px;
    left: -50px;
}

.circle-3 {
    width: 100px;
    height: 100px;
    top: 40%;
    left: 10%;
    background: rgba(255, 255, 255, 0.04);
}

/* Responsive */
@media (max-width: 768px) {
    .newsletter-section {
        padding: 80px 0;
    }

    .newsletter-box {
        padding: 50px 30px;
    }

    .newsletter-content h2 {
        font-size: 30px;
    }

    .newsletter-form .form-group {
        flex-direction: column;
        background: transparent;
        border: none;
        padding: 0;
        gap: 14px;
    }

    .newsletter-form input {
        background: rgba(255, 255, 255, 0.1);
        border: 1px solid rgba(255, 255, 255, 0.18);
        border-radius: 50px;
        text-align: center;
    }

    .newsletter-form button {
        width: 100%;
        justify-content: center;
        padding: 16px;
    }
}

@media (max-width: 480px) {
    .newsletter-box {
        padding: 40px 22px;
        border-radius: 22px;
    }

    .newsletter-content h2 {
        font-size: 26px;
    }

    .newsletter-content p {
        font-size: 15px;
    }
}
















/*==========================================
            CONTACT HERO
==========================================*/

.contact-hero{

    position:relative;

    display:flex;

    align-items:center;

    min-height:560px;

    overflow:hidden;

    background:url("../images/emergency.jpg") center center/cover no-repeat;

}

.contact-hero .hero-overlay{

    position:absolute;

    inset:0;

    background:linear-gradient(
        90deg,
        rgba(3,28,19,.95),
        rgba(3,28,19,.82),
        rgba(3,28,19,.35)
    );

}

.contact-hero .container{

    position:relative;

    z-index:5;

}

.page-hero-content{

    max-width:700px;

    color:#fff;

    animation:heroFade .8s ease;

}

.page-tag{

    display:inline-flex;

    align-items:center;

    gap:10px;

    padding:12px 24px;

    background:rgba(255,255,255,.12);

    backdrop-filter:blur(12px);

    border-radius:50px;

    margin-bottom:25px;

    font-weight:600;

}

.page-tag i{

    color:#7EE0B8;

}

.page-hero-content h1{

    font-size:60px;

    line-height:1.15;

    margin-bottom:20px;

}

.page-hero-content h1 span{

    color:#7EE0B8;

}

.page-hero-content p{

    font-size:18px;

    line-height:1.9;

    color:#f4f4f4;

    margin-bottom:40px;

}

/*==========================
Buttons
==========================*/

.hero-buttons{

    display:flex;

    gap:18px;

    margin-bottom:35px;

}

.hero-buttons a{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    gap:10px;

}

.btn-outline-light{

    padding:16px 34px;

    border:2px solid rgba(255,255,255,.35);

    border-radius:50px;

    color:#fff;

    transition:.35s;

}

.btn-outline-light:hover{

    background:#fff;

    color:#031C13;

}

/*==========================
Breadcrumb
==========================*/

.breadcrumb{

    display:flex;

    align-items:center;

    gap:12px;

    flex-wrap:wrap;

}

.breadcrumb a{

    color:#fff;

    font-weight:600;

}

.breadcrumb span{

    color:#7EE0B8;

}

.breadcrumb h5{

    margin:0;

    color:#7EE0B8;

    font-weight:500;

}

/*==========================
Floating Shapes
==========================*/

.floating-circle{

    position:absolute;

    border-radius:50%;

    background:rgba(255,255,255,.08);

    animation:float 7s ease-in-out infinite;

}

.circle-one{

    width:220px;

    height:220px;

    top:-60px;

    right:90px;

}

.circle-two{

    width:130px;

    height:130px;

    bottom:60px;

    right:320px;

    animation-delay:2s;

}

/*==========================
Animations
==========================*/

@keyframes heroFade{

    from{

        opacity:0;

        transform:translateY(40px);

    }

    to{

        opacity:1;

        transform:translateY(0);

    }

}

@keyframes float{

    0%,100%{

        transform:translateY(0);

    }

    50%{

        transform:translateY(-18px);

    }

}

/*================================
Responsive
================================*/

@media(max-width:992px){

.contact-hero{

min-height:480px;

}

.page-hero-content h1{

font-size:48px;

}

}

@media(max-width:768px){

.contact-hero{

min-height:430px;

padding:90px 0 70px;

text-align:center;

}

.page-hero-content{

margin:auto;

}

.page-hero-content h1{

font-size:38px;

}

.page-hero-content p{

font-size:16px;

}

.hero-buttons{

justify-content:center;

flex-wrap:wrap;

}

.breadcrumb{

justify-content:center;

}

.circle-one{

width:150px;

height:150px;

right:-40px;

}

.circle-two{

width:90px;

height:90px;

right:40px;

bottom:30px;

}

}

@media(max-width:576px){

.contact-hero{

min-height:380px;

padding:80px 0 60px;

}

.page-tag{

font-size:13px;

padding:10px 18px;

}

.page-hero-content h1{

font-size:30px;

}

.page-hero-content p{

font-size:15px;

margin-bottom:30px;

}

.hero-buttons{

flex-direction:column;

gap:15px;

}

.hero-buttons a{

width:100%;

}

}







/*==========================================
        CONTACT INFORMATION CARDS
==========================================*/
.contact-info-section {
    padding: 60px 0 70px;
    background: #fff;
}

.contact-info-section .section-header {
    text-align: center;
    max-width: 650px;
    margin: 0 auto 55px;
}

.contact-info-section .section-header h2 {
    font-size: 40px;
    color: #111;
    margin: 14px 0 16px;
}

.contact-info-section .section-header h2 span {
    color: #031C13;
}

.contact-info-section .section-header p {
    color: #666;
    font-size: 16px;
    line-height: 1.7;
}

/* Cards Grid */
.contact-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.contact-card {
    background: #f8fbfa;
    border: 1px solid #eef2f0;
    border-radius: 20px;
    padding: 40px 28px;
    text-align: center;
    transition: all 0.35s ease;
}

.contact-card:hover {
    transform: translateY(-10px);
    background: #fff;
    box-shadow: 0 20px 45px rgba(3, 28, 19, 0.1);
}

.contact-icon {
    width: 70px;
    height: 70px;
    background: #031C13;
    color: #7EE0B8;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    margin: 0 auto 22px;
    transition: all 0.35s ease;
}

.contact-card:hover .contact-icon {
    background: #7EE0B8;
    color: #031C13;
    transform: scale(1.08);
}

.contact-card h3 {
    font-size: 20px;
    color: #111;
    margin-bottom: 12px;
}

.contact-card p {
    font-size: 14.5px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 18px;
}

.contact-link {
    display: inline-block;
    font-size: 15px;
    font-weight: 600;
    color: #031C13;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-link:hover {
    color: #0a2e22;
}



/*==========================================
        CONTACT FORM + MAP
==========================================*/
.contact-main {
    padding: 40px 0 110px;
    background: #f8fbfa;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 40px;
    align-items: start;
}

/* Form Side */
.contact-form-wrapper {
    background: #fff;
    border-radius: 24px;
    padding: 45px 40px;
    border: 1px solid #eef2f0;
    box-shadow: 0 15px 40px rgba(3, 28, 19, 0.05);
}

.form-header {
    margin-bottom: 35px;
}

.form-header h2 {
    font-size: 28px;
    color: #111;
    margin-bottom: 10px;
}

.form-header p {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    margin-bottom: 22px;
}

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px 18px;
    border: 1px solid #e0e7e4;
    border-radius: 12px;
    font-size: 15px;
    font-family: inherit;
    color: #333;
    background: #f9fbfa;
    transition: all 0.3s ease;
    outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: #031C13;
    background: #fff;
    box-shadow: 0 0 0 4px rgba(3, 28, 19, 0.08);
}

.form-group textarea {
    resize: vertical;
    min-height: 140px;
}

.btn-submit {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: #031C13;
    color: #fff;
    border: none;
    padding: 16px 36px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
    margin-top: 10px;
}

.btn-submit:hover {
    background: #0a2e22;
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(3, 28, 19, 0.2);
}

/* Sidebar */
.contact-sidebar {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.map-container {
    height: 320px;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid #eef2f0;
    box-shadow: 0 10px 30px rgba(3, 28, 19, 0.06);
}

.map-container iframe {
    width: 100%;
    height: 100%;
}

/* Emergency Card */
.emergency-card {
    background: linear-gradient(135deg, #031C13 0%, #0a2e22 100%);
    border-radius: 20px;
    padding: 32px 28px;
    display: flex;
    gap: 20px;
    align-items: flex-start;
    color: #fff;
}

.emergency-icon {
    width: 56px;
    height: 56px;
    background: rgba(126, 224, 184, 0.15);
    color: #7EE0B8;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    flex-shrink: 0;
}

.emergency-content h4 {
    font-size: 18px;
    margin-bottom: 8px;
}

.emergency-content p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.6;
    margin-bottom: 18px;
}

.emergency-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #7EE0B8;
    color: #031C13;
    padding: 12px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
}

.emergency-btn:hover {
    background: #fff;
    transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 1100px) {
    .contact-cards {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .contact-info-section {
        padding: 80px 0 50px;
    }

    .contact-info-section .section-header h2 {
        font-size: 32px;
    }

    .contact-form-wrapper {
        padding: 35px 25px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .map-container {
        height: 280px;
    }
}

@media (max-width: 520px) {
    .contact-cards {
        grid-template-columns: 1fr;
        max-width: 360px;
        margin: 0 auto;
    }

    .contact-card {
        padding: 32px 24px;
    }

    .form-header h2 {
        font-size: 24px;
    }

    .emergency-card {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }
}






/* Form Validation Styles */
.form-group {
    position: relative;
}

.input-error {
    border-color: #e74c3c !important;
    background: #fff5f5 !important;
}

.error-message {
    display: block;
    color: #e74c3c;
    font-size: 13px;
    margin-top: 6px;
    font-weight: 500;
}

.form-success {
    margin-top: 25px;
    padding: 16px 20px;
    background: #e8f8f0;
    border: 1px solid #7EE0B8;
    border-radius: 12px;
    color: #031C13;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 12px;
    animation: fadeIn 0.4s ease;
}

.form-success i {
    color: #27ae60;
    font-size: 20px;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}







/*==========================================
        BOOKING HERO
==========================================*/
.booking-hero {
    position: relative;
    display: flex;
    align-items: center;
    min-height: 520px;
    background: url("../images/vip-room.jpg") center center / cover no-repeat;
    overflow: hidden;
}

.booking-hero .hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        rgba(3, 28, 19, 0.95),
        rgba(3, 28, 19, 0.80),
        rgba(3, 28, 19, 0.35)
    );
}

.booking-hero .container {
    position: relative;
    z-index: 10;
}

/*==========================================
        BOOKING SECTION
==========================================*/
.booking-section {
    padding: 100px 0;
    background: #f8fbfa;
}

.booking-grid {
    display: grid;
    grid-template-columns: 1.3fr 0.7fr;
    gap: 40px;
    align-items: start;
}

/* Form Wrapper */
.booking-form-wrapper {
    background: #fff;
    border-radius: 24px;
    padding: 45px 40px;
    border: 1px solid #eef2f0;
    box-shadow: 0 15px 40px rgba(3, 28, 19, 0.05);
}

.booking-form-wrapper .form-header {
    margin-bottom: 35px;
}

.booking-form-wrapper .form-header h2 {
    font-size: 28px;
    color: #111;
    margin-bottom: 8px;
}

.booking-form-wrapper .form-header p {
    font-size: 15px;
    color: #666;
}

/* Form Sections */
.form-section {
    margin-bottom: 35px;
    padding-bottom: 30px;
    border-bottom: 1px solid #eef2f0;
}

.form-section:last-of-type {
    border-bottom: none;
    margin-bottom: 10px;
}

.form-section-title {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 18px;
    color: #031C13;
    margin-bottom: 22px;
}

.form-section-title i {
    width: 36px;
    height: 36px;
    background: #e8f5f0;
    color: #031C13;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
}

/* Form Layout */
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid #e0e7e4;
    border-radius: 12px;
    font-size: 15px;
    font-family: inherit;
    color: #333;
    background: #f9fbfa;
    transition: all 0.3s ease;
    outline: none;
    appearance: none;
}

.form-group select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%23031C13' viewBox='0 0 16 16'%3E%3Cpath d='M8 11L3 6h10l-5 5z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 18px center;
    padding-right: 40px;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #031C13;
    background: #fff;
    box-shadow: 0 0 0 4px rgba(3, 28, 19, 0.08);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* Submit Button */
.booking-form .btn-submit {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: #031C13;
    color: #fff;
    border: none;
    padding: 16px 40px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
    margin-top: 10px;
}

.booking-form .btn-submit:hover {
    background: #0a2e22;
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(3, 28, 19, 0.2);
}

/*==========================================
        BOOKING SIDEBAR
==========================================*/
.booking-sidebar {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

/* Info Card */
.info-card {
    background: #fff;
    border-radius: 20px;
    padding: 30px 26px;
    border: 1px solid #eef2f0;
    box-shadow: 0 10px 30px rgba(3, 28, 19, 0.04);
}

.info-card h3 {
    font-size: 19px;
    color: #111;
    margin-bottom: 22px;
}

/* Booking Steps */
.booking-steps {
    list-style: none;
    padding: 0;
    margin: 0;
}

.booking-steps li {
    display: flex;
    gap: 16px;
    margin-bottom: 22px;
    align-items: flex-start;
}

.booking-steps li:last-child {
    margin-bottom: 0;
}

.step-number {
    width: 34px;
    height: 34px;
    background: #031C13;
    color: #7EE0B8;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 700;
    flex-shrink: 0;
}

.booking-steps strong {
    display: block;
    font-size: 15px;
    color: #111;
    margin-bottom: 3px;
}

.booking-steps p {
    font-size: 13.5px;
    color: #666;
    line-height: 1.5;
    margin: 0;
}

/* Hours List */
.hours-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.hours-list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #f0f4f2;
    font-size: 14.5px;
}

.hours-list li:last-child {
    border-bottom: none;
}

.hours-list span {
    color: #666;
}

.hours-list strong {
    color: #111;
    font-weight: 600;
}

.hours-list li.highlight {
    background: #e8f5f0;
    margin: 10px -12px 0;
    padding: 12px;
    border-radius: 10px;
    border-bottom: none;
}

.hours-list li.highlight span,
.hours-list li.highlight strong {
    color: #031C13;
}

/* Emergency Card (reused style) */
.booking-sidebar .emergency-card {
    background: linear-gradient(135deg, #031C13 0%, #0a2e22 100%);
    border-radius: 20px;
    padding: 28px 24px;
    display: flex;
    gap: 18px;
    align-items: flex-start;
    color: #fff;
}

.booking-sidebar .emergency-icon {
    width: 52px;
    height: 52px;
    background: rgba(126, 224, 184, 0.15);
    color: #7EE0B8;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    flex-shrink: 0;
}

.booking-sidebar .emergency-content h4 {
    font-size: 17px;
    margin-bottom: 8px;
}

.booking-sidebar .emergency-content p {
    font-size: 13.5px;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.6;
    margin-bottom: 16px;
}

.booking-sidebar .emergency-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #7EE0B8;
    color: #031C13;
    padding: 11px 18px;
    border-radius: 50px;
    font-size: 13.5px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
}

.booking-sidebar .emergency-btn:hover {
    background: #fff;
    transform: translateY(-2px);
}

/*==========================================
        RESPONSIVE
==========================================*/
@media (max-width: 1100px) {
    .booking-grid {
        grid-template-columns: 1fr;
    }

    .booking-sidebar {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .booking-sidebar .emergency-card {
        grid-column: span 2;
    }
}

@media (max-width: 768px) {
    .booking-hero {
        min-height: 420px;
        text-align: center;
        padding: 90px 0 70px;
    }

    .booking-section {
        padding: 70px 0;
    }

    .booking-form-wrapper {
        padding: 35px 25px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .booking-sidebar {
        grid-template-columns: 1fr;
    }

    .booking-sidebar .emergency-card {
        grid-column: span 1;
    }
}

@media (max-width: 480px) {
    .booking-form-wrapper .form-header h2 {
        font-size: 24px;
    }

    .form-section-title {
        font-size: 16px;
    }

    .booking-form .btn-submit {
        width: 100%;
        justify-content: center;
    }
}






/* reCAPTCHA Styling */
.recaptcha-group {
    margin: 25px 0 10px;
}

.recaptcha-group .error-message {
    display: block;
    margin-top: 10px;
}

/* Make reCAPTCHA responsive on mobile */
@media (max-width: 400px) {
    .g-recaptcha {
        transform: scale(0.85);
        transform-origin: left top;
    }
}








/*==========================================
        FOOTER
==========================================*/
.footer {
    background: #031C13;
    color: #fff;
    padding-top: 90px;
}

.footer-top {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1.3fr;
    gap: 50px;
    padding-bottom: 70px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* Brand */
.footer-logo {
    display: flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
    margin-bottom: 22px;
}

.footer-logo img {
    width: 48px;
    height: 48px;
    object-fit: contain;
}

.footer-logo span {
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    line-height: 1.3;
}

.footer-brand p {
    font-size: 14.5px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 28px;
    max-width: 320px;
}

/* Social */
.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 15px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.footer-social a:hover {
    background: #fff;
    color: #031C13;
    transform: translateY(-3px);
}

/* Links */
.footer-links h4,
.footer-contact h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 26px;
    color: #fff;
}

.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links ul li {
    margin-bottom: 14px;
}

.footer-links ul li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 14.5px;
    transition: all 0.3s ease;
}

.footer-links ul li a:hover {
    color: #fff;
    padding-left: 6px;
}

/* Contact */
.footer-contact ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact ul li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 18px;
    font-size: 14.5px;
    color: rgba(255, 255, 255, 0.7);
}

.footer-contact ul li i {
    color: #fff;
    font-size: 16px;
    margin-top: 3px;
    min-width: 18px;
}

.footer-contact ul li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact ul li a:hover {
    color: #fff;
}

/* Bottom */
.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 28px 0;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.55);
}

.footer-bottom-links {
    display: flex;
    gap: 28px;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.55);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
    color: #fff;
}

/* Responsive */
@media (max-width: 1100px) {
    .footer-top {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

@media (max-width: 700px) {
    .footer {
        padding-top: 70px;
    }

    .footer-top {
        grid-template-columns: 1fr;
        gap: 40px;
        padding-bottom: 50px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
}