:root {
    --green-50: #f0fdf4;
    --green-100: #dcfce7;
    --green-200: #bbf7d0;
    --green-300: #86efac;
    --green-400: #4ade80;
    --green-500: #22c55e;
    --green-600: #16a34a;
    --green-700: #15803d;
    --green-800: #166534;
    --green-900: #14532d;
    
    --gray-50: #fafafa;
    --gray-100: #f5f5f5;
    --gray-700: #374151;
    --gray-800: #1f2937;
    --gray-900: #111827;
    
    --font-display: 'DM Serif Display', serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;
    
    --transition-smooth: cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 100px;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.7;
    color: var(--gray-700);
    background: white;
    overflow-x: hidden;
}

/* Organic Background */
.organic-bg {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
    overflow: hidden;
}

.organic-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.4;
    animation: organicFloat 25s ease-in-out infinite;
}

.shape-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--green-400), transparent);
    top: -200px;
    right: -200px;
    animation-delay: 0s;
}

.shape-2 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, var(--green-500), transparent);
    bottom: -150px;
    left: -150px;
    animation-delay: 5s;
}

.shape-3 {
    width: 450px;
    height: 450px;
    background: radial-gradient(circle, var(--green-300), transparent);
    top: 40%;
    left: 50%;
    animation-delay: 10s;
}

.shape-4 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, var(--green-600), transparent);
    bottom: 20%;
    right: 10%;
    animation-delay: 15s;
}

.shape-5 {
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, var(--green-200), transparent);
    top: 60%;
    left: 20%;
    animation-delay: 20s;
}

@keyframes organicFloat {
    0%, 100% {
        transform: translate(0, 0) scale(1) rotate(0deg);
    }
    25% {
        transform: translate(50px, -50px) scale(1.1) rotate(90deg);
    }
    50% {
        transform: translate(-30px, 30px) scale(0.9) rotate(180deg);
    }
    75% {
        transform: translate(40px, 40px) scale(1.05) rotate(270deg);
    }
}

/* Contact Widget */
.contact-widget {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
}

.widget-trigger {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--green-600), var(--green-700));
    border: none;
    color: white;
    cursor: pointer;
    box-shadow: 0 10px 40px rgba(22, 163, 74, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s var(--transition-smooth);
    position: relative;
}

.pulse-ring {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 3px solid var(--green-500);
    animation: pulse 2s ease-out infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

.widget-trigger:hover {
    transform: scale(1.1);
    box-shadow: 0 15px 50px rgba(22, 163, 74, 0.5);
}

.widget-panel {
    position: absolute;
    bottom: 85px;
    right: 0;
    width: 320px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s var(--transition-smooth);
}

.widget-panel.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.widget-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid var(--green-100);
}

.widget-header h4 {
    font-family: var(--font-display);
    font-size: 20px;
    color: var(--gray-900);
}

.widget-close {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--green-50);
    border: none;
    color: var(--green-700);
    font-size: 24px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s var(--transition-smooth);
}

.widget-close:hover {
    background: var(--green-100);
    transform: rotate(90deg);
}

.widget-options {
    padding: 12px;
}

.widget-option {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px;
    border-radius: 12px;
    text-decoration: none;
    color: var(--gray-700);
    transition: all 0.3s var(--transition-smooth);
    margin-bottom: 8px;
}

.widget-option:hover {
    background: var(--green-50);
    transform: translateX(5px);
}

.option-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.option-icon.phone {
    background: linear-gradient(135deg, var(--green-500), var(--green-600));
    color: white;
}

.option-icon.whatsapp {
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: white;
}

.option-icon.email {
    background: linear-gradient(135deg, var(--green-400), var(--green-500));
    color: white;
}

.option-text span {
    display: block;
    font-weight: 600;
    font-size: 15px;
    color: var(--gray-900);
}

.option-text small {
    display: block;
    font-size: 13px;
    color: var(--gray-700);
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(22, 163, 74, 0.1);
    z-index: 999;
    transition: all 0.3s var(--transition-smooth);
}

