* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --green: #66BD55;
    --blue: #1384C8;
    --dark-green: #4a9640;
    --dark-blue: #0d5f94;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background: #fff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid #e5e7eb;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.logo-box {
    background: linear-gradient(135deg, var(--green), var(--blue));
    color: white;
    font-weight: bold;
    font-size: 20px;
    padding: 15px 25px;
    border-radius: 8px;
    display: inline-block;
}

.nav-desktop {
    display: flex;
    gap: 10px;
}

.nav-link {
    padding: 10px 20px;
    text-decoration: none;
    color: #666;
    font-weight: bold;
    font-size: 18px;
    border-radius: 10px;
    transition: all 0.3s;
}

.nav-link:hover {
    background: var(--blue);
    color: white;
}

.nav-link.active {
    background: var(--green);
    color: white;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 32px;
    cursor: pointer;
}

.nav-mobile {
    display: none;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-top: 1px solid #e5e7eb;
    padding: 20px;
}

.nav-mobile.active {
    display: block;
}

.nav-link-mobile {
    display: block;
    padding: 12px 20px;
    text-decoration: none;
    color: #666;
    font-weight: bold;
    font-size: 18px;
    border-radius: 10px;
    margin-bottom: 10px;
    transition: all 0.3s;
}

.nav-link-mobile:hover {
    background: var(--blue);
    color: white;
}

.nav-link-mobile.active {
    background: var(--green);
    color: white;
}

/* Hero Section - Slideshow */
.hero-section {
    padding: 40px 0;
}

.slideshow {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    border-radius: 20px;
    overflow: hidden;
    aspect-ratio: 2/1;
}

.slide {
    display: none;
    position: relative;
    width: 100%;
    height: 100%;
}

.slide.active {
    display: block;
    animation: fadeIn 0.7s;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slide::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(0,0,0,0.7), rgba(0,0,0,0.3), transparent);
}

.slide-content {
    position: absolute;
    top: 50%;
    left: 50px;
    transform: translateY(-50%);
    max-width: 600px;
    color: white;
    z-index: 2;
}

.slide-content h1 {
    font-size: 48px;
    font-weight: bold;
    margin-bottom: 15px;
    animation: slideInLeft 0.7s;
}

.slide-content p {
    font-size: 20px;
    margin-bottom: 25px;
    opacity: 0.9;
    animation: slideInLeft 0.7s 0.1s both;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.btn-primary {
    background: var(--green);
    color: white;
    border: none;
    padding: 15px 30px;
    font-size: 16px;
    font-weight: bold;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s;
    animation: slideInLeft 0.7s 0.2s both;
}

.btn-primary:hover {
    background: var(--dark-green);
    transform: translateY(-2px);
}

.slide-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(5px);
    border: none;
    color: white;
    font-size: 40px;
    padding: 10px 20px;
    cursor: pointer;
    transition: all 0.3s;
    z-index: 3;
}

.slide-btn:hover {
    background: rgba(255, 255, 255, 0.3);
}

.slide-btn.prev {
    left: 20px;
}

.slide-btn.next {
    right: 20px;
}

.slide-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 3;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s;
}

.dot.active {
    background: var(--green);
    width: 32px;
    border-radius: 5px;
}

/* Intro Section */
.intro-section {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(102, 189, 85, 0.05), rgba(19, 132, 200, 0.05));
}

.intro-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(102, 189, 85, 0.1);
    border: 1px solid rgba(102, 189, 85, 0.3);
    border-radius: 50px;
    color: var(--green);
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
}

.intro-content h2 {
    font-size: 48px;
    font-weight: bold;
    margin-bottom: 20px;
    color: #1f2937;
}

.intro-content p {
    font-size: 20px;
    line-height: 1.8;
    color: #6b7280;
    margin-bottom: 40px;
}

.text-green {
    color: var(--green);
}

/* Stats */
.stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.stat-card {
    position: relative;
    padding: 40px 30px;
    border-radius: 20px;
    color: white;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    overflow: hidden;
    transition: all 0.3s;
}

.stat-card:hover {
    transform: translateY(-10px) scale(1.05);
}

.stat-blue {
    background: linear-gradient(135deg, var(--blue), var(--dark-blue));
}

.stat-green {
    background: linear-gradient(135deg, var(--green), var(--dark-green));
}

.stat-icon {
    position: absolute;
    top: -15px;
    right: -15px;
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    transition: all 0.5s;
}

.stat-card:hover .stat-icon {
    transform: scale(1.2) rotate(15deg);
}

.stat-number {
    display: inline-block;
    font-size: 56px;
    font-weight: bold;
    font-variant-numeric: tabular-nums;
}

.stat-suffix {
    display: inline-block;
    font-size: 42px;
    font-weight: bold;
}

.stat-label {
    font-size: 18px;
    margin-top: 10px;
    opacity: 0.9;
}

