* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background: #f8f8f8;
    color: #222;
}

a {
    text-decoration: none;
}

img {
    max-width: 100%;
    height: auto;
}

.container {
    width: 90%;
    max-width: 1300px;
    margin: auto;
}

/* ---------- Header / Navbar ---------- */
header {
    background: #fff;
    padding: 20px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 999;
    transition: padding 0.3s, box-shadow 0.3s;
}

header.scrolled {
    padding: 12px 0;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

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

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

nav ul {
    display: flex;
    list-style: none;
    gap: 35px;
}

nav a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: 0.3s;
}

nav a:hover,
nav a.active {
    color: #9a7d4f;
}

.btn {
    background: #c5a56d;
    color: #fff;
    padding: 14px 28px;
    text-decoration: none;
    border-radius: 8px;
    display: inline-block;
    transition: 0.3s;
    border: none;
    cursor: pointer;
    font-weight: 500;
}

.btn:hover {
    background: #c5a56d;
}

/* ---------- Hero ---------- */
.hero {
    padding: 120px 0;
    background: url('../images/background.png') center/cover no-repeat;
    position: relative;
}

.hero::before {
    display: none;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 45%;
    margin-left: 80px;
}

.tag {
    letter-spacing: 3px;
    color: #9a7d4f;
    margin-bottom: 15px;
    font-size: 14px;
    font-weight: 500;
}

.hero h1 {
    font-size: 70px;
    line-height: 1;
    margin-bottom: 25px;
    font-family: serif;
    color: #222;
}

.hero-text p {
    margin-bottom: 25px;
    line-height: 1.8;
    color: #555;
    font-size: 16px;
}

/* ---------- Services ---------- */
.services {
    padding: 100px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 42px;
    color: #222;
}

.section-title .tag {
    margin-bottom: 10px;
    display: block;
}

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

.service-card {
    background: #fff;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: 0.4s;
}

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

.service-card-img {
    width: 100%;
    object-fit: cover;
    display: block;
}

