/* Home Page Styles */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&display=swap');

/* ==================== BASE RESET ==================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    padding: 0;
    width: 100%;
    overflow-x: hidden;
}

body {
    font-family: 'Outfit', sans-serif;
    background-color: #f9fdfa;
    color: #333;
    line-height: 1.6;
}

/* ==================== CONTAINER ==================== */
.home-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 5%;
}

/* ==================== CONTAINER ==================== */
.home-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 5%;
}

/* ==================== SLIDER SECTION ==================== */
.home-slider-section {
    position: relative;
    width: 100%;
    /* height: 600px; - Removed for aspect ratio */
    aspect-ratio: 16/6;
    /* Full viewport height */
    overflow: hidden;
    margin-top: 0;
    padding-top: 0;
}

@media (max-width: 768px) {
    .home-slider-section {
        height: auto;
        min-height: 0;
        aspect-ratio: 9/16;
    }
}



.home-slider-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.home-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
    visibility: hidden;
}

.home-slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 1;
}

.home-slide-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.home-slide-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    z-index: 2;
    width: 80%;
}

/* Slider Navigation */
.home-slider-nav {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 5%;
    transform: translateY(-50%);
    z-index: 10;
    pointer-events: none;
    /* Let clicks pass through container */
}

.home-slider-btn {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    pointer-events: auto;
    /* Re-enable clicks */
}

.home-slider-btn:hover {
    background: rgba(44, 95, 45, 0.8);
    border-color: #2c5f2d;
    transform: scale(1.1);
}

/* Slider Dots */
.home-slider-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.dot {
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active,
.dot:hover {
    background: #4caf50;
    transform: scale(1.2);
}

/* ==================== HERO SECTION ==================== */
.home-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #e8f5e9 0%, #f1f8e9 50%, #ffffff 100%);
    overflow: hidden;
    padding: 6rem 5% 8rem;
}

.home-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    z-index: 0;
}

.home-hero-shape {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(44, 95, 45, 0.08), rgba(76, 175, 80, 0.05));
}

.home-hero-shape-1 {
    width: 600px;
    height: 600px;
    top: -200px;
    right: -100px;
    animation: home-float 8s ease-in-out infinite;
}

.home-hero-shape-2 {
    width: 400px;
    height: 400px;
    bottom: -100px;
    left: -100px;
    animation: home-float 10s ease-in-out infinite reverse;
}

.home-hero-shape-3 {
    width: 200px;
    height: 200px;
    top: 50%;
    left: 30%;
    animation: home-float 6s ease-in-out infinite;
}

@keyframes home-float {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-20px) rotate(5deg);
    }
}

.home-hero-container {
    max-width: 1300px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
    width: 100%;
}

.home-hero-content {
    max-width: 600px;
}

.home-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #2c5f2d 0%, #4caf50 100%);
    color: white;
    padding: 0.6rem 1.25rem;
    border-radius: 50px;
    font-family: 'Outfit', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 15px rgba(44, 95, 45, 0.3);
}

.home-hero-badge-dot {
    width: 8px;
    height: 8px;
    background: white;
    border-radius: 50%;
    animation: home-pulse-dot 2s ease-in-out infinite;
}

@keyframes home-pulse-dot {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.5;
        transform: scale(1.2);
    }
}

.home-hero-title {
    font-family: 'Outfit', sans-serif;
    font-size: 3.5rem;
    font-weight: 800;
    color: #1a1a1a;
    line-height: 1.15;
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
}

.home-hero-title-highlight {
    background: linear-gradient(135deg, #2c5f2d 0%, #4caf50 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.home-hero-text {
    font-family: 'Outfit', sans-serif;
    font-size: 1.15rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.home-hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 2.5rem;
}

.home-hero-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 1rem 1.75rem;
    border-radius: 12px;
    font-family: 'Outfit', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.home-hero-btn-primary {
    background: linear-gradient(135deg, #2c5f2d 0%, #3d7c3e 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(44, 95, 45, 0.3);
}

.home-hero-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(44, 95, 45, 0.4);
}

.home-hero-btn-primary svg {
    transition: transform 0.3s ease;
}

.home-hero-btn-primary:hover svg {
    transform: translateX(5px);
}

.home-hero-btn-secondary {
    background: white;
    color: #2c5f2d;
    border: 2px solid #e8f5e9;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.home-hero-btn-secondary:hover {
    background: #e8f5e9;
    border-color: #c8e6c9;
    transform: translateY(-3px);
}

.home-hero-trust {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.home-hero-trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #666;
    font-family: 'Outfit', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
}

.home-hero-trust-item svg {
    color: #2c5f2d;
}

.home-hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
}

