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

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

/* Color Variables */
:root {
    --primary-green: #2d5016;
    --secondary-green: #4a7c59;
    --light-green: #6b9b7a;
    --accent-green: #a8d5ba;
    --dark-text: #2c3e50;
    --light-text: #7f8c8d;
    --white: #ffffff;
    --light-bg: #f8f9fa;
}

/* Section Titles */
.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-green);
    margin-bottom: 1rem;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--secondary-green), var(--light-green));
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--light-text);
    margin-bottom: 1rem;
}

.section-description {
    font-size: 1.1rem;
    color: var(--dark-text);
    max-width: 800px;
    margin: 0 auto;
}

/* Buttons */
.btn-primary {
    background: linear-gradient(135deg, var(--secondary-green), var(--light-green));
    border: none;
    padding: 12px 30px;
    font-weight: 600;
    border-radius: 30px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    color: white;
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--primary-green), var(--secondary-green));
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(74, 124, 89, 0.3);
    color: white;
}

.btn-outline-light {
    border: 2px solid white;
    color: white;
    padding: 12px 30px;
    font-weight: 600;
    border-radius: 30px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    background: transparent;
}

.btn-outline-light:hover {
    background: white;
    color: var(--primary-green);
    transform: translateY(-3px);
}

.btn-outline-primary {
    border: 2px solid var(--secondary-green);
    color: var(--secondary-green);
    padding: 10px 25px;
    font-weight: 500;
    border-radius: 25px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    background: transparent;
}

.btn-outline-primary:hover {
    background: var(--secondary-green);
    color: white;
    transform: translateY(-2px);
}

/* Hero Slider */
.hero-slider {
    position: relative;
    height: 60vh;
    min-height: 360px;
    overflow: hidden;
}

.hero-slide {
    height: 60vh;
    min-height: 360px;
    display: flex;
    align-items: center;
    position: relative;
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
}

.slide-1 {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), 
                url('images/banner1.jpg');
}

.slide-2 {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), 
                url('images/banner2.jpg');
}

.slide-3 {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), 
                url('images/banner3.jpg');
}


.hero-content {
    color: white;
    z-index: 2;
    position: relative;
}

.hero-content h1 {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 1s ease 0.2s both;
}

.hero-content p {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    line-height: 1.6;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    animation: fadeInUp 1s ease 0.6s both;
}

.hero-buttons {
    animation: fadeInUp 1s ease 0.8s both;
}

.hero-buttons .btn {
    margin-right: 20px;
    margin-bottom: 15px;
    padding: 15px 35px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-buttons .btn-primary {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.1));
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.hero-buttons .btn-primary:hover {
    background: white;
    color: var(--primary-green);
    border-color: white;
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.3);
}

.hero-buttons .btn-outline-light {
    border: 2px solid rgba(255, 255, 255, 0.6);
    color: white;
    background: transparent;
}

.hero-buttons .btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border-color: white;
    transform: translateY(-3px);
    backdrop-filter: blur(10px);
}


/* Carousel Controls */
.carousel-control-prev,
.carousel-control-next {
    width: 70px;
    height: 70px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.carousel-control-prev {
    left: 40px;
}

.carousel-control-next {
    right: 40px;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-50%) scale(1.1);
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 24px;
    height: 24px;
}

.carousel-indicators {
    bottom: 25px;
    margin-bottom: 0;
}

.carousel-indicators [data-bs-target] {
    width: 12px;
    height: 12px;
    border-radius: 50% !important;
    margin: 0 6px;
    background: rgba(255, 255, 255, 0.5);
    border: none;
    transition: all 0.3s ease;
    opacity: 0.6;
}

.carousel-indicators [data-bs-target].active {
    background: white;
    opacity: 1;
    transform: scale(1.3);
    box-shadow: 0 2px 8px rgba(255, 255, 255, 0.4);
}

.carousel-indicators [data-bs-target]:hover {
    background: rgba(255, 255, 255, 0.8);
    opacity: 0.9;
    transform: scale(1.1);
}

/* Products Section */
.products-section {
    padding: 80px 0;
}

.product-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.product-image {
    position: relative;
    overflow: hidden;
    height: 280px;
    border-radius: 15px 15px 0 0;
}

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

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

.product-content {
    padding: 25px;
    text-align: center;
}

.product-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--dark-text);
    margin-bottom: 15px;
}

.product-content p {
    color: var(--light-text);
    margin-bottom: 25px;
    line-height: 1.6;
    font-size: 0.95rem;
}

