/* =========================
   1. FONTS
========================= */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@500;600;700&family=Poppins:wght@300;400;500;600&display=swap');

/* =========================
   2. ROOT COLORS
========================= */
:root {
    --primary: #1F4D3A;
    --secondary: #C8A45D;
    --bg-light: #F8F6F1;
    --text-dark: #2B2B2B;
    --white: #ffffff;
}

/* =========================
   3. GLOBAL STYLES
========================= */
body {
    font-family: 'Poppins', sans-serif;
    background: var(--bg-light);
    color: var(--text-dark);
    line-height: 1.6;
}

h1, h2, h3 {
    font-family: 'Playfair Display', serif;
}

.section-padding {
    padding: 80px 0;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 600;
}

.primary-color { color: var(--primary); }
.secondary-color { color: var(--secondary); }

/* =========================
   4. NAVBAR
========================= */
.premium-nav {
    background: rgba(31, 77, 58, 0.6);
    backdrop-filter: blur(12px);
    padding: 15px 0;
    transition: 0.3s;
}

.navbar .nav-link {
    margin-left: 20px;
    font-weight: 500;
}

.navbar .nav-link:hover {
    color: var(--secondary) !important;
}

.navbar-brand img {
    max-height: 50px;
}

/* =========================
   5. HERO SECTIONS
========================= */
.hero-section {
    height: 100vh;
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)),
                url('../images/banner.jpg') center/cover;
    margin-top: 80px;
}

.page-hero {
    height: 60vh;
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)),
                url('../images/banner.jpg') center/cover;
    margin-top: 80px;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
}

.hero-subtitle {
    font-size: 1.2rem;
}

/* =========================
   6. BUTTONS
========================= */
.btn-gold {
    background: var(--secondary);
    color: var(--white);
    border-radius: 30px;
    padding: 10px 25px;
    transition: 0.3s;
}

.btn-gold:hover {
    background: #b8934d;
    transform: translateY(-2px);
}

/* =========================
   7. CARDS
========================= */
.premium-card {
    background: var(--white);
    padding: 30px;
    border-radius: 15px;
    transition: 0.4s;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.premium-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.premium-card i {
    font-size: 40px;
    color: var(--primary);
    margin-bottom: 15px;
}

/* =========================
   8. SERVICE CARD
========================= */
.service-card {
    border-left: 4px solid var(--secondary);
}

/* =========================
   9. LOCATION
========================= */
.location-card {
    background: white;
    padding: 20px 10px;
    border-radius: 12px;
    transition: 0.3s;
    box-shadow: 0 8px 20px rgba(0,0,0,0.05);
}

.location-card i {
    font-size: 22px;
    color: var(--secondary);
    margin-bottom: 8px;
}

.location-card h6 {
    font-weight: 600;
    margin-bottom: 5px;
}

.location-card p {
    font-size: 13px;
    color: #666;
}

.location-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.location-tagline {
    font-weight: 500;
    color: var(--primary);
    margin-top: 10px;
}

/* =========================
   10. BLOG
========================= */
.blog-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    transition: 0.4s;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.blog-card img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.blog-content {
    padding: 20px;
}

.blog-date {
    font-size: 13px;
    color: #888;
}

.blog-content h5 {
    margin: 10px 0;
    font-weight: 600;
}

.read-more {
    color: var(--primary);
    font-weight: 500;
    text-decoration: none;
}

.read-more:hover {
    color: var(--secondary);
}

/* =========================
   11. IMAGES
========================= */
img {
    border-radius: 15px;
    transition: 0.4s;
}

img:hover {
    transform: scale(1.05);
}

/* =========================
   12. FORMS
========================= */
.form-control {
    border-radius: 10px;
    padding: 12px;
    border: 1px solid #ddd;
}

.form-control:focus {
    border-color: var(--primary);
    box-shadow: none;
}

.form-card {
    background: white;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

/* =========================
   13. CTA
========================= */
.cta-section {
    background: linear-gradient(135deg, #1F4D3A, #2e6b52);
    padding: 80px 0;
}

.cta-section h2 {
    color: var(--white);
}

.cta-section p {
    font-size: 15px;
}

/* =========================
   14. FOOTER
========================= */
footer {
    background: #111;
    color: var(--white);
}

/* =========================
   15. MAP
========================= */
iframe {
    border-radius: 15px;
}

/* =========================
   16. WHATSAPP BUTTON
========================= */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #25D366;
    color: white;
    padding: 12px 16px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 999;
    transition: 0.3s;
}

.whatsapp-float:hover {
    background: #1ebe5d;
    transform: translateY(-3px);
}

.whatsapp-float::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50px;
    background: rgba(37, 211, 102, 0.5);
    animation: pulse 2s infinite;
    z-index: -1;
}

@keyframes pulse {
    0% { transform: scale(1); opacity: 0.7; }
    70% { transform: scale(1.5); opacity: 0; }
}

/* =========================
   17. ABOUT LIST
========================= */
.about-points {
    list-style: none;
    padding: 0;
    margin-top: 15px;
}

.about-points li {
    margin-bottom: 8px;
    font-size: 14px;
}

/* =========================
   18. RESPONSIVE
========================= */
@media (max-width: 768px) {
    .hero-title { font-size: 2.2rem; }
    .section-title { font-size: 1.8rem; }

    .whatsapp-text { display: none; }
    .whatsapp-float {
        padding: 14px;
        border-radius: 50%;
    }
}

@media (max-width: 576px) {
    .location-card {
        padding: 15px 8px;
    }

    .location-card h6 {
        font-size: 14px;
    }

    .location-card p {
        font-size: 12px;
    }
}

.provide-section {
    background: #f8f5f0;
}

.provide-title {
    font-size: 42px;
    font-weight: 700;
    color: var(--primary);
    line-height: 1.2;
}

.provide-p {
    font-size: 15px;
    color: #444;
}
.provide-list {
    list-style: none;
    padding: 0;
}

.provide-list li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 12px;
    font-size: 16px;
}

