/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333333;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 1.5rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}

.logo h1 {
    color: #1B4D3E;
    font-size: 1.8rem;
    font-weight: 700;
}

.nav-links a {
    color: #333333;
    text-decoration: none;
    margin-left: 2rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #D4AF37;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: #1B4D3E;
    margin: 2px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    height: 100vh;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
                url('products/buna.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #F5F5F5;
    overflow: hidden;
}

.hero-content {
    max-width: 800px;
    padding: 0 2rem;
    z-index: 1;
    opacity: 0;
    transform: translateY(40px);
    animation: heroFadeIn 1.2s cubic-bezier(0.23, 1, 0.32, 1) 0.2s forwards;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
    opacity: 0;
    transform: translateY(40px);
    animation: heroTextUp 1s 0.5s forwards;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0;
    transform: translateY(40px);
    animation: heroTextUp 1s 0.8s forwards;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    opacity: 0;
    transform: translateY(40px);
    animation: heroTextUp 1s 1.1s forwards;
}

.btn {
    padding: 1rem 2rem;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: transform 0.3s ease;
}

.btn:hover {
    transform: translateY(-2px);
}

.primary {
    background-color: #D4AF37;
    color: #1B4D3E;
}

.secondary {
    background-color: transparent;
    border: 2px solid #F5F5F5;
    color: #F5F5F5;
}

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

/* Section Styles */
section {
    padding: 5rem 0;
}

section h2 {
    text-align: center;
    color: #1B4D3E;
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

/* About Section */
.about-section {
    background-color: #F5F5F5;
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(27, 77, 62, 0.05) 0%, rgba(212, 175, 55, 0.05) 100%);
    z-index: 0;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
}

.section-subtitle {
    color: #D4AF37;
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    display: block;
}

.section-divider {
    width: 80px;
    height: 3px;
    background: linear-gradient(to right, #D4AF37, #1B4D3E);
    margin: 1.5rem auto;
    border-radius: 3px;
}

.about-content {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.about-text .lead {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #1B4D3E;
    margin-bottom: 2rem;
    position: relative;
    padding-left: 1.5rem;
    border-left: 3px solid #D4AF37;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.feature {
    text-align: center;
    padding: 1.5rem;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    opacity: 1;
    transform: translateY(0);
    border: 1px solid rgba(27, 77, 62, 0.1);
}

.feature.animate-feature {
    opacity: 1;
    transform: translateY(0);
    animation: featureFadeIn 0.5s ease forwards;
}

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

.feature:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    border-color: #D4AF37;
}

.feature-icon {
    width: 65px;
    height: 65px;
    margin: 0 auto 1rem;
    background: linear-gradient(135deg, #D4AF37, #1B4D3E);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.2);
}

.feature:hover .feature-icon {
    transform: rotateY(180deg);
}

.feature i {
    font-size: 2rem;
    color: #ffffff;
}

.feature h3 {
    color: #1B4D3E;
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
    font-weight: 600;
}

.feature p {
    font-size: 0.95rem;
    color: #444;
    margin: 0;
    line-height: 1.5;
}

.stats-container {
    background: #ffffff;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    margin: 2rem 0;
    border: 1px solid rgba(27, 77, 62, 0.1);
}

.stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.stat-item {
    text-align: center;
    padding: 1.2rem;
    position: relative;
    background: #F8F8F8;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    background: #ffffff;
}

.stat-item::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 50%;
    background: rgba(27, 77, 62, 0.2);
}

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

.stat-icon {
    width: 50px;
    height: 50px;
    margin: 0 auto 0.8rem;
    background: linear-gradient(135deg, #D4AF37, #1B4D3E);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.2);
}

.stat-icon i {
    font-size: 1.5rem;
    color: #ffffff;
}

.stat-item h3 {
    color: #1B4D3E;
    font-size: 2.2rem;
    margin-bottom: 0.3rem;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.stat-item p {
    color: #444;
    font-size: 1rem;
    margin: 0;
    font-weight: 500;
}

/* Add animation for stats */
@keyframes countUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.stat-item.animate {
    animation: countUp 0.5s ease forwards;
}

.about-cta {
    display: flex;
    gap: 1.2rem;
    margin-top: 2rem;
}

.about-cta .btn {
    padding: 1rem 2rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-weight: 600;
    transition: all 0.3s ease;
    border-radius: 8px;
    text-decoration: none;
    font-size: 1rem;
    letter-spacing: 0.5px;
}

.about-cta .btn.primary {
    background: #2E7D32;
    color: #ffffff;
    border: 2px solid #2E7D32;
    box-shadow: 0 4px 15px rgba(46, 125, 50, 0.3);
}

.about-cta .btn.primary:hover {
    background: #1B5E20;
    border-color: #1B5E20;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(46, 125, 50, 0.4);
}

.about-cta .btn.secondary {
    background: #D4AF37;
    color: #ffffff;
    border: 2px solid #D4AF37;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.about-cta .btn.secondary:hover {
    background: #B8860B;
    border-color: #B8860B;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
}

.about-cta .btn i {
    transition: transform 0.3s ease;
    font-size: 1.1rem;
}

.about-cta .btn:hover i {
    transform: translateX(5px);
}

.about-image {
    position: relative;
}

.image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.image-wrapper img {
    width: 100%;
    height: auto;
    transition: transform 0.5s ease;
}

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

.image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(27, 77, 62, 0.9));
    padding: 2rem;
    color: #ffffff;
    text-align: center;
}

.image-overlay p {
    font-size: 1.3rem;
    font-weight: 600;
    margin: 0;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.image-wrapper:hover .image-overlay p {
    opacity: 1;
    transform: translateY(0);
}

.experience-badge {
    position: absolute;
    bottom: -30px;
    right: -30px;
    background: #D4AF37;
    color: #ffffff;
    padding: 1.5rem;
    border-radius: 50%;
    width: 150px;
    height: 150px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
    animation: float 3s ease-in-out infinite;
}

.experience-badge .years {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1;
}

.experience-badge .text {
    font-size: 0.9rem;
    text-align: center;
    margin-top: 0.5rem;
}

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

@media (max-width: 1024px) {
    .about-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

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

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

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

    .experience-badge {
        right: 20px;
        bottom: -20px;
    }
}

@media (max-width: 768px) {
    .about-section {
        padding: 4rem 0;
    }

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

    .about-cta {
        flex-direction: column;
    }

    .about-cta .btn {
        width: 100%;
        justify-content: center;
        padding: 1rem 2rem;
    }

    .experience-badge {
        width: 120px;
        height: 120px;
        right: 10px;
        bottom: -10px;
    }

    .experience-badge .years {
        font-size: 2rem;
    }

    .experience-badge .text {
        font-size: 0.8rem;
    }
}

/* Products Section */
.products-section {
    background-color: #ffffff;
    overflow: hidden;
    padding: 4rem 0;
}

.product-slider {
    position: relative;
    width: 100%;
    overflow: hidden;
    margin: 0 -10px;
}

.slider-container {
    display: flex;
    animation: slide 40s linear infinite;
    width: fit-content;
}

.slider-container:hover {
    animation-play-state: paused;
}

.slide {
    flex: 0 0 300px;
    padding: 0 10px;
}

.slide img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.slide img:hover {
    transform: scale(1.02);
}

@keyframes slide {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-300px * 5)); /* Half of total slides */
    }
}

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

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