.navbar.scrolled {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

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

.nav-logo {
    display: flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
}

.logo-mark svg {
    transition: transform 0.3s var(--transition-smooth);
}

.nav-logo:hover .logo-mark svg {
    transform: scale(1.1) rotate(10deg);
}

.logo-name {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 400;
    color: var(--gray-900);
    display: block;
    line-height: 1.2;
}

.logo-subtitle {
    font-size: 12px;
    font-weight: 600;
    color: var(--green-600);
    display: block;
    letter-spacing: 0.5px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 40px;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: var(--gray-700);
    font-weight: 600;
    font-size: 15px;
    position: relative;
    transition: color 0.3s var(--transition-smooth);
}

.nav-link::before {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--green-500), var(--green-600));
    border-radius: 2px;
    transition: width 0.3s var(--transition-smooth);
}

.nav-link:hover,
.nav-link.active {
    color: var(--green-600);
}

.nav-link:hover::before,
.nav-link.active::before {
    width: 100%;
}

.nav-cta {
    padding: 12px 28px;
    background: linear-gradient(135deg, var(--green-600), var(--green-700));
    color: white !important;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(22, 163, 74, 0.3);
}

.nav-cta::before {
    display: none;
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(22, 163, 74, 0.4);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
}

.nav-toggle span {
    width: 28px;
    height: 3px;
    background: var(--green-600);
    border-radius: 2px;
    transition: all 0.3s var(--transition-smooth);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 140px 0 80px;
    position: relative;
}

.hero-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 80px;
    align-items: center;
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 12px 24px;
    background: white;
    border: 2px solid var(--green-100);
    border-radius: 50px;
    margin-bottom: 28px;
    font-weight: 600;
    font-size: 14px;
    color: var(--gray-700);
    box-shadow: 0 4px 20px rgba(22, 163, 74, 0.1);
    animation: fadeInUp 0.8s ease-out;
}

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

.eyebrow-icon {
    animation: rotate 10s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.hero-title {
    font-family: var(--font-display);
    font-size: 72px;
    font-weight: 400;
    line-height: 1.15;
    color: var(--gray-900);
    margin-bottom: 28px;
    animation: fadeInUp 0.8s ease-out 0.2s backwards;
}

.title-highlight {
    display: block;
    background: linear-gradient(135deg, var(--green-600), var(--green-700));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 19px;
    line-height: 1.8;
    color: var(--gray-700);
    max-width: 600px;
    margin-bottom: 40px;
    animation: fadeInUp 0.8s ease-out 0.4s backwards;
}

.hero-actions {
    display: flex;
    gap: 16px;
    margin-bottom: 60px;
    animation: fadeInUp 0.8s ease-out 0.6s backwards;
}

.btn {
    padding: 16px 32px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 16px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s var(--transition-smooth);
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: linear-gradient(135deg, var(--green-600), var(--green-700));
    color: white;
    box-shadow: 0 8px 25px rgba(22, 163, 74, 0.3);
}

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

.btn-ghost {
    background: white;
    color: var(--green-600);
    border: 2px solid var(--green-600);
}

.btn-ghost:hover {
    background: var(--green-50);
    transform: translateY(-3px);
}

.hero-badges {
    display: flex;
    gap: 24px;
    align-items: center;
    animation: fadeInUp 0.8s ease-out 0.8s backwards;
}

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

.badge-value {
    font-family: var(--font-display);
    font-size: 42px;
    font-weight: 400;
    color: var(--green-600);
    line-height: 1;
    margin-bottom: 6px;
}

.badge-label {
    font-size: 14px;
    font-weight: 600;
    color: var(--gray-700);
}

.badge-divider {
    width: 2px;
    height: 50px;
    background: linear-gradient(180deg, transparent, var(--green-300), transparent);
}

/* Hero Visual */
.hero-visual {
    position: relative;
    animation: fadeInUp 0.8s ease-out 0.5s backwards;
}

.visual-cards {
    position: relative;
    height: 600px;
}

.floating-card {
    position: absolute;
    background: white;
    border-radius: 24px;
    padding: 32px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    border: 2px solid var(--green-100);
    transition: all 0.3s var(--transition-smooth);
    animation: float 6s ease-in-out infinite;
}

.floating-card:hover {
    transform: translateY(-10px) !important;
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.15);
}

.card-1 {
    top: 0;
    left: 0;
    width: 280px;
    animation-delay: 0s;
}

.card-2 {
    top: 120px;
    right: 0;
    width: 260px;
    animation-delay: 2s;
}