.product-button {
    margin-top: auto;
}

.btn-product-outline {
    border: 2px solid var(--secondary-green);
    color: var(--secondary-green);
    background: transparent;
    padding: 12px 30px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-product-outline:hover {
    background: var(--secondary-green);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(74, 124, 89, 0.3);
}

/* Why Us Section */
.why-us-section {
    background: linear-gradient(135deg, #f5faf6 0%, #edf6ef 50%, #e5f2e7 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.why-us-section::before {
    content: '';
    position: absolute;
    top: -80px;
    left: -80px;
    right: -80px;
    bottom: -80px;
    background: 
        radial-gradient(ellipse 550px 275px at 85% 15%, rgba(74, 124, 89, 0.12) 0%, transparent 60%),
        radial-gradient(ellipse 450px 225px at 15% 85%, rgba(107, 155, 122, 0.1) 0%, transparent 60%),
        radial-gradient(circle 180px at 45% 55%, rgba(168, 213, 186, 0.08) 0%, transparent 50%),
        radial-gradient(circle 120px at 75% 75%, rgba(74, 124, 89, 0.06) 0%, transparent 50%);
    pointer-events: none;
}

.why-us-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(74, 124, 89, 0.06) 0%, transparent 35%);
    clip-path: polygon(0 20%, 100% 0, 100% 100%, 0 95%);
    pointer-events: none;
}

.why-us-content {
    padding-right: 30px;
}

.why-us-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark-text);
    margin-bottom: 10px;
    line-height: 1.2;
}

.why-us-subtitle {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--dark-text);
    margin-bottom: 25px;
    line-height: 1.3;
}

.why-us-description {
    font-size: 1rem;
    color: var(--light-text);
    line-height: 1.7;
    margin-bottom: 40px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.stat-item {
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 25px 20px;
    text-align: center;
    transition: all 0.3s ease;
}

.stat-item:hover {
    border-color: var(--secondary-green);
    box-shadow: 0 4px 15px rgba(74, 124, 89, 0.1);
    transform: translateY(-3px);
}

.stat-icon {
    width: 50px;
    height: 50px;
    margin: 0 auto 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 2px solid var(--dark-text);
}

.stat-icon i {
    font-size: 1.3rem;
    color: var(--dark-text);
}

.stat-number {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--dark-text);
    margin-bottom: 8px;
    line-height: 1;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--dark-text);
    font-weight: 500;
    margin: 0;
}

.why-us-images {
    position: relative;
    height: 500px;
    width: 100%;
}

.image-main {
    position: absolute;
    top: 0;
    left: 0;
    width: 65%;
    height: 55%;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    z-index: 2;
}

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

.image-secondary {
    position: absolute;
    bottom: 20px;
    right: 0;
    width: 55%;
    height: 45%;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    z-index: 3;
    border: 4px solid white;
}

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

/* Testimonials Section */
.testimonials-section {
    background: var(--light-bg);
    position: relative;
}

.testimonials-carousel {
    position: relative;
}

.testimonial-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

.testimonial-content {
    padding: 30px 25px;
}

.stars {
    margin-bottom: 15px;
    text-align: center;
}

.stars i {
    color: #ffc107;
    font-size: 1.1rem;
    margin-right: 2px;
}

.testimonial-content p {
    font-style: italic;
    color: var(--dark-text);
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: 0.95rem;
    text-align: center;
}

.testimonial-author {
    text-align: center;
    margin-bottom: 20px;
}

.testimonial-author h5 {
    font-weight: 600;
    color: var(--primary-green);
    margin-bottom: 5px;
    font-size: 1.1rem;
}

.testimonial-author span {
    color: var(--light-text);
    font-size: 0.9rem;
}

.btn-view-testimonial {
    background: linear-gradient(135deg, var(--secondary-green), var(--light-green));
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.3s ease;
    display: block;
    margin: 0 auto;
    text-decoration: none;
    cursor: pointer;
}

.btn-view-testimonial:hover {
    background: linear-gradient(135deg, var(--primary-green), var(--secondary-green));
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(74, 124, 89, 0.3);
    color: white;
}

.btn-view-testimonial i {
    margin-right: 8px;
}

/* Testimonial Carousel Controls */
.testimonial-control-prev,
.testimonial-control-next {
    width: 50px;
    height: 50px;
    background: rgba(74, 124, 89, 0.9);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    transition: all 0.3s ease;
    border: none;
}

