@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700&family=Noto+Sans:wght@300;400;500;600;700&display=swap');

@font-face {
    font-family: 'TRYClother';
    src: url('fonts/TRYClother-Regular.eot');
    src: local('TRYClother Regular'), local('TRYClother-Regular'),
        url('fonts/TRYClother-Regular.eot?#iefix') format('embedded-opentype'),
        url('fonts/TRYClother-Regular.woff2') format('woff2'),
        url('fonts/TRYClother-Regular.woff') format('woff'),
        url('fonts/TRYClother-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

:root {
    /*--primary: #4d1675;
    --primary-light: #6c20a4;
    --accent: #74beeb;
    --bg-light: #f3effa;*/
    --primary: #104e27;
    --primary-light: #30944a;
    --accent: #ffab00;
    --gradient-accent: #002c13;
    --bg-light: #f3effa;
    --text-dark: #1c2a38;
    --text-light: #f8f9fa;
    --white: #ffffff;
    --font: 'Noto Sans', 'Outfit', sans-serif;
    --shadow: 0 8px 30px rgba(0,0,0,0.06);
    --shadow-hover: 0 15px 35px rgba(0,0,0,0.12);
    --border-radius: 12px;
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

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

body {
    font-family: var(--font);
    background-color: var(--white);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'TRYClother', sans-serif;
    font-weight: bold;
    color: var(--primary);
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

/* Coming Soon Ribbon */
.coming-soon-hero {
    position: relative;
    padding: 70px 0 70px;
    background: linear-gradient(135deg, rgba(77,22,117,0.04) 0%, rgba(108,32,164,0.08) 100%);
    overflow: hidden;
}

.coming-soon-ribbon {
    position: absolute;
    top: 16px;
    left: 16px;
    z-index: 10;
}

.coming-soon-ribbon-inner {
    display: flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #002c13 0%, var(--primary) 100%);
    color: #fff;
    padding: 10px 24px 10px 16px;
    font-weight: 700;
    font-size: 1.1rem;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.18);
    white-space: nowrap;
}

.coming-soon-logo {
    height: 32px;
    width: auto;
    object-fit: contain;
}

.coming-soon-text {
    letter-spacing: 0.08em;
}

@media (max-width: 768px) {
    .coming-soon-ribbon {
        top: 10px;
        left: 10px;
    }
    .coming-soon-ribbon-inner {
        font-size: 0.85rem;
        padding: 8px 16px 8px 10px;
        gap: 6px;
    }
    .coming-soon-logo {
        height: 24px;
    }
}

/* Header and Navigation */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
    transition: var(--transition);
}

.site-header.scrolled {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08);
    padding: 0;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 8px 24px;
}

.logo-link {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-img {
    height: 60px;
    width: auto;
    object-fit: contain;
    transition: var(--transition);
}

.scrolled .logo-img {
    height: 48px;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: 2px;
    color: var(--primary);
}

.logo-text span {
    color: var(--accent);
}

.main-nav {
    display: flex;
    align-items: center;
}

.nav-list {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 24px;
}

.nav-list > li {
    position: relative;
}

.nav-list > li > a {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-dark);
    padding: 8px 4px;
}

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

.nav-list > li > a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-light);
    transition: var(--transition);
}

.nav-list > li > a:hover::after,
.nav-list > li.active > a::after {
    width: 100%;
}

/* Dropdown Menu */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(15px);
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
    min-width: 260px;
    padding: 10px 0;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.dropdown-menu li a {
    display: block;
    padding: 10px 20px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-dark);
}

.dropdown-menu li a:hover {
    background-color: var(--bg-light);
    color: var(--primary);
    padding-left: 25px;
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
}

.hamburger {
    display: block;
    width: 24px;
    height: 2px;
    background-color: var(--primary);
    position: relative;
    transition: var(--transition);
}

.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    width: 24px;
    height: 2px;
    background-color: var(--primary);
    left: 0;
    transition: var(--transition);
}

.hamburger::before { top: -8px; }
.hamburger::after { top: 8px; }

.nav-toggle.open .hamburger {
    background-color: transparent;
}

.nav-toggle.open .hamburger::before {
    transform: rotate(45deg);
    top: 0;
}