.card-3 {
    bottom: 0;
    left: 50px;
    width: 240px;
    animation-delay: 4s;
}

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

.card-glow {
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, var(--green-400), var(--green-600));
    border-radius: 24px;
    opacity: 0;
    transition: opacity 0.3s var(--transition-smooth);
    z-index: -1;
    filter: blur(20px);
}

.floating-card:hover .card-glow {
    opacity: 0.5;
}

.card-icon {
    width: 72px;
    height: 72px;
    background: var(--green-50);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.card-content h4 {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 400;
    color: var(--gray-900);
    margin-bottom: 8px;
}

.card-content p {
    font-size: 14px;
    color: var(--gray-700);
    line-height: 1.6;
}

.hero-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
}

.hero-wave svg {
    display: block;
    width: 100%;
}

/* Section Styling */
section {
    padding: 100px 0;
}

.section-tag {
    display: inline-block;
    padding: 10px 24px;
    background: var(--green-50);
    color: var(--green-700);
    border-radius: 50px;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    border: 2px solid var(--green-100);
}

.section-title {
    font-family: var(--font-display);
    font-size: 56px;
    font-weight: 400;
    line-height: 1.2;
    color: var(--gray-900);
    margin-bottom: 20px;
}

.title-accent {
    background: linear-gradient(135deg, var(--green-600), var(--green-700));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-text,
.section-subtitle {
    font-size: 18px;
    line-height: 1.8;
    color: var(--gray-700);
    margin-bottom: 24px;
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 80px;
}

/* About Section */
.about {
    background: var(--green-50);
}

.about-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: center;
}

.about-image-main {
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.15);
    position: relative;
}

.about-badges {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 24px;
}

.about-badge {
    background: white;
    padding: 24px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.badge-number {
    font-family: var(--font-display);
    font-size: 36px;
    font-weight: 400;
    color: var(--green-600);
    display: block;
    margin-bottom: 6px;
}

.badge-text {
    font-size: 14px;
    font-weight: 600;
    color: var(--gray-700);
}

.features-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin: 40px 0;
}

.feature-item {
    display: flex;
    gap: 20px;
    padding: 24px;
    background: white;
    border-radius: 16px;
    border: 2px solid var(--green-100);
    transition: all 0.3s var(--transition-smooth);
}

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

.feature-icon-wrapper {
    width: 56px;
    height: 56px;
    background: var(--green-50);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-content h4 {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 400;
    color: var(--gray-900);
    margin-bottom: 6px;
}

.feature-content p {
    font-size: 15px;
    color: var(--gray-700);
    line-height: 1.7;
}

/* Services Section */
.services {
    background: white;
}

.services-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

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

.service-card {
    background: white;
    padding: 40px 32px;
    border-radius: 24px;
    border: 2px solid var(--green-100);
    transition: all 0.4s var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--green-500), var(--green-600));
    transform: scaleX(0);
    transition: transform 0.4s var(--transition-smooth);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
    border-color: var(--green-300);
}

.service-card.featured {
    background: linear-gradient(135deg, var(--green-600), var(--green-700));
    color: white;
    border-color: transparent;
}

.service-card.featured h3,
.service-card.featured p,
.service-card.featured li {
    color: white;
}

.service-card.featured .service-icon {
    color: white;
    background: rgba(255, 255, 255, 0.2);
}

.featured-badge {
    position: absolute;
    top: 24px;
    right: 24px;
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    color: white;
    border-radius: 50px;
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.service-number {
    font-family: var(--font-display);
    font-size: 72px;
    font-weight: 400;
    color: var(--green-100);
    line-height: 1;
    margin-bottom: 20px;
}

.service-card.featured .service-number {
    color: rgba(255, 255, 255, 0.3);
}

.service-icon {
    width: 72px;
    height: 72px;
    background: var(--green-50);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--green-600);
    margin-bottom: 24px;
}

.service-card h3 {
    font-family: var(--font-display);
    font-size: 26px;
    font-weight: 400;
    color: var(--gray-900);
    margin-bottom: 14px;
}

.service-card p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--gray-700);
    margin-bottom: 20px;
}

.service-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.service-features li {
    font-size: 14px;
    color: var(--gray-700);
    padding-left: 28px;
    position: relative;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--green-600);
    font-weight: 700;
    font-size: 16px;
}

