/* ==================== */
/* GLOBAL STYLES */
/* ==================== */
:root {
    --primary-green: #2a5a4b;
    --secondary-green: #3a7a65;
    --light-green: #e8f3ee;
    --accent-gold: #c8b273;
    --text-dark: #333333;
    --text-light: #f8f8f8;
}

a {
    text-decoration: none;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    background-color: #f9f9f9;
}

h1, h2, h3, h4 {
    font-family: 'Playfair Display', serif;
    font-weight: 500;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    background-color: var(--primary-green);
    color: white;
    border-radius: 30px;
    font-weight: 500;
    transition: all 0.3s;
    border: 2px solid var(--primary-green);
}

.btn:hover {
    background-color: transparent;
    color: white;
    border-color: white;
}

.btn-outline {
    background-color: transparent;
    border: 2px solid white;
    margin-left: 15px;
}

.btn-outline:hover {
    background-color: white;
    color: var(--primary-green);
}

/* ==================== */
/* HEADER & FOOTER STYLES (All Pages) */
/* ==================== */
header {
    background-color: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: fixed;
    width: 100%;
    z-index: 100;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

.logo img {
    width: 200px;
    height: 50px;
    margin-right: 10px;
}

nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin-left: 30px;
}

nav ul li a {
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s;
    position: relative;
}

nav ul li a:hover {
    color: var(--primary-green);
}

nav ul li a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background-color: var(--primary-green);
    bottom: -5px;
    left: 0;
    transition: width 0.3s;
}

nav ul li a:hover::after {
    width: 100%;
}

footer {
    background-color: var(--primary-green);
    color: white;
    padding: 60px 0 20px;
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    color: white;
    margin-bottom: 20px;
    display: inline-block;
}

.footer-logo span {
    color: var(--accent-gold);
}

.footer-about p {
    margin-bottom: 20px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    color: white;
    font-size: 20px;
    transition: color 0.3s;
}

.social-links a:hover {
    color: var(--accent-gold);
}

.footer-links h3, .footer-contact h3 {
    font-size: 18px;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-links h3::after, .footer-contact h3::after {
    content: '';
    position: absolute;
    width: 30px;
    height: 2px;
    background-color: var(--accent-gold);
    bottom: 0;
    left: 0;
}

.footer-links ul {
    list-style: none;
}

.footer-links ul li {
    margin-bottom: 10px;
}

.footer-links ul li a {
    color: white;
    transition: color 0.3s;
}

.footer-links ul li a:hover {
    color: var(--accent-gold);
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
}

.contact-item i {
    margin-right: 10px;
    color: var(--accent-gold);
}

.copyright {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 14px;
}

/* ==================== */
/* HOME PAGE STYLES */
/* ==================== */
.hero {
    background: url('../images/banner.png');
    background-size: cover;
    background-position: center;
    height: 100vh;
    display: flex;
    align-items: center;
    color: white;
    text-align: center;
    padding-top: 80px;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero h1 {
    font-size: 64px;
    margin-bottom: 20px;
    font-weight: 700;
}

.hero p {
    font-size: 20px;
    margin-bottom: 30px;
}

.about-section {
    padding: 100px 0;
    background-color: #f8f5f0;
}

.about-content {
    display: flex;
    align-items: center;
    gap: 60px;
}

.about-text {
    flex: 1;
    padding-right: 40px;
}

.about-text h2 {
    font-size: 2.5rem;
    color: #2a5a3a;
    margin-bottom: 15px;
    font-weight: 600;
}

.divider {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #d4af37, #2a5a3a);
    margin: 20px 0;
    border-radius: 2px;
}

.about-text .lead {
    font-size: 1.3rem;
    color: #3a7d44;
    margin-bottom: 30px;
    font-weight: 500;
}

.about-text p {
    margin-bottom: 20px;
    line-height: 1.8;
}

.about-image {
    flex: 1;
    position: relative;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    max-height: 500px;
}

.about-image img {
    width: 100%;
    height: 100%;
    border-radius: 20px;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.about-image:hover img {
    transform: scale(1.03);
}

.experience-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: #d4af37;
    color: white;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-shadow: 0 10px 30px rgba(200, 178, 115, 0.3);
}

.experience-badge span {
    font-size: 2.2rem;
    font-weight: 700;
}

.experience-badge p {
    font-size: 0.9rem;
    margin-top: 5px;
    text-align: center;
    padding: 0 10px;
    color: white;
}

.products {
    padding: 100px 0;
    background-color: var(--light-green);
    position: relative;
}

.products::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><path fill="%232a5a4b" fill-opacity="0.03" d="M50 0L0 50v50h100V50L50 0z"/></svg>');
    opacity: 0.1;
    z-index: 0;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
}

.section-title h2 {
    font-size: 2.8rem;
    color: var(--primary-green);
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
}

.section-title h2::after {
    content: '';
    position: absolute;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-gold), var(--primary-green));
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
    position: relative;
    z-index: 1;
}

