@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700&family=Playfair+Display:wght@700&display=swap');

:root {
    --primary-color: #1a472a;
    --secondary-color: #f3a847;
    --accent-color: #e67e22;
    --background-color: #f8f9fa;
    --text-color: #343a40;
    --heading-color: #2c3e50;
    --white-color: #ffffff;
    --border-color: #dee2e6;
    --shadow-color: rgba(0, 0, 0, 0.1);
    --font-family-sans-serif: 'Montserrat', sans-serif;
    --font-family-serif: 'Playfair Display', serif;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-family-sans-serif);
    line-height: 1.6;
    background-color: var(--background-color);
    color: var(--text-color);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: color 0.3s ease;
}

a:hover {
    color: var(--accent-color);
}

ul {
    list-style: none;
}

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

section {
    padding: 6rem 2rem;
    transition: transform 0.5s ease-out, opacity 0.5s ease-out;
}

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

/* Header Styles */
.header {
    background: var(--white-color);
    box-shadow: 0 2px 10px var(--shadow-color);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.navbar {
    padding: 1rem 0;
}

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

.nav-logo h1 {
    color: var(--primary-color);
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: -5px;
}

.nav-logo span {
    color: var(--text-color);
    font-size: 0.9rem;
    font-style: italic;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

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

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: var(--accent-color);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background-color: var(--text-color);
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    background: url('https://www.yatosha.com/storage/mfp/background.webp') no-repeat center center/cover;
    color: var(--white-color);
    padding: 180px 20px 120px;
    text-align: center;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.3));
    z-index: 1;
}

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.hero-container {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4rem;
}

.hero-content {
    text-align: center;
}

.hero-content h1 {
    font-family: var(--font-family-serif);
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--white-color);
    margin-bottom: 1rem;
    animation: float 6s ease-in-out infinite;
}

.hero-tagline {
    font-size: 1.5rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.5rem;
}

.hero-description {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin: 0 auto 2.5rem;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.cta-button {
    font-family: var(--font-family-sans-serif);
    font-weight: 600;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 0.9rem 2.2rem;
    border-radius: 50px;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
    cursor: pointer;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.4s ease, height 0.4s ease;
    z-index: -1;
}

.cta-button:hover::before {
    width: 225%;
    height: 225%;
}

.cta-button.primary {
    background-color: var(--accent-color);
    color: var(--white-color);
    border-color: var(--accent-color);
}

.cta-button.primary:hover {
    background-color: transparent;
    color: var(--accent-color);
}

.cta-button.secondary {
    background-color: transparent;
    color: var(--white-color);
    border-color: var(--white-color);
}

.cta-button.secondary:hover {
    background-color: var(--white-color);
    color: var(--primary-color);
}

.hero-stats {
    display: flex;
    gap: 3rem;
    background: rgba(0, 0, 0, 0.3);
    padding: 1.5rem 3rem;
    border-radius: 12px;
    backdrop-filter: blur(10px);
}

.stat-item {
    text-align: center;
    min-width: 150px;
    position: relative;
}

.stat-item::after {
    content: '';
    position: absolute;
    right: -1.5rem;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 70%;
    background-color: rgba(255, 255, 255, 0.2);
}

.stat-item:last-child::after {
    display: none;
}

.stat-number {
    font-family: var(--font-family-serif);
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--secondary-color);
}

.stat-label {
    font-size: 1rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8);
}

/* Welcome Section */
.welcome-section {
    padding: 80px 20px;
    background: var(--white-color);
}

.section-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.content-card {
    background: #f9f9f9;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.content-card:hover {
    transform: translateY(-5px);
}