.nav-toggle.open .hamburger::after {
    transform: rotate(-45deg);
    top: 0;
}

/* Banner & Hero Section */
.hero-banner {
    position: relative;
    padding: 135px 0 70px;
    background: linear-gradient(135deg, rgba(77,22,117,0.04) 0%, rgba(108,32,164,0.08) 100%);
    overflow: hidden;
}

.hero-wave {
    position: absolute;
    bottom: -24px;
    left: 0;
    width: 100%;
    height: auto;
    pointer-events: none;
    z-index: 1;
}

.hero-wave path {
    fill: var(--primary);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 2;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 48px;
    align-items: center;
}

.hero-content h1 {
    font-size: 3.5rem;
    color: var(--primary);
    margin-bottom: 20px;
    line-height: 1.1;
}

.hero-content h1 span {
    color: var(--accent);
}

.hero-content p {
    font-size: 1.15rem;
    color: #4a5568;
    margin-bottom: 30px;
    max-width: 600px;
}

.btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 30px;
    font-weight: 600;
    letter-spacing: 0.5px;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    border: none;
    transition: var(--transition);
}

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

.btn-primary:hover {
    background-color: var(--primary-light);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(108,32,164,0.25);
}

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

.btn-accent:hover {
    background-color: var(--white);
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
    transform: translateY(-3px);
}

.hero-image-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
}

.hero-img {
    max-width: 100%;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 15px 30px rgba(0,0,0,0.1));
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0px); }
}

/* Award Showcase Banner */
.award-showcase {
    background: linear-gradient(135deg, var(--primary) 0%, var(--gradient-accent) 100%);
    color: var(--white);
    padding: 50px 0;
    text-align: center;
    position: relative;
    border-bottom: 4px solid var(--accent);
}

.award-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.award-badge {
    width: 120px;
    height: auto;
    filter: drop-shadow(0 5px 15px rgba(0,0,0,0.3));
}

.award-text {
    text-align: left;
}

.award-text h3 {
    font-size: 1.8rem;
    color: var(--accent);
    margin-bottom: 8px;
}

.award-text p {
    font-size: 1.1rem;
    font-weight: 500;
    max-width: 700px;
    color: #cbd5e0;
}

/* Sections general */
.section {
    padding: 50px 0;
}

.section-bg-light {
    background-color: var(--bg-light);
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 35px;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
    padding-bottom: 12px;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: var(--accent);
    border-radius: 2px;
}

.section-header p {
    color: #4a5568;
    font-size: 1.1rem;
}

/* Product Cards Grid */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
}

.product-card {
    background-color: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    overflow: hidden;
    border: 1px solid rgba(0,0,0,0.03);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
    border-color: rgba(108,32,164,0.2);
}

.product-img-holder {
    background-color: #fafbfc;
    padding: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    height: 250px;
}

.product-img-holder img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
    transition: var(--transition);
}

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

