/*==========================================================================
    Green Goal - Public Website Custom Styles
    Modern, Professional Design Enhancement
===========================================================================*/

/* ============================================
   CSS Variables & Root Settings
============================================ */
:root {
    /* Brand Colors */
    --primary-green: #7ab929;
    --primary-green-dark: #5a9a1a;
    --primary-green-light: #a4d65e;
    --accent-yellow: #eece38;
    --accent-yellow-dark: #d4b530;
    
    /* Neutral Colors */
    --dark: #1a1a1a;
    --dark-secondary: #2c2c2c;
    --gray-dark: #4a4a4a;
    --gray: #767676;
    --gray-light: #9a9a9a;
    --gray-lighter: #e8e8e8;
    --light-bg: #f8f9fa;
    --white: #ffffff;
    
    /* Typography */
    --font-primary: 'Manrope', sans-serif;
    --font-secondary: 'Handlee', cursive;
    
    /* Shadows */
    --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 5px 25px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 15px 50px rgba(0, 0, 0, 0.15);
    --shadow-hover: 0 20px 60px rgba(0, 0, 0, 0.2);
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
    
    /* Border Radius */
    --radius-sm: 5px;
    --radius-md: 10px;
    --radius-lg: 15px;
    --radius-xl: 25px;
    --radius-full: 50px;
}

/* ============================================
   Global Enhancements
============================================ */
html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--white);
    color: var(--gray);
    overflow-x: hidden;
}

::selection {
    background-color: var(--primary-green);
    color: var(--white);
}

/* Improved Typography */
h1, h2, h3, h4, h5, h6 {
    color: var(--dark-secondary);
    line-height: 1.3;
}

p {
    color: var(--gray);
    line-height: 1.8;
}

/* ============================================
   Custom Button Styles
============================================ */
.btn-primary-custom {
    background: linear-gradient(135deg, var(--primary-green), var(--primary-green-dark));
    color: var(--white);
    padding: 14px 32px;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 15px;
    border: none;
    cursor: pointer;
    transition: all var(--transition-normal);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(122, 185, 41, 0.3);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-primary-custom:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(122, 185, 41, 0.4);
    background: linear-gradient(135deg, var(--primary-green-dark), var(--primary-green));
    color: var(--white);
}

.btn-secondary-custom {
    background: transparent;
    color: var(--primary-green);
    padding: 12px 28px;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 15px;
    border: 2px solid var(--primary-green);
    cursor: pointer;
    transition: all var(--transition-normal);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-secondary-custom:hover {
    background: var(--primary-green);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-yellow-custom {
    background: linear-gradient(135deg, var(--accent-yellow), var(--accent-yellow-dark));
    color: var(--dark);
    padding: 14px 32px;
    border-radius: var(--radius-full);
    font-weight: 700;
    font-size: 15px;
    border: none;
    cursor: pointer;
    transition: all var(--transition-normal);
    box-shadow: 0 4px 15px rgba(238, 206, 56, 0.3);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-yellow-custom:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(238, 206, 56, 0.5);
    color: var(--dark);
}

/* Override existing button styles */
.main-btn.btn-yellow {
    background: linear-gradient(135deg, var(--accent-yellow), var(--accent-yellow-dark));
    color: var(--dark);
    padding: 14px 32px;
    border-radius: var(--radius-full);
    font-weight: 700;
    transition: all var(--transition-normal);
    box-shadow: 0 4px 15px rgba(238, 206, 56, 0.3);
    border: none;
}

.main-btn.btn-yellow:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(238, 206, 56, 0.5);
    background: linear-gradient(135deg, var(--accent-yellow-dark), var(--accent-yellow));
}

/* ============================================
   Header/Navigation Improvements
============================================ */
.header-area {
    position: fixed;
    width: 100%;
    z-index: 1000;
    transition: all var(--transition-normal);
}

.header-navigation.navigation-three {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-normal);
}

.header-navigation.navigation-three.sticky {
    box-shadow: var(--shadow-md);
}

.header-navigation .primary-menu {
    padding: 8px 0;
}

.main-menu ul li a {
    font-weight: 600;
    color: var(--dark-secondary);
    padding: 10px 18px;
    transition: all var(--transition-normal);
    position: relative;
}

.main-menu ul li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--primary-green);
    transition: all var(--transition-normal);
    transform: translateX(-50%);
}

.main-menu ul li a:hover::after,
.main-menu ul li.active a::after {
    width: 70%;
}