.product-card h3 {
    color: #1B4D3E;
    padding: 1rem;
    margin: 0;
    font-size: 1.2rem;
}

.product-card p {
    padding: 0 1rem 1rem;
    color: #666;
    margin: 0;
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #1B4D3E;
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease;
}

.slider-btn:hover {
    background: #D4AF37;
}

.prev-btn {
    left: 0;
}

.next-btn {
    right: 0;
}

.slider-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #ddd;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.dot.active {
    background: #1B4D3E;
}

/* Market Section */
.market-section {
    background-color: #F5F5F5;
}

.market-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.market-map {
    background: url('https://images.unsplash.com/photo-1524661135-423995f22d0b?ixlib=rb-1.2.1&auto=format&fit=crop&w=1950&q=80') center/cover;
    height: 400px;
    border-radius: 10px;
    position: relative;
}

.map-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(27, 77, 62, 0.9);
    color: white;
    padding: 2rem;
    border-radius: 0 0 10px 10px;
}

.market-stats {
    display: grid;
    gap: 2rem;
}

.market-stat {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.market-stat h4 {
    color: #1B4D3E;
    margin-bottom: 1rem;
}

/* Contact Section */
.contact-section {
    background-color: #F5F5F5;
    padding: 5rem 0;
    position: relative;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 3rem;
    margin-top: 3rem;
}

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

.info-card {
    background: #ffffff;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

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

.map-box {
    padding: 0;
    overflow: hidden;
}

.map-container {
    width: 100%;
    height: 300px;
    position: relative;
}

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

.address-details {
    padding: 2rem;
    text-align: center;
    background: #ffffff;
}

.address-details i {
    font-size: 2rem;
    color: #D4AF37;
    margin-bottom: 1rem;
}

.address-details h3 {
    color: #1B4D3E;
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
}

.address-details p {
    color: #666;
    line-height: 1.6;
}

.info-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.info-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.info-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #D4AF37, #1B4D3E);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.info-icon i {
    font-size: 1.5rem;
    color: #ffffff;
}

.info-content h3 {
    color: #1B4D3E;
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
}

.info-content p {
    color: #666;
    margin-bottom: 1rem;
    line-height: 1.5;
}

.contact-link {
    color: #D4AF37;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.contact-link:hover {
    color: #1B4D3E;
}

.contact-form-container {
    background: #ffffff;
    border-radius: 15px;
    padding: 2.5rem;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.form-header {
    text-align: center;
    margin-bottom: 2rem;
}

.form-header h3 {
    color: #1B4D3E;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.form-header p {
    color: #666;
}

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

.input-group {
    position: relative;
}

.input-group i {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: #D4AF37;
}

.input-group.full-width {
    grid-column: 1 / -1;
}

.input-group input,
.input-group textarea {
    width: 100%;
    padding: 1rem 1rem 1rem 3rem;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

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

.input-group input:focus,
.input-group textarea:focus {
    border-color: #D4AF37;
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
    outline: none;
}

.contact-form .btn {
    width: 100%;
    padding: 1rem 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    font-size: 1.1rem;
    margin-top: 1rem;
}

@media (max-width: 1024px) {
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

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

@media (max-width: 768px) {
    .form-group {
        grid-template-columns: 1fr;
    }

    .info-cards {
        grid-template-columns: 1fr;
    }

    .contact-form-container {
        padding: 2rem;
    }
}

/* Footer */
.footer {
    background-color: #1B4D3E;
    color: white;
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 2fr;
    gap: 4rem;
    margin-bottom: 2rem;
}

.footer-logo h2 {
    color: #D4AF37;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.footer-logo p {
    color: #F5F5F5;
    margin-bottom: 1.5rem;
}

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

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: #D4AF37;
    transform: translateY(-3px);
}

.footer-links h3,
.footer-newsletter h3 {
    color: #D4AF37;
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

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

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

.footer-links ul li a {
    color: #F5F5F5;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links ul li a:hover {
    color: #D4AF37;
}

.footer-newsletter p {
    color: #F5F5F5;
    margin-bottom: 1rem;
}

.newsletter-form {
    display: flex;
    gap: 1rem;
}

.newsletter-form input {
    flex: 1;
    padding: 0.8rem;
    border: none;
    border-radius: 5px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
}

.newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.newsletter-form .btn {
    padding: 0.8rem 1.5rem;
    white-space: nowrap;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .hamburger {
        display: flex;
    }

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

    .hero-buttons {
        flex-direction: column;
    }

    .about-content,
    .product-slider,
    .market-content,
    .contact-content,
    .footer-content {
        grid-template-columns: 1fr;
    }

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

    .market-map {
        height: 300px;
    }

    section {
        padding: 3rem 0;
    }

    section h2 {
        font-size: 2rem;
    }

    .slide {
        flex: 0 0 250px;
    }
    
    .slide img {
        height: 250px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .newsletter-form .btn {
        width: 100%;
    }

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

    .map-box iframe {
        height: 250px;
    }
}

@media (max-width: 480px) {
    .slide {
        flex: 0 0 200px;
    }
    
    .slide img {
        height: 200px;
    }
}

/* Dropdown Styles */
.dropdown {
    position: relative;
    display: inline-block;
}

.dropbtn {
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.3em;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #1B4D3E;
    min-width: 200px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
    z-index: 1001;
    border-radius: 0 0 8px 8px;
    padding: 1rem 0.5rem;
    top: 100%;
    left: 0;
    color: #fff;
}

.dropdown-content a {
    color: #fff;
    padding: 0.7em 1.2em;
    text-decoration: none;
    display: block;
    font-weight: 400;
    border-radius: 4px;
    transition: background 0.2s;
}

.dropdown-content a:hover {
    background-color: #D4AF37;
    color: #1B4D3E;
}

.dropdown:hover .dropdown-content,
.dropdown:focus-within .dropdown-content {
    display: block;
}

/* Mega Menu Styles */
.mega-menu {
    display: flex;
    flex-wrap: nowrap;
    min-width: 900px;
    background: #1B4D3E;
    padding: 2rem 2rem 2rem 1rem;
    gap: 2rem;
    border-radius: 0 0 12px 12px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}
.mega-column {
    min-width: 150px;
}
.mega-column h4 {
    color: #fff;
    font-size: 1.1rem;
    margin-bottom: 0.7em;
    border-bottom: 1px solid #D4AF37;
    padding-bottom: 0.3em;
    font-weight: 600;
}
.mega-column a {
    color: #fff;
    font-size: 1rem;
    margin-bottom: 0.5em;
    padding-left: 0;
}
.mega-column a:hover {
    background: #D4AF37;
    color: #1B4D3E;
}

/* Responsive Dropdown */
@media (max-width: 1024px) {
    .mega-menu {
        flex-direction: column;
        min-width: 250px;
        padding: 1rem;
    }
    .mega-column {
        min-width: 0;
    }
}
@media (max-width: 768px) {
    .nav-links {
        flex-direction: column;
        align-items: flex-start;
        background: #fff;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100vw;
        padding: 2rem 1rem;
        box-shadow: 0 8px 24px rgba(0,0,0,0.10);
        z-index: 1002;
    }
    .dropdown-content, .mega-menu {
        position: static;
        box-shadow: none;
        border-radius: 0;
        background: #1B4D3E;
        min-width: 100%;
        padding: 0.5rem 0;
    }
    .dropdown-content a, .mega-column a {
        padding: 0.7em 0.5em;
    }
}

@keyframes heroFadeIn {
    to {
        opacity: 1;
        transform: none;
    }
}

@keyframes heroTextUp {
    to {
        opacity: 1;
        transform: none;
    }
}

@media (max-width: 1024px) {
    .about-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

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

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

@media (max-width: 768px) {
    .about-features {
        grid-template-columns: 1fr;
    }

    .about-cta {
        flex-direction: column;
    }

    .about-cta .btn {
        width: 100%;
        text-align: center;
    }
}

/* Products Grid Styles */
.products-grid {
    padding: 4rem 2rem;
    background-color: #f9f9f9;
}

.products-grid h1 {
    text-align: center;
    margin-bottom: 3rem;
    color: #333;
    font-size: 2.5rem;
}

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

.product-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

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

.product-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.product-card h3 {
    padding: 1rem;
    margin: 0;
    color: #333;
    font-size: 1.5rem;
}

.product-card p {
    padding: 0 1rem;
    color: #666;
    margin-bottom: 1rem;
}

.product-card .btn {
    display: inline-block;
    margin: 1rem;
    padding: 0.5rem 1rem;
    background-color: #007bff;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.product-card .btn:hover {
    background-color: #0056b3;
}

@media (max-width: 768px) {
    .products-grid {
        padding: 2rem 1rem;
    }

    .grid-container {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 1rem;
    }

    .product-card img {
        height: 180px;
    }
}

/* Gallery Styles */
.gallery-section {
    padding: 4rem 2rem;
    background-color: #f9f9f9;
}

.gallery-section h1 {
    text-align: center;
    margin-bottom: 3rem;
    color: #333;
    font-size: 2.5rem;
}

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

.gallery-item {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: transform 0.3s ease;
}

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

.gallery-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    padding: 1.5rem;
    color: white;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-overlay h3 {
    margin: 0 0 0.5rem 0;
    font-size: 1.5rem;
}

.gallery-overlay p {
    margin: 0;
    font-size: 1rem;
    opacity: 0.9;
}

@media (max-width: 768px) {
    .gallery-section {
        padding: 2rem 1rem;
    }

    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 1rem;
    }

    .gallery-item img {
        height: 250px;
    }

    .gallery-overlay {
        transform: translateY(0);
        background: linear-gradient(to top, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.4));
    }
} 