.content-card h2 {
    color: #2d5016;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.content-card p {
    color: #555;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.read-more-btn {
    display: inline-block;
    color: #2d5016;
    text-decoration: none;
    font-weight: 600;
    border: 2px solid #2d5016;
    padding: 10px 25px;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.read-more-btn:hover {
    background: #2d5016;
    color: white;
}

/* Section Titles */
.section-title {
    text-align: center;
    font-size: 2.5rem;
    color: var(--heading-color);
    margin-bottom: 3rem;
    font-weight: 700;
    font-family: var(--font-family-serif);
    position: relative;
}

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

/* About Section */
.about-section {
    padding: 80px 20px;
    background: var(--background-color);
}

.mission-vision {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.mission-card, .vision-card {
    background: var(--white-color);
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 5px 20px var(--shadow-color);
    transition: transform 0.3s ease;
    border-left: 4px solid var(--primary-color);
}

.mission-card:hover, .vision-card:hover {
    transform: translateY(-5px);
}

.card-icon {
    width: 80px;
    height: 80px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.card-icon i {
    font-size: 2rem;
    color: var(--white-color);
}

.mission-card h3, .vision-card h3 {
    color: var(--heading-color);
    font-family: var(--font-family-serif);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.company-overview, .awards-section, .environmental-commitment {
    background: var(--white-color);
    padding: 2.5rem;
    border-radius: 15px;
    margin-bottom: 3rem;
    box-shadow: 0 5px 20px var(--shadow-color);
}

.company-overview h3, .awards-section h3, .environmental-commitment h3 {
    color: var(--heading-color);
    font-family: var(--font-family-serif);
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.award-card {
    display: flex;
    gap: 1.5rem;
    align-items: center;
    background: var(--background-color);
    padding: 1.5rem;
    border-radius: 8px;
    margin: 2rem 0;
}

.award-icon {
    width: auto;
    height: auto;
    background: transparent;
    border-radius: 0;
    display: block;
    flex-shrink: 0;
}

.award-icon i {
    font-size: 2.5rem;
    color: var(--secondary-color);
}

.award-content h4 {
    color: var(--heading-color);
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

/* Products Section Styles */
#products {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 50%, #f1f3f4 100%);
    position: relative;
}

/* Background Pattern */
.bg-pattern {
    background-image: 
        radial-gradient(circle at 25% 25%, rgba(13, 110, 253, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(25, 135, 84, 0.05) 0%, transparent 50%);
    background-size: 100px 100px;
    animation: float 20s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-10px) rotate(1deg); }
}

/* Section Header Styles */
.line-accent {
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, #0d6efd, #198754);
    border-radius: 2px;
}

.tracking-wide {
    letter-spacing: 0.1em;
}

/* Product Hero Card */
.product-hero-card {
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: all 0.4s ease;
    position: relative;
}

.product-hero-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(13, 110, 253, 0.02) 0%, rgba(25, 135, 84, 0.02) 100%);
    z-index: 1;
}

.product-hero-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.15);
}

/* Product Image Container */
.product-image-container {
    position: relative;
    height: 100%;
    min-height: 500px;
    overflow: hidden;
}

.product-image-wrapper {
    position: relative;
    height: 100%;
    overflow: hidden;
    border-radius: 20px 0 0 20px;
}

.product-main-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.6s ease;
    filter: brightness(0.9) contrast(1.1);
}

.product-hero-card:hover .product-main-image {
    transform: scale(1.1);
    filter: brightness(1) contrast(1.2);
}

/* Image Overlay */
.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(13, 110, 253, 0.8) 0%, rgba(25, 135, 84, 0.8) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.4s ease;
}

.product-hero-card:hover .image-overlay {
    opacity: 1;
}

.overlay-content {
    text-align: center;
    transform: translateY(20px);
    transition: all 0.4s ease;
}

.product-hero-card:hover .overlay-content {
    transform: translateY(0);
}