.main-menu ul li a:hover,
.main-menu ul li.active a {
    color: var(--primary-green);
}

.nav-right-item .call-button span {
    font-weight: 600;
    color: var(--primary-green);
}

/* ============================================
   Hero Section Enhancements
============================================ */
.hero-area-three {
    position: relative;
    overflow: hidden;
}

.hero-area-three .single-slider {
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-area-three .image-layer {
    transition: transform 8s ease-out;
}

.hero-area-three .single-slider:hover .image-layer {
    transform: scale(1.05);
}

.hero-area-three .hero-content h1 {
    font-size: 4.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-area-three .hero-content p {
    font-size: 1.25rem;
    margin-bottom: 30px;
    max-width: 500px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
}

.hero-area-three .brand-card {
    padding: 25px 30px;
    border-radius: var(--radius-md);
    backdrop-filter: blur(5px);
    transition: all var(--transition-normal);
}

.hero-area-three .brand-card:hover {
    transform: translateY(-5px);
}

@media (max-width: 991px) {
    .hero-area-three .hero-content h1 {
        font-size: 3rem;
    }
}

@media (max-width: 767px) {
    .hero-area-three .hero-content h1 {
        font-size: 2.2rem;
    }
}

/* ============================================
   About Section Improvements
============================================ */
.about-section {
    position: relative;
    overflow: hidden;
}

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 40%;
    height: 100%;
    background: linear-gradient(135deg, rgba(122, 185, 41, 0.05), rgba(122, 185, 41, 0.02));
    z-index: -1;
}

.about-three-image_box {
    position: relative;
}

.about-three-image_box .about-img_one {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    transition: all var(--transition-slow);
}

.about-three-image_box:hover .about-img_one {
    transform: translateY(-10px);
}

.experience-box {
    padding: 30px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
}

.experience-box h3 {
    font-size: 1.2rem;
    line-height: 1.6;
}

.about-three-content_box p {
    font-size: 1.05rem;
    line-height: 1.9;
    color: var(--gray);
    margin-bottom: 20px;
}

.section-title .sub-title {
    color: var(--primary-green);
    font-weight: 700;
}

/* ============================================
   Featured Products Section
============================================ */
.featured-products-section {
    background: linear-gradient(180deg, var(--white) 0%, var(--light-bg) 50%, var(--white) 100%);
    position: relative;
}

.featured-products-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gray-lighter), transparent);
}

/* Modern Product Card */
.product-card-modern {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-normal);
    height: 100%;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.product-card-modern:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.product-card-modern .product-image {
    position: relative;
    overflow: hidden;
    height: 220px;
}

.product-card-modern .product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.product-card-modern:hover .product-image img {
    transform: scale(1.1);
}

.product-card-modern .product-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, #ffc107, #ff8f00);
    color: var(--white);
    padding: 5px 12px;
    border-radius: var(--radius-full);
    font-size: 12px;
    font-weight: 600;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 5px;
    box-shadow: 0 3px 10px rgba(255, 143, 0, 0.3);
}

.product-card-modern .product-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
    padding: 40px 15px 15px;
    opacity: 0;
    transition: all var(--transition-normal);
}

.product-card-modern:hover .product-overlay {
    opacity: 1;
}

.product-card-modern .product-content {
    padding: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.product-card-modern .product-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--dark-secondary);
    margin-bottom: 10px;
    transition: color var(--transition-fast);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-card-modern .product-title:hover {
    color: var(--primary-green);
}

.product-card-modern .product-description {
    font-size: 14px;
    color: var(--gray);
    margin-bottom: 15px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: 1.6;
    flex-grow: 1;
}

.product-card-modern .product-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: auto;
    padding-top: 15px;
    border-top: 1px solid var(--gray-lighter);
}

.product-card-modern .product-price {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-green);
}

.product-card-modern .btn-view {
    background: var(--primary-green);
    color: var(--white);
    padding: 8px 16px;
    border-radius: var(--radius-sm);
    font-size: 13px;
    font-weight: 600;
    transition: all var(--transition-normal);
    display: flex;
    align-items: center;
    gap: 5px;
}

.product-card-modern .btn-view:hover {
    background: var(--primary-green-dark);
    transform: translateX(3px);
}

/* ============================================
   Products Listing Page
============================================ */
.shaop-page {
    background: var(--light-bg);
}

.prodcut-sidebar {
    position: sticky;
    top: 120px;
}