.product-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(42, 90, 75, 0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    border: 1px solid rgba(200, 178, 115, 0.15);
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(42, 90, 75, 0.15);
}

.product-image {
    height: 260px;
    overflow: hidden;
    position: relative;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.product-card:hover .product-image img {
    transform: scale(1.08);
}

.product-name {
    font-size: 1.1rem;
    text-align: center;
    padding: 20px 15px;
    color: var(--primary-green);
    font-weight: 600;
    margin: 0;
}

.view-all-container {
    display: flex;
    justify-content: flex-end;
    position: relative;
    z-index: 1;
}

.view-all {
    padding: 14px 36px;
    background: linear-gradient(135deg, var(--primary-green), var(--secondary-green));
    color: white;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    box-shadow: 0 5px 15px rgba(42, 90, 75, 0.2);
}

.view-all:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(42, 90, 75, 0.3);
}

.sustainability {
    padding: 100px 0;
    background-color: white;
}

.sustainability-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.sustainability-icons {
    display: flex;
    justify-content: center;
    gap: 50px;
    margin: 40px 0;
}

.sustainability-icon {
    text-align: center;
}

.icon-circle {
    width: 100px;
    height: 100px;
    background-color: var(--light-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
}

.icon-circle i {
    font-size: 40px;
    color: var(--primary-green);
}

@media (max-width: 992px) {
    .about-content {
        flex-direction: column;
    }
    
    .about-text {
        padding-right: 0;
        margin-bottom: 40px;
    }
    
    .about-image {
        width: 100%;
        min-height: 400px;
    }
}

/* ==================== */
/* PRODUCTS PAGE STYLES */
/* ==================== */
.product-showcase {
    padding: 120px 0 80px;
    background-color: #f8f5f0;
    min-height: 100vh;
}

.product-showcase::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><path fill="%232a5a4b" fill-opacity="0.03" d="M50 0L0 50v50h100V50L50 0z"/></svg>');
    opacity: 0.1;
    z-index: 0;
}

.collection-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
}

.collection-header h2 {
    font-size: 2.8rem;
    color: #2a5a4b;
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
    font-family: 'Playfair Display', serif;
}

.collection-header h2::after {
    content: '';
    position: absolute;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #c8b273, #2a5a4b);
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
}

.collection-description {
    max-width: 700px;
    margin: 0 auto 40px;
    font-size: 1.1rem;
    color: #555;
    line-height: 1.6;
}

.product-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.gallery-item {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(42, 90, 75, 0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    border: 1px solid rgba(200, 178, 115, 0.15);
}

.gallery-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(42, 90, 75, 0.15);
}

.item-image-container {
    height: 280px;
    overflow: hidden;
    position: relative;
    background: #f9f7f2;
    display: flex;
    align-items: center;
    justify-content: center;
}

.item-image-container::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 40%;
    background: linear-gradient(to top, rgba(0,0,0,0.1), transparent);
}

.item-image {
    width: 80%;
    height: 80%;
    object-fit: contain;
    transition: transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
    mix-blend-mode: multiply;
}

.gallery-item:hover .item-image {
    transform: scale(1.1);
}

.item-details {
    padding: 25px;
    background: white;
    position: relative;
    text-align: center;
}