.testimonial-control-prev {
    left: -25px;
}

.testimonial-control-next {
    right: -25px;
}

.testimonial-control-prev:hover,
.testimonial-control-next:hover {
    background: var(--primary-green);
    transform: translateY(-50%) scale(1.1);
}

.testimonial-indicators {
    bottom: -50px;
    margin-bottom: 0;
}

.testimonial-indicators button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    margin: 0 5px;
    background: rgba(74, 124, 89, 0.3);
    border: none;
    transition: all 0.3s ease;
}

.testimonial-indicators button.active {
    background: var(--secondary-green);
    transform: scale(1.2);
}

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

.modal-header {
    background: linear-gradient(135deg, var(--secondary-green), var(--light-green));
    color: white;
    border-bottom: none;
    padding: 20px 30px;
}

.modal-title {
    font-weight: 600;
    font-size: 1.3rem;
}

.btn-close {
    filter: invert(1);
    opacity: 0.8;
}

.btn-close:hover {
    opacity: 1;
}

.testimonial-modal-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding: 20px;
}

.modal-testimonial-image {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 15px;
    object-fit: cover;
    border: 3px solid var(--accent-green);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.modal-testimonial-info {
    text-align: center;
    width: 100%;
}

.modal-testimonial-info h4 {
    color: var(--primary-green);
    font-weight: 600;
    margin-bottom: 10px;
    font-size: 1.5rem;
}

.modal-testimonial-info p {
    color: var(--light-text);
    font-size: 1.1rem;
    margin: 0;
}

/* Consultation Section */
.consultation-section {
    background: #f8fafc;
    padding: 50px 0;
}

.consultation-banner {
    background: linear-gradient(135deg, #4a7c59, #6b9b7a);
    border-radius: 20px;
    padding: 30px;
    display: flex;
    align-items: center;
    gap: 30px;
    color: white;
    position: relative;
    overflow: hidden;
}

.consultation-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    z-index: 1;
}

.consultation-banner > * {
    position: relative;
    z-index: 2;
}

.consultation-left {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-shrink: 0;
}

.phone-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    border: 2px dashed rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.phone-icon i {
    font-size: 1.5rem;
    color: white;
}

.consultation-info h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 5px;
    color: white;
}

.consultation-info a {
    font-size: 1.4rem;
    font-weight: 700;
    color: white;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.consultation-info a:hover {
    opacity: 0.8;
    color: white;
}

.consultation-divider {
    width: 2px;
    height: 60px;
    background: rgba(255, 255, 255, 0.3);
    flex-shrink: 0;
}

.consultation-center {
    flex: 1;
    padding: 0 20px;
}

.consultation-center p {
    font-size: 1rem;
    margin: 0;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.5;
}

.consultation-right {
    flex-shrink: 0;
}

.consultation-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.15);
    color: white;
    padding: 12px 20px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.consultation-btn:hover {
    background: rgba(255, 255, 255, 0.25);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.consultation-btn i {
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

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

/* Blog Section */
.blog-section {
    background: linear-gradient(135deg, #f5faf6 0%, #edf6ef 50%, #e5f2e7 100%);
    position: relative;
    overflow: hidden;
}

.blog-section::before {
    content: '';
    position: absolute;
    top: -80px;
    left: -80px;
    right: -80px;
    bottom: -80px;
    background: 
        radial-gradient(ellipse 550px 275px at 85% 15%, rgba(74, 124, 89, 0.12) 0%, transparent 60%),
        radial-gradient(ellipse 450px 225px at 15% 85%, rgba(107, 155, 122, 0.1) 0%, transparent 60%),
        radial-gradient(circle 180px at 45% 55%, rgba(168, 213, 186, 0.08) 0%, transparent 50%),
        radial-gradient(circle 120px at 75% 75%, rgba(74, 124, 89, 0.06) 0%, transparent 50%);
    pointer-events: none;
}

.blog-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(74, 124, 89, 0.06) 0%, transparent 35%);
    clip-path: polygon(0 20%, 100% 0, 100% 100%, 0 95%);
    pointer-events: none;
}

.blog-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

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

.blog-image {
    position: relative;
    overflow: hidden;
    height: 250px;
}

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

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

.blog-date {
    position: absolute;
    top: 15px;
    left: 15px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 12px;
    padding: 8px 12px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
}

.blog-date .day {
    display: block;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-green);
    line-height: 1;
}

.blog-date .month {
    display: block;
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--light-text);
    text-transform: uppercase;
    margin-top: 2px;
}