.service-card-placeholder {
    width: 100%;
    height: 220px;
    background: linear-gradient(135deg, #f5e6cc, #e8d5b5);
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-card-placeholder i {
    font-size: 48px;
    color: #9a7d4f;
    opacity: 0.4;
}

.service-card h3 {
    padding: 20px 20px 0;
    font-size: 18px;
    color: #222;
}

.service-card p {
    padding: 10px 20px 25px;
    color: #666;
    font-size: 14px;
    line-height: 1.7;
}

/* ---------- About ---------- */
.about {
    padding: 100px 0;
    background: #fff;
}

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

.about-img {
    width: 100%;
    border-radius: 20px;
}

.about-img-placeholder {
    width: 100%;
    height: 400px;
    background: linear-gradient(135deg, #f5e6cc, #e8d5b5);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-img-placeholder i {
    font-size: 80px;
    color: #9a7d4f;
    opacity: 0.4;
}

.about-text .tag {
    display: block;
    margin-bottom: 10px;
}

.about-text h2 {
    font-size: 45px;
    margin-bottom: 20px;
    color: #222;
}

.about-text p {
    line-height: 1.8;
    margin-bottom: 15px;
    color: #555;
    font-size: 16px;
}

/* ---------- Vision / Animal Heritage ---------- */
.vision-section {
    padding: 100px 0;
    background: #faf7f2;
}

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

.vision-content-side {
    padding: 40px 0;
}

.vision-content-side .tag {
    display: block;
    margin-bottom: 10px;
    font-size: 12px;
    letter-spacing: 2px;
    color: #9a7d4f;
    font-weight: 600;
    text-transform: uppercase;
}

.vision-content-side h2 {
    font-size: 16px;
    color: #c5a56d;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 8px;
    font-weight: 600;
}

.vision-content-side h3 {
    font-size: 36px;
    color: #222;
    line-height: 1.3;
    margin-bottom: 20px;
    font-family: serif;
}

.vision-divider {
    width: 60px;
    height: 3px;
    background: #c5a56d;
    margin-bottom: 25px;
}

.vision-content-side > p {
    color: #555;
    line-height: 1.9;
    margin-bottom: 12px;
    font-size: 15px;
}

.vision-highlights {
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.vision-highlight {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.vision-highlight > i {
    width: 45px;
    height: 45px;
    background: #c5a56d;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #fff;
    font-size: 18px;
}

.vision-highlight h4 {
    font-size: 16px;
    color: #222;
    margin-bottom: 3px;
    font-weight: 600;
}

.vision-highlight p {
    font-size: 14px;
    color: #888;
    line-height: 1.6;
}

.vision-image-side {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
}

.vision-hero-img {
    max-width: 100%;
    max-height: 400px;
    object-fit: contain;
    display: block;
}

/* ---------- Directors Vision ---------- */
.why-us {
    padding: 100px 0;
    background: #f4f4f4;
}

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

.feature {
    background: #fff;
    padding: 35px;
    border-radius: 15px;
    text-align: center;
    transition: 0.3s;
}

.feature:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #c5a56d, #9a7d4f);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.feature-icon i {
    font-size: 24px;
    color: #fff;
}

.feature h3 {
    margin-bottom: 15px;
    font-size: 18px;
    color: #222;
}

.feature p {
    color: #666;
    font-size: 14px;
    line-height: 1.7;
}

/* ---------- CTA ---------- */
.cta {
    padding: 100px 0;
    text-align: center;
    background: #c5a56d;
    color: #fff;
}

.cta h2 {
    font-size: 50px;
    margin-bottom: 20px;
    font-family: serif;
    color: #fff;
}

.cta p {
    max-width: 700px;
    margin: auto;
    margin-bottom: 30px;
    font-size: 16px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
}

.cta .btn {
    background: #fff;
    color: #c5a56d;
    font-weight: 600;
}

.cta .btn:hover {
    background: #222;
    color: #fff;
}

/* ---------- Footer ---------- */
.site-footer {
    background: #2a2118;
    color: #fff;
    padding: 60px 0 0;
}

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

.footer-col h4 {
    font-size: 18px;
    margin-bottom: 20px;
    color: #c5a56d;
}

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

.footer-brand .footer-logo {
    height: 130px;
    width: auto;
    margin-bottom: 20px;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.footer-col p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    font-size: 14px;
}

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

.footer-col ul li {
    margin-bottom: 10px;
}

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

.footer-col ul a:hover {
    color: #c5a56d;
}

.footer-contact-item {
    display: flex;
    gap: 10px;
    margin-bottom: 12px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
}

.footer-contact-item i {
    color: #c5a56d;
    margin-top: 3px;
    width: 16px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px 0;
    text-align: center;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
}

/* ---------- Page Banner (Inner Pages) ---------- */
.page-banner {
    padding: 160px 0 80px;
    background: linear-gradient(to right, #c5a56d, #9a7d4f);
    text-align: center;
}

.page-banner h1 {
    font-size: 42px;
    color: #fff;
    margin-bottom: 15px;
    font-family: serif;
}

.breadcrumb {
    display: flex;
    justify-content: center;
    gap: 10px;
    list-style: none;
}

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

.breadcrumb a:hover {
    color: #c5a56d;
}

.breadcrumb .active {
    color: #c5a56d;
}

.breadcrumb li + li::before {
    content: '/';
    color: rgba(255, 255, 255, 0.4);
    margin-right: 10px;
}

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

.testimonial-swiper {
    padding-bottom: 50px;
}

.testimonial-swiper .swiper-slide {
    height: auto;
}

.testimonial-card {
    background: #fff;
    padding: 40px 35px 35px;
    border-radius: 18px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.testimonial-quote-icon {
    position: absolute;
    top: 25px;
    right: 30px;
}

.testimonial-quote-icon i {
    font-size: 40px;
    color: rgba(197, 165, 109, 0.15);
}

.testimonial-stars {
    margin-bottom: 18px;
    color: #c5a56d;
    font-size: 14px;
}

.testimonial-card blockquote {
    font-style: italic;
    color: #555;
    line-height: 1.85;
    margin-bottom: 25px;
    font-size: 15px;
    flex-grow: 1;
}

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

.testimonial-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, #c5a56d, #9a7d4f);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 600;
    font-size: 17px;
    flex-shrink: 0;
}

.testimonial-info h5 {
    font-size: 15px;
    color: #222;
    margin-bottom: 2px;
}

.testimonial-info p {
    font-size: 13px;
    color: #999;
}

.testimonial-swiper .swiper-pagination {
    bottom: 0 !important;
}

.testimonial-swiper .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: #ccc;
    opacity: 1;
}

.testimonial-swiper .swiper-pagination-bullet-active {
    background: #c5a56d;
    width: 28px;
    border-radius: 5px;
}

/* ---------- Gallery ---------- */
/* ---------- Gallery Hero ---------- */
.gallery-hero {
    padding: 100px 0 60px;
    background: linear-gradient(135deg, #2c2418 0%, #3d3022 50%, #4a3828 100%);
    text-align: center;
}

.gallery-hero-content {
    color: #fff;
}

.gallery-hero-content .tag {
    color: rgba(255,255,255,0.7);
}

.gallery-hero-content h1 {
    font-size: 44px;
    font-weight: 700;
    margin: 10px 0 16px;
    font-family: serif;
}

.gallery-hero-content p {
    font-size: 17px;
    opacity: 0.85;
    max-width: 550px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ---------- Gallery ---------- */
.gallery {
    padding: 60px 0 100px;
    background: #f8f8f8;
}

.gallery-filters {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 40px;
}

.gallery-filter-btn {
    padding: 10px 24px;
    border: 2px solid #e0d8cc;
    background: #fff;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
    color: #666;
    cursor: pointer;
    transition: all 0.3s;
    font-family: 'Poppins', sans-serif;
}

.gallery-filter-btn:hover {
    border-color: #c5a56d;
    color: #c5a56d;
}

.gallery-filter-btn.active {
    background: #c5a56d;
    border-color: #c5a56d;
    color: #fff;
}

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

.gallery-card {
    border-radius: 18px;
    overflow: hidden;
    position: relative;
    height: 300px;
    background: linear-gradient(135deg, #f5e6cc, #e8d5b5);
    cursor: pointer;
}

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

.gallery-card:hover img {
    transform: scale(1.08);
}

.gallery-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-placeholder i {
    font-size: 48px;
    color: #9a7d4f;
    opacity: 0.3;
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(0,0,0,0.7) 100%);
    display: flex;
    align-items: flex-end;
    padding: 24px;
    opacity: 0;
    transition: opacity 0.3s;
}

.gallery-card:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay-content {
    color: #fff;
    width: 100%;
}

.gallery-cat {
    display: inline-block;
    font-size: 11px;
    letter-spacing: 1.5px;
    color: #c5a56d;
    text-transform: uppercase;
    margin-bottom: 6px;
}

.gallery-overlay h5 {
    font-size: 17px;
    font-weight: 600;
    margin-bottom: 10px;
}

.gallery-zoom {
    width: 36px;
    height: 36px;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(4px);
    transition: background 0.3s;
    position: absolute;
    bottom: 24px;
    right: 24px;
}

.gallery-card:hover .gallery-zoom {
    background: #c5a56d;
}

.gallery-zoom i {
    font-size: 14px;
    color: #fff;
}

.gallery-empty {
    text-align: center;
    padding: 80px 20px;
}

.gallery-empty-icon {
    width: 100px;
    height: 100px;
    background: rgba(197, 165, 109, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}

.gallery-empty-icon i {
    font-size: 42px;
    color: #c5a56d;
    opacity: 0.5;
}

.gallery-empty h3 {
    font-size: 24px;
    color: #333;
    margin-bottom: 10px;
}

.gallery-empty p {
    color: #999;
    font-size: 15px;
}

/* ---------- Gallery Lightbox ---------- */
.gallery-lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.92);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
}

.gallery-lightbox.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 24px;
    width: 44px;
    height: 44px;
    background: rgba(255,255,255,0.1);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s;
    z-index: 10;
}

.lightbox-close:hover {
    background: rgba(255,255,255,0.2);
}

.lightbox-close i {
    font-size: 18px;
    color: #fff;
}

.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: rgba(255,255,255,0.1);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s;
    z-index: 10;
}

.lightbox-prev { left: 24px; }
.lightbox-next { right: 24px; }

.lightbox-prev:hover,
.lightbox-next:hover {
    background: #c5a56d;
}

.lightbox-prev i,
.lightbox-next i {
    font-size: 18px;
    color: #fff;
}

.lightbox-content {
    max-width: 85vw;
    max-height: 85vh;
    text-align: center;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 80vh;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}

.lightbox-caption {
    color: rgba(255,255,255,0.8);
    font-size: 15px;
    margin-top: 16px;
    letter-spacing: 0.5px;
}

/* ---------- Contact ---------- */
.contact {
    padding: 100px 0;
    background: #f4f4f4;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-info h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #222;
}

.contact-info p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 30px;
}

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

.contact-detail-icon {
    width: 45px;
    height: 45px;
    background: #c5a56d;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-detail-icon i {
    color: #fff;
    font-size: 16px;
}

.contact-detail h5 {
    font-size: 15px;
    color: #222;
    margin-bottom: 3px;
}

.contact-detail span {
    font-size: 14px;
    color: #666;
}

.contact-detail-link {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    text-decoration: none;
    padding: 12px;
    border-radius: 12px;
    transition: background 0.3s;
}

.contact-detail-link:hover {
    background: rgba(197, 165, 109, 0.08);
}

.contact-detail-link:hover .contact-detail-icon {
    transform: scale(1.05);
}

.contact-detail-icon {
    transition: transform 0.3s;
}

.quick-contact-info {
    margin-top: 30px;
    padding-top: 25px;
    border-top: 1px solid #e8e0d4;
}

.quick-info-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
}

.quick-info-item i {
    width: 40px;
    height: 40px;
    background: rgba(197, 165, 109, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #c5a56d;
    font-size: 16px;
    flex-shrink: 0;
}

.quick-info-item span {
    font-size: 15px;
    color: #333;
    font-weight: 500;
}

.contact-mini-map {
    margin-top: 25px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.contact-mini-map iframe {
    width: 100%;
    height: 520px;
    border: none;
    display: block;
}

.contact-map {
    padding: 0 0 100px;
    background: #f4f4f4;
}

.contact-map .container {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.contact-map iframe {
    width: 100%;
    height: 400px;
    border: none;
    display: block;
}

.contact-form {
    background: #fff;
    padding: 40px;
    border-radius: 18px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}

.contact-form h3 {
    font-size: 24px;
    margin-bottom: 25px;
    color: #222;
}

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

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: #333;
    margin-bottom: 6px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #eee;
    border-radius: 10px;
    font-size: 15px;
    font-family: 'Poppins', sans-serif;
    transition: 0.3s;
    background: #faf7f2;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #c5a56d;
    background: #fff;
}

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

/* ---------- Inner Page Sections ---------- */
.inner-section {
    padding: 80px 0;
}

.inner-section h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #222;
}

.inner-section p {
    color: #666;
    line-height: 1.8;
    font-size: 16px;
    margin-bottom: 15px;
}

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

.inner-img-placeholder {
    width: 100%;
    height: 350px;
    background: linear-gradient(135deg, #f5e6cc, #e8d5b5);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.inner-img-placeholder i {
    font-size: 60px;
    color: #9a7d4f;
    opacity: 0.4;
}

/* ---------- Directors Vision ---------- */
.directors-section {
    padding: 100px 0;
    background: #fff;
}

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

.director-card {
    background: #faf7f2;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid #f0ece4;
    transition: transform 0.3s, box-shadow 0.3s;
}

.director-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}

.director-img-wrap {
    position: relative;
    background: linear-gradient(135deg, #2a2118 0%, #3d3024 100%);
    padding: 50px 40px 40px;
    display: flex;
    align-items: flex-end;
    gap: 20px;
}

.director-img {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #c5a56d, #9a7d4f);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 4px solid rgba(255, 255, 255, 0.2);
    flex-shrink: 0;
}

.director-img i {
    font-size: 40px;
    color: #fff;
}

.director-quote {
    position: absolute;
    top: 25px;
    right: 30px;
}

.director-quote i {
    font-size: 50px;
    color: rgba(197, 165, 109, 0.2);
}

.director-content {
    padding: 35px 40px 40px;
}

.director-tag {
    display: inline-block;
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #c5a56d;
    font-weight: 600;
    margin-bottom: 10px;
    background: rgba(197, 165, 109, 0.1);
    padding: 5px 14px;
    border-radius: 20px;
}

.director-content h3 {
    font-size: 24px;
    color: #222;
    margin-bottom: 12px;
    font-weight: 700;
}

.director-line {
    width: 50px;
    height: 3px;
    background: linear-gradient(to right, #c5a56d, #9a7d4f);
    margin-bottom: 18px;
    border-radius: 2px;
}

.director-content > p {
    color: #666;
    line-height: 1.85;
    font-size: 15px;
    margin-bottom: 10px;
}

.director-signature {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px solid #e8e0d4;
}

.director-sig-line {
    width: 40px;
    height: 2px;
    background: #c5a56d;
}

.director-signature span {
    font-size: 13px;
    color: #999;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-weight: 500;
}

/* ---------- Service Detail ---------- */
/* ---------- Service Detail Hero ---------- */
.service-hero {
    position: relative;
    padding: 100px 0 60px;
    overflow: hidden;
    min-height: 350px;
    display: flex;
    align-items: flex-end;
}

.service-hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.service-hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.4) 100%);
}

.service-hero-content {
    position: relative;
    z-index: 1;
    color: #fff;
}

.service-hero-icon {
    width: 60px;
    height: 60px;
    background: rgba(197, 165, 109, 0.9);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.service-hero-icon i {
    font-size: 26px;
    color: #fff;
}

.service-hero-content h1 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 12px;
    line-height: 1.2;
}

.service-hero-content p {
    font-size: 17px;
    opacity: 0.9;
    max-width: 600px;
    line-height: 1.7;
}

/* ---------- Service Detail Grid ---------- */
.service-detail {
    padding: 60px 0 80px;
}

.service-detail-grid {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 50px;
    align-items: start;
}

/* ---------- Service Detail Main ---------- */
.service-detail-main {
    min-width: 0;
}

.service-detail-body {
    font-size: 16px;
    line-height: 1.9;
    color: #555;
}

.service-detail-body h2 {
    font-size: 28px;
    color: #222;
    margin: 30px 0 15px;
}

.service-detail-body h3 {
    font-size: 22px;
    color: #333;
    margin: 25px 0 12px;
}

.service-detail-body h4 {
    font-size: 18px;
    color: #444;
    margin: 20px 0 10px;
}

.service-detail-body p {
    margin-bottom: 18px;
}

.service-detail-body ul,
.service-detail-body ol {
    margin-bottom: 20px;
    padding-left: 24px;
}

.service-detail-body li {
    margin-bottom: 8px;
}

.service-detail-body img {
    border-radius: 16px;
    margin: 20px 0;
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);
}