.prodcut-sidebar .widget {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 25px;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.prodcut-sidebar .widget-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--dark-secondary);
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--primary-green);
    position: relative;
}

.prodcut-sidebar .category-nav li {
    margin-bottom: 8px;
}

.prodcut-sidebar .category-nav li a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 15px;
    background: var(--light-bg);
    border-radius: var(--radius-sm);
    color: var(--gray-dark);
    font-weight: 500;
    transition: all var(--transition-normal);
}

.prodcut-sidebar .category-nav li a:hover,
.prodcut-sidebar .category-nav li a.active {
    background: var(--primary-green);
    color: var(--white);
    transform: translateX(5px);
}

.prodcut-sidebar .category-nav li a i {
    font-size: 10px;
    transition: all var(--transition-normal);
}

.prodcut-sidebar .category-nav li a:hover i {
    transform: rotate(90deg);
}

/* Products Grid */
.products-wrapper .single-product-item {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-normal);
    border: 1px solid rgba(0, 0, 0, 0.05);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.products-wrapper .single-product-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.products-wrapper .single-product-item .product-img {
    height: 220px;
    overflow: hidden;
    position: relative;
}

.products-wrapper .single-product-item .product-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.products-wrapper .single-product-item:hover .product-img img {
    transform: scale(1.1);
}

.products-wrapper .single-product-item .product-info {
    padding: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.products-wrapper .single-product-item .product-info .title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.products-wrapper .single-product-item .product-info .title a {
    color: var(--dark-secondary);
    transition: color var(--transition-fast);
}

.products-wrapper .single-product-item .product-info .title a:hover {
    color: var(--primary-green);
}

/* ============================================
   Product Detail Page
============================================ */
.product-detail-section {
    background: var(--white);
}

.product-gallery {
    position: sticky;
    top: 120px;
}

.product-main-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    margin-bottom: 20px;
}

.product-main-image img {
    width: 100%;
    transition: transform var(--transition-slow);
}

.product-main-image:hover img {
    transform: scale(1.05);
}

.product-gallery-thumb {
    cursor: pointer;
    border: 2px solid transparent;
    border-radius: var(--radius-sm);
    overflow: hidden;
    transition: all var(--transition-normal);
}

.product-gallery-thumb:hover,
.product-gallery-thumb.active {
    border-color: var(--primary-green);
    box-shadow: 0 3px 10px rgba(122, 185, 41, 0.3);
}

.product-info-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 35px;
    box-shadow: var(--shadow-md);
}

.product-info-card h2 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--dark-secondary);
    margin-bottom: 15px;
}

.product-info-card .product-price {
    font-size: 2rem;
    color: var(--primary-green);
    font-weight: 700;
}

.featured-badge {
    background: linear-gradient(135deg, #ffc107, #ff8f00);
    color: var(--white);
    padding: 6px 18px;
    border-radius: var(--radius-full);
    font-size: 14px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.product-description {
    background: var(--light-bg);
    padding: 20px;
    border-radius: var(--radius-md);
    margin-bottom: 20px;
}

.product-description h5 {
    font-weight: 700;
    color: var(--dark-secondary);
    margin-bottom: 10px;
}

.btn-buy-now,
.btn-contact {
    padding: 14px 30px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    transition: all var(--transition-normal);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-buy-now {
    background: linear-gradient(135deg, var(--primary-green), var(--primary-green-dark));
    color: var(--white);
    box-shadow: 0 4px 15px rgba(122, 185, 41, 0.3);
}

.btn-buy-now:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(122, 185, 41, 0.4);
    color: var(--white);
}

.btn-contact {
    background: var(--dark-secondary);
    color: var(--white);
}

.btn-contact:hover {
    background: var(--gray-dark);
    transform: translateY(-3px);
    color: var(--white);
}

/* Related Products */
.related-products-section {
    background: var(--light-bg);
}

.related-product-card {
    background: var(--white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-normal);
    height: 100%;
}

.related-product-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.related-product-card .product-img {
    height: 200px;
    overflow: hidden;
}

.related-product-card .product-img img {
    transition: transform var(--transition-slow);
}

.related-product-card:hover .product-img img {
    transform: scale(1.1);
}

/* ============================================
   Page Banner
============================================ */
.page-banner {
    position: relative;
    min-height: 400px;
    display: flex;
    align-items: center;
}

.page-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.4));
    z-index: 1;
}

.page-banner .container {
    position: relative;
    z-index: 2;
}