.stat-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 4px;
    background: rgba(255, 255, 255, 0.4);
    width: 0;
    transition: width 2s ease;
}

.stat-card.animated .stat-progress {
    width: 100%;
}

/* Features Section */
.features-section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 40px;
    font-weight: bold;
    margin-bottom: 15px;
    color: #1f2937;
}

.section-header p {
    font-size: 18px;
    color: #6b7280;
    max-width: 700px;
    margin: 0 auto;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.feature-card {
    padding: 30px;
    border: 2px solid #e5e7eb;
    border-radius: 15px;
    background: white;
    transition: all 0.3s;
    opacity: 0;
    transform: translateY(30px);
}

.feature-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.feature-card:hover {
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transform: translateY(-5px);
}

.feature-icon {
    font-size: 40px;
    margin-bottom: 15px;
    transition: all 0.3s;
}

.feature-icon.green {
    color: var(--green);
}

.feature-icon.blue {
    color: var(--blue);
}

.feature-card:hover .feature-icon {
    transform: scale(1.2);
}

.feature-card h3 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 12px;
    color: #1f2937;
}

.feature-card p {
    color: #6b7280;
    line-height: 1.7;
}

/* Custom Section */
.custom-section {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(102, 189, 85, 0.1), rgba(255, 255, 255, 1), rgba(19, 132, 200, 0.1));
    position: relative;
}

.custom-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.custom-col {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.custom-card {
    padding: 40px;
    border-radius: 20px;
    color: white;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.green-card {
    background: linear-gradient(135deg, var(--green), var(--dark-green));
}

.blue-card {
    background: linear-gradient(135deg, var(--blue), var(--dark-blue));
}

.custom-icon {
    font-size: 48px;
    margin-bottom: 15px;
}

.custom-card h3 {
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 15px;
}

.custom-card p {
    font-size: 18px;
    line-height: 1.7;
    opacity: 0.95;
}

.feature-list-card {
    display: flex;
    gap: 20px;
    padding: 25px;
    background: white;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    transition: all 0.3s;
}

.feature-list-card:hover {
    border-color: var(--green);
    box-shadow: 0 5px 20px rgba(102, 189, 85, 0.2);
}

.feature-list-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: white;
}

.feature-list-icon.green {
    background: var(--green);
}

.feature-list-icon.blue {
    background: var(--blue);
}

.feature-list-card h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 5px;
    color: #1f2937;
}

.feature-list-card p {
    color: #6b7280;
}

.cta-box {
    text-align: center;
    padding: 50px 40px;
    background: linear-gradient(135deg, var(--green), var(--dark-green), var(--blue));
    border-radius: 20px;
    color: white;
    margin-top: 40px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.cta-box h3 {
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 15px;
}

.cta-box p {
    font-size: 20px;
    margin-bottom: 30px;
    opacity: 0.95;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.btn-white {
    background: white;
    color: var(--blue);
    border: none;
    padding: 18px 35px;
    font-size: 18px;
    font-weight: bold;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-white:hover {
    background: #f3f4f6;
    transform: scale(1.05);
}

/* Testimonials */
.testimonials-section {
    padding: 80px 0;
    background: white;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.testimonial-card {
    padding: 35px;
    border: 2px solid #e5e7eb;
    border-radius: 20px;
    background: #f9fafb;
    transition: all 0.3s;
    opacity: 0;
    transform: translateY(30px);
}

.testimonial-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.testimonial-card:hover {
    border-color: rgba(102, 189, 85, 0.4);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.stars {
    color: var(--green);
    font-size: 20px;
    margin-bottom: 15px;
}

.quote-icon {
    font-size: 40px;
    color: rgba(19, 132, 200, 0.2);
    margin-bottom: 15px;
}

.testimonial-card p {
    font-size: 16px;
    line-height: 1.7;
    color: #6b7280;
    margin-bottom: 25px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
    padding-top: 20px;
    border-top: 1px solid #e5e7eb;
}

.testimonial-author img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.author-name {
    font-weight: 600;
    color: #1f2937;
}

.author-company {
    font-size: 14px;
    color: #6b7280;
}

/* Footer */
.footer {
    background: #f9fafb;
    border-top: 1px solid #e5e7eb;
    padding: 50px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #1f2937;
}

.footer-col p {
    color: #6b7280;
    line-height: 1.7;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    color: #6b7280;
    text-decoration: none;
    transition: all 0.3s;
}

.footer-col ul li a:hover {
    color: var(--blue);
}

.social-links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.social-btn {
    width: 40px;
    height: 40px;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #6b7280;
    transition: all 0.3s;
}

.social-btn:hover {
    border-color: var(--blue);
    color: var(--blue);
    transform: translateY(-2px);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #e5e7eb;
    color: #6b7280;
}

.footer-bottom p {
    margin: 5px 0;
}

.footer-bottom a {
    color: var(--blue);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
}

.footer-bottom a:hover {
    color: var(--green);
}

/* Scroll to Top */
.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, var(--green), var(--blue));
    color: white;
    border: none;
    border-radius: 50%;
    font-size: 28px;
    cursor: pointer;
    box-shadow: 0 5px 20px rgba(0,0,0,0.3);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
    z-index: 999;
}

.scroll-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    transform: scale(1.15);
}

/* Inner Pages Styles */

/* Page Banner */
.page-banner-section {
    padding: 20px 0;
}

.page-banner {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 40px;
    background: linear-gradient(135deg, var(--green), var(--blue));
    background-image: linear-gradient(135deg, rgba(102, 189, 85, 0.95), rgba(19, 132, 200, 0.95)), 
                      url('https://images.unsplash.com/photo-1553413077-190dd305871c?w=1200&h=300&fit=crop');
    background-size: cover;
    background-position: center;
    border-radius: 20px;
    text-align: center;
    color: white;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
}

.page-title {
    font-size: 48px;
    font-weight: bold;
    margin-bottom: 15px;
}

.breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 16px;
}

.breadcrumb a {
    color: white;
    text-decoration: none;
    opacity: 0.9;
    transition: opacity 0.3s;
}

.breadcrumb a:hover {
    opacity: 1;
    text-decoration: underline;
}

.breadcrumb .separator {
    opacity: 0.7;
}

.breadcrumb .current {
    opacity: 1;
    font-weight: 600;
}

/* Content Container */
.content-section {
    padding: 40px 0 80px 0;
}

.content-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    border: 1px solid #e5e7eb;
}