.service-detail-body blockquote {
    border-left: 4px solid #c5a56d;
    padding: 16px 24px;
    margin: 24px 0;
    background: #faf7f2;
    border-radius: 0 12px 12px 0;
    font-style: italic;
    color: #666;
}

/* ---------- Service Detail CTA ---------- */
.service-detail-cta {
    margin-top: 50px;
    padding: 36px 40px;
    background: linear-gradient(135deg, #f9f4ec 0%, #f3ece0 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    border: 1px solid rgba(197, 165, 109, 0.2);
}

.service-detail-cta h3 {
    font-size: 22px;
    color: #222;
    margin-bottom: 6px;
}

.service-detail-cta p {
    color: #777;
    font-size: 15px;
    margin: 0;
}

.service-detail-cta .btn {
    white-space: nowrap;
    flex-shrink: 0;
}

.service-detail-cta .btn i {
    margin-left: 8px;
    transition: transform 0.3s;
}

.service-detail-cta .btn:hover i {
    transform: translateX(4px);
}

/* ---------- Service Detail Sidebar ---------- */
.service-detail-sidebar {
    position: sticky;
    top: 100px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.sidebar-card {
    background: #fff;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.06);
}

.sidebar-info h4 {
    font-size: 17px;
    color: #222;
    margin-bottom: 20px;
    padding-bottom: 14px;
    border-bottom: 2px solid #f0ece4;
    display: flex;
    align-items: center;
    gap: 10px;
}

.sidebar-info h4 i {
    color: #c5a56d;
    font-size: 16px;
}

.sidebar-info ul {
    list-style: none;
    padding: 0;
}

.sidebar-info li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #f5f5f5;
}

.sidebar-info li:last-child {
    border-bottom: none;
}

.sidebar-label {
    font-size: 14px;
    color: #999;
}

.sidebar-value {
    font-size: 14px;
    color: #333;
    font-weight: 500;
    text-align: right;
}

.sidebar-status {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #22c55e;
}

.status-dot {
    width: 8px;
    height: 8px;
    background: #22c55e;
    border-radius: 50%;
    display: inline-block;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.sidebar-contact {
    text-align: center;
    background: linear-gradient(135deg, #fdfbf7 0%, #f9f4ec 100%);
    border: 1px solid rgba(197, 165, 109, 0.15);
}

.sidebar-contact-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #c5a56d, #9a7d4f);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
}

.sidebar-contact-icon i {
    font-size: 24px;
    color: #fff;
}

.sidebar-contact h4 {
    font-size: 18px;
    color: #222;
    margin-bottom: 10px;
}

.sidebar-contact p {
    font-size: 14px;
    color: #888;
    line-height: 1.7;
    margin-bottom: 20px;
}

.sidebar-btn {
    width: 100%;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

/* ---------- Related Services ---------- */
.related-services {
    padding: 80px 0;
    background: #fff;
}

.related-card {
    display: block;
    border-radius: 20px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 8px 30px rgba(0,0,0,0.06);
    transition: transform 0.3s, box-shadow 0.3s;
    text-decoration: none;
}

.related-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(0,0,0,0.1);
}

.related-card-img {
    position: relative;
    height: 220px;
    overflow: hidden;
}

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

.related-card:hover .related-card-img img {
    transform: scale(1.05);
}

.related-card-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #f5e6cc, #e8d5b5);
    display: flex;
    align-items: center;
    justify-content: center;
}

.related-card-placeholder i {
    font-size: 48px;
    color: #9a7d4f;
    opacity: 0.4;
}

.related-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,0.3) 100%);
}