.page-banner .page-title h1 {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--white);
    text-shadow: 2px 2px 15px rgba(0, 0, 0, 0.3);
}

.page-banner .breadcrumbs-link {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.page-banner .breadcrumbs-link li {
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
}

.page-banner .breadcrumbs-link li a {
    color: var(--white);
    transition: color var(--transition-fast);
}

.page-banner .breadcrumbs-link li a:hover {
    color: var(--accent-yellow);
}

.page-banner .breadcrumbs-link li.active {
    color: var(--accent-yellow);
}

@media (max-width: 767px) {
    .page-banner .page-title h1 {
        font-size: 2.2rem;
    }
}

/* ============================================
   Blog/Projects Section
============================================ */
.blog-two {
    position: relative;
}

.blog-post-item-two {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-normal);
}

.blog-post-item-two:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.blog-post-item-two .post-thumbnail {
    height: 250px;
    overflow: hidden;
}

.blog-post-item-two .post-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.blog-post-item-two:hover .post-thumbnail img {
    transform: scale(1.1);
}

.blog-post-item-two .entry-content {
    padding: 25px;
}

.blog-post-item-two .entry-content .title {
    font-size: 1.25rem;
    font-weight: 700;
}

.blog-post-item-two .entry-content .title a {
    color: var(--dark-secondary);
    transition: color var(--transition-fast);
}

.blog-post-item-two .entry-content .title a:hover {
    color: var(--primary-green);
}

/* ============================================
   Contact Page
============================================ */
.contact-two_information-box .section-title h2 {
    font-size: 2.5rem;
}

.information-item-two {
    background: var(--white);
    padding: 30px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-normal);
    height: 100%;
}

.information-item-two:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.information-item-two .icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-green), var(--primary-green-dark));
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.information-item-two .icon i {
    font-size: 28px;
    color: var(--white);
}

.information-item-two .info h5 {
    font-weight: 700;
    color: var(--dark-secondary);
    margin-bottom: 10px;
}

.information-item-two .info p,
.information-item-two .info a {
    color: var(--gray);
    transition: color var(--transition-fast);
}

.information-item-two .info a:hover {
    color: var(--primary-green);
}

/* Contact Form */
.contact-form .form_group {
    margin-bottom: 20px;
}

.contact-form .form_control {
    background: var(--white);
    border: 1px solid var(--gray-lighter);
    border-radius: var(--radius-sm);
    padding: 15px 20px;
    font-size: 15px;
    transition: all var(--transition-normal);
}

.contact-form .form_control:focus {
    border-color: var(--primary-green);
    box-shadow: 0 0 0 4px rgba(122, 185, 41, 0.1);
}

.contact-form textarea.form_control {
    min-height: 150px;
    resize: vertical;
}

/* Map Section */
.contact-page-map {
    margin-top: -50px;
    position: relative;
    z-index: 2;
}

.contact-page-map .map-box {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.contact-page-map iframe {
    width: 100%;
    height: 450px;
    border: none;
}

/* ============================================
   About Page
============================================ */
.about-four_content-box .section-title h2 {
    font-size: 2.5rem;
}

.choose-item-list .single-choose-item {
    background: var(--white);
    padding: 25px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    border-left: 4px solid var(--primary-green);
    transition: all var(--transition-normal);
}

.choose-item-list .single-choose-item:hover {
    transform: translateX(5px);
    box-shadow: var(--shadow-md);
}

.choose-item-list .single-choose-item .text h5 {
    font-weight: 700;
    color: var(--primary-green);
    margin-bottom: 10px;
}

/* Team Section */
.team-member_one {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-normal);
}

.team-member_one:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.team-member_one .member-img {
    height: 280px;
    overflow: hidden;
}

.team-member_one .member-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.team-member_one:hover .member-img img {
    transform: scale(1.1);
}

.team-member_one .member-info {
    padding: 25px;
}

.team-member_one .member-info .title {
    font-weight: 700;
    margin-bottom: 5px;
}

.team-member_one .member-info .position {
    color: var(--primary-green);
    font-weight: 500;
    margin-bottom: 15px;
}

.team-member_one .social-link li a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--light-bg);
    border-radius: 50%;
    color: var(--gray);
    transition: all var(--transition-normal);
}

.team-member_one .social-link li a:hover {
    background: var(--primary-green);
    color: var(--white);
    transform: translateY(-3px);
}

/* ============================================
   Services Page
============================================ */
.service-details-wrapper .img-holder {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    margin-bottom: 30px;
}

