/* =================================
   CSS Variables - Nature Theme
   ================================= */
:root {
    --primary-green: #2d5016;
    --secondary-green: #4a7c2b;
    --accent-orange: #d87a36;
    --accent-gold: #c8a55c;
    --earth-brown: #5d4037;
    --light-cream: #f8f4e8;
    --soft-beige: #e8dfc4;
    --dark-text: #2c2416;
    --light-text: #6d6457;
    --success-green: #5fa020;
    --warning-orange: #ff9800;
    --danger-red: #d84315;
    
    --font-display: 'Playfair Display', serif;
    --font-body: 'Lora', serif;
    
    --shadow-sm: 0 2px 8px rgba(45, 80, 22, 0.08);
    --shadow-md: 0 4px 16px rgba(45, 80, 22, 0.12);
    --shadow-lg: 0 8px 32px rgba(45, 80, 22, 0.16);
    --shadow-xl: 0 16px 48px rgba(45, 80, 22, 0.20);
    
    --transition: all 0.4s cubic-bezier(0.4, 0.0, 0.2, 1);
}

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

body {
    font-family: var(--font-body);
    color: var(--dark-text);
    background-color: var(--light-cream);
    line-height: 1.7;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 700;
    line-height: 1.2;
    color: var(--primary-green);
}

/* =================================
   Navigation
   ================================= */
.custom-navbar {
    padding: 1.2rem 0;
    background: linear-gradient(to bottom, rgba(248, 244, 232, 0.98), rgba(248, 244, 232, 0.95));
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.custom-navbar.scrolled {
    padding: 0.8rem 0;
    box-shadow: var(--shadow-md);
}

.navbar-brand {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--primary-green) !important;
    transition: var(--transition);
}

.navbar-brand i {
    color: var(--success-green);
    animation: rotate 3s ease-in-out infinite;
}

@keyframes rotate {
    0%, 100% { transform: rotate(0deg); }
    50% { transform: rotate(10deg); }
}

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

.nav-link {
    font-size: 1.05rem;
    font-weight: 500;
    color: var(--dark-text) !important;
    margin: 0 0.5rem;
    padding: 0.5rem 1rem !important;
    position: relative;
    transition: var(--transition);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--secondary-green);
    transform: translateX(-50%);
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 60%;
}

.btn-login {
    background: var(--secondary-green) !important;
    color: white !important;
    border-radius: 25px;
    padding: 0.6rem 1.5rem !important;
    margin-left: 0.5rem;
}