.provide-list li::before {
    content: "✔";
    position: absolute;
    left: 0;
    top: 0;
    color: #1abc9c;
    font-weight: bold;
}

/* Responsive */
@media (max-width: 768px) {
    .provide-title {
        font-size: 28px;
        margin-bottom: 20px;
    }
}

.philosophy-section {
    background: #f8f5f0;
}

/* IMAGE */
.philosophy-image img {
    width: 100%;
    border-radius: 10px;
}

/* CONTENT BOX */
.philosophy-content {
    background: #e9dfd2;
    padding: 30px;
    border-radius: 10px;
}

/* SUBTITLE */
.subtitle {
    font-size: 18px;
    margin-bottom: 20px;
    color: #444;
}

/* LIST */
.philosophy-list {
    padding-left: 18px;
}

.philosophy-list li {
    margin-bottom: 12px;
    line-height: 1.6;
    font-size: 15px;
}

/* TITLE COLOR */
.section-title {
    color: var(--primary);
}

/* MOBILE */
@media (max-width: 768px) {
    .philosophy-content {
        margin-top: 20px;
    }
}


/* TITLE */
.comfort-title {
    font-size: 36px;
    font-weight: 700;
    color: var(--primary);
    line-height: 1.3;
}

/* IMAGE */
.comfort-image img {
    width: 100%;
    border-radius: 10px;
}

/* CONTENT BOX */
.comfort-content {
    background: #e9dfd2;
    padding: 25px 30px;
    border-radius: 10px;
}

/* LIST */
.comfort-list {
    list-style: disc;
    padding-left: 20px;
}

.comfort-list li {
    margin-bottom: 10px;
    font-size: 15px;
    line-height: 1.6;
}

/* MOBILE */
@media (max-width: 768px) {
    .comfort-title {
        font-size: 24px;
    }

    .comfort-content {
        margin-top: 20px;
    }
}

.health-section {
    background: #f8f5f0;
}

/* TITLE */
.health-title {
    font-size: 36px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 10px;
}

/* SUBTITLE */
.health-subtitle {
    font-size: 20px;
    margin-bottom: 10px;
}

/* HIGHLIGHT TEXT */
.health-highlight {
    font-size: 16px;
    margin-bottom: 15px;
}

.health-highlight span {
    color: var(--primary);
    font-weight: 600;
}

/* LIST */
.health-list {
    list-style: none;
    padding: 0;
}

.health-list li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 10px;
    font-size: 15px;
}