.blog-category {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, var(--secondary-green), var(--light-green));
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.blog-content {
    padding: 30px 25px 25px;
}

.blog-content h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--primary-green);
    margin-bottom: 15px;
    line-height: 1.3;
    transition: color 0.3s ease;
}

.blog-card:hover .blog-content h4 {
    color: var(--secondary-green);
}

.blog-content p {
    color: var(--light-text);
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.blog-meta {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
    padding-top: 15px;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.blog-meta span {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    color: var(--light-text);
}

.blog-meta i {
    font-size: 0.8rem;
    color: var(--secondary-green);
}

/* Contact Section */
.contact-section {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 50%, #e2e8f0 100%);
    position: relative;
    overflow: hidden;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: -50px;
    left: -50px;
    right: -50px;
    bottom: -50px;
    background: 
        radial-gradient(ellipse 400px 200px at 20% 30%, rgba(74, 124, 89, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse 300px 150px at 80% 70%, rgba(107, 155, 122, 0.06) 0%, transparent 50%);
    pointer-events: none;
}

.contact-form {
    background: white;
    padding: 50px 40px;
    border-radius: 25px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
    position: relative;
    border: 1px solid rgba(74, 124, 89, 0.1);
}

.contact-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--secondary-green), var(--light-green), var(--accent-green));
    border-radius: 25px 25px 0 0;
}

.contact-form .form-control {
    border: 2px solid rgba(74, 124, 89, 0.15);
    border-radius: 15px;
    padding: 18px 25px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: rgba(248, 250, 252, 0.5);
    font-weight: 500;
}

.contact-form .form-control:focus {
    border-color: var(--secondary-green);
    box-shadow: 0 0 0 4px rgba(74, 124, 89, 0.1);
    background: white;
    transform: translateY(-2px);
}

.contact-form .form-control::placeholder {
    color: var(--light-text);
    font-weight: 400;
}

.contact-form select.form-control {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%234a7c59' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m6 8 4 4 4-4'/%3e%3c/svg%3e");
    background-position: right 20px center;
    background-repeat: no-repeat;
    background-size: 18px;
    cursor: pointer;
}

.contact-form textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

.contact-form .btn-primary {
    padding: 15px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 8px 25px rgba(74, 124, 89, 0.3);
    transition: all 0.3s ease;
}

.contact-form .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(74, 124, 89, 0.4);
}

.contact-info-cards {
    margin-top: 60px;
}

.contact-info-card {
    background: white;
    padding: 30px 25px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid rgba(74, 124, 89, 0.1);
    position: relative;
    overflow: hidden;
}

.contact-info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--secondary-green), var(--light-green));
}

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

.contact-info-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--secondary-green), var(--light-green));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: 0 8px 25px rgba(74, 124, 89, 0.3);
}

.contact-info-icon i {
    font-size: 1.8rem;
    color: white;
}

.contact-info-card h5 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--primary-green);
    margin-bottom: 10px;
}

.contact-info-card p {
    color: var(--light-text);
    margin-bottom: 15px;
    line-height: 1.6;
}

.contact-info-card a {
    color: var(--secondary-green);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.contact-info-card a:hover {
    color: var(--primary-green);
}

/* Fixed Contact Buttons */
.fixed-contact {
    position: fixed;
    bottom: 25px;
    right: 25px;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.contact-btn {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 
        0 4px 15px rgba(0, 0, 0, 0.1),
        0 2px 6px rgba(0, 0, 0, 0.05);
}

.contact-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, transparent 100%);
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.contact-btn:hover::before {
    opacity: 1;
}

.phone-btn {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.phone-btn:hover {
    background: linear-gradient(135deg, #5a67d8 0%, #6b46c1 100%);
    color: white;
    transform: translateY(-3px) scale(1.05);
    box-shadow: 
        0 8px 25px rgba(102, 126, 234, 0.3),
        0 4px 12px rgba(102, 126, 234, 0.2);
}

.whatsapp-btn {
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    color: white;
}

.whatsapp-btn:hover {
    background: linear-gradient(135deg, #20ba5a 0%, #0f6b5c 100%);
    color: white;
    transform: translateY(-3px) scale(1.05);
    box-shadow: 
        0 8px 25px rgba(37, 211, 102, 0.3),
        0 4px 12px rgba(37, 211, 102, 0.2);
}

.contact-btn i {
    font-size: 18px;
    transition: all 0.3s ease;
    z-index: 2;
    position: relative;
}

.contact-btn:hover i {
    transform: scale(1.1);
}

.contact-btn span {
    display: none;
    position: absolute;
    right: 65px;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.85);
    color: white;
    padding: 8px 12px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 500;
    white-space: nowrap;
    opacity: 0;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.contact-btn span::after {
    content: '';
    position: absolute;
    left: 100%;
    top: 50%;
    transform: translateY(-50%);
    border: 5px solid transparent;
    border-left-color: rgba(0, 0, 0, 0.85);
}

.contact-btn:hover span {
    display: block;
    opacity: 1;
    transform: translateY(-50%) translateX(-8px);
}

/* Float animations */
@keyframes float-phone {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-6px);
    }
}

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

/* Mobile Bottom Contact Bar */
.mobile-contact-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    display: none;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(248, 250, 252, 0.95) 100%);
    backdrop-filter: blur(30px);
    border-top: 2px solid rgba(0, 0, 0, 0.05);
    box-shadow: 
        0 -8px 32px rgba(0, 0, 0, 0.12),
        0 -2px 8px rgba(0, 0, 0, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    padding: 8px 0;
}

.mobile-contact-item {
    flex: 1;
    position: relative;
}

.mobile-contact-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 12px 10px;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: none;
    background: transparent;
    height: 75px;
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    margin: 0 8px;
}