.item-category {
    display: inline-block;
    font-size: 0.75rem;
    color: #c8b273;
    background: rgba(200, 178, 115, 0.1);
    padding: 4px 12px;
    border-radius: 20px;
    margin-bottom: 12px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.item-title {
    font-size: 1.25rem;
    color: #2a5a4b;
    font-weight: 600;
    margin: 0 0 15px;
    transition: color 0.3s;
    font-family: 'Playfair Display', serif;
}

.add-to-cart {
    display: inline-block;
    padding: 10px 24px;
    background: #f5f1e9;
    color: #2a5a4b;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 1px solid rgba(42, 90, 75, 0.1);
}

.add-to-cart:hover {
    background: #2a5a4b;
    color: white;
}

.view-collection {
    display: flex;
    justify-content: center;
    margin-top: 30px;
}

.collection-btn {
    padding: 14px 36px;
    background: linear-gradient(135deg, #2a5a4b, #3a7a65);
    color: white;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    box-shadow: 0 5px 15px rgba(42, 90, 75, 0.2);
}

.collection-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(42, 90, 75, 0.3);
}

@media (max-width: 768px) {
    .collection-header h2 {
        font-size: 2.2rem;
    }
    
    .product-gallery {
        grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
        gap: 20px;
    }
    
    .item-image-container {
        height: 220px;
    }
    
    .product-showcase {
        padding: 100px 0 60px;
    }
}

/* ==================== */
/* SUSTAINABILITY PAGE STYLES */
/* ==================== */
.sustainability-hero {
    height: 80vh;
    min-height: 600px;
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), 
                url('images/sustainability-hero.jpg') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    position: relative;
    background-attachment: fixed;
}

.sustainability-hero .hero-content {
    max-width: 800px;
    padding: 0 20px;
}

.sustainability-hero h1 {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
    font-family: 'Playfair Display', serif;
}

.sustainability-hero p {
    font-size: 1.4rem;
    margin-bottom: 30px;
    line-height: 1.6;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.3);
}

.commitment-section {
    padding: 120px 0;
    background-color: var(--light-green);
    position: relative;
    overflow: hidden;
}

.commitment-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 120" preserveAspectRatio="none"><path d="M0,0V46.29c47.79,22.2,103.59,32.17,158,28,70.36-5.37,136.33-33.31,206.8-37.5C438.64,32.43,512.34,53.67,583,72.05c69.27,18,138.3,24.88,209.4,13.08,36.15-6,69.85-17.84,104.45-29.34C989.49,25,1113-14.29,1200,52.47V0Z" opacity=".25" fill="%232a5a3a"/><path d="M0,0V15.81C13,36.92,27.64,56.86,47.69,72.05,99.41,111.27,165,111,224.58,91.58c31.15-10.15,60.09-26.07,89.67-39.8,40.92-19,84.73-46,130.83-49.67,36.26-2.85,70.9,9.42,98.6,31.56,31.77,25.39,62.32,62,103.63,73,40.44,10.79,81.35-6.69,119.13-24.28s75.16-39,116.92-43.05c59.73-5.85,113.28,22.88,168.9,38.84,30.2,8.66,59,6.17,87.09-7.5,22.43-10.89,48-26.93,60.65-49.24V0Z" opacity=".5" fill="%232a5a3a"/><path d="M0,0V5.63C149.93,59,314.09,71.32,475.83,42.57c43-7.64,84.23-20.12,127.61-26.46,59-8.63,112.48,12.24,165.56,35.4C827.93,77.22,886,95.24,951.2,90c86.53-7,172.46-45.71,248.8-84.81V0Z" fill="%23f0f7f2"/></svg>');
    background-size: cover;
    background-repeat: no-repeat;
    transform: rotate(180deg);
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-header h2 {
    font-size: 3rem;
    color: var(--primary-green);
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
    font-weight: 700;
    font-family: 'Playfair Display', serif;
}

.section-header h2::after {
    content: '';
    position: absolute;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-gold), var(--primary-green));
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
}

.commitment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.commitment-card {
    background: white;
    border-radius: 16px;
    padding: 50px 30px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.05);
    transition: all 0.4s ease;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.commitment-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--accent-gold), var(--primary-green));
    transition: height 0.3s ease;
}

.commitment-card:hover::before {
    height: 10px;
}

.commitment-icon {
    width: 100px;
    height: 100px;
    background-color: var(--light-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    color: var(--primary-green);
    font-size: 40px;
    transition: all 0.3s ease;
}

.commitment-card:hover .commitment-icon {
    background-color: var(--primary-green);
    color: white;
    transform: scale(1.1);
}

.practice-item {
    display: flex;
    gap: 80px;
    margin-bottom: 100px;
    align-items: center;
}

.practice-image {
    flex: 1;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0,0,0,0.1);
}

.practice-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.practice-item:hover .practice-image img {
    transform: scale(1.05);
}

.practice-content {
    flex: 1;
    padding: 40px 0;
}

.practice-content h3 {
    font-size: 2rem;
    color: var(--primary-green);
    margin-bottom: 25px;
    font-weight: 700;
}