.btn-login:hover {
    background: var(--primary-green) !important;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-admin {
    background: var(--accent-orange) !important;
    color: white !important;
    border-radius: 25px;
    padding: 0.6rem 1.5rem !important;
}

.btn-admin:hover {
    background: var(--earth-brown) !important;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* =================================
   Hero Section
   ================================= */
.hero-section {
    position: relative;
    background: linear-gradient(135deg, #2d5016 0%, #4a7c2b 50%, #5fa020 100%);
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(200, 165, 92, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(216, 122, 54, 0.1) 0%, transparent 50%);
    animation: breathe 8s ease-in-out infinite;
}

@keyframes breathe {
    0%, 100% { opacity: 0.5; transform: scale(1); }
    50% { opacity: 0.8; transform: scale(1.1); }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600"><path d="M0,300 Q300,200 600,300 T1200,300 L1200,600 L0,600 Z" fill="rgba(248,244,232,0.05)"/></svg>');
    background-size: cover;
    background-position: bottom;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 8rem 0 4rem 0;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    padding: 0.6rem 1.5rem;
    border-radius: 30px;
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 2rem;
}

.hero-badge i {
    color: var(--accent-gold);
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 900;
    color: white;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.hero-title .highlight {
    background: linear-gradient(to right, var(--accent-gold), var(--accent-orange));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2.5rem;
    max-width: 600px;
}

.hero-buttons {
    margin-bottom: 3rem;
}

.btn-primary-custom {
    background: var(--accent-orange);
    border: none;
    color: white;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    transition: var(--transition);
    box-shadow: var(--shadow-md);
}

.btn-primary-custom:hover {
    background: var(--earth-brown);
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.btn-outline-custom {
    background: transparent;
    border: 2px solid white;
    color: white;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    transition: var(--transition);
}

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

.hero-stats {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    margin-top: 1rem;
}

.stat-item {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 1.5rem 2rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
    min-width: 140px;
}

.stat-item .stat-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.5rem;
    color: var(--accent-gold);
}

.stat-item h3 {
    color: white;
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    font-weight: 900;
}

.stat-item p {
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    font-size: 1rem;
}

.hero-images {
    position: relative;
    z-index: 2;
}

.hero-image-main {
    position: relative;
    animation: fadeInUp 1s ease forwards;
}

.hero-image-main img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border: 5px solid rgba(255, 255, 255, 0.2);
}

.image-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: white;
    color: var(--primary-green);
    padding: 1rem 1.5rem;
    border-radius: 15px;
    box-shadow: var(--shadow-xl);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.image-badge i {
    color: var(--success-green);
    font-size: 1.2rem;
}

.hero-image-floating {
    position: absolute;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    border: 3px solid white;
}

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

.floating-1 {
    width: 200px;
    height: 200px;
    top: -30px;
    right: -30px;
    animation: float 4s ease-in-out infinite;
}

.floating-2 {
    width: 180px;
    height: 180px;
    bottom: -30px;
    right: 80px;
    animation: float 5s ease-in-out infinite 1s;
}

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

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(5deg); }
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
}

.scroll-indicator a {
    color: white;
    font-size: 2rem;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

/* Animations */
.animate-slide-up {
    opacity: 0;
    transform: translateY(30px);
    animation: slideUp 0.8s ease forwards;
}

.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }
.delay-3 { animation-delay: 0.6s; }

@keyframes slideUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in {
    opacity: 0;
    animation: fadeIn 1s ease forwards;
}

@keyframes fadeIn {
    to { opacity: 1; }
}

.animate-float {
    animation: float 6s ease-in-out infinite;
}

/* =================================
   Gallery Section
   ================================= */
.gallery-section {
    background: var(--light-cream);
    padding: 0;
    margin-top: -2px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    cursor: pointer;
    height: 200px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

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

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(45, 80, 22, 0.3), rgba(45, 80, 22, 0.8));
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    opacity: 0;
    transition: var(--transition);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay i {
    font-size: 3rem;
    margin-bottom: 0.5rem;
}

.gallery-overlay p {
    font-size: 1.3rem;
    font-weight: 700;
    margin: 0;
    font-family: var(--font-display);
}

/* =================================
   Section Styles
   ================================= */
section {
    padding: 6rem 0;
    position: relative;
}

.section-header {
    margin-bottom: 4rem;
}

.section-tag {
    display: inline-block;
    background: var(--soft-beige);
    color: var(--secondary-green);
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.section-title {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    font-weight: 900;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--light-text);
    max-width: 700px;
    margin: 0 auto;
}

/* =================================
   How It Works Section
   ================================= */
.how-it-works-section {
    background: white;
    position: relative;
    overflow: hidden;
}

.how-it-works-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(74, 124, 43, 0.05) 0%, transparent 70%);
    border-radius: 50%;
}

.work-image {
    position: relative;
}

.work-image::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    right: 20px;
    bottom: 20px;
    background: linear-gradient(135deg, var(--soft-beige), var(--accent-gold));
    border-radius: 20px;
    z-index: -1;
}

.work-step {
    position: relative;
}

.step-number {
    position: absolute;
    top: -20px;
    left: -20px;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--secondary-green), var(--success-green));
    color: white;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 900;
    font-family: var(--font-display);
    box-shadow: var(--shadow-lg);
}

.work-step h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--primary-green);
    margin-top: 2rem;
}

.work-step h3 i {
    color: var(--accent-orange);
    margin-right: 0.5rem;
}