.related-card-content {
    padding: 24px;
}

.related-card-content h3 {
    font-size: 18px;
    color: #222;
    margin-bottom: 8px;
    transition: color 0.3s;
}

.related-card:hover .related-card-content h3 {
    color: #c5a56d;
}

.related-card-content p {
    font-size: 14px;
    color: #888;
    line-height: 1.7;
    margin-bottom: 14px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.related-card-link {
    font-size: 14px;
    color: #c5a56d;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: gap 0.3s;
}

.related-card:hover .related-card-link {
    gap: 10px;
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
    .service-detail-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .service-detail-sidebar {
        position: static;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 24px;
    }
}

@media (max-width: 768px) {
    .service-hero {
        padding: 80px 0 40px;
        min-height: 280px;
    }

    .service-hero-content h1 {
        font-size: 30px;
    }

    .service-hero-content p {
        font-size: 15px;
    }

    .service-detail {
        padding: 40px 0 60px;
    }

    .service-detail-grid {
        gap: 30px;
    }

    .service-detail-sidebar {
        grid-template-columns: 1fr;
    }

    .service-detail-cta {
        flex-direction: column;
        text-align: center;
        padding: 28px 24px;
    }

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

/* ---------- Dynamic Page ---------- */
.page-content {
    line-height: 1.9;
    color: #555;
}

.page-content h1,
.page-content h2,
.page-content h3 {
    color: #222;
    margin-top: 25px;
    margin-bottom: 15px;
}

.page-content p {
    margin-bottom: 15px;
}

.page-content ul,
.page-content ol {
    margin-bottom: 15px;
    padding-left: 20px;
}

.page-content li {
    margin-bottom: 8px;
}

/* ---------- Alert ---------- */
.alert {
    padding: 15px 20px;
    border-radius: 10px;
    margin-bottom: 20px;
    font-size: 15px;
}

.alert-success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.alert-success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

/* ---------- Mobile Menu Toggle ---------- */
.nav-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    color: #333;
    cursor: pointer;
}

/* ---------- Simple Breadcrumb ---------- */
.simple-breadcrumb {
    padding: 20px 0;
    background: #faf7f2;
    border-bottom: 1px solid #f0ece4;
}

.simple-breadcrumb .container {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.simple-breadcrumb a {
    color: #888;
    font-size: 14px;
    text-decoration: none;
    transition: color 0.3s;
}

.simple-breadcrumb a:hover {
    color: #c5a56d;
}

.simple-breadcrumb .separator {
    color: #ccc;
    font-size: 13px;
}

.simple-breadcrumb .current {
    color: #222;
    font-size: 14px;
    font-weight: 500;
}

/* ---------- FAQ ---------- */
.faq-section {
    padding: 80px 0 100px;
    background: #f8f8f8;
}

.faq-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: #fff;
    border-radius: 12px;
    margin-bottom: 16px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
    border: 1px solid #f0ece4;
    overflow: hidden;
    transition: box-shadow 0.3s;
}

.faq-item:hover {
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.07);
}

.faq-item.active {
    border-color: #c5a56d;
    box-shadow: 0 5px 25px rgba(197, 165, 109, 0.12);
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 22px 28px;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-size: 16px;
    font-weight: 600;
    color: #222;
    font-family: 'Poppins', sans-serif;
    gap: 15px;
    transition: color 0.3s;
}

.faq-question:hover {
    color: #c5a56d;
}

.faq-item.active .faq-question {
    color: #c5a56d;
}

.faq-question i {
    font-size: 14px;
    color: #c5a56d;
    transition: transform 0.3s;
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    background: rgba(197, 165, 109, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.faq-answer-content {
    padding: 0 28px 22px;
    color: #666;
    line-height: 1.8;
    font-size: 15px;
}

.faq-answer-content p {
    margin-bottom: 10px;
}

.faq-empty {
    text-align: center;
    padding: 60px 20px;
    color: #999;
}

.faq-empty i {
    font-size: 50px;
    color: #ddd;
    margin-bottom: 15px;
}

/* ---------- Home Blogs ---------- */
.home-blogs {
    padding: 100px 0;
    background: #faf7f2;
}

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

.home-blog-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    border: 1px solid #f0ece4;
    transition: transform 0.3s, box-shadow 0.3s;
    display: flex;
    flex-direction: column;
}

.home-blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.home-blog-img {
    height: 220px;
    overflow: hidden;
}

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

.home-blog-card:hover .home-blog-img img {
    transform: scale(1.05);
}

.home-blog-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #f5e6cc, #e8d5b5);
    display: flex;
    align-items: center;
    justify-content: center;
}

.home-blog-placeholder i {
    font-size: 50px;
    color: #9a7d4f;
    opacity: 0.4;
}

.home-blog-content {
    padding: 25px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.home-blog-meta {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 12px;
    font-size: 13px;
    color: #999;
}

.home-blog-meta i {
    margin-right: 5px;
    color: #c5a56d;
}

.home-blog-cat {
    background: rgba(197, 165, 109, 0.1);
    color: #c5a56d;
    padding: 3px 10px;
    border-radius: 20px;
    font-weight: 500;
}

.home-blog-content h3 {
    font-size: 19px;
    color: #222;
    margin-bottom: 10px;
    line-height: 1.4;
    transition: color 0.3s;
}

.home-blog-card:hover .home-blog-content h3 {
    color: #c5a56d;
}

.home-blog-content p {
    color: #888;
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 15px;
    flex-grow: 1;
}

.home-blog-link {
    font-size: 14px;
    color: #c5a56d;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: gap 0.3s;
}

.home-blog-card:hover .home-blog-link {
    gap: 10px;
}

.home-blog-more {
    text-align: center;
    margin-top: 40px;
}

/* ---------- Blog Page ---------- */
/* ---------- Blog Hero ---------- */
.blog-hero {
    padding: 100px 0 60px;
    background: linear-gradient(135deg, #2c2418 0%, #3d3022 50%, #4a3828 100%);
    text-align: center;
}

.blog-hero-content {
    color: #fff;
}

.blog-hero-content .tag {
    color: rgba(255,255,255,0.7);
}

.blog-hero-content h1 {
    font-size: 44px;
    font-weight: 700;
    margin: 10px 0 16px;
    font-family: serif;
}

.blog-hero-content p {
    font-size: 17px;
    opacity: 0.85;
    max-width: 550px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ---------- Blog Section ---------- */
.blog-section {
    padding: 60px 0 100px;
    background: #f8f8f8;
}

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

.blog-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid #f0ece4;
    transition: transform 0.3s, box-shadow 0.3s;
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.1);
}

.blog-card-img {
    height: 220px;
    overflow: hidden;
    position: relative;
}

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

.blog-card:hover .blog-card-img img {
    transform: scale(1.08);
}

.blog-card-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #f5e6cc, #e8d5b5);
    display: flex;
    align-items: center;
    justify-content: center;
}