.practice-stats {
    display: flex;
    gap: 30px;
    margin-top: 40px;
}

.stat-item {
    text-align: center;
    background: var(--light-green);
    padding: 20px;
    border-radius: 10px;
    min-width: 100px;
    transition: all 0.4s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-green);
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-dark);
    text-transform: uppercase;
}

.impact-section {
    padding: 100px 0;
    background-color: var(--light-green);
    text-align: center;
}

.impact-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 60px auto 0;
}

.impact-stat {
    background: white;
    padding: 40px 20px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: all 0.4s ease;
}

.impact-stat:hover {
    transform: translateY(-10px);
}

.impact-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-green);
}

.certification-section {
    padding: 100px 0;
    background-color: white;
    text-align: center;
}

.certification-logos {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 40px;
    margin-top: 60px;
}

.certification-logo {
    width: 150px;
    height: 150px;
    background: var(--light-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 25px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: all 0.4s ease;
}

.certification-logo:hover {
    transform: translateY(-10px);
}

.sustainability-cta {
    padding: 120px 0;
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--secondary-green) 100%);
    color: white;
    text-align: center;
}

.cta-button {
    display: inline-block;
    background: white;
    color: var(--primary-green);
    padding: 18px 45px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.4s ease;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

@media (max-width: 1200px) {
    .sustainability-hero h1 {
        font-size: 3.5rem;
    }
    
    .impact-stats {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .practice-item {
        flex-direction: column;
    }
    
    .practice-image {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .sustainability-hero h1 {
        font-size: 2.5rem;
    }
    
    .impact-stats {
        grid-template-columns: 1fr;
    }
}

/* ==================== */
/* ABOUT PAGE STYLES */
/* ==================== */
.about-hero {
    height: 60vh;
    background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), url('images/about-bg.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

.about-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
}

.story-section {
    padding: 100px 0;
    background-color: white;
}

.story-content {
    display: flex;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
}

.story-image {
    flex: 1;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.story-image img {
    width: 100%;
    height: auto;
    transition: transform 0.8s ease;
}

.story-content:hover .story-image img {
    transform: scale(1.05);
}

.story-text {
    flex: 1;
}

.story-text h3 {
    font-size: 1.8rem;
    color: var(--primary-green);
    margin-bottom: 20px;
}

.milestone {
    display: inline-block;
    background-color: var(--light-green);
    color: var(--primary-green);
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: 500;
    margin-bottom: 15px;
}

.team-section {
    padding: 100px 0;
    background-color: var(--light-green);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.team-member {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: all 0.4s ease;
    text-align: center;
}

.team-member:hover {
    transform: translateY(-10px);
}

.member-image {
    height: 300px;
    overflow: hidden;
}

.member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.team-member:hover .member-image img {
    transform: scale(1.1);
}

.member-info {
    padding: 25px;
}

.member-position {
    color: var(--accent-gold);
    font-weight: 500;
    margin-bottom: 15px;
}

.member-social {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.member-social a {
    color: var(--primary-green);
    transition: color 0.3s ease;
}

.member-social a:hover {
    color: var(--accent-gold);
}

@media (max-width: 992px) {
    .story-content {
        flex-direction: column;
    }
}

/* ==================== */
/* CONTACT PAGE STYLES */
/* ==================== */
.contact-hero {
    height: 60vh;
    background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), url('images/contact-bg.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

.contact-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
}

.contact-section {
    padding: 100px 0;
    background-color: white;
}

.contact-container {
    display: flex;
    gap: 60px;
}

.contact-info {
    flex: 1;
}

.contact-card {
    background-color: var(--light-green);
    border-radius: 12px;
    padding: 40px;
    margin-bottom: 30px;
}

.contact-card h3 {
    color: var(--primary-green);
    margin-bottom: 20px;
}

.contact-icon {
    width: 40px;
    height: 40px;
    background-color: var(--primary-green);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
}

.contact-form {
    flex: 1;
    background-color: white;
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.form-group {
    margin-bottom: 25px;
}

.form-control {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    transition: border-color 0.3s;
}

.form-control:focus {
    border-color: var(--accent-gold);
    outline: none;
}

.submit-btn {
    background: linear-gradient(135deg, var(--primary-green), var(--secondary-green));
    color: white;
    border: none;
    padding: 14px 30px;
    border-radius: 30px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(42, 90, 75, 0.3);
}

.map-section {
    padding: 0 0 100px;
}

.map-container {
    height: 500px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

@media (max-width: 992px) {
    .contact-container {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .contact-hero h1 {
        font-size: 2.5rem;
    }
    
    .map-container {
        height: 300px;
    }
}
/* ==================== */
/* PRODUCT DETAIL STYLES */
/* ==================== */
.product-detail {
    padding: 120px 0 80px;
    background-color: #f8f5f0;
    min-height: 100vh;
    position: relative;
}

.product-detail::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><path fill="%232a5a4b" fill-opacity="0.03" d="M50 0L0 50v50h100V50L50 0z"/></svg>');
    opacity: 0.1;
    z-index: 0;
}

.detail-container {
    display: flex;
    gap: 50px;
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.detail-images {
    flex: 1;
    position: sticky;
    top: 120px;
    height: fit-content;
}

.main-image {
    width: 100%;
    height: 500px;
    background: #f9f7f2;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    border: 1px solid rgba(200, 178, 115, 0.2);
}

.main-image img {
    max-width: 80%;
    max-height: 80%;
    object-fit: contain;
    mix-blend-mode: multiply;
    transition: transform 0.5s ease;
}

.main-image:hover img {
    transform: scale(1.05);
}

.thumbnail-gallery {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.thumbnail {
    width: 80px;
    height: 80px;
    background: #f9f7f2;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
    border: 1px solid rgba(42, 90, 75, 0.1);
    box-shadow: 0 3px 10px rgba(0,0,0,0.05);
}

.thumbnail:hover, .thumbnail.active {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    border-color: var(--accent-gold);
}

.thumbnail img {
    max-width: 70%;
    max-height: 70%;
    object-fit: contain;
}

.detail-info {
    flex: 1;
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    border: 1px solid rgba(200, 178, 115, 0.1);
}

.detail-title {
    font-size: 2.5rem;
    color: var(--primary-green);
    margin-bottom: 15px;
    font-weight: 700;
    font-family: 'Playfair Display', serif;
    line-height: 1.2;
}

.detail-subtitle {
    color: var(--accent-gold);
    font-size: 1.2rem;
    margin-bottom: 30px;
    display: block;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.detail-description {
    margin-bottom: 30px;
    line-height: 1.8;
    color: #555;
    font-size: 1.1rem;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(42, 90, 75, 0.1);
}

.detail-specs {
    margin: 40px 0;
}

.spec-item {
    display: flex;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(42, 90, 75, 0.05);
    align-items: flex-start;
}

.spec-label {
    width: 180px;
    font-weight: 600;
    color: var(--primary-green);
    position: relative;
    padding-left: 15px;
}

.spec-label::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 6px;
    height: 6px;
    background-color: var(--accent-gold);
    border-radius: 50%;
}

.spec-value {
    flex: 1;
    color: #555;
    line-height: 1.6;
}

.detail-actions {
    display: flex;
    gap: 20px;
    margin-top: 40px;
}

.back-btn {
    padding: 14px 30px;
    background: white;
    color: var(--primary-green);
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s;
    border: 2px solid var(--primary-green);
    display: inline-flex;
    align-items: center;
    box-shadow: 0 5px 15px rgba(42, 90, 75, 0.1);
    text-decoration: none;
}

.back-btn:hover {
    background: var(--primary-green);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(42, 90, 75, 0.2);
}

.back-btn i {
    margin-right: 8px;
}

.inquiry-btn {
    padding: 14px 35px;
    background: linear-gradient(135deg, var(--primary-green), var(--secondary-green));
    color: white;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s;
    border: none;
    display: inline-flex;
    align-items: center;
    box-shadow: 0 5px 15px rgba(42, 90, 75, 0.2);
    text-decoration: none;
}

.inquiry-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(42, 90, 75, 0.3);
    background: linear-gradient(135deg, var(--secondary-green), var(--primary-green));
}

.inquiry-btn i {
    margin-left: 8px;
}

/* Product Features */
.feature-icons {
    display: flex;
    gap: 15px;
    margin: 30px 0;
    flex-wrap: wrap;
}

.feature-icon {
    display: inline-flex;
    align-items: center;
    background: rgba(200, 178, 115, 0.1);
    padding: 8px 15px;
    border-radius: 30px;
    color: var(--primary-green);
    font-size: 0.9rem;
    font-weight: 500;
}

.feature-icon i {
    margin-right: 8px;
    color: var(--accent-gold);
    font-size: 1rem;
}
