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

body {
    background: linear-gradient(135deg, #eaf1d7 0%, #f5f9ed 100%);
    color: #3a3a3a;
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.3;
    color: #3a3a3a;
}

a {
    text-decoration: none;
    color: #3a3a3a;
    transition: all 0.3s ease;
}

p {
    margin-bottom: 1rem;
}

/* Buttons */
.btn {
    display: inline-block;
    background: linear-gradient(135deg, #8aa07b 0%, #6f8861 100%);
    color: white;
    padding: 12px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    text-align: center;
}

.btn:hover {
    background-color: #6f8861;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Header Styles */
header {
    background: linear-gradient(to right, #d7e9b9 0%, #eaf1d7 100%);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 50px;
    margin-right: 10px;
    border-radius: 50%;
    object-fit: cover;
}

.logo h1 {
    font-size: 24px;
    color: #8aa07b;
    font-weight: 700;
}

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

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

nav ul li {
    margin-left: 30px;
}

nav ul li a {
    text-decoration: none;
    color: #3a3a3a;
    font-weight: 500;
    transition: color 0.3s;
    position: relative;
    padding-bottom: 5px;
}

nav ul li a:hover,
nav ul li a.active {
    color: #8aa07b;
}

nav ul li a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background-color: #8aa07b;
    bottom: 0;
    left: 0;
    transition: width 0.3s ease;
}

nav ul li a:hover::after,
nav ul li a.active::after {
    width: 100%;
}

.nav-btn {
    background-color: #8aa07b;
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
}

.nav-btn:hover {
    background-color: #6f8861;
    color: white;
}

.mobile-menu {
    display: none;
    cursor: pointer;
    font-size: 24px;
    margin-right: 20px;
}

.mobile-nav {
    display: none;
    position: absolute;
    top: 80px;
    left: 0;
    width: 100%;
    background-color: #fff;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    z-index: 99;
}

.mobile-nav.active {
    display: block;
}

.mobile-nav ul {
    display: block;
    padding: 20px;
}

.mobile-nav ul li {
    margin: 15px 0;
}

/* Language Selector */
.language-selector {
    display: flex;
    align-items: center;
    margin-left: 30px;
    cursor: pointer;
}

.language-selector .flag {
    width: 30px;
    height: auto;
    border-radius: 3px;
    transition: transform 0.3s ease;
}

.language-selector:hover .flag {
    transform: scale(1.1);
}

/* Page Banner */
.page-banner {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), 
                url('../images/homepage_banner.webp') no-repeat center center/cover;
    color: white;
    text-align: center;
    padding: 80px 0;
}

.page-banner h2 {
    font-size: 42px;
    margin-bottom: 15px;
    color: white;
}

.page-banner p {
    font-size: 18px;
    max-width: 700px;
    margin: 0 auto;
}

/* Hero Section */
.hero {
    padding: 120px 0;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), 
                url('../images/homepage_banner.webp') no-repeat center center/cover;
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    animation: fadeInUp 1s ease-out;
}

.hero h2 {
    font-size: 52px;
    margin-bottom: 20px;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    letter-spacing: 1px;
}

.hero p {
    font-size: 20px;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.btn-outline {
    background-color: transparent;
    border: 2px solid white;
    color: white;
    transition: all 0.3s ease;
}

.btn-outline:hover {
    background-color: white;
    color: #8aa07b;
    transform: translateY(-3px);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(138, 160, 123, 0.2) 0%, rgba(0, 0, 0, 0.4) 100%);
    z-index: 1;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Section Styles */
.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: 36px;
    color: #8aa07b;
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
}

.section-title h2::after {
    content: '';
    position: absolute;
    width: 50%;
    height: 3px;
    background-color: #8aa07b;
    bottom: 0;
    left: 25%;
}

/* About Section Styles */
.about-story {
    padding: 80px 0;
    background-color: #fff;
}

.about-content {
    display: flex;
    align-items: center;
    gap: 50px;
    flex-wrap: wrap;
}

.about-image {
    flex: 1;
    min-width: 300px;
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.about-text {
    flex: 2;
    min-width: 300px;
}

.about-text h3 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #8aa07b;
}

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

.about-mission {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.mission-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 30px;
}

.mission-item {
    flex: 1;
    min-width: 300px;
    text-align: center;
    padding: 30px;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.mission-item:hover {
    transform: translateY(-10px);
}

.mission-icon {
    width: 80px;
    height: 80px;
    background-color: #8aa07b;
    color: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 30px;
    margin: 0 auto 20px;
}

.mission-item h3 {
    margin-bottom: 15px;
    color: #8aa07b;
}

.about-process {
    padding: 80px 0;
    background-color: #fff;
}

.process-steps {
    position: relative;
}

.process-steps::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 2px;
    background-color: #8aa07b;
    transform: translateX(-50%);
}

.process-step {
    display: flex;
    margin-bottom: 50px;
    position: relative;
}

.process-step:nth-child(odd) {
    flex-direction: row-reverse;
}

.step-number {
    width: 60px;
    height: 60px;
    background-color: #8aa07b;
    color: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 24px;
    font-weight: bold;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.step-content {
    width: 45%;
    padding: 30px;
    background-color: #f9f9f9;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.step-content h3 {
    margin-bottom: 15px;
    color: #8aa07b;
}

.step-content img {
    width: 100%;
    height: auto;
    border-radius: 5px;
    margin-top: 15px;
}

.about-team {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.team-members {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
}

.team-member {
    flex: 1;
    min-width: 250px;
    max-width: 300px;
    text-align: center;
    padding: 30px;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.team-member:hover {
    transform: translateY(-5px);
}

/* Highlight Product Section */
.highlight-product {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.highlight-container {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-top: 40px;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.highlight-image {
    flex: 1;
    max-width: 50%;
    height: 400px;
    overflow: hidden;
}

.highlight-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.highlight-image img:hover {
    transform: scale(1.05);
}

.highlight-content {
    flex: 1;
    padding: 30px;
}

.highlight-content h3 {
    font-size: 28px;
    color: #3a3a3a;
    margin-bottom: 15px;
}

.highlight-content p {
    color: #666;
    margin-bottom: 25px;
    line-height: 1.6;
}

.highlight-features {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 30px;
}

.feature {
    display: flex;
    align-items: center;
    gap: 10px;
}

.feature i {
    color: #8aa07b;
    font-size: 18px;
}

.highlight-price-container {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 20px;
}

.highlight-price {
    font-size: 24px;
    font-weight: 700;
    color: #8aa07b;
}

.member-image {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 20px;
    border: 5px solid #8aa07b;
}

.member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-member h3 {
    margin-bottom: 5px;
    color: #8aa07b;
}

.member-role {
    color: #666;
    font-style: italic;
    margin-bottom: 15px;
}


.section-subtitle {
    text-align: center;
    max-width: 800px;
    margin: -15px auto 30px;
    color: #666;
    font-size: 16px;
    padding: 0 15px;
    line-height: 1.5;
}



.btn-large {
    padding: 15px 40px;
    font-size: 18px;
    letter-spacing: 1px;
    box-shadow: 0 5px 15px rgba(138, 160, 123, 0.3);
}

/* Product Modal */
.product-modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.7);
}

.modal-content {
    background-color: #fff;
    margin: 5% auto;
    padding: 0;
    border-radius: 10px;
    width: 80%;
    max-width: 1000px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    animation: modalFadeIn 0.4s;
}

@keyframes modalFadeIn {
    from {opacity: 0; transform: translateY(-30px);}
    to {opacity: 1; transform: translateY(0);}
}

.close-modal {
    position: absolute;
    right: 20px;
    top: 15px;
    color: #3a3a3a;
    font-size: 30px;
    font-weight: bold;
    cursor: pointer;
    z-index: 10;
    transition: color 0.3s ease;
}

.close-modal:hover {
    color: #8aa07b;
}

.modal-body {
    display: flex;
    flex-wrap: wrap;
}

.modal-image {
    flex: 1;
    min-width: 300px;
    padding: 30px;
}

.modal-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.modal-details {
    flex: 1;
    min-width: 300px;
    padding: 30px;
    background-color: #f9f9f9;
}

.modal-details h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #8aa07b;
}

.modal-details p {
    margin-bottom: 20px;
    line-height: 1.8;
}

.product-features {
    display: flex;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.feature {
    display: flex;
    align-items: center;
    margin-right: 30px;
    margin-bottom: 10px;
}

.feature i {
    color: #8aa07b;
    margin-right: 10px;
    font-size: 18px;
}

.product-price {
    font-size: 24px;
    font-weight: 700;
    color: #8aa07b;
    margin-bottom: 20px;
    display: block;
}

.buy-btn {
    display: inline-block;
    padding: 12px 30px;
    font-size: 16px;
}

/* Products Section Styles */
.products {
    padding: 80px 0;
    background-color: #fff;
}

.products-filter {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin: 30px 0 40px 0;
    padding: 0 10px;
}

.filter-btn {
    padding: 8px 16px;
    background-color: #f5f9ed;
    border: 1px solid #8aa07b;
    border-radius: 30px;
    color: #3a3a3a;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 15px;
    outline: none;
    margin: 0 5px 8px 0;
    white-space: nowrap;
    text-align: center;
}

.filter-btn:hover {
    background-color: #8aa07b;
    color: white;
}

.filter-btn.active {
    background-color: #8aa07b;
    color: white;
}

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

.product-card {
    background-color: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(138, 160, 123, 0.1);
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 25px rgba(138, 160, 123, 0.25);
    border-color: rgba(138, 160, 123, 0.3);
}

.product-img {
    height: 250px;
    overflow: hidden;
    position: relative;
}

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

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

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(138, 160, 123, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: all 0.4s ease;
    transform: translateY(10px);
}

.product-card:hover .product-overlay {
    opacity: 1;
    transform: translateY(0);
}

.view-details {
    color: white;
    text-decoration: none;
    padding: 12px 24px;
    border: 2px solid white;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s;
    letter-spacing: 0.5px;
    font-size: 15px;
    text-transform: uppercase;
}

.view-details:hover {
    background-color: white;
    color: #8aa07b;
}

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

.product-info h3 {
    font-size: 19px;
    margin-bottom: 10px;
    color: #3a3a3a;
    font-weight: 600;
    line-height: 1.3;
}

.product-info p {
    color: #666;
    margin-bottom: 15px;
    font-size: 14px;
    line-height: 1.5;
    flex-grow: 1;
}

.product-price {
    font-weight: 700;
    color: #8aa07b;
    font-size: 20px;
    margin-bottom: 18px;
    display: block;
    letter-spacing: 0.5px;
}

.product-info .btn {
    border-radius: 30px;
    padding: 10px 25px;
    font-weight: 500;
    text-align: center;
    width: 100%;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 10px rgba(138, 160, 123, 0.2);
    transition: all 0.3s ease;
}

.product-info .btn:hover {
    background: linear-gradient(135deg, #6f8861 0%, #5a7049 100%);
    box-shadow: 0 6px 15px rgba(138, 160, 123, 0.3);
    transform: translateY(-2px);
}

.view-all-container {
    text-align: center;
    margin-top: 40px;
}

/* Gallery Section Styles */
.gallery-section {
    padding: 80px 0;
    background-color: #fff;
}

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

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
}

.gallery-item {
    height: 300px;
    overflow: hidden;
    border-radius: 10px;
    position: relative;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

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

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(138, 160, 123, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s;
    color: white;
    font-size: 20px;
    text-align: center;
    padding: 20px;
}

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

/* Video Section Styles */
.video-section {
    margin-bottom: 60px;
    text-align: center;
}

.video-section h3 {
    text-align: center;
    color: #8aa07b;
    margin-bottom: 40px;
    font-size: 28px;
}

.video-container {
    margin-bottom: 60px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.video-content {
    display: flex;
    gap: 30px;
    align-items: center;
    justify-content: center;
}

.video-item {
    position: relative;
    width: 400px;
    height: 300px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    flex-shrink: 0;
}

.video-item iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.video-description {
    flex: 1;
    padding: 20px 0;
    max-width: 500px;
    text-align: left;
}

.video-description h4 {
    font-size: 24px;
    color: #8aa07b;
    margin-bottom: 8px;
    font-weight: 700;
}

.video-description h5 {
    font-size: 20px;
    color: #3a3a3a;
    margin-bottom: 15px;
    font-weight: 600;
}

.video-description p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 12px;
    font-size: 15px;
}

.video-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #8aa07b 0%, #6f8861 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    text-align: center;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s;
}

@media (max-width: 768px) {
    .video-container {
        max-width: 100%;
        padding: 0 20px;
    }
    
    .video-content {
        flex-direction: column;
        gap: 20px;
        align-items: center;
    }
    
    .video-item {
        width: 100%;
        height: auto;
        aspect-ratio: 16/9;
    }
    
    .video-description {
        max-width: 100%;
    }
}

/* Blog Section Styles */
.blog-section {
    padding: 80px 0;
    background-color: #fff;
}

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

.blog-card {
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

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

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

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

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

.blog-content {
    padding: 25px;
}

.blog-date {
    color: #8aa07b;
    font-size: 14px;
    margin-bottom: 10px;
}

.blog-title {
    font-size: 20px;
    margin-bottom: 15px;
    line-height: 1.4;
    transition: color 0.3s;
}

.blog-card:hover .blog-title {
    color: #8aa07b;
}

.blog-excerpt {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}

.read-more {
    color: #8aa07b;
    font-weight: 600;
    position: relative;
    display: inline-block;
}

.read-more::after {
    content: '→';
    margin-left: 5px;
    transition: transform 0.3s;
}

.read-more:hover::after {
    transform: translateX(5px);
}

/* Blog Detail Styles */
.blog-detail {
    padding: 80px 0;
    background-color: #fff;
}

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

.blog-detail-image {
    width: 100%;
    height: 400px;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 30px;
}

.blog-detail-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-detail-meta {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    color: #666;
}

.blog-detail-meta .date {
    margin-right: 20px;
}

.blog-detail-meta i {
    color: #8aa07b;
    margin-right: 5px;
}

.blog-detail-content h1 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #3a3a3a;
}

.blog-detail-content p {
    margin-bottom: 20px;
    line-height: 1.8;
}

.blog-detail-content h2 {
    font-size: 28px;
    margin: 40px 0 20px;
    color: #8aa07b;
}

.blog-detail-content h3 {
    font-size: 24px;
    margin: 30px 0 15px;
    color: #3a3a3a;
}

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

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

/* Related Posts Styles */
.related-posts {
    margin-top: 60px;
}

.related-posts h3 {
    font-size: 24px;
    margin-bottom: 25px;
    color: #3a3a3a;
    text-align: center;
}

.related-posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 30px;
}

.related-post {
    background-color: #f9f9f9;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.related-post:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(138, 160, 123, 0.2);
}

.related-post img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.related-post h4 {
    font-size: 18px;
    padding: 15px 15px 10px;
    color: #3a3a3a;
    transition: color 0.3s ease;
}

.related-post:hover h4 {
    color: #8aa07b;
}

.related-post .read-more {
    display: inline-block;
    padding: 0 15px 15px;
}

.blog-detail-content img {
    max-width: 100%;
    height: auto;
    border-radius: 5px;
    margin: 20px 0;
}

.blog-detail-content blockquote {
    border-left: 4px solid #8aa07b;
    padding: 15px 20px;
    margin: 20px 0;
    background-color: #f9f9f9;
    font-style: italic;
}

/* Contact Section Styles */
.contact-section {
    padding: 80px 0;
    background-color: #fff;
}

.contact-content {
    display: flex;
    gap: 50px;
    flex-wrap: wrap;
}

.contact-info, 
.contact-form {
    flex: 1;
    min-width: 300px;
}

.contact-info h3, 
.contact-form h3 {
    font-size: 24px;
    margin-bottom: 30px;
    color: #8aa07b;
    position: relative;
    padding-bottom: 10px;
}

.contact-info h3::after, 
.contact-form h3::after {
    content: '';
    position: absolute;
    width: 50px;
    height: 2px;
    background-color: #8aa07b;
    bottom: 0;
    left: 0;
}

.contact-detail {
    display: flex;
    margin-bottom: 25px;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background-color: #8aa07b;
    color: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 20px;
    font-size: 20px;
}

.contact-detail h4 {
    font-size: 18px;
    margin-bottom: 5px;
    color: #3a3a3a;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #3a3a3a;
}

.form-group input, 
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
    transition: border-color 0.3s;
}

.form-group input:focus, 
.form-group textarea:focus {
    border-color: #8aa07b;
    outline: none;
}

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

.map-section {
    padding: 80px 0;
    background-color: #f9f9f9;
}

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

/* Footer Styles */
.footer {
    background-color: #3a3a3a;
    color: white;
    padding: 80px 0 20px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 50px;
}

.footer-column {
    flex: 1;
    min-width: 250px;
}

.footer-column h3 {
    font-size: 20px;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 15px;
    color: white;
}

.footer-column h3::after {
    content: '';
    position: absolute;
    width: 50px;
    height: 2px;
    background-color: #8aa07b;
    bottom: 0;
    left: 0;
}

.footer-column p {
    margin-bottom: 20px;
    color: #ddd;
    line-height: 1.8;
}

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

.social-links a {
    width: 40px;
    height: 40px;
    background-color: #8aa07b;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    text-decoration: none;
    transition: background-color 0.3s, transform 0.3s;
}

.social-links a:hover {
    background-color: #6f8861;
    transform: translateY(-5px);
}

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

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

.footer-links a {
    color: #ddd;
    text-decoration: none;
    transition: color 0.3s, padding-left 0.3s;
    display: inline-block;
}

.footer-links a:hover {
    color: #8aa07b;
    padding-left: 5px;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #555;
    color: #aaa;
}

/* Responsive Styles */
@media (max-width: 991px) {
    .hero h2 {
        font-size: 42px;
    }
    
    .section-title h2 {
        font-size: 32px;
    }
    
    .about-content,
    .contact-content {
        flex-direction: column;
    }
    
    .process-steps::before {
        left: 30px;
    }
    
    .process-step {
        flex-direction: row !important;
    }
    
    .step-number {
        left: 30px;
    }
    
    .step-content {
        width: calc(100% - 60px);
        margin-left: 60px;
    }
}

@media (max-width: 768px) {
    .desktop-nav {
        display: none;
    }
    
    .mobile-menu {
        display: block;
    }
    
    .header-container {
        flex-wrap: wrap;
    }
    
    .logo {
        flex: 1;
    }
    
    .hero h2 {
        font-size: 36px;
    }
    
    .section-title h2 {
        font-size: 28px;
    }
    
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .product-img {
        height: 220px;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }
    
    .gallery-item {
        height: 250px;
    }
    
    .blog-grid {
        grid-template-columns: 1fr;
    }
    
    .language-selector {
        margin-left: auto;
        margin-right: 20px;
    }
    
    .modal-content {
        width: 95%;
    }
    
    .modal-body {
        flex-direction: column;
    }
    
    .highlight-container {
        flex-direction: column;
    }
    
    .highlight-image {
        max-width: 100%;
        height: 300px;
    }
}

@media (max-width: 480px) {
    .hero h2 {
        font-size: 28px;
    }
    
    .section-title h2 {
        font-size: 24px;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .product-img {
        height: 250px;
    }
    
    .gallery-item {
        height: 200px;
    }
    
    .filter-btn {
        margin: 0 5px 10px;
        padding: 8px 15px;
        font-size: 14px;
    }
}