.product-info {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.product-info h3 {
    font-size: 1.25rem;
    margin-bottom: 10px;
    color: var(--primary);
    min-height: 50px;
}

.product-info p {
    color: #4a5568;
    font-size: 0.95rem;
    margin-bottom: 20px;
    flex-grow: 1;
}

.product-sizes {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 15px;
}

.size-badge {
    background-color: var(--bg-light);
    color: var(--primary);
    font-size: 0.8rem;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 15px;
    border: 1px solid rgba(77,22,117,0.08);
}

/* CSR Card Grid */
.csr-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.csr-page-grid {
    grid-template-columns: repeat(3, 1fr);
}

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

@media (max-width: 576px) {
    .csr-grid {
        grid-template-columns: 1fr;
    }
    .csr-page-grid {
        grid-template-columns: 1fr;
    }
}

.csr-card {
    background-color: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    overflow: hidden;
    transition: var(--transition);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.csr-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
}

.csr-img-holder {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.csr-img-holder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(80%);
    transition: var(--transition);
}

.csr-card:hover .csr-img-holder img {
    filter: grayscale(0%);
    transform: scale(1.05);
}

.csr-info {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.csr-info h3 {
    font-size: 1.15rem;
    color: var(--primary);
    margin-bottom: 12px;
    flex-grow: 1;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.csr-link {
    font-weight: 700;
    color: var(--primary-light);
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 15px;
}

.csr-link:hover {
    color: var(--primary);
}

/* Form & Let's Talk Section */
.talk-section {
    background: linear-gradient(135deg, rgba(77,22,117,0.02) 0%, rgba(108,32,164,0.06) 100%);
    padding: 50px 0;
}

.talk-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: flex-start;
}

.contact-info-block h3 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.contact-details {
    margin-top: 30px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 25px;
}

.contact-item-icon {
    background-color: var(--bg-light);
    color: var(--primary);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    font-size: 1.2rem;
    flex-shrink: 0;
    line-height: 1;
}

.contact-item-text h4 {
    font-size: 1.05rem;
    color: var(--primary);
    margin-bottom: 4px;
}

.contact-item-text p {
    color: #4a5568;
    font-size: 0.95rem;
}

.form-card {
    background: var(--white);
    padding: 28px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    border: 1px solid rgba(0,0,0,0.02);
}

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

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

.form-control {
    width: 100%;
    padding: 12px 16px;
    border: 1.5px solid #e2e8f0;
    border-radius: 8px;
    font-family: var(--font);
    font-size: 0.95rem;
    transition: var(--transition);
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-light);
    box-shadow: 0 0 0 3px rgba(108,32,164,0.15);
}

.form-submit-btn {
    width: 100%;
    background-color: var(--primary);
    color: var(--white);
    border: none;
    padding: 14px 32px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1rem;
    font-family: var(--font);
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    transition: var(--transition);
}

.form-submit-btn:hover {
    background-color: var(--primary-light);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(108,32,164,0.25);
}

.toast-msg {
    display: none;
    background-color: #2ec4b6;
    color: var(--white);
    padding: 12px 20px;
    border-radius: 8px;
    font-weight: 600;
    text-align: center;
    margin-top: 15px;
    animation: fadeInUp 0.4s ease;
}

/* Timeline or Our Story Grid */
.timeline-section {
    padding: 60px 0;
}

.story-intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    margin-bottom: 80px;
}

.story-intro-img {
    width: 100%;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.story-intro-content p {
    margin-bottom: 20px;
    font-size: 1.05rem;
    color: #4a5568;
}

/* Chairman Quote Block */
.chairman-section {
    background-color: var(--bg-light);
    padding: 45px 0;
}

.chairman-grid {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 50px;
    align-items: center;
}

.chairman-img-holder {
    text-align: center;
}

.chairman-img {
    width: 280px;
    height: 280px;
    border-radius: 50%;
    object-fit: cover;
    border: 6px solid var(--white);
    box-shadow: var(--shadow);
}

.chairman-name {
    margin-top: 15px;
    font-size: 1.3rem;
    color: var(--primary);
}

.chairman-title {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--primary-light);
}

.chairman-message blockquote {
    font-size: 1.2rem;
    font-style: italic;
    color: var(--primary);
    border-left: 4px solid var(--accent);
    padding-left: 20px;
    margin-bottom: 20px;
}

.chairman-message p {
    color: #4a5568;
    margin-bottom: 15px;
    font-size: 1rem;
}

/* Sister Companies Section */
.sisters-section {
    padding: 80px 0;
}

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

.sister-card {
    background-color: var(--white);
    padding: 40px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    border: 1px solid rgba(0,0,0,0.02);
    text-align: center;
}

.sister-logo {
    height: 120px;
    margin-bottom: 5px;
    object-fit: contain;
}

.sister-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
}

.sister-card p {
    color: #4a5568;
    font-size: 0.98rem;
}

/* Certifications Layout */
.certifications-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
}

.cert-card {
    background-color: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    overflow: hidden;
    border: 1px solid rgba(0,0,0,0.02);
    cursor: pointer;
    transition: var(--transition);
}

.cert-card:hover {
    transform: scale(1.02);
    box-shadow: var(--shadow-hover);
}