.blog-card-placeholder i {
    font-size: 50px;
    color: #9a7d4f;
    opacity: 0.4;
}

.blog-category {
    position: absolute;
    top: 15px;
    left: 15px;
    background: #c5a56d;
    color: #fff;
    padding: 5px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.blog-card-content {
    padding: 25px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.blog-meta {
    display: flex;
    gap: 15px;
    margin-bottom: 12px;
    font-size: 13px;
    color: #999;
}

.blog-meta i {
    margin-right: 5px;
    color: #c5a56d;
}

.blog-card-content h3 {
    font-size: 19px;
    color: #222;
    margin-bottom: 10px;
    line-height: 1.4;
    transition: color 0.3s;
    flex: 1;
}

.blog-card:hover .blog-card-content h3 {
    color: #c5a56d;
}

.blog-card-content p {
    color: #888;
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 18px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-read-more {
    font-size: 14px;
    color: #c5a56d;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: gap 0.3s;
}

.blog-card:hover .blog-read-more {
    gap: 10px;
}

.blog-pagination {
    margin-top: 50px;
    text-align: center;
}

.blog-empty {
    text-align: center;
    padding: 80px 20px;
}

.blog-empty-icon {
    width: 100px;
    height: 100px;
    background: rgba(197, 165, 109, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}

.blog-empty-icon i {
    font-size: 42px;
    color: #c5a56d;
    opacity: 0.5;
}

.blog-empty h3 {
    font-size: 24px;
    color: #333;
    margin-bottom: 10px;
}

.blog-empty p {
    color: #999;
    font-size: 15px;
}

/* ---------- Blog Detail Hero ---------- */
.blog-detail-hero {
    padding: 100px 0 60px;
    background: linear-gradient(135deg, #2c2418 0%, #3d3022 50%, #4a3828 100%);
}

.blog-detail-hero-content {
    color: #fff;
    max-width: 750px;
}

.blog-detail-hero-cat {
    display: inline-block;
    background: rgba(197, 165, 109, 0.2);
    color: #c5a56d;
    padding: 6px 18px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.blog-detail-hero-content h1 {
    font-size: 40px;
    font-weight: 700;
    line-height: 1.25;
    margin-bottom: 18px;
    font-family: serif;
}

.blog-detail-hero-meta {
    display: flex;
    gap: 24px;
    font-size: 14px;
    opacity: 0.8;
    flex-wrap: wrap;
}

.blog-detail-hero-meta i {
    margin-right: 6px;
    color: #c5a56d;
}

/* ---------- Blog Detail ---------- */
.blog-detail-section {
    padding: 60px 0 100px;
    background: #f8f8f8;
}

.blog-detail-grid {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 50px;
    align-items: start;
}

.blog-detail-main {
    min-width: 0;
}

.blog-detail-img {
    width: 100%;
    border-radius: 20px;
    margin-bottom: 35px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.blog-detail-content {
    line-height: 1.9;
    color: #555;
    font-size: 16px;
}

.blog-detail-content h1,
.blog-detail-content h2,
.blog-detail-content h3 {
    color: #222;
    margin-top: 35px;
    margin-bottom: 15px;
}

.blog-detail-content p {
    margin-bottom: 18px;
}

.blog-detail-content img {
    border-radius: 14px;
    margin: 24px 0;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
}

.blog-detail-content blockquote {
    border-left: 4px solid #c5a56d;
    padding: 18px 24px;
    margin: 28px 0;
    background: #faf7f2;
    border-radius: 0 14px 14px 0;
    font-style: italic;
    color: #666;
}

.blog-detail-content ul,
.blog-detail-content ol {
    margin-bottom: 20px;
    padding-left: 24px;
}

.blog-detail-content li {
    margin-bottom: 8px;
}

/* Blog Share */
.blog-detail-share {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid #eee;
    display: flex;
    align-items: center;
    gap: 16px;
}

.share-label {
    font-size: 15px;
    font-weight: 500;
    color: #444;
}

.share-links {
    display: flex;
    gap: 10px;
}

.share-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.share-link:hover {
    background: #c5a56d;
    color: #fff;
    transform: translateY(-2px);
}

.share-link i {
    font-size: 15px;
    color: #666;
}

.share-link:hover i {
    color: #fff;
}

/* ---------- Blog Detail Sidebar ---------- */
.blog-detail-sidebar {
    position: sticky;
    top: 100px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.sidebar-widget {
    background: #fff;
    border-radius: 20px;
    padding: 28px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
    border: 1px solid #f0ece4;
}

.sidebar-widget h4 {
    font-size: 17px;
    color: #222;
    margin-bottom: 18px;
    padding-bottom: 14px;
    border-bottom: 2px solid #f0ece4;
}

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

.sidebar-search-icon {
    width: 56px;
    height: 56px;
    background: rgba(197, 165, 109, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 14px;
}

.sidebar-search-icon i {
    font-size: 20px;
    color: #c5a56d;
}

.sidebar-search-form {
    display: flex;
    gap: 8px;
}

.sidebar-search-form input {
    flex: 1;
    padding: 10px 16px;
    border: 1px solid #e8e4dc;
    border-radius: 10px;
    font-size: 14px;
    font-family: 'Poppins', sans-serif;
    outline: none;
    transition: border-color 0.3s;
}

.sidebar-search-form input:focus {
    border-color: #c5a56d;
}

.sidebar-search-form button {
    width: 42px;
    height: 42px;
    background: #c5a56d;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s;
}

.sidebar-search-form button:hover {
    background: #b09258;
}

.sidebar-search-form button i {
    color: #fff;
    font-size: 14px;
}

.sidebar-post {
    display: flex;
    gap: 14px;
    padding: 12px 0;
    border-bottom: 1px solid #f5f5f5;
    align-items: center;
}

.sidebar-post:last-child {
    border-bottom: none;
}

.sidebar-post img {
    width: 72px;
    height: 72px;
    border-radius: 12px;
    object-fit: cover;
    flex-shrink: 0;
    transition: transform 0.3s;
}

.sidebar-post:hover img {
    transform: scale(1.05);
}

.sidebar-post-img {
    width: 72px;
    height: 72px;
    border-radius: 12px;
    background: linear-gradient(135deg, #f5e6cc, #e8d5b5);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.sidebar-post-img i {
    color: #9a7d4f;
    opacity: 0.5;
}

.sidebar-post h5 {
    font-size: 14px;
    color: #222;
    margin-bottom: 4px;
    line-height: 1.4;
    transition: color 0.3s;
}

.sidebar-post:hover h5 {
    color: #c5a56d;
}

.sidebar-post span {
    font-size: 12px;
    color: #999;
    display: flex;
    align-items: center;
    gap: 4px;
}

.sidebar-post span i {
    color: #c5a56d;
    font-size: 11px;
}

.sidebar-cta {
    background: linear-gradient(135deg, #2c2418, #3d3022);
    color: #fff;
    text-align: center;
    border: none;
}

.sidebar-cta-icon {
    width: 60px;
    height: 60px;
    background: rgba(197, 165, 109, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}

.sidebar-cta-icon i {
    font-size: 24px;
    color: #c5a56d;
}

.sidebar-cta h4 {
    color: #fff;
    border-bottom-color: rgba(255,255,255,0.15);
}

.sidebar-cta p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 20px;
}

.sidebar-cta-btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

/* ---------- About Intro ---------- */
/* ---------- About Hero ---------- */
.about-hero {
    position: relative;
    padding: 120px 0 80px;
    overflow: hidden;
    min-height: 400px;
    display: flex;
    align-items: flex-end;
}

.about-hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.about-hero-bg img,
.about-hero-placeholder {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-hero-placeholder {
    background: linear-gradient(135deg, #f5e6cc, #e8d5b5);
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-hero-placeholder i {
    font-size: 80px;
    color: #9a7d4f;
    opacity: 0.3;
}

.about-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.45) 100%);
}

.about-hero-content {
    position: relative;
    z-index: 1;
    color: #fff;
}

.tag-light {
    color: rgba(255,255,255,0.8);
}

.about-hero-content h1 {
    font-size: 44px;
    font-weight: 700;
    margin: 10px 0 16px;
    line-height: 1.2;
    font-family: serif;
}

.about-hero-content p {
    font-size: 17px;
    opacity: 0.9;
    max-width: 550px;
    line-height: 1.7;
}

/* ---------- About Intro ---------- */
.about-intro {
    padding: 80px 0 100px;
    background: #fff;
}

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

.about-intro-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.about-intro-image img {
    width: 100%;
    display: block;
}

.about-intro-placeholder {
    width: 100%;
    height: 450px;
    background: linear-gradient(135deg, #f5e6cc, #e8d5b5);
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-intro-placeholder i {
    font-size: 80px;
    color: #9a7d4f;
    opacity: 0.4;
}

.about-intro-text .tag {
    display: block;
    margin-bottom: 10px;
}

.about-intro-text h2 {
    font-size: 38px;
    color: #222;
    margin-bottom: 15px;
    line-height: 1.3;
}

.about-intro-divider {
    width: 60px;
    height: 3px;
    background: linear-gradient(to right, #c5a56d, #9a7d4f);
    margin-bottom: 25px;
}

.about-intro-text p {
    color: #666;
    line-height: 1.85;
    margin-bottom: 15px;
    font-size: 15px;
}

.about-intro-highlights {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid #f0ece4;
}

.about-highlight {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    color: #444;
    font-weight: 500;
}

.about-highlight i {
    color: #22c55e;
    font-size: 16px;
}

/* ---------- Mission & Vision ---------- */
.mission-vision {
    padding: 100px 0;
    background: #faf7f2;
}

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

.mv-card {
    background: #fff;
    padding: 50px 40px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
    border: 1px solid #f0ece4;
    transition: transform 0.3s, box-shadow 0.3s;
}

.mv-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.mv-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #c5a56d, #9a7d4f);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.mv-icon i {
    font-size: 32px;
    color: #fff;
}

.mv-card h3 {
    font-size: 24px;
    color: #222;
    margin-bottom: 12px;
}

.mv-line {
    width: 40px;
    height: 3px;
    background: #c5a56d;
    margin: 0 auto 20px;
    border-radius: 2px;
}

.mv-card p {
    color: #666;
    line-height: 1.85;
    font-size: 15px;
}

/* ---------- Journey ---------- */
.journey-section {
    padding: 100px 0;
    background: #fff;
}

.journey-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
}

.journey-text p {
    color: #666;
    line-height: 1.85;
    margin-bottom: 15px;
    font-size: 15px;
}

.journey-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.journey-stat {
    background: #faf7f2;
    padding: 35px 25px;
    border-radius: 16px;
    text-align: center;
    border: 1px solid #f0ece4;
    transition: transform 0.3s, box-shadow 0.3s;
}

.journey-stat:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.06);
}

.journey-stat-icon {
    width: 50px;
    height: 50px;
    background: rgba(197, 165, 109, 0.12);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}

.journey-stat-icon i {
    font-size: 20px;
    color: #c5a56d;
}

.journey-stat-number {
    display: block;
    font-size: 42px;
    font-weight: 700;
    color: #c5a56d;
    margin-bottom: 8px;
}

.journey-stat-label {
    font-size: 14px;
    color: #888;
    font-weight: 500;
}

/* ---------- Values ---------- */
.values-section {
    padding: 100px 0;
    background: #f8f8f8;
}

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

.value-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    border: 1px solid #f0ece4;
    transition: transform 0.3s, box-shadow 0.3s;
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}

.value-icon {
    width: 70px;
    height: 70px;
    background: rgba(197, 165, 109, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.value-icon i {
    font-size: 28px;
    color: #c5a56d;
}

.value-card h4 {
    font-size: 18px;
    color: #222;
    margin-bottom: 12px;
}

.value-card p {
    color: #888;
    font-size: 14px;
    line-height: 1.7;
}

/* ---------- Team ---------- */
.team-section {
    padding: 100px 0;
    background: #fff;
}

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

.team-card {
    text-align: center;
    border-radius: 20px;
    overflow: hidden;
    background: #faf7f2;
    border: 1px solid #f0ece4;
    transition: transform 0.3s, box-shadow 0.3s;
}

.team-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.team-photo {
    position: relative;
    overflow: hidden;
    height: 280px;
}

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

.team-card:hover .team-photo img {
    transform: scale(1.05);
}

.team-photo-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #e8d5b5, #d4c4a8);
    display: flex;
    align-items: center;
    justify-content: center;
}

.team-photo-placeholder i {
    font-size: 60px;
    color: #9a7d4f;
    opacity: 0.4;
}

.team-social {
    position: absolute;
    bottom: -50px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    gap: 10px;
    padding: 15px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
    transition: bottom 0.3s;
}

.team-card:hover .team-social {
    bottom: 0;
}

.team-social a {
    width: 40px;
    height: 40px;
    background: #c5a56d;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 15px;
    transition: background 0.3s;
}

.team-social a:hover {
    background: #9a7d4f;
}

.team-info {
    padding: 25px 20px 30px;
}

.team-info h4 {
    font-size: 18px;
    color: #222;
    margin-bottom: 5px;
}

.team-designation {
    font-size: 13px;
    color: #c5a56d;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: block;
    margin-bottom: 10px;
}

.team-info p {
    color: #888;
    font-size: 13px;
    line-height: 1.6;
}

/* ---------- WhatsApp-Style Doodle Backgrounds ---------- */
.doodle-bg,
.doodle-bg-2,
.doodle-bg-dark {
    position: relative;
}

.doodle-bg::before,
.doodle-bg-2::before,
.doodle-bg-dark::before {
    content: '';
    position: absolute;
    inset: 0;
    opacity: 0.35;
    pointer-events: none;
    background-repeat: repeat;
    background-size: 280px 280px;
}

/* Doodle Pattern 1 - Light sections */
.doodle-bg::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='280' height='280' viewBox='0 0 280 280'%3E%3Cg fill='none' stroke='%23c5a56d' stroke-width='1' opacity='0.25'%3E%3C!-- flower 1 --%3E%3Ccircle cx='40' cy='40' r='6'/%3E%3Ccircle cx='40' cy='28' r='5'/%3E%3Ccircle cx='40' cy='52' r='5'/%3E%3Ccircle cx='28' cy='40' r='5'/%3E%3Ccircle cx='52' cy='40' r='5'/%3E%3Ccircle cx='32' cy='32' r='4'/%3E%3Ccircle cx='48' cy='32' r='4'/%3E%3Ccircle cx='32' cy='48' r='4'/%3E%3Ccircle cx='48' cy='48' r='4'/%3E%3C!-- leaf 1 --%3E%3Cpath d='M140 30 Q155 10 170 30 Q155 50 140 30Z'/%3E%3Cline x1='155' y1='15' x2='155' y2='50'/%3E%3C!-- star --%3E%3Cpath d='M230 45 l5 15 16 0 -13 10 5 15 -13 -10 -13 10 5 -15 -13 -10 16 0z'/%3E%3C!-- heart --%3E%3Cpath d='M90 130 C90 120 75 115 75 125 C75 135 90 145 90 145 C90 145 105 135 105 125 C105 115 90 120 90 130Z'/%3E%3C!-- circle dots --%3E%3Ccircle cx='180' cy='140' r='12'/%3E%3Ccircle cx='180' cy='140' r='4' fill='%23c5a56d' fill-opacity='0.15'/%3E%3C!-- triangle --%3E%3Cpath d='M30 190 L50 160 L70 190Z'/%3E%3C!-- diamond --%3E%3Cpath d='M130 220 L145 200 L160 220 L145 240Z'/%3E%3C!-- cloud --%3E%3Cpath d='M210 200 Q210 185 225 185 Q225 175 240 175 Q255 175 255 185 Q270 185 270 200 Q270 215 255 215 L225 215 Q210 215 210 200Z'/%3E%3C!-- squiggle --%3E%3Cpath d='M20 260 Q35 245 50 260 Q65 275 80 260'/%3E%3C!-- cross --%3E%3Cline x1='240' y1='55' x2='240' y2='75'/%3E%3Cline x1='230' y1='65' x2='250' y2='65'/%3E%3C!-- spiral --%3E%3Cpath d='M105 250 Q115 240 115 250 Q115 260 105 260 Q95 260 95 250 Q95 240 105 240'/%3E%3C/g%3E%3C/svg%3E");
}

/* Doodle Pattern 2 - Alternate light sections */
.doodle-bg-2::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='280' height='280' viewBox='0 0 280 280'%3E%3Cg fill='none' stroke='%23c5a56d' stroke-width='1' opacity='0.22'%3E%3C!-- leaf 2 --%3E%3Cpath d='M50 50 Q30 30 50 10 Q70 30 50 50Z'/%3E%3Cline x1='50' y1='10' x2='50' y2='60'/%3E%3C!-- sun --%3E%3Ccircle cx='160' cy='50' r='12'/%3E%3Cline x1='160' y1='28' x2='160' y2='20'/%3E%3Cline x1='160' y1='72' x2='160' y2='80'/%3E%3Cline x1='138' y1='50' x2='130' y2='50'/%3E%3Cline x1='182' y1='50' x2='190' y2='50'/%3E%3Cline x1='144' y1='34' x2='139' y2='29'/%3E%3Cline x1='176' y1='34' x2='181' y2='29'/%3E%3Cline x1='144' y1='66' x2='139' y2='71'/%3E%3Cline x1='176' y1='66' x2='181' y2='71'/%3E%3C!-- bell --%3E%3Cpath d='M240 30 Q240 15 255 15 Q270 15 270 30 L275 50 Q275 55 270 55 L245 55 Q240 55 240 50Z'/%3E%3Ccircle cx='257.5' cy='62' r='4'/%3E%3C!-- flower 2 --%3E%3Ccircle cx='100' cy='140' r='5'/%3E%3Cellipse cx='100' cy='128' rx='4' ry='7'/%3E%3Cellipse cx='100' cy='152' rx='4' ry='7'/%3E%3Cellipse cx='88' cy='140' rx='7' ry='4'/%3E%3Cellipse cx='112' cy='140' rx='7' ry='4'/%3E%3C!-- wave --%3E%3Cpath d='M20 200 Q40 185 60 200 Q80 215 100 200 Q120 185 140 200'/%3E%3C!-- arrow --%3E%3Cpath d='M220 130 L250 130 L240 120'/%3E%3Cline x1='250' y1='130' x2='240' y2='140'/%3E%3C!-- moon --%3E%3Cpath d='M180 230 Q200 220 200 240 Q190 255 180 230Z'/%3E%3C!-- music note --%3E%3Ccircle cx='60' cy='260' r='6'/%3E%3Cline x1='66' y1='260' x2='66' y2='240'/%3E%3Cline x1='66' y1='240' x2='76' y2='245'/%3E%3C!-- star 2 --%3E%3Cpath d='M260 220 l3 9 9 0 -7 6 3 9 -8 -5 -8 5 3 -9 -7 -6 9 0z'/%3E%3C/g%3E%3C/svg%3E");
}

/* Doodle Pattern Dark - Dark sections */
.doodle-bg-dark::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='280' height='280' viewBox='0 0 280 280'%3E%3Cg fill='none' stroke='%23ffffff' stroke-width='1' opacity='0.08'%3E%3C!-- flower --%3E%3Ccircle cx='40' cy='40' r='6'/%3E%3Ccircle cx='40' cy='28' r='5'/%3E%3Ccircle cx='40' cy='52' r='5'/%3E%3Ccircle cx='28' cy='40' r='5'/%3E%3Ccircle cx='52' cy='40' r='5'/%3E%3C!-- star --%3E%3Cpath d='M150 30 l4 12 13 0 -10 8 4 12 -11 -8 -11 8 4 -12 -10 -8 13 0z'/%3E%3C!-- heart --%3E%3Cpath d='M240 50 C240 40 225 35 225 45 C225 55 240 65 240 65 C240 65 255 55 255 45 C255 35 240 40 240 50Z'/%3E%3C!-- leaf --%3E%3Cpath d='M80 140 Q65 120 80 100 Q95 120 80 140Z'/%3E%3Cline x1='80' y1='100' x2='80' y2='150'/%3E%3C!-- circle --%3E%3Ccircle cx='180' cy='130' r='15'/%3E%3Ccircle cx='180' cy='130' r='5' fill='%23ffffff' fill-opacity='0.05'/%3E%3C!-- triangle --%3E%3Cpath d='M30 210 L50 180 L70 210Z'/%3E%3C!-- diamond --%3E%3Cpath d='M140 220 L155 200 L170 220 L155 240Z'/%3E%3C!-- squiggle --%3E%3Cpath d='M200 210 Q215 195 230 210 Q245 225 260 210'/%3E%3C!-- cloud --%3E%3Cpath d='M50 260 Q50 248 62 248 Q62 240 75 240 Q88 240 88 248 Q100 248 100 260 Q100 272 88 272 L62 272 Q50 272 50 260Z'/%3E%3C!-- cross --%3E%3Cline x1='220' y1='130' x2='220' y2='150'/%3E%3Cline x1='210' y1='140' x2='230' y2='140'/%3E%3C/g%3E%3C/svg%3E");
}

/* ---------- Scroll Reveal ---------- */
.reveal-up,
.reveal-left,
.reveal-right,
.reveal-scale {
    opacity: 0;
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reveal-up {
    transform: translateY(50px);
}

.reveal-left {
    transform: translateX(-50px);
}

.reveal-right {
    transform: translateX(50px);
}

.reveal-scale {
    transform: scale(0.9);
}

.reveal-up.revealed,
.reveal-left.revealed,
.reveal-right.revealed,
.reveal-scale.revealed {
    opacity: 1;
    transform: translate(0) scale(1);
}

.service-grid .reveal-up:nth-child(1) { transition-delay: 0.1s; }
.service-grid .reveal-up:nth-child(2) { transition-delay: 0.2s; }
.service-grid .reveal-up:nth-child(3) { transition-delay: 0.3s; }

.vision-highlights .reveal-up:nth-child(1) { transition-delay: 0.1s; }
.vision-highlights .reveal-up:nth-child(2) { transition-delay: 0.2s; }
.vision-highlights .reveal-up:nth-child(3) { transition-delay: 0.3s; }

/* ---------- Responsive ---------- */
@media (max-width: 992px) {
    .about-grid,
    .about-intro-grid,
    .contact-grid,
    .inner-grid {
        grid-template-columns: 1fr;
    }

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

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

    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery-card {
        height: 260px;
    }

    .vision-container {
        grid-template-columns: 1fr;
    }

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

    .home-blog-grid,
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .blog-detail-grid {
        grid-template-columns: 1fr;
    }

    .blog-detail-sidebar {
        flex-direction: row;
    }

    .sidebar-widget {
        flex: 1;
    }

    .service-grid,
    .features {
        grid-template-columns: 1fr;
    }

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

    .hero h1 {
        font-size: 50px;
    }

    .about-text h2 {
        font-size: 36px;
    }

    .section-title h2 {
        font-size: 36px;
    }

    .cta h2 {
        font-size: 36px;
    }
}

@media (max-width: 768px) {
    nav ul {
        display: none;
    }

    .nav-toggle {
        display: block;
    }

    nav.open ul {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #fff;
        padding: 20px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        gap: 15px;
        z-index: 100;
    }

    nav.open ul a {
        padding: 8px 0;
        border-bottom: 1px solid #f0f0f0;
    }

    .hero {
        padding: 80px 0;
    }

    .hero-content {
        max-width: 100%;
        margin-left: 0;
        padding: 0 20px;
    }

    .hero h1 {
        font-size: 36px;
    }

    .hero-text p {
        font-size: 15px;
    }

    .services,
    .about,
    .about-intro,
    .mission-vision,
    .journey-section,
    .values-section,
    .team-section,
    .why-us,
    .testimonials,
    .directors-section,
    .cta {
        padding: 60px 0;
    }

    .about-hero {
        padding: 100px 0 60px;
        min-height: 320px;
    }

    .about-hero-content h1 {
        font-size: 32px;
    }

    .about-hero-content p {
        font-size: 15px;
    }

    .about-intro-text h2 {
        font-size: 28px;
    }

    .gallery-hero {
        padding: 80px 0 40px;
    }

    .gallery-hero-content h1 {
        font-size: 32px;
    }

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

    .gallery-card {
        height: 280px;
    }

    .gallery-filters {
        gap: 8px;
    }

    .gallery-filter-btn {
        padding: 8px 18px;
        font-size: 13px;
    }

    .lightbox-prev,
    .lightbox-next {
        width: 40px;
        height: 40px;
    }

    .lightbox-prev { left: 12px; }
    .lightbox-next { right: 12px; }

    .mv-card {
        padding: 35px 25px;
    }

    .journey-stats {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }

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

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

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

    .team-photo {
        height: 300px;
    }

    .service-grid,
    .features {
        grid-template-columns: 1fr;
    }

    .vision-content-side {
        padding: 20px 0;
    }

    .vision-content-side h2 {
        font-size: 13px;
    }

    .vision-content-side h3 {
        font-size: 24px;
    }

    .vision-content-side > p {
        font-size: 14px;
    }

    .vision-highlight h4 {
        font-size: 14px;
    }

    .vision-highlight p {
        font-size: 13px;
    }

    .vision-image-side {
        padding: 20px 0;
    }

    .vision-hero-img {
        max-height: 280px;
    }

    .directors-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .director-card {
        padding: 0;
    }

    .director-img-wrap {
        padding: 35px 30px 30px;
    }

    .director-img {
        width: 80px;
        height: 80px;
    }

    .director-img i {
        font-size: 32px;
    }

    .director-content {
        padding: 25px 30px 30px;
    }

    .director-content h3 {
        font-size: 20px;
    }

    .director-content > p {
        font-size: 14px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .site-footer {
        padding: 40px 0 0;
    }

    .footer-bottom {
        text-align: center;
        padding: 20px 0;
        font-size: 13px;
    }

    .about-text h2,
    .section-title h2 {
        font-size: 28px;
    }

    .about-text p,
    .section-title p {
        font-size: 14px;
    }

    .cta {
        text-align: center;
    }

    .cta h2 {
        font-size: 26px;
    }

    .cta p {
        font-size: 14px;
    }

    .page-banner {
        padding: 120px 0 50px;
    }

    .page-banner h1 {
        font-size: 28px;
    }

    .contact-grid {
        gap: 40px;
    }

    .contact-detail {
        flex-direction: column;
        text-align: center;
        gap: 12px;
    }

    .contact-form-grid {
        grid-template-columns: 1fr;
    }

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

    .blog-hero {
        padding: 80px 0 40px;
    }

    .blog-hero-content h1 {
        font-size: 32px;
    }

    .blog-detail-hero {
        padding: 80px 0 40px;
    }

    .blog-detail-hero-content h1 {
        font-size: 28px;
    }

    .blog-detail-hero-meta {
        gap: 16px;
    }

    .blog-detail-sidebar {
        flex-direction: column;
    }

    .sidebar-post img,
    .sidebar-post-img {
        width: 60px;
        height: 60px;
    }

    .blog-detail-share {
        flex-direction: column;
        align-items: flex-start;
    }
}