.mobile-contact-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.6) 0%, rgba(255, 255, 255, 0.2) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 16px;
}

.mobile-contact-btn::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.4) 0%, transparent 70%);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.4s ease;
}

.mobile-phone-btn {
    background: linear-gradient(135deg, rgba(79, 70, 229, 0.08) 0%, rgba(124, 58, 237, 0.05) 100%);
    color: #4f46e5;
    border: 2px solid rgba(79, 70, 229, 0.1);
}

.mobile-phone-btn:hover {
    background: linear-gradient(135deg, rgba(79, 70, 229, 0.15) 0%, rgba(124, 58, 237, 0.1) 100%);
    color: #3730a3;
    transform: translateY(-3px) scale(1.02);
    box-shadow: 
        0 8px 25px rgba(79, 70, 229, 0.2),
        0 3px 10px rgba(79, 70, 229, 0.1);
    border-color: rgba(79, 70, 229, 0.2);
}

.mobile-phone-btn:hover::before {
    opacity: 1;
}

.mobile-phone-btn:hover::after {
    width: 80px;
    height: 80px;
}

.mobile-whatsapp-btn {
    background: linear-gradient(135deg, rgba(5, 150, 105, 0.08) 0%, rgba(16, 185, 129, 0.05) 100%);
    color: #059669;
    border: 2px solid rgba(5, 150, 105, 0.1);
}

.mobile-whatsapp-btn:hover {
    background: linear-gradient(135deg, rgba(5, 150, 105, 0.15) 0%, rgba(16, 185, 129, 0.1) 100%);
    color: #047857;
    transform: translateY(-3px) scale(1.02);
    box-shadow: 
        0 8px 25px rgba(5, 150, 105, 0.2),
        0 3px 10px rgba(5, 150, 105, 0.1);
    border-color: rgba(5, 150, 105, 0.2);
}

.mobile-whatsapp-btn:hover::before {
    opacity: 1;
}

.mobile-whatsapp-btn:hover::after {
    width: 80px;
    height: 80px;
}

.mobile-contact-btn i {
    font-size: 26px;
    margin-bottom: 6px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 2;
    position: relative;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.mobile-contact-btn:hover i {
    transform: scale(1.1) rotate(-3deg);
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.15));
}