.cert-img-wrapper {
    padding: 20px;
    background-color: #fafbfc;
    height: 380px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.cert-img-wrapper img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.cert-info-bar {
    padding: 15px;
    text-align: center;
    border-top: 1px solid #f1f5f9;
    font-weight: 600;
    color: var(--primary);
}

/* Lightbox Modal */
.lightbox-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2000;
    background-color: rgba(0,0,0,0.9);
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.lightbox-modal.show {
    display: flex;
    opacity: 1;
}

.lightbox-content {
    max-width: 90%;
    max-height: 85%;
    object-fit: contain;
    border-radius: 4px;
    box-shadow: 0 10px 45px rgba(0,0,0,0.5);
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.lightbox-modal.show .lightbox-content {
    transform: scale(1);
}

.lightbox-close {
    position: absolute;
    top: 30px;
    right: 30px;
    color: var(--white);
    font-size: 2.5rem;
    cursor: pointer;
    font-weight: 300;
    transition: var(--transition);
}

.lightbox-close:hover {
    color: var(--accent);
}

/* Products Page Filters */
.filter-tabs {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.filter-tab {
    padding: 10px 24px;
    border-radius: 30px;
    font-weight: 600;
    background-color: var(--bg-light);
    color: var(--primary);
    border: none;
    cursor: pointer;
    transition: var(--transition);
}

.filter-tab.active,
.filter-tab:hover {
    background-color: var(--primary);
    color: var(--white);
}

.product-card.hidden {
    display: none;
}

/* Wildlife Conservation Page */
.nwc-hero {
    background: linear-gradient(135deg, rgba(77,22,117,0.06) 0%, rgba(108,32,164,0.1) 100%);
    padding: 140px 0 80px;
    text-align: center;
}

.nwc-collab-section {
    padding: 80px 0;
}

.nwc-collab-box {
    background: var(--white);
    padding: 50px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    max-width: 1000px;
    margin: 0 auto;
    border: 1px solid rgba(0,0,0,0.02);
}

.nwc-collab-box p {
    font-size: 1.15rem;
    color: #4a5568;
    line-height: 1.8;
}

.conservation-article {
    padding: 80px 0;
}

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

.conservation-content h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.conservation-content p {
    color: #4a5568;
    margin-bottom: 20px;
}

.conservation-list {
    margin-bottom: 20px;
    padding-left: 20px;
}

.conservation-list li {
    margin-bottom: 12px;
    position: relative;
    list-style-type: none;
    padding-left: 25px;
}

.conservation-list li::before {
    content: '✦';
    position: absolute;
    left: 0;
    top: 0;
    color: var(--primary-light);
    font-weight: bold;
}

.conservation-img {
    width: 100%;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.download-box {
    background-color: var(--bg-light);
    padding: 30px;
    border-radius: var(--border-radius);
    margin-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.download-text h4 {
    color: var(--primary);
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.download-text p {
    color: #718096;
    font-size: 0.9rem;
    margin: 0;
}

/* Blog Article Layout */
.blog-post-page {
    padding-top: 110px;
    padding-bottom: 50px;
}

.blog-article {
    max-width: 800px;
    margin: 0 auto;
}

.blog-back {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    color: var(--primary-light);
    margin-bottom: 30px;
}

.blog-back:hover {
    color: var(--primary);
    transform: translateX(-4px);
}

.blog-title {
    font-size: 2.8rem;
    margin-bottom: 20px;
}

.blog-meta {
    display: flex;
    align-items: center;
    gap: 20px;
    color: #718096;
    font-size: 0.9rem;
    margin-bottom: 40px;
    border-bottom: 1px solid #e2e8f0;
    padding-bottom: 20px;
}

.blog-banner-holder {
    margin-bottom: 40px;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.blog-banner {
    width: 100%;
    height: auto;
    max-height: 450px;
    object-fit: cover;
}

.blog-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #2d3748;
    margin-bottom: 25px;
}

.blog-images-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
    margin: 40px 0;
}

.blog-gallery-img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.04);
    cursor: pointer;
    transition: var(--transition);
}

.blog-gallery-img:hover {
    transform: scale(1.03);
}

/* Food Safety Policy Doc Page */
.policy-card {
    background-color: var(--white);
    padding: 40px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    border: 1px solid rgba(0,0,0,0.02);
}

.policy-img-wrapper {
    margin-bottom: 30px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    display: inline-block;
    max-width: 100%;
}

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

/* Site Footer */
.site-footer {
    background-color: var(--primary);
    color: var(--text-light);
    padding: 80px 0 30px;
    border-top: 4px solid var(--accent);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 1fr;
    gap: 50px;
    margin-bottom: 24px;
}

.footer-brand img {
    height: 60px;
    margin-bottom: 20px;
}

.footer-brand p {
    color: #a0aec0;
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-icon {
    background-color: rgba(255,255,255,0.08);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    transition: var(--transition);
}

.social-icon:hover {
    background-color: var(--accent);
    transform: translateY(-3px);
}

.social-icon img {
    width: 20px;
    height: 20px;
    object-fit: contain;
    filter: brightness(0) invert(1);
    display: block;
    margin: 0;
}

.footer-links h4,
.footer-contact h4 {
    color: var(--accent);
    font-size: 1.1rem;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

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

.footer-links ul li a {
    color: #cbd5e0;
    font-size: 0.95rem;
}

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

.footer-contact p {
    color: #cbd5e0;
    font-size: 0.95rem;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    color: #a0aec0;
    font-size: 0.88rem;
}

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

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

/* Heritage Intro Grid */
.heritage-intro-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 40px;
    align-items: center;
    margin-bottom: 50px;
}

.heritage-title {
    grid-column: 1 / span 2;
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 15px;
    font-family: 'TRYClother', sans-serif;
    font-weight: normal;
}

.heritage-intro-text p {
    line-height: 1.6;
    color: var(--text-dark);
    text-align: justify;
}

.heritage-intro-map {
    text-align: center;
}

.heritage-intro-map img {
    width: 100%;
    max-width: 450px;
    height: auto;
    object-fit: contain;
}

/* Leadership Section */
.leadership-section {
    background-color: var(--white);
}

.leadership-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 30px;
}

.leadership-card {
    background-color: var(--bg-light);
    border-radius: var(--border-radius);
    padding: 30px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.leadership-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.leadership-img-wrapper {
    width: 100%;
    display: flex;
    justify-content: center;
}

.leadership-img {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid var(--white);
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

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

.leadership-info h3 {
    font-family: 'TRYClother', sans-serif;
    font-size: 1.4rem;
    color: var(--primary);
    margin-bottom: 5px;
    font-weight: normal;
}

.leadership-info h3 .credentials {
    font-family: var(--font);
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-muted);
    display: inline-block;
}

.leadership-role {
    font-family: var(--font);
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.leadership-bio {
    font-family: var(--font);
    font-size: 0.95rem;
    color: var(--text-dark);
    line-height: 1.5;
    text-align: justify;
}

/* Responsive Breakpoints */
@media (max-width: 992px) {
    .heritage-intro-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-bottom: 30px;
        text-align: center;
    }
    .heritage-title {
        grid-column: auto;
    }
    .heritage-intro-text p {
        text-align: center;
    }
    .leadership-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }
    .hero-content p {
        margin: 0 auto 30px;
    }
    .talk-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    .story-intro-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .chairman-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .chairman-message blockquote {
        text-align: left;
    }
    .sisters-grid {
        grid-template-columns: 1fr;
    }
    .conservation-grid {
        grid-template-columns: 1fr;
    }
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .nav-toggle {
        display: block;
        z-index: 1100;
    }
    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 320px;
        height: 100vh;
        background-color: var(--white);
        box-shadow: -5px 0 30px rgba(0,0,0,0.15);
        z-index: 1050;
        transition: right 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
        padding: 100px 40px;
    }
    .main-nav.open {
        right: 0;
    }
    .nav-list {
        flex-direction: column;
        align-items: flex-start;
        gap: 25px;
        width: 100%;
    }
    .dropdown-menu {
        position: static;
        transform: none;
        box-shadow: none;
        width: 100%;
        padding-left: 20px;
        display: none;
        opacity: 1;
        visibility: visible;
        background-color: transparent;
    }
    .dropdown.active .dropdown-menu {
        display: block;
    }
    .hero-content h1 {
        font-size: 2.5rem;
    }
    .section {
        padding: 35px 0;
    }
    .section-header h2 {
        font-size: 2rem;
    }
    .policy-card {
        padding: 20px;
    }
}