.service-details-wrapper .img-holder img {
    width: 100%;
    transition: transform var(--transition-slow);
}

.service-details-wrapper .img-holder:hover img {
    transform: scale(1.05);
}

.service-details-wrapper .content {
    margin: 30px 0;
}

.service-details-wrapper .content .title {
    color: var(--primary-green);
    font-weight: 700;
    margin-bottom: 15px;
}

.service-details-wrapper .content-img {
    border-radius: var(--radius-md);
    overflow: hidden;
    margin: 30px 0;
}

/* ============================================
   Footer Improvements
============================================ */
.footer-default {
    position: relative;
}

.footer-default::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-green), var(--accent-yellow), var(--primary-green));
}

.footer-top {
    padding: 60px 0 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-contact-item .contact-info {
    transition: all var(--transition-normal);
}

.footer-contact-item .contact-info:hover {
    transform: translateY(-3px);
}

.footer-contact-item .icon {
    width: 60px;
    height: 60px;
    background: rgba(122, 185, 41, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
}

.footer-contact-item .icon i {
    font-size: 24px;
    color: var(--primary-green);
}

.footer-widget .widget-title {
    position: relative;
    padding-bottom: 15px;
    margin-bottom: 25px;
}

.footer-widget .widget-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background: var(--primary-green);
}

.footer-widget-nav ul li {
    margin-bottom: 12px;
}

.footer-widget-nav ul li a {
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all var(--transition-normal);
    color: rgba(255, 255, 255, 0.7);
}

.footer-widget-nav ul li a::before {
    content: '→';
    color: var(--primary-green);
    transition: all var(--transition-normal);
}

.footer-widget-nav ul li a:hover {
    color: var(--white);
    transform: translateX(5px);
}

.footer-widget-nav ul li a:hover::before {
    transform: translateX(3px);
}

.social-box .social-link li a {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--white);
    transition: all var(--transition-normal);
}

.social-box .social-link li a:hover {
    background: var(--primary-green);
    transform: translateY(-5px);
}

.footer-copyright {
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* ============================================
   Back to Top Button
============================================ */
.back-to-top {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-green), var(--primary-green-dark));
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    box-shadow: 0 5px 20px rgba(122, 185, 41, 0.4);
    transition: all var(--transition-normal);
}

.back-to-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(122, 185, 41, 0.5);
    color: var(--white);
}

/* ============================================
   Animations
============================================ */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

.animate-fadeInUp {
    animation: fadeInUp 0.6s ease-out;
}

.animate-fadeInLeft {
    animation: fadeInLeft 0.6s ease-out;
}

.animate-fadeInRight {
    animation: fadeInRight 0.6s ease-out;
}

/* ============================================
   Responsive Improvements
============================================ */
@media (max-width: 1199px) {
    .product-card-modern .product-image {
        height: 200px;
    }
}

@media (max-width: 991px) {
    .about-section::before {
        display: none;
    }
    
    .prodcut-sidebar {
        position: static;
        margin-bottom: 40px;
    }
    
    .product-gallery {
        position: static;
    }
    
    .footer-top .footer-contact-item {
        margin-bottom: 30px;
    }
}

@media (max-width: 767px) {
    .product-card-modern .product-content {
        padding: 15px;
    }
    
    .product-card-modern .product-title {
        font-size: 1rem;
    }
    
    .product-info-card {
        padding: 25px;
    }
    
    .product-info-card h2 {
        font-size: 1.5rem;
    }
    
    .contact-two_information-box .section-title h2,
    .about-four_content-box .section-title h2 {
        font-size: 1.8rem;
    }
}

/* ============================================
   Utility Classes
============================================ */
.text-primary-green {
    color: var(--primary-green) !important;
}

.bg-primary-green {
    background-color: var(--primary-green) !important;
}

.bg-light-custom {
    background-color: var(--light-bg) !important;
}

.shadow-custom {
    box-shadow: var(--shadow-md) !important;
}

.rounded-custom {
    border-radius: var(--radius-md) !important;
}

.transition-all {
    transition: all var(--transition-normal) !important;
}

/* Section Dividers */
.section-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gray-lighter), transparent);
    margin: 60px 0;
}

/* Loading Animation for Images */
.img-loading {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: loading 1.5s infinite;
}

@keyframes loading {
    0% {
        background-position: 200% 0;
    }
    100% {
        background-position: -200% 0;
    }
}