.work-step p {
    font-size: 1.1rem;
    color: var(--light-text);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.work-list {
    list-style: none;
    padding: 0;
}

.work-list li {
    padding: 0.8rem 0;
    font-size: 1.05rem;
    color: var(--dark-text);
    display: flex;
    align-items: center;
    gap: 1rem;
}

.work-list i {
    color: var(--success-green);
    font-size: 1.2rem;
}

/* =================================
   Testimonials Section
   ================================= */
.testimonials-section {
    background: linear-gradient(to bottom, var(--light-cream), var(--soft-beige));
}

.testimonial-card {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: var(--shadow-md);
    text-align: center;
    transition: var(--transition);
    height: 100%;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.testimonial-image {
    margin-bottom: 1.5rem;
}

.testimonial-image img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border: 5px solid var(--soft-beige);
    box-shadow: var(--shadow-md);
}

.testimonial-rating {
    margin-bottom: 1.5rem;
}

.testimonial-rating i {
    color: var(--accent-gold);
    font-size: 1.2rem;
    margin: 0 0.2rem;
}

.testimonial-text {
    font-size: 1.1rem;
    color: var(--light-text);
    line-height: 1.8;
    margin-bottom: 2rem;
    font-style: italic;
    position: relative;
}

.testimonial-text::before {
    content: '"';
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 5rem;
    color: var(--soft-beige);
    font-family: Georgia, serif;
    line-height: 1;
}

.testimonial-author h5 {
    font-size: 1.2rem;
    color: var(--primary-green);
    margin-bottom: 0.3rem;
}

.testimonial-author p {
    color: var(--light-text);
    margin: 0;
    font-size: 0.95rem;
}

/* =================================
   Features Section
   ================================= */
.features-section {
    background: var(--light-cream);
}

.feature-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 2px solid transparent;
    height: 100%;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
    border-color: var(--secondary-green);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--secondary-green), var(--success-green));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 2rem;
    color: white;
    transition: var(--transition);
}

.feature-card:hover .feature-icon {
    transform: rotate(5deg) scale(1.1);
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.feature-card p {
    color: var(--light-text);
    margin-bottom: 1.5rem;
}

.feature-list {
    list-style: none;
    padding: 0;
}

.feature-list li {
    padding: 0.5rem 0;
    color: var(--dark-text);
}

.feature-list li i {
    color: var(--success-green);
    margin-right: 0.5rem;
}

/* =================================
   Prices Section
   ================================= */
.prices-section {
    background: linear-gradient(to bottom, var(--light-cream), var(--soft-beige));
}

.price-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    border: 2px solid transparent;
}

.price-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
    border-color: var(--accent-orange);
}

.price-header {
    padding: 1.5rem;
    background: linear-gradient(135deg, var(--primary-green), var(--secondary-green));
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.price-header h4 {
    color: white;
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.market-name {
    font-size: 0.9rem;
    opacity: 0.9;
    margin-bottom: 0.3rem;
}

.market-location {
    font-size: 0.85rem;
    opacity: 0.8;
    margin: 0;
}

.price-trend {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    background: rgba(255, 255, 255, 0.2);
}

.trend-up { color: var(--success-green); }
.trend-down { color: var(--danger-red); }
.trend-stable { color: var(--accent-gold); }

.price-body {
    padding: 2rem 1.5rem;
}

.price-main {
    text-align: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px dashed var(--soft-beige);
}

.price-label {
    display: block;
    font-size: 0.9rem;
    color: var(--light-text);
    margin-bottom: 0.5rem;
}

.price-value {
    display: block;
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--primary-green);
    font-family: var(--font-display);
}

.price-unit {
    display: block;
    font-size: 0.9rem;
    color: var(--light-text);
    margin-top: 0.3rem;
}

.price-range {
    display: flex;
    justify-content: space-around;
}

.range-item {
    text-align: center;
}

.range-item .label {
    display: block;
    font-size: 0.85rem;
    color: var(--light-text);
    margin-bottom: 0.3rem;
}

.range-item .value {
    display: block;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--dark-text);
}

.price-footer {
    padding: 1rem 1.5rem;
    background: var(--light-cream);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
    color: var(--light-text);
}

/* =================================
   Advisories Section
   ================================= */
.advisories-section {
    background: var(--light-cream);
}

.advisory-card {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    border-left: 5px solid var(--secondary-green);
    height: 100%;
    position: relative;
}

.advisory-card.priority-high {
    border-left-color: var(--danger-red);
}

.advisory-card.priority-medium {
    border-left-color: var(--warning-orange);
}

.advisory-card.priority-low {
    border-left-color: var(--success-green);
}

.advisory-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.advisory-badge {
    position: absolute;
    top: -10px;
    right: 1.5rem;
    background: var(--danger-red);
    color: white;
    padding: 0.3rem 1rem;
    border-radius: 15px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.advisory-card.priority-medium .advisory-badge {
    background: var(--warning-orange);
}

.advisory-card.priority-low .advisory-badge {
    background: var(--success-green);
}

.advisory-category {
    display: inline-block;
    background: var(--soft-beige);
    color: var(--secondary-green);
    padding: 0.3rem 1rem;
    border-radius: 15px;
    font-size: 0.85rem;
    margin-bottom: 1rem;
}

.advisory-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.advisory-card p {
    color: var(--light-text);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.advisory-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--soft-beige);
}

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