/* Quality Badges */
.quality-badges {
    position: absolute;
    bottom: 20px;
    left: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.quality-badge {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 8px 12px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transform: translateX(-100px);
    opacity: 0;
    transition: all 0.4s ease;
}

.product-hero-card:hover .quality-badge {
    transform: translateX(0);
    opacity: 1;
}

.quality-badge:nth-child(1) { transition-delay: 0.1s; }
.quality-badge:nth-child(2) { transition-delay: 0.2s; }
.quality-badge:nth-child(3) { transition-delay: 0.3s; }

/* Product Details */
.product-details {
    position: relative;
    z-index: 2;
}

.product-title {
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(135deg, #0d6efd, #198754);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
    line-height: 1.2;
}

.product-subtitle {
    font-size: 1.25rem;
    font-weight: 500;
    margin-bottom: 0;
}

.product-description .lead {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #6c757d;
}

/* Feature Items */
.feature-item {
    display: flex;
    align-items: center;
    font-weight: 500;
    color: #495057;
    transition: all 0.3s ease;
}

.feature-item:hover {
    color: #198754;
    transform: translateX(5px);
}

.feature-item i {
    font-size: 1.1rem;
}

/* Action Buttons */
.product-actions .btn {
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.product-actions .btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s ease;
}

.product-actions .btn:hover::before {
    left: 100%;
}

.product-actions .btn-primary {
    background: linear-gradient(135deg, #0d6efd, #0b5ed7);
    border: none;
    box-shadow: 0 8px 25px rgba(13, 110, 253, 0.3);
}

.product-actions .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(13, 110, 253, 0.4);
}

.product-actions .btn-outline-primary {
    border: 2px solid #0d6efd;
    color: #0d6efd;
    background: transparent;
}

.product-actions .btn-outline-primary:hover {
    background: #0d6efd;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(13, 110, 253, 0.3);
}

/* Benefits Section */
.benefits-section {
    margin-top: 4rem;
}

.benefit-card {
    text-align: center;
    padding: 2rem 1.5rem;
    background: #ffffff;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #0d6efd, #198754);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.benefit-card:hover::before {
    transform: scaleX(1);
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.benefit-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #0d6efd, #198754);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all 0.4s ease;
}

.benefit-icon i {
    font-size: 2rem;
    color: white;
    transition: all 0.4s ease;
}

.benefit-card:hover .benefit-icon {
    transform: scale(1.1) rotate(5deg);
}

.benefit-card:hover .benefit-icon i {
    transform: scale(1.1);
}

.benefit-card h5 {
    color: #212529;
    margin-bottom: 1rem;
    font-weight: 700;
}

.benefit-card p {
    color: #6c757d;
    line-height: 1.6;
    margin-bottom: 0;
}

/* Enhanced Modal Styles */
.modal-xl .modal-content {
    border-radius: 20px;
    overflow: hidden;
    border: none;
}

.modal-header.bg-gradient-primary {
    background: linear-gradient(135deg, #0d6efd, #198754) !important;
    padding: 1.5rem 2rem;
}

.modal-title {
    font-weight: 700;
    font-size: 1.5rem;
}

.product-stats .stat-item {
    padding: 1rem;
    transition: all 0.3s ease;
}

.product-stats .stat-item:hover {
    transform: translateY(-5px);
}

.product-stats .stat-item i {
    transition: all 0.3s ease;
}

.product-stats .stat-item:hover i {
    transform: scale(1.2);
}

.product-stats h6 {
    font-weight: 700;
    margin-bottom: 0.25rem;
}

/* Modal Content Sections */
.modal-body h5 {
    font-weight: 700;
    color: #212529;
}

.modal-body .d-flex.align-items-center {
    padding: 0.5rem 0;
    transition: all 0.3s ease;
}

.modal-body .d-flex.align-items-center:hover {
    background: rgba(13, 110, 253, 0.05);
    border-radius: 8px;
    padding-left: 1rem;
}

.modal-body .badge {
    padding: 0.5rem 1rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.modal-body .badge:hover {
    transform: scale(1.05);
}

/* Font Family */
.font-sans-serif {
    font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji" !important;
}

/* Responsive Design */
@media (max-width: 991.98px) {
    .product-image-container {
        min-height: 300px;
    }
    
    .product-image-wrapper {
        border-radius: 20px 20px 0 0;
    }
    
    .product-title {
        font-size: 2.5rem;
    }
    
    .quality-badges {
        position: relative;
        bottom: auto;
        left: auto;
        flex-direction: row;
        justify-content: center;
        margin-top: 1rem;
    }
    
    .quality-badge {
        transform: none;
        opacity: 1;
    }
}

@media (max-width: 767.98px) {
    .product-title {
        font-size: 2rem;
    }
    
    .product-actions .btn {
        width: 100%;
        margin-bottom: 0.5rem;
    }
    
    .benefit-card {
        margin-bottom: 2rem;
    }
    
    .line-accent {
        width: 30px;
    }
}

/* Location Section */
.location-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, #f8fdf4 0%, #e8f5d8 100%);
}

/* Map styles */
.map-container {
    width: 100%;
    height: 450px;
    position: relative;
    transition: all 0.3s ease;
}

.map-container:hover {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

/* Location info styles */
.location-info {
    height: 100%;
    transition: transform 0.3s ease;
}

.location-info:hover {
    transform: translateY(-5px);
}

/* Icon circle styles */
.icon-circle {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.icon-circle i {
    font-size: 1.25rem;
    transition: transform 0.3s ease;
}

.location-info:hover .icon-circle i {
    transform: scale(1.1);
}

/* Region card styles */
.region-card {
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.region-card:hover {
    background: var(--white-color) !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.region-card i {
    font-size: 1.1rem;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .map-container {
        height: 350px;
    }
}

@media (max-width: 768px) {
    .map-container {
        height: 300px;
        margin-bottom: 2rem;
    }
    
    .region-card {
        margin-bottom: 1rem;
    }
}

/* Social Media Section Custom Styles */
.text-instagram {
    color: #E1306C !important;
}

.text-facebook {
    color: #1877F2 !important;
}

.text-twitter {
    color: #1DA1F2 !important;
}

/* Card Hover Effects */
.hover-lift {
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    will-change: transform;
}

.hover-lift:hover {
    transform: translateY(-8px);
    box-shadow: 0 1rem 2rem rgba(0,0,0,.15)!important;
}

/* Social Icon Animations */
.social-icon {
    transition: all 0.3s ease;
}

.hover-lift:hover .social-icon {
    transform: scale(1.1);
    color: var(--accent-color);
}

/* Button Hover Effects */
.btn-social {
    width: 100%;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-social:hover i {
    transform: translateX(3px);
}

.btn-social i {
    transition: transform 0.3s ease;
}

/* Button Hover Effects */
.btn-outline-primary {
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-outline-primary:hover i {
    transform: translateX(5px);
}

.btn-outline-primary i {
    transition: transform 0.3s ease;
}

/* Contact Section */
.contact-section {
    padding: 80px 20px;
    background: var(--background-color);
}

.contact-intro {
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-color);
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-card {
    background: var(--white-color);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 5px 20px var(--shadow-color);
    border-left: 4px solid var(--primary-color);
}

.contact-card h3 {
    color: var(--heading-color);
    font-family: var(--font-family-serif);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.contact-item i {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-top: 0;
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    background: var(--background-color);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.contact-form-container {
    background: var(--white-color);
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 5px 20px var(--shadow-color);
}

.contact-form-container h3 {
    color: var(--heading-color);
    font-family: var(--font-family-serif);
    font-size: 1.8rem;
    margin-bottom: 2rem;
    font-weight: 600;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    color: var(--text-color);
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea {
    padding: 12px 15px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.submit-btn {
    background: var(--primary-color);
    color: var(--white-color);
    padding: 15px 30px;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.submit-btn:hover {
    background: var(--accent-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

/* Footer */
.footer {
    background: var(--heading-color);
    color: rgba(255, 255, 255, 0.8);
    padding: 4rem 2rem 2rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-logo h3 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    color: var(--white-color);
    font-family: var(--font-family-serif);
}

.footer-logo p {
    font-style: italic;
    opacity: 0.8;
    max-width: 350px;
}

.footer-links h4, .footer-social h4 {
    font-size: 1.2rem;
    color: var(--white-color);
    margin-bottom: 1rem;
    font-weight: 600;
}

.footer-links ul li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.footer-social {
    display: flex;
    gap: 1rem;
}

.footer-social a {
    color: var(--white-color);
    font-size: 1.5rem;
    transition: color 0.3s ease;
}

.footer-social a:hover {
    color: var(--secondary-color);
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
}

.footer-bottom p {
    margin-bottom: 0.5rem;
    opacity: 0.8;
    font-size: 0.9rem;
}

.footer-bottom a {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 500;
}

.footer-bottom a:hover {
    text-decoration: underline;
}

/* Scroll to Top Button */
.scroll-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background-color: var(--primary-color);
    color: var(--white-color);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease, background-color 0.3s ease;
    z-index: 1000;
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-to-top:hover {
    background-color: var(--accent-color);
}

/* Responsive Design */
@media (max-width: 992px) {
    .hero-content h1 {
        font-size: 3.5rem;
    }

    .hero-tagline {
        font-size: 1.3rem;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: var(--white-color);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px var(--shadow-color);
        padding: 2rem 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        margin: 1.5rem 0;
    }

    .hamburger {
        display: flex;
    }

    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .hero {
        padding: 120px 20px 60px;
    }

    .hero-content h1 {
        font-size: 3rem;
    }

    .hero-stats {
        flex-direction: column;
        gap: 2rem;
    }

    .section-grid,
    .mission-vision,
    .location-content,
    .contact-content {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-about,
    .footer-links,
    .footer-social {
        margin-bottom: 2rem;
    }

    .footer-social {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    section {
        padding: 4rem 1rem;
    }

    .container {
        padding: 0 1rem;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-tagline {
        font-size: 1.1rem;
    }

    .section-title {
        font-size: 2rem;
    }

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

/* Smooth scrolling and animations */
@media (prefers-reduced-motion: no-preference) {
    .content-card,
    .mission-card,
    .vision-card,
    .product-card,
    .social-link {
        animation: fadeInUp 0.6s ease-out;
    }
}

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

/* Focus styles for accessibility */
.nav-link:focus,
.cta-button:focus,
.read-more-btn:focus,
.social-link:focus,
.submit-btn:focus {
    outline: 2px solid #2d5016;
    outline-offset: 2px;
}

.form-group input:focus,
.form-group textarea:focus {
    box-shadow: 0 0 0 3px rgba(45, 80, 22, 0.1);
}