.mobile-contact-btn span {
    font-size: 11px;
    font-weight: 700;
    text-align: center;
    line-height: 1.2;
    z-index: 2;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.mobile-contact-btn:hover span {
    transform: translateY(-1px);
}

/* Show mobile bar and hide desktop buttons on mobile */
@media (max-width: 768px) {
    .fixed-contact {
        display: none !important;
    }
    
    .mobile-contact-bar {
        display: flex;
    }
    
    /* Add bottom padding to body to account for fixed mobile bar */
    body {
        padding-bottom: 70px;
    }
}

/* Hide mobile bar on desktop */
@media (min-width: 769px) {
    .mobile-contact-bar {
        display: none !important;
    }
}

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

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

/* Responsive Design */
@media (max-width: 1200px) {
    .hero-content h1 {
        font-size: 3rem;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
}

@media (max-width: 992px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-content p {
        font-size: 1.1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .carousel-control-prev,
    .carousel-control-next {
        width: 50px;
        height: 50px;
    }
    
    .carousel-control-prev {
        left: 20px;
    }
    
    .carousel-control-next {
        right: 20px;
    }
}

@media (max-width: 768px) {
    .hero-slider {
        height: 50vh;
        min-height: 300px;
        margin: 15px 15px;
        border-radius: 20px;
        overflow: hidden;
    }
    
    .hero-slide {
        height: 50vh;
        min-height: 300px;
        border-radius: 20px;
        background-size: cover !important;
        background-position: center !important;
        background-attachment: scroll !important;
    }
    
    .hero-slide .container {
        padding: 0 20px;
    }
    
    .hero-content {
        text-align: center;
        margin-bottom: 30px;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }
    
    .hero-content p {
        font-size: 1.1rem;
        margin-bottom: 1.5rem;
        max-width: none;
    }
    
    .hero-buttons .btn {
        display: block;
        margin: 10px auto;
        width: fit-content;
        max-width: 280px;
    }
    
    .carousel-control-prev,
    .carousel-control-next {
        width: 50px;
        height: 50px;
    }
    
    .carousel-control-prev {
        left: 15px;
    }
    
    .carousel-control-next {
        right: 15px;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .why-us-section {
        padding: 60px 0;
    }
    
    .why-us-content {
        padding-right: 0;
        margin-bottom: 40px;
        text-align: center;
    }
    
    .why-us-title {
        font-size: 2rem;
    }
    
    .why-us-subtitle {
        font-size: 1.5rem;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .stat-item {
        padding: 20px 15px;
    }
    
    .stat-icon {
        width: 45px;
        height: 45px;
        margin-bottom: 12px;
    }
    
    .stat-icon i {
        font-size: 1.1rem;
    }
    
    .stat-number {
        font-size: 1.5rem;
    }
    
    .stat-label {
        font-size: 0.85rem;
    }
    
    .why-us-images {
        height: 400px;
    }
    
    .consultation-section {
        padding: 60px 0;
    }
    
    .contact-form {
        padding: 30px 20px;
    }
    
    .fixed-contact {
        bottom: 20px;
        right: 20px;
    }
}

@media (max-width: 768px) {
    .consultation-banner {
        flex-direction: column;
        gap: 20px;
        padding: 25px 20px;
        text-align: center;
    }
    
    .consultation-left {
        justify-content: center;
    }
    
    .consultation-divider {
        width: 80%;
        height: 2px;
        background: rgba(255, 255, 255, 0.3);
    }
    
    .consultation-center {
        padding: 0;
    }
    
    .consultation-center p {
        font-size: 0.95rem;
    }
    
    .consultation-btn {
        padding: 10px 18px;
        font-size: 0.9rem;
    }
}

@media (max-width: 576px) {
    .hero-content h1 {
        font-size: 1.8rem;
    }
    
    .hero-content p {
        font-size: 0.9rem;
    }
    
    .section-title {
        font-size: 1.6rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
    }
    
    .product-content,
    .feature-card,
    .testimonial-card,
    .blog-content {
        padding: 20px;
    }
    
    .feature-icon {
        width: 60px;
        height: 60px;
    }
    
    .feature-icon i {
        font-size: 1.5rem;
    }
    
    .feature-number {
        font-size: 2rem;
    }
    
    .consultation-section {
        padding: 30px 0;
    }
    
    .consultation-compact {
        margin: 0 15px;
        padding: 20px 15px;
    }
    
    .consultation-header {
        margin-bottom: 20px;
    }
    
    .consultation-header h3 {
        font-size: 1.2rem;
    }
    
    .consultation-content {
        gap: 15px;
    }
    
    .contact-main {
        padding: 15px 0;
    }
    
    .phone-info i {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
    
    .phone-details a {
        font-size: 1.1rem;
    }
    
    .phone-details span {
        font-size: 0.8rem;
    }
    
    .option-btn {
        padding: 10px 15px;
        font-size: 0.85rem;
        gap: 6px;
    }
    
    .option-btn i {
        font-size: 0.9rem;
    }
    
    .carousel-control-prev,
    .carousel-control-next {
        display: none;
    }
    
    .fixed-contact {
        bottom: 15px;
        right: 15px;
        gap: 10px;
    }
    
    .contact-btn {
        padding: 12px 15px;
        min-width: 50px;
    }
    
    .contact-btn i {
        font-size: 1rem;
    }
}