.advisory-meta i {
    color: var(--secondary-green);
    margin-right: 0.3rem;
}

.advisory-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9rem;
}

.advisory-footer span {
    color: var(--light-text);
}

.read-more {
    color: var(--secondary-green);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.read-more:hover {
    color: var(--primary-green);
    transform: translateX(5px);
}

/* =================================
   Impact Section
   ================================= */
.impact-section {
    background: linear-gradient(rgba(45, 80, 22, 0.9), rgba(45, 80, 22, 0.9)), 
                url('https://images.unsplash.com/photo-1625246333195-78d9c38ad449?w=1920&h=600&fit=crop') center/cover;
    background-attachment: fixed;
    color: white;
    position: relative;
    padding: 6rem 0;
}

.impact-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(45, 80, 22, 0.3);
}

.impact-section .container {
    position: relative;
    z-index: 2;
}

.impact-stat {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    transition: var(--transition);
}

.impact-stat:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-10px);
}

.impact-stat i {
    font-size: 3rem;
    color: var(--accent-gold);
    margin-bottom: 1rem;
}

.impact-stat h3 {
    font-size: 2.5rem;
    color: white;
    margin-bottom: 0.5rem;
    font-weight: 900;
}

.impact-stat p {
    font-size: 1.1rem;
    margin: 0;
    color: rgba(255, 255, 255, 0.9);
}

/* =================================
   CTA Section
   ================================= */
.cta-section {
    background: linear-gradient(135deg, var(--primary-green), var(--secondary-green));
    color: white;
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
}

.cta-section h2 {
    color: white;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-section p {
    font-size: 1.2rem;
    opacity: 0.9;
}

/* =================================
   Contact Section
   ================================= */
.contact-section {
    background: var(--soft-beige);
    padding: 6rem 0;
}

.contact-info {
    margin-top: 2rem;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: white;
    border-radius: 15px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.info-item:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-md);
}

.info-item i {
    font-size: 2rem;
    color: var(--secondary-green);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--soft-beige);
    border-radius: 12px;
}

.info-item h5 {
    margin-bottom: 0.5rem;
    color: var(--primary-green);
}

.info-item p {
    margin: 0;
    color: var(--light-text);
}

.contact-form {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
}

.contact-form .form-control {
    border: 2px solid var(--soft-beige);
    border-radius: 12px;
    padding: 1rem;
    font-size: 1rem;
    transition: var(--transition);
}

.contact-form .form-control:focus {
    border-color: var(--secondary-green);
    box-shadow: 0 0 0 0.2rem rgba(74, 124, 43, 0.1);
}

/* =================================
   Footer
   ================================= */
.footer {
    background: var(--primary-green);
    color: rgba(255, 255, 255, 0.9);
    padding: 4rem 0 2rem 0;
}

.footer h4 {
    color: white;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.footer h5 {
    color: white;
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.footer p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1.5rem;
}

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

.social-links a {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: white;
    font-size: 1.2rem;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--accent-orange);
    transform: translateY(-5px);
}

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

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

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition);
}

.footer-links a:hover {
    color: white;
    padding-left: 10px;
}

.footer-divider {
    border-color: rgba(255, 255, 255, 0.1);
    margin: 2rem 0;
}

/* =================================
   Responsive Design
   ================================= */
@media (max-width: 991px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .hero-stats {
        gap: 1.5rem;
    }
    
    .hero-image-floating {
        display: none;
    }
    
    .work-step {
        margin-top: 2rem;
    }
    
    .step-number {
        position: relative;
        top: 0;
        left: 0;
        margin-bottom: 1rem;
    }
}

@media (max-width: 767px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .hero-buttons .btn {
        display: block;
        margin: 0.5rem 0;
    }
    
    .stat-item {
        flex: 1 1 100%;
    }
    
    .gallery-item {
        height: 150px;
    }
    
    .work-step h3 {
        font-size: 1.4rem;
    }
    
    .work-step p {
        font-size: 1rem;
    }
    
    .testimonial-card {
        padding: 2rem 1.5rem;
    }
    
    .impact-stat {
        padding: 1.5rem 1rem;
    }
    
    .impact-stat h3 {
        font-size: 2rem;
    }
}
