:root {
    --theme-navy: #112240; 
    --theme-orange: #d97736; 
    --theme-beige: #f9f8f6; 
    --text-dark: #2d3748;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-dark);
    padding-top: 76px; /* Space for fixed header */
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6, .premium-font, .rtyuhgcf {
    font-family: 'Playfair Display', serif;
    color: var(--theme-navy);
    font-weight: 700;
}

.bg-navy { background-color: var(--theme-navy) !important; }
.bg-beige { background-color: var(--theme-beige) !important; }
.bg-orange { background-color: var(--theme-orange) !important; color: white !important; }
.bg-orange:hover { background-color: #be652b !important; color: white !important; }
.text-navy { color: var(--theme-navy) !important; }
.text-orange { color: var(--theme-orange) !important; }

/* Navbar */
.navbar { box-shadow: 0 4px 12px rgba(0,0,0,0.05); }
.nav-link { font-weight: 500; color: var(--theme-navy); }
.nav-link:hover { color: var(--theme-orange); }

/* Buttons */
.btn-cta {
    background-color: var(--theme-orange);
    color: white;
    font-weight: 600;
    padding: 12px 28px;
    border-radius: 4px;
    border: none;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}
.btn-cta:hover { background-color: #be652b; color: white; transform: translateY(-2px); }
.navbar-nav .nav-link {
    position: relative;
    color: #1a1a1a; /* default color */
    transition: color 0.3s ease;
}

/* Underline effect */
.navbar-nav .nav-link::after {
    content: "";
    position: absolute;
    width: 0%;
    height: 2px;
    left: 0;
    bottom: 0;
    background-color: var(--theme-orange); /* underline color */
    transition: width 0.3s ease;
}

/* Hover effect */
.navbar-nav .nav-link:hover {
    color: var(--theme-orange);
}

.navbar-nav .nav-link:hover::after {
    width: 100%;
}

/* Active link */
.navbar-nav .nav-link.active {
    color: var(--theme-orange);
    font-weight: 600;
}

.navbar-nav .nav-link.active::after {
    width: 100%;
}
/* Hero Section */
.hero-section {
    background: linear-gradient(to right, rgba(17, 34, 64, 0.95) 20%, rgba(17, 34, 64, 0.7) 100%), 
                url('https://images.unsplash.com/photo-1573497019940-1c28c88b4f3e?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80') center/cover;
    color: white;
    padding: 100px 0;
}
.hero-section h1, .hero-section p, .hero-section div { color: white; }

/* Cards & UI Elements */
.form-card { background: white; border-top: 6px solid var(--theme-orange); border-radius: 8px; }
.premium-card { transition: transform 0.3s ease; border: 1px solid rgba(0,0,0,0.05); background: white; }
.premium-card:hover { transform: translateY(-5px); box-shadow: 0 15px 30px rgba(0,0,0,0.08) !important; }
.treatment-card img { height: 200px; object-fit: cover; border-top-left-radius: 8px; border-top-right-radius: 8px; }
.step-card { border-left: 4px solid var(--theme-orange); background: white; padding: 20px; }
.video-card { position: relative; border-radius: 8px; overflow: hidden; }
.play-icon {
    position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
    width: 60px; height: 60px; background: rgba(217, 119, 54, 0.9);
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    color: white; font-size: 24px;
}

/* Article Specific Styling */
.article-header {
    padding: 60px 0;
    background-color: var(--theme-beige);
    border-bottom: 1px solid rgba(0,0,0,0.05);
}
.article-meta { color: #718096; font-size: 0.95rem; }
.featured-image {
    width: 100%;
    max-height: 500px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    position: relative;
    z-index: 2;
}
.article-blockquote {
    border-left: 4px solid var(--theme-orange);
    background-color: var(--theme-beige);
    padding: 1.5rem;
    border-radius: 0 8px 8px 0;
    font-style: italic;
    font-size: 1.2rem;
    margin: 2rem 0;
    color: var(--theme-navy);
}

/* Sidebar Styling */
.sidebar-widget {
    background: white;
    border: 1px solid rgba(0,0,0,0.05);
    border-radius: 8px;
    padding: 24px;
    margin-bottom: 30px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.02);
}
.related-post-img { width: 80px; height: 80px; object-fit: cover; border-radius: 6px; }
.related-post-title { font-size: 1rem; font-weight: 600; color: var(--theme-navy); text-decoration: none; line-height: 1.4; }
.related-post-title:hover { color: var(--theme-orange); }

/* Social Share */
.share-btn {
    width: 40px; height: 40px;
    display: inline-flex; align-items: center; justify-content: center;
    border-radius: 50%; background: #f1f5f9; color: var(--theme-navy);
    transition: all 0.2s; text-decoration: none;
}
.share-btn:hover { background: var(--theme-orange); color: white; }

/* Blog Hero */
.blog-header {
    background-color: var(--theme-navy);
    color: white;
    padding: 60px 0;
    margin-bottom: 50px;
}

/* Category Badge */
.badge-category {
    background-color: rgba(217, 119, 54, 0.1);
    color: var(--theme-orange);
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 6px 12px;
    border-radius: 4px;
    display: inline-block;
    margin-bottom: 12px;
}

/* Blog Cards */
.blog-card {
    border: none;
    transition: all 0.3s ease;
    height: 100%;
    background: #fff;
}
.blog-card:hover {
    transform: translateY(-8px);
}
.blog-card img {
    border-radius: 8px;
    height: 240px;
    object-fit: cover;
}
.blog-title {
    font-size: 1.4rem;
    margin-top: 10px;
    transition: color 0.3s;
    text-decoration: none;
    display: block;
}
.blog-title:hover {
    color: var(--theme-orange);
}
.meta-info {
    font-size: 0.9rem;
    color: #718096;
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

/* Search Bar */
.search-container {
    max-width: 600px;
    margin: -30px auto 0;
    position: relative;
    z-index: 10;
}
.search-input {
    padding: 15px 25px;
    border-radius: 50px;
    border: none;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

/* Pagination */
.page-link { color: var(--theme-navy); border: none; margin: 0 5px; border-radius: 5px; }
.page-item.active .page-link { background-color: var(--theme-orange); border-color: var(--theme-orange); }

.btn-read-more {
    color: var(--theme-orange);
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 15px;
}
.btn-read-more:hover { text-decoration: underline; }

/* Facility Cards */
.facility-card {
    border: 1px solid rgba(0,0,0,0.08);
    border-radius: 8px;
    overflow: hidden;
    background: white;
    transition: transform 0.3s, box-shadow 0.3s;
    height: 100%;
    display: flex;
    flex-direction: column;
}
.facility-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.08);
}
.facility-img-wrapper { position: relative; height: 300px; overflow: hidden; }
.facility-img-wrapper img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.facility-card:hover .facility-img-wrapper img { transform: scale(1.05); }

.badge-premium {
    position: absolute; top: 15px; left: 15px;
    background: var(--theme-navy); color: white;
    padding: 5px 12px; border-radius: 4px; font-size: 0.75rem; font-weight: bold;
    display: flex; align-items: center; gap: 5px;
}

/* Filter Tabs */
.filter-tab {
    color: var(--text-dark);
    font-weight: 600;
    padding: 10px 20px;
    border-bottom: 3px solid transparent;
    cursor: pointer;
    transition: all 0.2s;
}
.filter-tab:hover, .filter-tab.active {
    color: var(--theme-orange);
    border-bottom-color: var(--theme-orange);
}

/* Help Cards */
.help-card {
    border: 1px solid rgba(0,0,0,0.08);
    border-radius: 8px;
    padding: 30px;
    text-align: center;
    transition: transform 0.3s;
    background: white;
}
.help-card:hover { transform: translateY(-5px); box-shadow: 0 10px 20px rgba(0,0,0,0.05); }

/* Map Section Placeholder */
.map-placeholder {
    background: url('https://images.unsplash.com/photo-1524661135-423995f22d0b?ixlib=rb-4.0.3&auto=format&fit=crop&w=1200&q=80') center/cover;
    height: 300px;
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    color: white; font-weight: bold; position: relative;
}
.map-overlay {
    position: absolute; top:0; left:0; width:100%; height:100%;
    background: rgba(17, 34, 64, 0.7); border-radius: 12px;
}

/* Footer */
footer { background: var(--theme-navy); color: #cbd5e0; padding: 60px 0; }