.service-card.featured .service-features li::before {
    color: white;
}

/* Testimonials */
.testimonials {
    background: var(--green-50);
}

.testimonials-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.testimonials-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
    gap: 32px;
}

.testimonial-card {
    background: white;
    padding: 40px;
    border-radius: 24px;
    border: 2px solid var(--green-100);
    transition: all 0.3s var(--transition-smooth);
    position: relative;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.testimonial-quote {
    font-family: var(--font-display);
    font-size: 120px;
    line-height: 0.5;
    color: var(--green-100);
    margin-bottom: 20px;
}

.testimonial-stars {
    display: flex;
    gap: 6px;
    margin-bottom: 20px;
}

.testimonial-text {
    font-size: 16px;
    line-height: 1.8;
    color: var(--gray-700);
    margin-bottom: 28px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
}

.author-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--green-500), var(--green-600));
    color: white;
    font-weight: 700;
    font-size: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.author-info h4 {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 400;
    color: var(--gray-900);
    margin-bottom: 4px;
}

.author-info p {
    font-size: 14px;
    color: var(--gray-700);
}

/* Contact */
.contact {
    background: white;
}

.contact-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 80px;
}

.contact-description {
    font-size: 18px;
    line-height: 1.8;
    color: var(--gray-700);
    margin-bottom: 40px;
}

.contact-cards {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 32px;
}

.contact-card {
    display: flex;
    gap: 20px;
    padding: 28px;
    background: var(--green-50);
    border-radius: 16px;
    border: 2px solid var(--green-100);
    transition: all 0.3s var(--transition-smooth);
}

.contact-card:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.contact-icon {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon.phone {
    background: linear-gradient(135deg, var(--green-500), var(--green-600));
    color: white;
}

.contact-icon.email {
    background: linear-gradient(135deg, var(--green-400), var(--green-500));
    color: white;
}

.contact-icon.location {
    background: linear-gradient(135deg, var(--green-600), var(--green-700));
    color: white;
}

.contact-icon.clock {
    background: linear-gradient(135deg, var(--green-500), var(--green-600));
    color: white;
}

.contact-details h4 {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 400;
    color: var(--gray-900);
    margin-bottom: 6px;
}

.contact-details p {
    font-size: 15px;
    color: var(--gray-700);
    line-height: 1.6;
}

.director-card {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 28px;
    background: linear-gradient(135deg, var(--green-600), var(--green-700));
    border-radius: 16px;
    color: white;
}

.director-avatar {
    width: 64px;
    height: 64px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.director-info h4 {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 400;
    margin-bottom: 4px;
}

.director-info p {
    font-size: 15px;
    opacity: 0.9;
}

.contact-form-wrapper {
    background: var(--green-50);
    padding: 48px;
    border-radius: 24px;
    border: 2px solid var(--green-100);
}

.form-header {
    margin-bottom: 32px;
}

.form-header h3 {
    font-family: var(--font-display);
    font-size: 32px;
    font-weight: 400;
    color: var(--gray-900);
    margin-bottom: 8px;
}

.form-header p {
    font-size: 16px;
    color: var(--gray-700);
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    font-weight: 700;
    font-size: 14px;
    color: var(--gray-900);
    margin-bottom: 10px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid var(--green-200);
    border-radius: 12px;
    font-family: var(--font-body);
    font-size: 15px;
    background: white;
    transition: all 0.3s var(--transition-smooth);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--green-500);
    box-shadow: 0 0 0 4px rgba(34, 197, 94, 0.1);
}

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

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-button {
    width: 100%;
    padding: 16px;
    background: linear-gradient(135deg, var(--green-600), var(--green-700));
    color: white;
    border: none;
    border-radius: 12px;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s var(--transition-smooth);
    box-shadow: 0 8px 25px rgba(22, 163, 74, 0.3);
}

.form-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(22, 163, 74, 0.4);
}

/* Footer */
.footer {
    background: linear-gradient(135deg, var(--gray-900), var(--gray-800));
    color: white;
    padding: 80px 0 40px;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 20px;
}

.footer-logo h3 {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 400;
    margin-bottom: 4px;
}

.footer-logo p {
    font-size: 13px;
    opacity: 0.8;
}

