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

html {
    scroll-behavior: smooth;
}

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

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Loading Screen */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #4A7C59 0%, #85b66e 50%, #4A7C59 100%);
    background-size: 200% 200%;
    animation: gradientShift 3s ease infinite;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.loading-screen.hidden {
    opacity: 0;
    visibility: hidden;
}

.loading-content {
    text-align: center;
    color: white;
}

.loading-logo {
    width: 150px;
    height: 150px;
    margin: 0 auto 2rem;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    padding: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: logoSpin 2s cubic-bezier(0.68, -0.55, 0.265, 1.55) infinite;
}

.loading-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    animation: logoPulse 2s ease-in-out infinite;
}

.loading-text {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    animation: fadeInOut 2s ease-in-out infinite;
    letter-spacing: 1px;
}

.loading-tagline {
    font-size: 1rem;
    font-weight: 400;
    opacity: 0.9;
    animation: fadeInOut 2s ease-in-out infinite;
    animation-delay: 0.3s;
}

@keyframes gradientShift {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

@keyframes logoSpin {
    0%, 100% {
        transform: rotate(0deg) scale(1);
    }
    50% {
        transform: rotate(180deg) scale(1.1);
    }
}

@keyframes logoPulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.8;
        transform: scale(0.95);
    }
}

@keyframes fadeInOut {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 0.5rem 0;
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-img {
    height: 60px;
    width: auto;
    transition: transform 0.3s ease;
}

.logo-img:hover {
    transform: scale(1.05);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: #4A7C59;
}

.nav-consultation {
    background: linear-gradient(45deg, #fbbf24, #f59e0b) !important;
    color: white !important;
    padding: 0.5rem 1rem !important;
    border-radius: 25px !important;
    font-weight: 600 !important;
    transition: all 0.3s ease !important;
    box-shadow: 0 2px 8px rgba(251, 191, 36, 0.3) !important;
}

.nav-consultation:hover {
    background: linear-gradient(45deg, #f59e0b, #d97706) !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 4px 15px rgba(251, 191, 36, 0.4) !important;
    color: white !important;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: #4A7C59;
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

/* Dropdown Styles */
.dropdown {
    position: relative;
}

.dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    position: relative;
}

.dropdown-toggle i {
    font-size: 0.8rem;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.dropdown:hover .dropdown-toggle i {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: calc(100% + 8px);
    left: 50%;
    transform: translateX(-50%) translateY(-15px);
    background: white;
    min-width: 280px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15), 0 8px 25px rgba(0, 0, 0, 0.1);
    border-radius: 16px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1000;
    list-style: none;
    padding: 1rem 0;
    margin: 0;
    border: 1px solid rgba(0, 0, 0, 0.05);
    backdrop-filter: blur(10px);
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.dropdown-menu::before {
    content: '';
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 16px;
    height: 16px;
    background: white;
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-bottom: none;
    border-right: none;
    transform: translateX(-50%) rotate(45deg);
}

.dropdown-menu li {
    margin: 0;
}

.dropdown-menu a {
    display: flex;
    align-items: center;
    padding: 0.875rem 1.5rem;
    color: #374151;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    border-radius: 0;
}

.dropdown-menu a::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(135deg, #4A7C59, #85b66e);
    transform: scaleY(0);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 0 2px 2px 0;
}

.dropdown-menu a:hover {
    background: linear-gradient(135deg, #f8faf9, #f1f5f4);
    color: #4A7C59;
    transform: translateX(4px);
}

.dropdown-menu a:hover::before {
    transform: scaleY(1);
}

.dropdown-menu a:active {
    transform: translateX(2px) scale(0.98);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background-color: #333;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    min-height: 80vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #4A7C59 0%, #6B8E6B 25%, #B2C7A8 50%);
    background-size: 400% 400%;
    animation: gradientShift 4s ease-in-out infinite;
    color: white;
    position: relative;
    overflow: hidden;
    margin-bottom: 0;
    transform: none;
    padding-top: 80px;
}

@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

/* How It Works */
.how-it-works {
    padding: 6rem 0;
    background: linear-gradient(135deg, #4A7C59 0%, #6B8E6B 25%, #B2C7A8 50%);
    background-size: 400% 400%;
    animation: gradientShift 8s ease-in-out infinite;
    position: relative;
    overflow: hidden;
}

.how-header { text-align: center; max-width: 900px; margin: 0 auto; }
.how-header h2 { font-size: 35px; line-height: normal; color: white; font-weight: 800; }
.how-header h3 { font-size: 55px; line-height: 1.2; margin: 0.5rem 0; font-weight: 700; color: white; }
.how-header p { font-size: 20px; line-height: 1.4; color: rgba(255,255,255,0.9); }

.how-visual { 
    margin: 2rem auto 0; 
    background: none;
    display: inline-block;
    width: fit-content;
    max-width: none;
    padding: 0;
    border: none;
}
.how-hero-img { 
    height: auto; 
    display: block; 
    border-radius: 16px; 
    box-shadow: 0 20px 50px rgba(0,0,0,0.08);
    background: none;
    object-fit: contain;
    max-width: 1000px;
    border: none;
    outline: none;
}

.how-canvas { 
    position: relative; 
    max-width: 1000px; 
    margin: 2rem auto 0; 
    background: none;
    padding: 0;
    border: none;
}
.how-connections { position: absolute; inset: 0; width: 100%; height: 100%; pointer-events: none; }

.how-logos {
    position: relative;
    display: grid;
    gap: 0.75rem;
    justify-content: center;
    margin-bottom: 1.25rem;
    z-index: 2;
}

.how-logos-row { display: flex; gap: 2.55rem; justify-content: center; }
.how-logos-row.top { gap: 10rem; } /* Spread top row more to align with screen corners */
.how-logos-row.bottom { 
    gap: 6rem; 
    align-items: center; /* Ensure logos are aligned at same height */
} /* Spread bottom row more */

.logo-node {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: white;
    border: 3px solid #e5e7eb;
    box-shadow: 0 15px 35px rgba(0,0,0,0.12);
    cursor: default;
    position: relative;
    z-index: 10;
}

.logo-node i { font-size: 32px; }
.logo-node.facebook { color: #1877f2; }
.logo-node.instagram { color: #e1306c; }
.logo-node.linkedin { color: #0a66c2; }
.logo-node.youtube { color: #ff0000; }
.logo-node.tiktok { color: #111827; }

.logo-node:hover { transform: translateY(-3px); box-shadow: 0 16px 30px rgba(0,0,0,0.12); }

.how-grid { display: grid; grid-template-columns: 1fr auto 1fr auto 1fr; align-items: center; gap: 1.5rem; max-width: 1000px; margin: 6rem auto 0; position: relative; z-index: 2; }
.how-item { background: white; border-radius: 16px; box-shadow: 0 12px 30px rgba(0,0,0,0.06); padding: 1rem; }
.how-img { width: 50%; max-width: 220px; height: auto; display: block; margin: 0 auto; }
.how-caption { text-align: center; margin-top: 0.5rem; font-weight: 600; color: #1f2937; }
.how-sep { width: 2px; background: linear-gradient(180deg, rgba(74,124,89,0), rgba(74,124,89,0.4), rgba(74,124,89,0)); height: 100%; border-radius: 2px; }

@media (max-width: 992px) {
    .how-header h3 { font-size: 42px; }
    .how-grid { grid-template-columns: 1fr; gap: 1rem; }
    .how-sep { display: none; }
}

/* Mobile-specific scaling for How it Works image */
@media (max-width: 768px) {
    .how-visual { width: 100%; display: block; text-align: center; }
    .how-hero-img { width: 100%; max-width: 100%; height: auto; border-radius: 12px; }
    .how-grid { margin-top: 4rem; }
}

/* Clients / Testimonials */
.clients { 
    padding: 6rem 0; 
    background: linear-gradient(135deg, #f8faf9 0%, #e8f5e8 100%);
    position: relative;
    overflow: hidden;
}

.clients-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    min-height: 600px;
}

.clients-header { 
    color: #374151; 
    text-align: left;
}

.clients-header h2 { 
    font-size: 35px; 
    margin-bottom: 0.5rem; 
    color: #4A7C59;
}

.clients-header h3 { 
    font-size: 55px; 
    line-height: 1.2; 
    margin: 0.25rem 0 0.75rem; 
    color: #374151;
}

.testimonial-slideshow {
    position: relative;
    width: 100%;
}

.slideshow-wrapper {
    position: relative;
    height: 350px;
    overflow: hidden;
    background: transparent;
    border-radius: 20px;
}

.testimonial-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transform: translateX(30px);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    background: transparent;
}

.testimonial-slide.active {
    opacity: 1;
    transform: translateX(0);
}

.testimonial-card {
    background: #ffffff;
    border: none;
    border-radius: 20px;
    padding: 2.5rem;
    color: #374151;
    box-shadow: 0 20px 40px rgba(74,124,89,0.15);
    height: 100%;
    min-height: 320px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow: hidden;
    position: relative;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #ffffff;
    border-radius: 20px;
    z-index: -1;
}

.testimonial-quote { 
    font-size: 25px; 
    line-height: 1.4; 
    color: #4A7C59; 
    margin-bottom: 1rem;
    font-weight: 600;
}

.testimonial-text { 
    font-size: 18px;
    line-height: 1.5; 
    color: #6B7280; 
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.testimonial-footer { 
    display: flex; 
    align-items: center; 
    gap: 1rem; 
}

.testimonial-avatar img {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(255,255,255,0.2);
}

.avatar-placeholder {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #4A7C59, #6B8E6B);
    color: white;
    font-weight: 700;
    font-size: 1.2rem;
    border: 2px solid rgba(255,255,255,0.2);
}

.testimonial-name { 
    font-weight: 700; 
    color: #374151;
    font-size: 1.1rem;
}

.testimonial-role { 
    color: #6B7280; 
    font-size: 0.95rem;
}

.slideshow-nav {
    margin-top: 2rem;
    display: flex;
    justify-content: center;
}

.nav-dots {
    display: flex;
    gap: 0.75rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: none;
    background: rgba(74,124,89,0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.nav-dot.active {
    background: #4A7C59;
    transform: scale(1.2);
}

.nav-dot:hover {
    background: rgba(74,124,89,0.6);
}

@media (max-width: 1024px) {
    .clients-layout { 
        grid-template-columns: 1fr; 
        gap: 2rem;
        text-align: center;
    }
    
    .clients-header { text-align: center; }
    .clients-header h3 { font-size: 42px; }
}

@media (max-width: 640px) {
    .clients-header h3 { font-size: 34px; }
    .testimonial-card { padding: 1.5rem; }
    .testimonial-quote { font-size: 22px; }
    .testimonial-text { font-size: 16px; }
}

.hero::before {
    content: '';
    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 1000 1000"><defs><radialGradient id="a" cx="50%" cy="50%"><stop offset="0%" stop-color="%23ffffff" stop-opacity="0.1"/><stop offset="100%" stop-color="%23ffffff" stop-opacity="0"/></radialGradient></defs><circle cx="200" cy="200" r="100" fill="url(%23a)"/><circle cx="800" cy="300" r="150" fill="url(%23a)"/><circle cx="400" cy="700" r="120" fill="url(%23a)"/></svg>');
    opacity: 0.3;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}


.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.highlight {
    background: linear-gradient(45deg, #fbbf24, #f59e0b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-social-links {
    display: flex;
    gap: 1.5rem;
    margin-top: 2rem;
    justify-content: flex-start;
    align-items: center;
}

.hero-social-links .social-link {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-social-links .social-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    background: rgba(255, 255, 255, 0.2);
}

.hero-social-links .social-link i {
    font-size: 1.5rem;
    transition: all 0.3s ease;
    color: white;
}

/* Colored social media icons */
.hero-social-links .social-link.linkedin:hover i {
    color: #0077b5;
}

.hero-social-links .social-link.twitter:hover i {
    color: #1da1f2;
}

.hero-social-links .social-link.instagram:hover i {
    color: #e4405f;
}

.hero-social-links .social-link.facebook:hover i {
    color: #1877f2;
}

.btn {
    padding: 1rem 2rem;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: linear-gradient(45deg, #fbbf24, #f59e0b);
    color: white;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(251, 191, 36, 0.3);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background: white;
    color: #4A7C59;
    transform: translateY(-2px);
}

.hero-stats {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

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

.stat h3 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #fbbf24;
}

.stat p {
    font-size: 1rem;
    opacity: 0.9;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.2rem;
    color: #6b7280;
    max-width: 600px;
    margin: 0 auto;
}

/* Services Section */
.services {
    padding: 6rem 0;
    background: #f9fafb;
    margin-top: 0;
    position: relative;
    z-index: 1;
    transform: translateY(0);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid #e5e7eb;
    text-decoration: none;
    color: inherit;
    display: block;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, #4A7C59, #B2C7A8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 1.5rem;
}

.service-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 1rem;
}

.service-card p {
    color: #6b7280;
    line-height: 1.6;
}

/* About Section */
.about {
    padding: 6rem 0;
    background: white;
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
}

.about-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 2rem;
    text-align: center;
}

.about-intro {
    font-size: 1.3rem;
    color: #4b5563;
    text-align: center;
    margin-bottom: 3rem;
    line-height: 1.7;
}

.differentiators {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.differentiator {
    padding: 1.5rem;
    background: #f9fafb;
    border-radius: 10px;
    border-left: 4px solid #4A7C59;
}

.differentiator h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.differentiator h4 i {
    color: #4A7C59;
}

.differentiator p {
    color: #6b7280;
    line-height: 1.6;
}

.cta-box {
    background: linear-gradient(135deg, #4A7C59, #B2C7A8);
    color: white;
    padding: 3rem;
    border-radius: 15px;
    text-align: center;
}

.cta-box h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.cta-box p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

/* Contact Section */
.contact {
    padding: 6rem 0;
    background: #f9fafb;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    align-items: start;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.contact-item i {
    width: 50px;
    height: 50px;
    background: linear-gradient(45deg, #4A7C59, #B2C7A8);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.contact-item h4 {
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 0.25rem;
}

.contact-item p {
    color: #6b7280;
}

.contact-form {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #4A7C59;
}

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

/* Consultation CTA Section */
.consultation-cta {
    margin-top: 4rem;
    padding: 3rem 2rem;
    background: linear-gradient(135deg, #4A7C59 0%, #85b66e 100%);
    border-radius: 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.consultation-cta::before {
    content: '';
    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 1000 1000"><defs><radialGradient id="a" cx="50%" cy="50%"><stop offset="0%" stop-color="%23ffffff" stop-opacity="0.1"/><stop offset="100%" stop-color="%23ffffff" stop-opacity="0"/></radialGradient></defs><circle cx="200" cy="200" r="100" fill="url(%23a)"/><circle cx="800" cy="300" r="150" fill="url(%23a)"/><circle cx="400" cy="700" r="120" fill="url(%23a)"/></svg>');
    opacity: 0.3;
}

.consultation-content {
    position: relative;
    z-index: 1;
    color: white;
}

.consultation-content h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.consultation-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.btn-consultation {
    background: linear-gradient(45deg, #fbbf24, #f59e0b) !important;
    color: white !important;
    padding: 1rem 2.5rem !important;
    font-size: 1.1rem !important;
    font-weight: 600 !important;
    border: none !important;
    border-radius: 50px !important;
    text-decoration: none !important;
    display: inline-block !important;
    transition: all 0.3s ease !important;
    box-shadow: 0 4px 15px rgba(251, 191, 36, 0.3) !important;
}

.btn-consultation:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 8px 25px rgba(251, 191, 36, 0.4) !important;
    background: linear-gradient(45deg, #f59e0b, #d97706) !important;
}

/* Consultation Page Styles */
.consultation-hero {
    background: linear-gradient(135deg, #4A7C59 0%, #85b66e 100%);
    color: white;
    padding: 120px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.consultation-hero::before {
    content: '';
    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 1000 1000"><defs><radialGradient id="a" cx="50%" cy="50%"><stop offset="0%" stop-color="%23ffffff" stop-opacity="0.1"/><stop offset="100%" stop-color="%23ffffff" stop-opacity="0"/></radialGradient></defs><circle cx="200" cy="200" r="100" fill="url(%23a)"/><circle cx="800" cy="300" r="150" fill="url(%23a)"/><circle cx="400" cy="700" r="120" fill="url(%23a)"/></svg>');
    opacity: 0.3;
}

.consultation-hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.consultation-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.consultation-icon i {
    font-size: 2rem;
    color: white;
}

.consultation-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.consultation-subtitle {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    opacity: 0.9;
    font-weight: 500;
}

.consultation-description {
    font-size: 1.1rem;
    line-height: 1.7;
    opacity: 0.8;
    max-width: 600px;
    margin: 0 auto;
}

.consultation-benefits {
    padding: 80px 0;
    background: #f9fafb;
}

.consultation-benefits .benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.consultation-benefits .benefit-card {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.consultation-benefits .benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.consultation-benefits .benefit-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #4A7C59, #85b66e);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.consultation-benefits .benefit-icon i {
    font-size: 1.5rem;
    color: white;
}

.consultation-benefits .benefit-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #1f2937;
}

.consultation-benefits .benefit-card p {
    color: #6b7280;
    line-height: 1.6;
}

.consultation-form-section {
    padding: 80px 0;
    background: white;
}

.form-container {
    max-width: 800px;
    margin: 0 auto;
    background: linear-gradient(135deg, rgba(83, 153, 104, 0.12), rgba(110, 187, 75, 0.15));
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(74, 124, 89, 0.15);
    border: 1px solid rgba(74, 124, 89, 0.1);
}

.form-header {
    text-align: center;
    margin-bottom: 3rem;
}

.form-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #1f2937;
}

.form-header p {
    font-size: 1.1rem;
    color: #6b7280;
    max-width: 600px;
    margin: 0 auto;
}

.consultation-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}

.consultation-form .form-group {
    margin-bottom: 1rem;
}

.consultation-form .form-group input,
.consultation-form .form-group select,
.consultation-form .form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e5e7eb;
    border-radius: 10px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    background: white;
}

.consultation-form .form-group input:focus,
.consultation-form .form-group select:focus,
.consultation-form .form-group textarea:focus {
    outline: none;
    border-color: #4A7C59;
}

.consultation-form .form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* Success and Error Messages */
.success-message,
.error-message {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    z-index: 10000;
    text-align: center;
    max-width: 400px;
    width: 90%;
}

.success-message {
    border-left: 4px solid #10b981;
}

.error-message {
    border-left: 4px solid #ef4444;
}

.success-content i,
.error-content i {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.success-content i {
    color: #10b981;
}

.error-content i {
    color: #ef4444;
}

.success-content h3,
.error-content h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #1f2937;
}

.success-content p,
.error-content p {
    color: #6b7280;
    line-height: 1.6;
}

/* About Page Styles */
.about-hero {
    background: linear-gradient(135deg, #4A7C59 0%, #85b66e 100%);
    color: white;
    padding: 120px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.about-hero::before {
    content: '';
    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 1000 1000"><defs><radialGradient id="a" cx="50%" cy="50%"><stop offset="0%" stop-color="%23ffffff" stop-opacity="0.1"/><stop offset="100%" stop-color="%23ffffff" stop-opacity="0"/></radialGradient></defs><circle cx="200" cy="200" r="100" fill="url(%23a)"/><circle cx="800" cy="300" r="150" fill="url(%23a)"/><circle cx="400" cy="700" r="120" fill="url(%23a)"/></svg>');
    opacity: 0.3;
}

.about-hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.about-logo {
    width: 180px;
    height: 180px;
    margin: 0 auto 2rem;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    padding: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    animation: logoFloat 3s ease-in-out infinite;
}

.about-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.1));
}

@keyframes logoFloat {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.about-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.about-tagline {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
    opacity: 0.95;
}

.about-intro {
    font-size: 1.2rem;
    line-height: 1.7;
    opacity: 0.9;
    max-width: 700px;
    margin: 0 auto;
}

/* Mission & Vision Section */
.mission-vision {
    padding: 80px 0;
    background: #f9fafb;
}

.mv-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    margin-top: 2rem;
}

.mv-card {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
}

.mv-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.mv-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #4A7C59, #85b66e);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
}

.mv-icon i {
    font-size: 2rem;
    color: white;
}

.mv-card h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #1f2937;
}

.mv-card p {
    color: #6b7280;
    line-height: 1.8;
    font-size: 1.1rem;
}

/* Our Story Section */
.our-story {
    padding: 80px 0;
    background: white;
}

.story-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 4rem;
    align-items: center;
}

.story-text h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #1f2937;
}

.story-text p {
    color: #6b7280;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}

.story-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.stat-box {
    background: linear-gradient(135deg, rgba(74, 124, 89, 0.1), rgba(133, 182, 110, 0.15));
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    border: 1px solid rgba(74, 124, 89, 0.2);
    transition: transform 0.3s ease;
}

.stat-box:hover {
    transform: translateY(-5px);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #4A7C59;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: #6b7280;
    font-size: 1rem;
    font-weight: 500;
}

/* Our Values Section */
.our-values {
    padding: 80px 0;
    background: #f9fafb;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.value-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.value-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

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

.value-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #1f2937;
}

.value-card p {
    color: #6b7280;
    line-height: 1.6;
}

/* Our Team Section */
.our-team {
    padding: 80px 0;
    background: white;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.team-member {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-member:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.member-image {
    position: relative;
    overflow: hidden;
    padding-top: 100%;
    background: #f3f4f6;
}

.member-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.member-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #4A7C59, #85b66e);
}

.member-placeholder i {
    font-size: 4rem;
    color: white;
    opacity: 0.5;
}

.member-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(74, 124, 89, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.team-member:hover .member-overlay {
    opacity: 1;
}

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

.member-social a {
    width: 40px;
    height: 40px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #4A7C59;
    transition: all 0.3s ease;
}

.member-social a:hover {
    background: #fbbf24;
    color: white;
    transform: scale(1.1);
}

.member-info {
    padding: 1.5rem;
}

.member-info h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: #1f2937;
}

.member-role {
    color: #4A7C59;
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.member-bio {
    color: #6b7280;
    line-height: 1.6;
    font-size: 0.9rem;
}

/* Why Choose Us Section */
.why-choose-us {
    padding: 80px 0;
    background: #f9fafb;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.feature-item {
    background: linear-gradient(135deg, rgba(83, 153, 104, 0.12), rgba(110, 187, 75, 0.15));
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(74, 124, 89, 0.15);
    border-left: 4px solid #4A7C59;
    transition: all 0.3s ease;
    border: 1px solid rgba(74, 124, 89, 0.2);
}

.feature-item:hover {
    transform: translateX(5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.feature-number {
    font-size: 3rem;
    font-weight: 700;
    color: rgba(74, 124, 89, 0.2);
    margin-bottom: 1rem;
    line-height: 1;
}

.feature-item h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #1f2937;
}

.feature-item p {
    color: #6b7280;
    line-height: 1.6;
}

/* About CTA Section */
.about-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, #4A7C59 0%, #85b66e 100%);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.about-cta::before {
    content: '';
    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 1000 1000"><defs><radialGradient id="a" cx="50%" cy="50%"><stop offset="0%" stop-color="%23ffffff" stop-opacity="0.1"/><stop offset="100%" stop-color="%23ffffff" stop-opacity="0"/></radialGradient></defs><circle cx="200" cy="200" r="100" fill="url(%23a)"/><circle cx="800" cy="300" r="150" fill="url(%23a)"/><circle cx="400" cy="700" r="120" fill="url(%23a)"/></svg>');
    opacity: 0.3;
}

.cta-content {
    position: relative;
    z-index: 1;
    max-width: 700px;
    margin: 0 auto;
}

.about-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.about-cta p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-secondary {
    background: white !important;
    color: #4A7C59 !important;
}

.btn-secondary:hover {
    background: #f3f4f6 !important;
    transform: translateY(-2px);
}

/* Footer */
.footer {
    background: #1f2937;
    color: white;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
    color: #fbbf24;
}

.footer-section p {
    color: #d1d5db;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #d1d5db;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #fbbf24;
}

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

.social-links a {
    width: 40px;
    height: 40px;
    background: #374151;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: #B2C7A8;
    transform: translateY(-2px);
}

.footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 1rem;
    text-align: center;
    color: #9ca3af;
}

/* Careers Page Styles */
.careers-hero {
    background: linear-gradient(135deg, #4A7C59 0%, #6B8E6B 25%, #B2C7A8 50%);
    background-size: 400% 400%;
    animation: gradientShift 4s ease-in-out infinite;
    color: white;
    padding: 8rem 0 6rem;
    text-align: center;
}

.careers-hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: white;
}

.careers-subtitle {
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.9);
}

.careers-description {
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
}

.job-openings {
    padding: 6rem 0;
    background: #f8faf9;
}

.jobs-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    margin-top: 4rem;
}

.job-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(74, 124, 89, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
    border: 2px solid transparent;
    max-height: 280px;
    overflow: hidden;
    position: relative;
}

.job-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(74, 124, 89, 0.15);
    border-color: #4A7C59;
}

.job-card.expanded {
    max-height: none;
    overflow: visible;
}

.job-header {
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #e8f5e8;
}

.job-header h3 {
    font-size: 1.8rem;
    font-weight: 600;
    color: #2d5a3d;
    margin-bottom: 1rem;
}

.job-meta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.job-type, .job-location {
    background: #e8f5e8;
    color: #4A7C59;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
}

.job-preview {
    margin-bottom: 1rem;
}

.job-summary {
    font-size: 1rem;
    color: #666;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.job-expand {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #4A7C59;
    padding: 0.75rem;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(74, 124, 89, 0.1), rgba(74, 124, 89, 0.15));
    border: 1px solid rgba(74, 124, 89, 0.2);
    transition: all 0.3s ease;
    margin: 1rem auto 0;
    width: 40px;
    height: 40px;
}

.job-expand:hover {
    background: linear-gradient(135deg, rgba(74, 124, 89, 0.2), rgba(74, 124, 89, 0.25));
    border-color: #4A7C59;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(74, 124, 89, 0.2);
}

.job-expand i {
    transition: transform 0.3s ease;
    font-size: 1rem;
    display: inline-block;
    color: #4A7C59;
    opacity: 1;
    visibility: visible;
}

.job-card:not(.expanded) .job-expand i {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

.application-info {
    background: #e8f5e8;
    padding: 1.5rem;
    border-radius: 15px;
    margin-top: 2rem;
    text-align: center;
}

.application-info p {
    margin: 0;
    color: #2d5a3d;
    font-size: 1rem;
    white-space: nowrap;
}

.application-info a {
    color: #4A7C59;
    text-decoration: none;
    font-weight: 600;
}

.application-info a:hover {
    text-decoration: underline;
}

.job-details h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #2d5a3d;
    margin: 2rem 0 1rem 0;
}

.job-details ul {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
}

.job-details li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: #555;
    line-height: 1.5;
}

.job-details li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #4A7C59;
    font-weight: bold;
}


.why-work-with-us {
    padding: 6rem 0;
    background: white;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.benefit-card {
    text-align: center;
    padding: 2rem;
    border-radius: 15px;
    background: #f8faf9;
    transition: transform 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
}

.benefit-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #4A7C59, #6B8E6B);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 2rem;
}

.benefit-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #2d5a3d;
    margin-bottom: 1rem;
}

.benefit-card p {
    color: #666;
    line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
    }

    .nav-menu.active { left: 0; }
    .nav-menu li { margin: 1rem 0; }

    .hamburger.active .bar:nth-child(2) { opacity: 0; }
    .hamburger.active .bar:nth-child(1) { transform: translateY(8px) rotate(45deg); }
    .hamburger.active .bar:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

    /* Mobile Dropdown Styles */
    .dropdown { width: 100%; }
    .dropdown-toggle { justify-content: center; width: 100%; padding: 0.75rem 0; }

    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
        background: #f8faf9;
        margin: 0.5rem 1rem;
        border-radius: 12px;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        border: 1px solid rgba(0, 0, 0, 0.05);
        width: calc(100% - 2rem);
        text-align: left;
        min-width: auto;
        left: auto;
    }

    .dropdown-menu::before { display: none; }
    .dropdown.active .dropdown-menu { max-height: 70vh; overflow-y: auto; }

    .dropdown-menu a {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
        transform: none;
        justify-content: flex-start;
        display: flex;
        text-align: left;
    }

    .dropdown-menu a::before { display: none; }
    .dropdown-menu a:hover { background: linear-gradient(135deg, #e8f5e8, #f0f8f0); color: #4A7C59; transform: none; }
    .dropdown-menu a:active { transform: none; background: linear-gradient(135deg, #d1ead1, #e0f2e0); }

    .hero { min-height: 90vh; padding-top: 100px; }
    .hero-container { grid-template-columns: 1fr; text-align: center; gap: 2rem; padding-top: 0; }
    .hero-title { font-size: 2.5rem; }
    .hero-stats { flex-direction: row; justify-content: center; margin-top: 0; }
    .stat { flex: 1; min-width: 120px; }
    .services-grid { grid-template-columns: 1fr; }
    .contact-content { grid-template-columns: 1fr; gap: 2rem; }
    .differentiators { grid-template-columns: 1fr; }
    .hero-buttons { justify-content: center; }
    .hero-social-links { gap: 1rem; justify-content: center; }
    .hero-social-links .social-link { width: 45px; height: 45px; }
    .hero-social-links .social-link i { font-size: 1.3rem; }
    .btn { padding: 0.8rem 1.5rem; font-size: 0.9rem; }
}

@media (max-width: 480px) {
    .hero {
        min-height: 100vh;
        padding-top: 120px;
    }

    .hero-container {
        padding-top: 0;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-description {
        font-size: 1rem;
    }
    
    .hero-social-links { 
        gap: 0.8rem; 
        margin-top: 1.5rem;
    }
    .hero-social-links .social-link { 
        width: 40px; 
        height: 40px; 
    }
    .hero-social-links .social-link i { 
        font-size: 1.2rem; 
    }
    
    .consultation-content h3 {
        font-size: 1.5rem;
    }
    
    .consultation-content p {
        font-size: 1rem;
    }
    
    .btn-consultation {
        padding: 0.8rem 2rem !important;
        font-size: 1rem !important;
    }
    
    .consultation-hero h1 {
        font-size: 2rem;
    }
    
    .consultation-subtitle {
        font-size: 1.1rem;
    }
    
    .consultation-description {
        font-size: 1rem;
    }
    
    .consultation-benefits .benefits-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .consultation-form .form-row {
        grid-template-columns: 1fr;
    }
    
    .form-container {
        padding: 2rem 1.5rem;
    }
    
    .form-header h2 {
        font-size: 2rem;
    }

    .section-header h2 {
        font-size: 2rem;
    }
    
    .about-logo {
        width: 140px;
        height: 140px;
        padding: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .about-hero h1 {
        font-size: 2.5rem;
    }
    
    .about-tagline {
        font-size: 1.2rem;
    }
    
    .about-intro {
        font-size: 1rem;
    }
    
    .mv-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .story-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .about-cta h2 {
        font-size: 2rem;
    }

    .about-text h2 {
        font-size: 2rem;
    }

    .hero-stats {
        flex-direction: column;
        margin-top: 0;
    }

    .stat h3 {
        font-size: 2rem;
    }

    .stat {
        margin-bottom: 1rem;
    }
}

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

.service-card,
.differentiator,
.contact-item {
    animation: fadeInUp 0.6s ease forwards;
}

/* Smooth scrolling for anchor links */
html {
    scroll-padding-top: 100px;
}

/* Loading animation */
.loading {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
}

.loading.loaded {
    opacity: 1;
    transform: translateY(0);
}

/* Careers Page Mobile Responsive Styles */
@media (max-width: 768px) {
    .careers-hero-content h1 {
        font-size: 2.5rem;
    }
    
    .careers-subtitle {
        font-size: 1.2rem;
    }
    
    .careers-description {
        font-size: 1rem;
        padding: 0 1rem;
    }
    
    .job-card {
        padding: 1.5rem;
        max-height: 250px;
    }
    
    .job-header h3 {
        font-size: 1.4rem;
    }
    
    .job-summary {
        font-size: 0.9rem;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

@media (max-width: 480px) {
    .careers-hero {
        padding: 6rem 0 4rem;
    }
    
    .careers-hero-content h1 {
        font-size: 2rem;
    }
    
    .careers-subtitle {
        font-size: 1.1rem;
    }
    
    .job-card {
        padding: 1.25rem;
        max-height: 230px;
    }
    
    .job-header h3 {
        font-size: 1.2rem;
    }
    
    .job-summary {
        font-size: 0.85rem;
    }
    
    .benefit-card {
        padding: 1.5rem;
    }
}