.health-list li::before {
    content: "✔";
    position: absolute;
    left: 0;
    top: 0;
    color: #2e7d32;
    font-weight: bold;
}

/* IMAGES */
.health-images {
    position: relative;
}

.img-small {
    width: 150px;
    position: absolute;
    top: 0;
    left: 40px;
    border-radius: 50%;
}

.img-large {
    width: 280px;
    position: relative;
    margin-top: 80px;
    border-radius: 20px;
}

/* MOBILE */
@media (max-width: 768px) {
    .health-images {
        margin-top: 30px;
        text-align: center;
    }

    .img-small {
        position: relative;
        left: 0;
        margin-bottom: 10px;
    }

    .img-large {
        margin-top: 0;
    }

    .health-title {
        font-size: 26px;
    }
}

.info-block {
    background: #fff;
    padding: 25px;
    border-radius: 10px;
    height: 100%;
    box-shadow: 0 8px 20px rgba(0,0,0,0.05);
}

.info-block h5 {
    font-weight: 600;
    margin-bottom: 10px;
}

.info-block p {
    font-size: 14px;
    color: #555;
    line-height: 1.6;
}

.info-block ul {
    padding-left: 18px;
    margin-bottom: 0;
}

.info-block ul li {
    margin-bottom: 6px;
    font-size: 14px;
}

/* IMPORTANT NOTE */
.important-note {
    background: var(--secondary);
    padding: 15px 20px;
    border-left: 5px solid #2B2B2B;
    border-radius: 6px;
    font-size: 14px;
    color: #ffffff;
}
.section-title {
    font-size: 34px;
    font-weight: 600;
    color: #1f3d3b;
}

.section-subtitle {
    color: #6c757d;
    font-size: 16px;
}

/* CARD BASE */
.care-card {
    background: #ffffff;
    padding: 35px 25px;
    border-radius: 16px;
    text-align: center;
    transition: all 0.35s ease;
    border: 1px solid #eef1f4;
    position: relative;
    overflow: hidden;
}

/* HOVER EFFECT */
.care-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    border-color: #dbe5e2;
}

/* ICON STYLE */
.icon-box {
    width: 65px;
    height: 65px;
    margin: 0 auto 20px;
    border-radius: 50%;
    background: linear-gradient(135deg, #e6f4f1, #d8ebe7);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    color: #2c6e63;
    transition: all 0.3s ease;
}

/* ICON HOVER */
.care-card:hover .icon-box {
    background: linear-gradient(135deg, #2c6e63, #3e8f7f);
    color: #fff;
}

/* TEXT */
.care-card h5 {
    font-weight: 600;
    margin-bottom: 10px;
}

.care-card p {
    font-size: 15px;
    color: #6c757d;
    line-height: 1.6;
}

/* NAVBAR BASE */
.custom-navbar {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    padding: 12px 0;
    transition: all 0.3s ease;
    z-index: 999;
}

/* SCROLL EFFECT */
.custom-navbar.scrolled {
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    padding: 8px 0;
}

/* LOGO */
.logo-img {
    height: 50px;
}

/* NAV LINKS */
.navbar-nav .nav-link {
    font-weight: 500;
    color: #2c3e50;
    margin: 0 10px;
    position: relative;
    transition: color 0.3s ease;
}

/* UNDERLINE ANIMATION */
.navbar-nav .nav-link::after {
    content: "";
    position: absolute;
    width: 0%;
    height: 2px;
    left: 0;
    bottom: -5px;
    background: #2c6e63;
    transition: 0.3s ease;
}

.navbar-nav .nav-link:hover {
    color: #2c6e63;
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    width: 100%;
}

/* PREMIUM BUTTON */
.btn-premium {
    background: linear-gradient(135deg, #2c6e63, #3e8f7f);
    color: #fff;
    padding: 8px 18px;
    border-radius: 25px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-premium:hover {
    background: linear-gradient(135deg, #245a52, #32786b);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(44, 110, 99, 0.3);
    color: #fff;
}

/* MOBILE FIX */
@media (max-width: 991px) {
    .navbar-nav {
        background: #fff;
        padding: 15px;
        border-radius: 10px;
        margin-top: 10px;
    }

    .navbar-nav .nav-link {
        margin: 10px 0;
    }
}