.footer-about {
    font-size: 15px;
    line-height: 1.7;
    opacity: 0.8;
    margin-bottom: 20px;
}

.footer-website {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--green-400);
    font-weight: 600;
}

.footer-col h4 {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 400;
    margin-bottom: 20px;
}

.footer-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-col a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 15px;
    transition: all 0.3s var(--transition-smooth);
}

.footer-col a:hover {
    color: var(--green-400);
    padding-left: 6px;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    line-height: 1.6;
}

.footer-contact svg {
    color: var(--green-400);
    flex-shrink: 0;
    margin-top: 2px;
}

.footer-bottom {
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    margin-bottom: 6px;
}

/* Responsive */
@media (max-width: 1024px) {
    .hero-container,
    .about-container,
    .contact-container {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .hero-title {
        font-size: 56px;
    }
    
    .section-title {
        font-size: 44px;
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 88px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 88px);
        background: white;
        flex-direction: column;
        padding: 40px;
        gap: 28px;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
        transition: left 0.3s var(--transition-smooth);
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(9px, 9px);
    }
    
    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .nav-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(9px, -9px);
    }
    
    .hero-title {
        font-size: 44px;
    }
    
    .section-title {
        font-size: 36px;
    }
    
    .services-grid,
    .testimonials-wrapper {
        grid-template-columns: 1fr;
    }
    
    .visual-cards {
        height: 500px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 36px;
    }
    
    .section-title {
        font-size: 32px;
    }
    
    .contact-form-wrapper {
        padding: 32px 24px;
    }
    
    .service-number {
        font-size: 56px;
    }
}
/* =============================================
   SIMPLE GALLERY - EASY & WORKING
   ============================================= */

.simple-gallery {
    background: linear-gradient(180deg, #f0fdf4 0%, #ffffff 100%);
    padding: 80px 0;
    overflow: hidden;
}

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

/* Header */
.gallery-header {
    text-align: center;
    margin-bottom: 50px;
}

.gallery-tag {
    display: inline-block;
    padding: 8px 20px;
    background: #dcfce7;
    color: #16a34a;
    border-radius: 50px;
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

.gallery-title {
    font-family: 'DM Serif Display', serif;
    font-size: 48px;
    font-weight: 400;
    color: #1f2937;
    margin-bottom: 12px;
}

.gallery-accent {
    background: linear-gradient(135deg, #16a34a, #15803d);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.gallery-subtitle {
    font-size: 16px;
    color: #6b7280;
}

/* Carousel */
.simple-carousel {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

.carousel-container {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    background: #f3f4f6;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.carousel-slides {
    display: flex;
    transition: transform 0.5s ease;
}

.carousel-slide {
    min-width: 100%;
    position: relative;
}

.carousel-slide img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;
}

@media (max-width: 768px) {
    .carousel-slide img {
        height: 350px;
    }
}

/* Slide Caption */
.slide-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.4) 70%, transparent 100%);
    color: white;
    padding: 40px 30px 30px;
}

.slide-caption h3 {
    font-family: 'DM Serif Display', serif;
    font-size: 28px;
    margin-bottom: 8px;
    font-weight: 400;
}

.slide-caption p {
    font-size: 16px;
    opacity: 0.95;
}

@media (max-width: 768px) {
    .slide-caption {
        padding: 30px 20px 20px;
    }
    
    .slide-caption h3 {
        font-size: 22px;
    }
    
    .slide-caption p {
        font-size: 14px;
    }
}

/* Navigation Buttons */
.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: rgba(22, 163, 74, 0.9);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.carousel-btn:hover {
    background: #16a34a;
    transform: translateY(-50%) scale(1.1);
}

.carousel-btn:active {
    transform: translateY(-50%) scale(0.95);
}

.carousel-btn.prev {
    left: 20px;
}

.carousel-btn.next {
    right: 20px;
}

@media (max-width: 768px) {
    .carousel-btn {
        width: 40px;
        height: 40px;
    }
    
    .carousel-btn.prev {
        left: 10px;
    }
    
    .carousel-btn.next {
        right: 10px;
    }
}

/* Dots */
.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #d1d5db;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.dot:hover {
    background: #86efac;
    transform: scale(1.2);
}

.dot.active {
    width: 30px;
    border-radius: 6px;
    background: linear-gradient(90deg, #16a34a, #22c55e);
}