/* Text Content */
.text-content {
    margin-bottom: 60px;
}

.text-content h2 {
    font-size: 36px;
    font-weight: bold;
    color: #1f2937;
    margin-bottom: 30px;
    text-align: center;
}

.text-content p {
    font-size: 18px;
    line-height: 1.8;
    color: #4b5563;
    margin-bottom: 20px;
    text-align: justify;
}

.text-content strong {
    color: var(--green);
    font-weight: 600;
}

/* Info Cards */
.info-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.info-card {
    padding: 40px 30px;
    border: 2px solid #e5e7eb;
    border-radius: 15px;
    text-align: center;
    background: #f9fafb;
    transition: all 0.3s;
}

.info-card:hover {
    border-color: var(--green);
    box-shadow: 0 10px 30px rgba(102, 189, 85, 0.15);
    transform: translateY(-5px);
    background: white;
}

.info-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    color: white;
    transition: all 0.3s;
}

.info-icon.green {
    background: var(--green);
}

.info-icon.blue {
    background: var(--blue);
}

.info-card:hover .info-icon {
    transform: scale(1.15) rotate(10deg);
}

.info-card h3 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #1f2937;
}

.info-card p {
    font-size: 16px;
    line-height: 1.7;
    color: #6b7280;
    text-align: center;
}

/* Products Grid */
.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.product-card {
    background: #f9fafb;
    border: 2px solid #e5e7eb;
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s;
    cursor: pointer;
}

.product-card:hover {
    border-color: var(--green);
    box-shadow: 0 10px 30px rgba(102, 189, 85, 0.2);
    transform: translateY(-5px);
}

.product-image {
    width: 100%;
    aspect-ratio: 1/1;
    overflow: hidden;
    background: #e5e7eb;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s;
}

.product-card:hover .product-image img {
    transform: scale(1.1);
}

.product-name {
    padding: 20px 15px;
    font-size: 18px;
    font-weight: 600;
    color: #1f2937;
    text-align: center;
    margin: 0;
}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    align-items: center;
    justify-content: center;
}

.lightbox.active {
    display: flex;
}

.lightbox-content {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
    border-radius: 10px;
    animation: zoomIn 0.3s;
}