.home-hero-image-wrapper {
    position: relative;
    max-width: 500px;
    width: 100%;
}

.home-hero-image-bg {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #c8e6c9 0%, #a5d6a7 100%);
    border-radius: 30px;
    z-index: 0;
}

.home-hero-image {
    position: relative;
    width: 100%;
    height: auto;
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    z-index: 1;
}

.home-hero-floating-card {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: white;
    padding: 1rem 1.25rem;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    z-index: 2;
    animation: home-float-card 3s ease-in-out infinite;
}

.home-hero-floating-card-1 {
    top: 10%;
    left: -30px;
}

.home-hero-floating-card-2 {
    bottom: 15%;
    right: -30px;
    animation-delay: 1.5s;
}

@keyframes home-float-card {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

.home-hero-floating-icon {
    font-size: 1.5rem;
}

.home-hero-floating-text {
    display: flex;
    flex-direction: column;
}

.home-hero-floating-num {
    font-family: 'Outfit', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: #2c5f2d;
    line-height: 1;
}

.home-hero-floating-label {
    font-family: 'Outfit', sans-serif;
    font-size: 0.8rem;
    color: #666;
}

.home-hero-wave {
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    line-height: 0;
}

.home-hero-wave svg {
    width: 100%;
    height: 80px;
}

/* ==================== HIGHLIGHTS SECTION ==================== */
.home-highlights {
    padding: 5rem 0;
    background: #ffffff;
}

.home-highlights-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.home-highlight-card {
    text-align: center;
    padding: 2.5rem 2rem;
    background: #f9fdfa;
    border-radius: 20px;
    border: 1px solid #e8f5e9;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.home-highlight-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(44, 95, 45, 0.1);
    border-color: #2c5f2d;
}

.home-highlight-icon-wrapper {
    display: flex;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.home-highlight-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #e8f5e9 0%, #c8e6c9 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2c5f2d;
    transition: all 0.3s ease;
}

.home-highlight-card:hover .home-highlight-icon {
    background: linear-gradient(135deg, #2c5f2d 0%, #4caf50 100%);
    color: white;
    transform: scale(1.1) rotate(5deg);
}

.home-highlight-title {
    font-family: 'Outfit', sans-serif;
    font-size: 1.25rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 0.75rem;
}

.home-highlight-text {
    font-family: 'Outfit', sans-serif;
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
}

.home-highlight-line {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, #2c5f2d, #4caf50);
    transition: width 0.3s ease;
}

.home-highlight-card:hover .home-highlight-line {
    width: 60%;
}

/* ==================== SECTION COMMON STYLES ==================== */
.home-section-badge {
    display: inline-block;
    background: linear-gradient(135deg, #e8f5e9 0%, #c8e6c9 100%);
    color: #2c5f2d;
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    font-family: 'Outfit', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.home-section-badge-light {
    background: rgba(255, 255, 255, 0.15);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.home-section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.home-section-title {
    font-family: 'Outfit', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.home-section-desc {
    font-family: 'Outfit', sans-serif;
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

/* ==================== PRODUCTS SECTION ==================== */
.home-products {
    padding: 5rem 0;
    background: #f9fdfa;
}

.home-products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

/* Product Card */
.home-product-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    border: 1px solid #e8f5e9;
}

.home-product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(44, 95, 45, 0.15);
    border-color: #2c5f2d;
}

.home-product-img-box {
    height: 240px;
    width: 100%;
    overflow: hidden;
    background: linear-gradient(135deg, #f5f5f5 0%, #e8f5e9 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.home-product-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.home-product-card:hover .home-product-img {
    transform: scale(1.08);
}

.home-product-content {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.home-product-category {
    font-family: 'Outfit', sans-serif;
    font-size: 0.75rem;
    color: #2c5f2d;
    background: #e8f5e9;
    padding: 0.35rem 0.75rem;
    border-radius: 50px;
    align-self: flex-start;
    margin-bottom: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.home-product-title {
    font-family: 'Outfit', sans-serif;
    font-size: 1.15rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
    line-height: 1.4;
}

.home-product-price {
    font-family: 'Outfit', sans-serif;
    font-size: 1.25rem;
    color: #2c5f2d;
    font-weight: 700;
    margin-bottom: 1rem;
}

.home-product-btn {
    margin-top: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    padding: 0.9rem;
    background: transparent;
    border: 2px solid #2c5f2d;
    color: #2c5f2d;
    text-decoration: none;
    border-radius: 10px;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    transition: all 0.3s ease;
}

.home-product-btn:hover {
    background: linear-gradient(135deg, #2c5f2d 0%, #3d7c3e 100%);
    color: white;
    border-color: transparent;
}

.home-products-cta {
    text-align: center;
}

.home-products-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.1rem 2rem;
    background: linear-gradient(135deg, #2c5f2d 0%, #3d7c3e 100%);
    color: white;
    text-decoration: none;
    border-radius: 12px;
    font-family: 'Outfit', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(44, 95, 45, 0.3);
}

.home-products-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(44, 95, 45, 0.4);
}

.home-products-btn svg {
    transition: transform 0.3s ease;
}

.home-products-btn:hover svg {
    transform: translateX(5px);
}

/* ==================== ABOUT SECTION ==================== */
.home-about {
    padding: 6rem 0;
    background: #ffffff;
}

.home-about-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    align-items: center;
}

.home-about-image {
    position: relative;
}

.home-about-image-wrapper {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.home-about-image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
}

.home-about-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(44, 95, 45, 0.1) 0%, transparent 100%);
}

.home-about-experience {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: linear-gradient(135deg, #2c5f2d 0%, #3d7c3e 100%);
    color: white;
    padding: 1.5rem 2rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(44, 95, 45, 0.3);
}

.home-about-experience-num {
    display: block;
    font-family: 'Outfit', sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1;
}

.home-about-experience-text {
    display: block;
    font-family: 'Outfit', sans-serif;
    font-size: 0.85rem;
    opacity: 0.9;
    margin-top: 0.25rem;
}

.home-about-content {
    padding-left: 1rem;
}

.home-about-title {
    font-family: 'Outfit', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.home-about-text {
    font-family: 'Outfit', sans-serif;
    font-size: 1.1rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.home-about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 2rem;
}

.home-about-feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    background: #f9fdfa;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.home-about-feature:hover {
    background: #e8f5e9;
    transform: translateX(5px);
}

.home-about-feature-icon {
    width: 28px;
    height: 28px;
    background: linear-gradient(135deg, #2c5f2d 0%, #4caf50 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
}

.home-about-feature-icon svg {
    width: 14px;
    height: 14px;
}

.home-about-feature span {
    font-family: 'Outfit', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    color: #333;
}

.home-about-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #2c5f2d 0%, #3d7c3e 100%);
    color: white;
    text-decoration: none;
    border-radius: 12px;
    font-family: 'Outfit', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(44, 95, 45, 0.3);
}

.home-about-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(44, 95, 45, 0.4);
}

.home-about-btn svg {
    transition: transform 0.3s ease;
}

.home-about-btn:hover svg {
    transform: translateX(5px);
}

/* ==================== WHY CHOOSE US SECTION ==================== */
.home-why {
    padding: 5rem 0;
    background: linear-gradient(135deg, #2c5f2d 0%, #1e4220 100%);
    position: relative;
    overflow: hidden;
}

.home-why::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.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.home-why-header {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    z-index: 1;
}

.home-why-title {
    font-family: 'Outfit', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.75rem;
}

.home-why-subtitle {
    font-family: 'Outfit', sans-serif;
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
}

.home-why-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    position: relative;
    z-index: 1;
}

.home-why-card {
    display: flex;
    gap: 1.5rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.home-why-card:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
}

.home-why-number {
    font-family: 'Outfit', sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.2);
    line-height: 1;
}

.home-why-content {
    flex: 1;
}

.home-why-card-title {
    font-family: 'Outfit', sans-serif;
    font-size: 1.25rem;
    font-weight: 600;
    color: white;
    margin-bottom: 0.5rem;
}

.home-why-card-text {
    font-family: 'Outfit', sans-serif;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.6;
}

/* ==================== TESTIMONIALS SECTION ==================== */
.home-testimonials {
    padding: 5rem 0;
    background: #f9fdfa;
}

.home-testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.home-testimonial-card {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    border: 1px solid #e8f5e9;
    transition: all 0.3s ease;
}

.home-testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.home-testimonial-card-featured {
    background: linear-gradient(135deg, #2c5f2d 0%, #3d7c3e 100%);
    border: none;
}

.home-testimonial-card-featured .home-testimonial-stars {
    color: #ffd700;
}

.home-testimonial-card-featured .home-testimonial-text {
    color: white;
}

.home-testimonial-card-featured .home-testimonial-name {
    color: white;
}

.home-testimonial-card-featured .home-testimonial-location {
    color: rgba(255, 255, 255, 0.7);
}

.home-testimonial-card-featured .home-testimonial-avatar {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

.home-testimonial-stars {
    display: flex;
    gap: 0.25rem;
    color: #ffc107;
    margin-bottom: 1.25rem;
}

.home-testimonial-text {
    font-family: 'Outfit', sans-serif;
    font-size: 1rem;
    color: #555;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.home-testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.home-testimonial-avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #e8f5e9 0%, #c8e6c9 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Outfit', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: #2c5f2d;
}

.home-testimonial-info {
    display: flex;
    flex-direction: column;
}

.home-testimonial-name {
    font-family: 'Outfit', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: #1a1a1a;
}

.home-testimonial-location {
    font-family: 'Outfit', sans-serif;
    font-size: 0.85rem;
    color: #888;
}

/* ==================== CTA SECTION ==================== */
.home-cta {
    padding: 5rem 0;
    background: #ffffff;
}

.home-cta-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 3rem;
    background: linear-gradient(135deg, #f9fdfa 0%, #e8f5e9 100%);
    padding: 3.5rem 4rem;
    border-radius: 30px;
    border: 1px solid #c8e6c9;
}

.home-cta-content {
    flex: 1;
}

.home-cta-title {
    font-family: 'Outfit', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
}

.home-cta-text {
    font-family: 'Outfit', sans-serif;
    font-size: 1.1rem;
    color: #666;
}

.home-cta-actions {
    display: flex;
    gap: 1rem;
    flex-shrink: 0;
}

.home-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 1rem 1.75rem;
    border-radius: 12px;
    font-family: 'Outfit', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.home-cta-btn-primary {
    background: linear-gradient(135deg, #2c5f2d 0%, #3d7c3e 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(44, 95, 45, 0.3);
}

.home-cta-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(44, 95, 45, 0.4);
}

.home-cta-btn-primary svg {
    transition: transform 0.3s ease;
}

.home-cta-btn-primary:hover svg {
    transform: translateX(5px);
}

.home-cta-btn-secondary {
    background: white;
    color: #2c5f2d;
    border: 2px solid #2c5f2d;
}

.home-cta-btn-secondary:hover {
    background: #e8f5e9;
    transform: translateY(-3px);
}

/* ==================== RESPONSIVE STYLES ==================== */
@media (max-width: 1200px) {
    .home-hero-title {
        font-size: 3rem;
    }

    .home-highlights-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 1024px) {
    .home-hero {
        padding: 5rem 5% 7rem;
    }

    .home-hero-container {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }

    .home-hero-content {
        max-width: 100%;
        order: 2;
    }

    .home-hero-visual {
        order: 1;
    }

    .home-hero-buttons {
        justify-content: center;
    }

    .home-hero-trust {
        justify-content: center;
    }

    .home-hero-image-wrapper {
        max-width: 400px;
        margin: 0 auto;
    }

    .home-hero-floating-card-1 {
        left: 0;
    }

    .home-hero-floating-card-2 {
        right: 0;
    }

    .home-about-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .home-about-content {
        padding-left: 0;
        text-align: center;
    }

    .home-about-features {
        justify-content: center;
    }

    .home-about-btn {
        display: inline-flex;
    }

    .home-why-grid {
        grid-template-columns: 1fr;
    }

    .home-testimonials-grid {
        grid-template-columns: 1fr;
    }

    .home-cta-wrapper {
        flex-direction: column;
        text-align: center;
        padding: 3rem 2rem;
    }

    .home-cta-actions {
        flex-wrap: wrap;
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .home-hero {
        padding: 4rem 5% 6rem;
        min-height: auto;
    }

    .home-hero-title {
        font-size: 2.25rem;
    }

    .home-hero-text {
        font-size: 1rem;
    }

    .home-hero-wave svg {
        height: 50px;
    }

    .home-hero-floating-card {
        display: none;
    }

    .home-highlights {
        padding: 4rem 0;
    }

    .home-highlights-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .home-highlight-card {
        padding: 2rem 1.5rem;
    }

    .home-products {
        padding: 4rem 0;
    }

    .home-section-title {
        font-size: 2rem;
    }

    .home-products-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }

    .home-about {
        padding: 4rem 0;
    }

    .home-about-title {
        font-size: 2rem;
    }

    .home-about-features {
        grid-template-columns: 1fr;
    }

    .home-about-feature:hover {
        transform: translateY(-3px);
    }

    .home-about-experience {
        position: relative;
        bottom: auto;
        right: auto;
        margin: -40px auto 0;
        width: fit-content;
    }

    .home-why {
        padding: 4rem 0;
    }

    .home-why-title {
        font-size: 2rem;
    }

    .home-why-card {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .home-testimonials {
        padding: 4rem 0;
    }

    .home-testimonial-card {
        padding: 1.5rem;
    }

    .home-cta {
        padding: 4rem 0;
    }

    .home-cta-title {
        font-size: 1.75rem;
    }
}

@media (max-width: 576px) {
    .home-hero {
        padding: 3rem 5% 5rem;
    }

    .home-hero-badge {
        font-size: 0.75rem;
        padding: 0.5rem 1rem;
    }

    .home-hero-title {
        font-size: 1.85rem;
    }

    .home-hero-buttons {
        flex-direction: column;
        width: 100%;
    }

    .home-hero-btn {
        width: 100%;
        justify-content: center;
    }

    .home-hero-trust {
        flex-direction: column;
        gap: 0.75rem;
    }

    .home-hero-image-bg {
        display: none;
    }

    .home-highlight-icon {
        width: 60px;
        height: 60px;
    }

    .home-section-title {
        font-size: 1.65rem;
    }

    .home-section-desc {
        font-size: 1rem;
    }

    .home-products-btn {
        width: 100%;
        justify-content: center;
    }

    .home-about-title {
        font-size: 1.65rem;
    }

    .home-about-text {
        font-size: 1rem;
    }

    .home-about-btn {
        width: 100%;
        justify-content: center;
    }

    .home-about-experience {
        padding: 1.25rem 1.75rem;
    }

    .home-about-experience-num {
        font-size: 2rem;
    }

    .home-why-title {
        font-size: 1.65rem;
    }

    .home-why-card {
        padding: 1.5rem;
    }

    .home-why-number {
        font-size: 2rem;
    }

    .home-cta-wrapper {
        padding: 2rem 1.5rem;
        border-radius: 24px;
    }

    .home-cta-title {
        font-size: 1.5rem;
    }

    .home-cta-text {
        font-size: 1rem;
    }

    .home-cta-actions {
        flex-direction: column;
        width: 100%;
    }

    .home-cta-btn {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 400px) {
    .home-hero-title {
        font-size: 1.6rem;
    }

    .home-section-title {
        font-size: 1.5rem;
    }

    .home-about-title {
        font-size: 1.5rem;
    }

    .home-why-title {
        font-size: 1.5rem;
    }

    .home-cta-title {
        font-size: 1.35rem;
    }

    .home-highlight-card {
        padding: 1.5rem 1rem;
    }

    .home-testimonial-card {
        padding: 1.25rem;
    }

    .home-testimonial-text {
        font-size: 0.95rem;
    }
}