@keyframes zoomIn {
    from {
        transform: scale(0.5);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

.lightbox-close {
    position: absolute;
    top: 30px;
    right: 50px;
    color: white;
    font-size: 50px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s;
}

.lightbox-close:hover {
    color: var(--green);
    transform: rotate(90deg);
}

/* Responsive */
@media (max-width: 768px) {
    .nav-desktop {
        display: none;
    }
    
    .menu-toggle {
        display: block;
    }
    
    .slide-content h1 {
        font-size: 32px;
    }
    
    .slide-content p {
        font-size: 16px;
    }
    
    .slide-content {
        left: 30px;
        right: 30px;
    }
    
    .intro-content h2 {
        font-size: 32px;
    }
    
    .section-header h2 {
        font-size: 32px;
    }
    
    .custom-grid {
        grid-template-columns: 1fr;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    /* Inner Pages Responsive */
    .page-banner {
        margin: 0 20px;
        padding: 40px 30px;
    }
    
    .page-title {
        font-size: 32px;
    }
    
    .content-container {
        margin: 0 20px;
        padding: 40px 25px;
    }
    
    .text-content h2 {
        font-size: 28px;
    }
    
    .text-content p {
        font-size: 16px;
        text-align: left;
    }
    
    .info-cards {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    /* Products Responsive */
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .product-name {
        font-size: 16px;
        padding: 15px 10px;
    }
    
    .lightbox-close {
        top: 15px;
        right: 20px;
        font-size: 40px;
    }
    
    /* Contact Page Responsive */
    .contact-layout {
        display: block;
        margin-bottom: 40px;
    }
    
    .contact-info {
        margin-bottom: 30px;
    }
    
    .contact-form-wrapper {
        padding: 30px 20px;
        margin-bottom: 30px;
    }
    
    .contact-info h2,
    .contact-form-wrapper h2,
    .map-container h2 {
        font-size: 26px;
    }
    
    .contact-item {
        padding: 15px;
        margin-bottom: 20px;
    }
    
    .contact-icon {
        width: 50px;
        height: 50px;
        font-size: 24px;
    }
    
    .contact-details h3 {
        font-size: 18px;
    }
    
    .contact-details p {
        font-size: 14px;
    }
    
    .form-group input,
    .form-group textarea {
        padding: 12px 15px;
        font-size: 15px;
    }
    
    .submit-btn {
        padding: 14px 30px;
        font-size: 16px;
        width: 100%;
    }
    
    .map-container {
        margin-top: 40px;
    }
    
    .map-wrapper iframe {
        height: 300px;
    }
}

/* Animations */
.fade-in {
    opacity: 0;
    animation: fadeIn 1s forwards;
}

.slide-up {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.7s;
}

.slide-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Contact Page */
.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-bottom: 60px;
    width: 100%;
}

.contact-info h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #1f2937;
}

.contact-info > p {
    font-size: 18px;
    color: #6b7280;
    margin-bottom: 40px;
    line-height: 1.7;
}

.contact-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    padding: 20px;
    background: #f9fafb;
    border-radius: 12px;
    border: 2px solid #e5e7eb;
    transition: all 0.3s;
}

.contact-item:hover {
    border-color: var(--green);
    box-shadow: 0 5px 20px rgba(102, 189, 85, 0.1);
    transform: translateX(5px);
}

.contact-icon {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    flex-shrink: 0;
}

.contact-icon.green {
    background: var(--green);
}

.contact-icon.blue {
    background: var(--blue);
}

.contact-details h3 {
    font-size: 20px;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 8px;
}

.contact-details p {
    font-size: 16px;
    color: #6b7280;
    line-height: 1.6;
    margin: 0;
}

.contact-form-wrapper {
    background: #f9fafb;
    padding: 40px;
    border-radius: 15px;
    border: 2px solid #e5e7eb;
}

.contact-form-wrapper h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 30px;
    color: #1f2937;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-size: 16px;
    font-weight: 600;
    color: #374151;
    margin-bottom: 10px;
}

.form-group input,
.form-group textarea {
    padding: 15px 20px;
    font-size: 16px;
    border: 2px solid #e5e7eb;
    border-radius: 10px;
    background: white;
    color: #1f2937;
    font-family: inherit;
    transition: all 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--green);
    box-shadow: 0 0 0 4px rgba(102, 189, 85, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.submit-btn {
    padding: 16px 40px;
    font-size: 18px;
    font-weight: 600;
    color: white;
    background: linear-gradient(135deg, var(--green), var(--dark-green));
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s;
    margin-top: 10px;
}

.submit-btn:hover {
    background: linear-gradient(135deg, var(--dark-green), var(--green));
    box-shadow: 0 8px 25px rgba(102, 189, 85, 0.3);
    transform: translateY(-2px);
}

.submit-btn:active {
    transform: translateY(0);
}

.map-container {
    margin-top: 60px;
}

.map-container h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 30px;
    color: #1f2937;
    text-align: center;
}

.map-wrapper {
    border-radius: 15px;
    overflow: hidden;
    border: 2px solid #e5e7eb;
}

.map-wrapper iframe {
    display: block;
}
/* --- Responsive Fix for Contact Page --- */
@media (max-width: 768px) {
    .contact-layout {
        display: flex;
        flex-direction: column;
        gap: 30px;
    }

    .contact-info,
    .contact-form-wrapper {
        width: 100%;
        max-width: 100%;
    }

    .contact-info {
        margin-bottom: 20px;
    }

    .contact-form-wrapper form {
        width: 100%;
    }

    .contact-item {
        display: flex;
        align-items: flex-start;
        margin-bottom: 15px;
    }

    .contact-icon {
        margin-right: 10px;
    }

    .map-container {
        margin-top: 40px;
    }
}
