/* ============================================
   SOYA MASTI - PREMIUM DARK THEME
   ============================================ */

/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --dark-bg: #0a0e0a;
    --dark-surface: #121612;
    --dark-card: #1a1f1a;
    --dark-border: #2a332a;
    --primary-green: #4a7c2a;
    --accent-green: #6b9e3e;
    --light-green: #8bc34a;
    --brown-accent: #8B4513;
    --text-primary: #ffffff;
    --text-secondary: #b0b8b0;
    --text-muted: #6b756b;
    --gradient-dark: linear-gradient(135deg, #0a0e0a 0%, #121612 50%, #1a1f1a 100%);
    --gradient-green: linear-gradient(135deg, #4a7c2a 0%, #6b9e3e 100%);
    --shadow-glow: 0 0 30px rgba(74, 124, 42, 0.2);
    --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.5);
}

html {
    scroll-behavior: smooth;
}

/* Scroll Progress Bar */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 3px;
    background: var(--gradient-green);
    z-index: 9999;
    transition: width 0.1s ease;
    box-shadow: 0 0 10px rgba(74, 124, 42, 0.5);
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background: var(--dark-bg);
    overflow-x: hidden;
    opacity: 0;
    animation: pageFadeIn 0.8s ease forwards;
}

@keyframes pageFadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ============================================
   MERGED HEADER + HERO SECTION
   ============================================ */
.hero-section {
    min-height: 100vh;
    position: relative;
    background: var(--gradient-dark);
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(74, 124, 42, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(139, 69, 19, 0.1) 0%, transparent 50%);
    z-index: 1;
    animation: overlayFloat 20s ease-in-out infinite;
}

@keyframes overlayFloat {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    33% {
        transform: translate(20px, -20px) scale(1.05);
    }
    66% {
        transform: translate(-20px, 20px) scale(0.95);
    }
}

/* Navigation merged in hero */
.hero-nav {
    position: relative;
    z-index: 10;
    padding: 2rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-nav .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.logo {
    height: 100px;
    width: auto;
    max-width: 350px;
    object-fit: contain;
    transition: transform 0.3s ease;
    background: transparent;
}

.logo:hover {
    transform: scale(1.05);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    align-items: center;
}

.nav-menu a {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem 0;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-green);
    transition: width 0.3s ease;
}

.nav-menu a:hover {
    color: var(--text-primary);
}

.nav-menu a:hover::after {
    width: 100%;
}

.nav-cta {
    padding: 10px 24px;
    font-size: 0.95rem;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger span {
    width: 25px;
    height: 2px;
    background: var(--text-primary);
    transition: all 0.3s ease;
}

/* Hero Content */
.hero-content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 5rem;
    align-items: center;
    padding: 4rem 0 6rem;
    min-height: calc(100vh - 120px);
    opacity: 0;
    animation: heroFadeIn 1.2s ease 0.3s forwards;
}

@keyframes heroFadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-title {
    font-size: 4.5rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #ffffff 0%, #b0b8b0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -2px;
    animation: titleSlideIn 1s ease 0.5s both;
}

@keyframes titleSlideIn {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.hero-subtitle {
    font-size: 1.8rem;
    color: var(--accent-green);
    margin-bottom: 1.5rem;
    font-weight: 600;
    animation: subtitleFadeIn 1s ease 0.7s both;
}

@keyframes subtitleFadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-description {
    font-size: 1.15rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 2.5rem;
    max-width: 600px;
    animation: descriptionFadeIn 1s ease 0.9s both;
}

@keyframes descriptionFadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 4rem;
    flex-wrap: wrap;
    animation: buttonsFadeIn 1s ease 1s both;
}

@keyframes buttonsFadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-stats {
    display: flex;
    gap: 4rem;
    animation: statsFadeIn 1s ease 1.1s both;
}

@keyframes statsFadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 3rem;
    font-weight: 900;
    color: var(--accent-green);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-image {
    position: relative;
    animation: imageSlideIn 1.2s ease 0.5s both;
}

@keyframes imageSlideIn {
    from {
        opacity: 0;
        transform: translateX(50px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateX(0) scale(1);
    }
}

.hero-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--dark-border);
    transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.hero-image:hover img {
    transform: scale(1.02);
    box-shadow: 0 30px 80px rgba(74, 124, 42, 0.3);
}

.hero-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--gradient-green);
    color: var(--text-primary);
    padding: 10px 20px;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 600;
    box-shadow: var(--shadow-glow);
    animation: badgePulse 2s ease-in-out infinite;
}

@keyframes badgePulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 20px rgba(74, 124, 42, 0.3);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 0 30px rgba(74, 124, 42, 0.5);
    }
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
    padding: 14px 32px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    font-family: inherit;
}

.btn-primary {
    background: var(--gradient-green);
    color: var(--text-primary);
    box-shadow: 0 4px 20px rgba(74, 124, 42, 0.3);
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.btn-primary:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 30px rgba(74, 124, 42, 0.5);
}

.btn-primary span {
    position: relative;
    z-index: 1;
}

.btn-secondary {
    background: transparent;
    color: var(--text-primary);
    border: 2px solid var(--dark-border);
}

.btn-secondary:hover {
    border-color: var(--accent-green);
    color: var(--accent-green);
}

.btn-large {
    padding: 18px 40px;
    font-size: 1.1rem;
}

/* ============================================
   SECTION STYLES
   ============================================ */
section {
    padding: 0 0;
    position: relative;
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

section.visible {
    opacity: 1;
    transform: translateY(0);
}

section::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(74, 124, 42, 0.05), transparent);
    transition: left 1s ease;
    pointer-events: none;
}

section.visible::before {
    left: 100%;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.section-header.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.section-title {
    font-size: 3rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 1rem;
    letter-spacing: -1px;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
}

/* ============================================
   FEATURES SECTION
   ============================================ */
.features-section {
    background: var(--dark-surface);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: var(--dark-card);
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid var(--dark-border);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(40px) scale(0.95);
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-green);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-card.animate-in {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.feature-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: var(--primary-green);
    box-shadow: var(--shadow-glow);
}

.feature-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    display: block;
}

.feature-card h3 {
    color: var(--text-primary);
    font-size: 1.4rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.feature-card p {
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ============================================
   GALLERY SECTION
   ============================================ */
.gallery-section {
    background: var(--dark-bg);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
}

.gallery-grid img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid var(--dark-border);
    opacity: 0;
    transform: scale(0.9) rotate(2deg);
}

.gallery-grid img.animate-in {
    opacity: 1;
    transform: scale(1) rotate(0deg);
}

.gallery-grid img:hover {
    transform: scale(1.08) rotate(-1deg);
    border-color: var(--accent-green);
    box-shadow: var(--shadow-glow);
    z-index: 10;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
}

.gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.95), transparent);
    color: var(--text-primary);
    padding: 1rem;
    font-size: 0.85rem;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.gallery-item:hover .gallery-caption {
    opacity: 1;
}

/* ============================================
   VIDEOS SECTION
   ============================================ */
.videos-section {
    background: var(--dark-surface);
}

.videos-layout {
    display: grid;
    gap: 2.5rem;
}

.main-video {
    width: 100%;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--dark-border);
    opacity: 0;
    transform: scale(0.95);
    transition: all 0.8s ease;
}

.main-video.animate-in {
    opacity: 1;
    transform: scale(1);
}

.main-video:hover {
    transform: scale(1.01);
    box-shadow: 0 30px 80px rgba(74, 124, 42, 0.2);
}

.main-video video {
    width: 100%;
    display: block;
}

.video-caption {
    background: var(--dark-card);
    padding: 1.5rem;
    border-top: 1px solid var(--dark-border);
}

.video-caption h3 {
    color: var(--text-primary);
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.video-caption p {
    color: var(--text-secondary);
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.video-card {
    background: var(--dark-card);
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid var(--dark-border);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    opacity: 0;
    transform: translateY(30px) scale(0.95);
}

.video-card.animate-in {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.video-card:hover {
    transform: translateY(-10px) scale(1.03);
    border-color: var(--accent-green);
    box-shadow: var(--shadow-glow);
}

.video-card video {
    width: 100%;
    display: block;
}

.video-info {
    padding: 1.5rem;
}

.video-info h4 {
    color: var(--text-primary);
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.video-info p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* ============================================
   BENEFITS SECTION
   ============================================ */
.benefits-section {
    background: var(--dark-bg);
}

.benefits-grid {
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.benefit-item {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    align-items: center;
    opacity: 0;
    transform: translateX(-50px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.benefit-item.reverse {
    transform: translateX(50px);
}

.benefit-item.animate-in {
    opacity: 1;
    transform: translateX(0);
}

.benefit-item.reverse {
    direction: rtl;
}

.benefit-item.reverse > * {
    direction: ltr;
}

.benefit-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--dark-border);
}

.benefit-content h3 {
    color: var(--text-primary);
    font-size: 2rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.benefit-content p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.benefit-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.benefit-list li {
    color: var(--text-secondary);
    padding-left: 2rem;
    position: relative;
    font-size: 1rem;
}

.benefit-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-green);
    font-weight: 700;
    font-size: 1.2rem;
}

/* ============================================
   SPECS SECTION
   ============================================ */
.specs-section {
    background: var(--dark-surface);
}

.specs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.spec-card {
    background: var(--dark-card);
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid var(--dark-border);
    opacity: 0;
    transform: translateY(30px) rotateX(10deg);
    transition: all 0.6s ease;
    transform-style: preserve-3d;
}

.spec-card.animate-in {
    opacity: 1;
    transform: translateY(0) rotateX(0deg);
}

.spec-card h3 {
    color: var(--text-primary);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    color: var(--accent-green);
}

.spec-table {
    width: 100%;
    border-collapse: collapse;
}

.spec-table tr {
    border-bottom: 1px solid var(--dark-border);
}

.spec-table tr:last-child {
    border-bottom: none;
}

.spec-table td {
    padding: 1rem 0;
    color: var(--text-secondary);
}

.spec-table td:first-child {
    color: var(--text-primary);
    font-weight: 600;
}

.spec-table td:last-child {
    text-align: right;
    color: var(--accent-green);
}

/* ============================================
   TESTIMONIALS SECTION
   ============================================ */
.testimonials-section {
    background: var(--dark-bg);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background: var(--dark-card);
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid var(--dark-border);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    opacity: 0;
    transform: translateY(40px) scale(0.95);
}

.testimonial-card.animate-in {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.testimonial-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: var(--accent-green);
    box-shadow: var(--shadow-glow);
}

.testimonial-rating {
    color: var(--accent-green);
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
}

.testimonial-text {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.testimonial-author strong {
    color: var(--text-primary);
    font-size: 1.1rem;
}

.testimonial-author span {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* ============================================
   FAQ SECTION
   ============================================ */
.faq-section {
    background: var(--dark-surface);
}

.faq-grid {
    display: grid;
    gap: 1.5rem;
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: var(--dark-card);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid var(--dark-border);
    transition: all 0.4s ease;
    opacity: 0;
    transform: translateX(-30px);
}

.faq-item.animate-in {
    opacity: 1;
    transform: translateX(0);
}

.faq-item:hover {
    border-color: var(--accent-green);
    transform: translateX(10px);
    box-shadow: var(--shadow-glow);
}

.faq-question {
    color: var(--text-primary);
    font-size: 1.2rem;
    margin-bottom: 1rem;
    font-weight: 700;
    color: var(--accent-green);
}

.faq-answer {
    color: var(--text-secondary);
    line-height: 1.8;
}

/* ============================================
   CLIENTS SECTION
   ============================================ */
.clients-section {
    background: var(--dark-bg);
    padding: 5rem 0;
    overflow: hidden;
}

.clients-section .section-header {
    margin-bottom: 3rem;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-130px * 17));
    }
}

.slider {
    height: 120px;
    margin: auto;
    overflow: hidden;
    position: relative;
    width: 100%;
    padding: 20px 0;
}

.slider::before,
.slider::after {
    content: '';
    position: absolute;
    top: 0;
    width: 100px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.slider::before {
    left: 0;
    background: linear-gradient(to right, var(--dark-bg), transparent);
}

.slider::after {
    right: 0;
    background: linear-gradient(to left, var(--dark-bg), transparent);
}

.slide-track {
    animation: scroll 40s linear infinite;
    display: flex;
    width: calc(130px * 34);
    gap: 2rem;
    align-items: center;
}

.slide {
    height: 100px;
    width: 130px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    transition: all 0.3s ease;
}

.slide:hover {
    transform: translateY(-5px);
}

.slide img {
    max-height: 80px;
    max-width: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    transition: all 0.3s ease;
}

.slide:hover img {
    transform: scale(1.1);
}

/* Pause animation on hover */
.slider:hover .slide-track {
    animation-play-state: paused;
}

/* ============================================
   CTA SECTION
   ============================================ */
/* ============================================
   CONTACT SECTION
   ============================================ */
.contact-section {
    background: var(--dark-surface);
    padding: 4rem 0 !important;
}

.contact-section .section-header {
    margin-bottom: 2.5rem !important;
}

.contact-content-wrapper {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-info-section {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-details h3 {
    color: var(--text-primary);
    font-size: 2rem;
    margin-bottom: 0.8rem;
    font-weight: 700;
}

.contact-intro {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.contact-method {
    display: flex;
    gap: 1.5rem;
    align-items: start;
    padding: 1.2rem;
    background: var(--dark-card);
    border-radius: 15px;
    border: 1px solid var(--dark-border);
    transition: all 0.3s ease;
    opacity: 1;
    transform: translateY(0);
}

.contact-method:hover {
    border-color: var(--accent-green);
    transform: translateX(10px);
    box-shadow: var(--shadow-glow);
}

.method-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
}

.method-content h4 {
    color: var(--text-primary);
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.method-content p {
    color: var(--accent-green);
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
    font-weight: 600;
}

.method-content span {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.contact-form-section {
    background: var(--dark-card);
    padding: 3rem;
    border-radius: 24px;
    border: 1px solid var(--dark-border);
    margin-top: 0;
    opacity: 1;
    transform: translateY(0);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.contact-form-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-green);
    opacity: 0.8;
}

.contact-form-section h3 {
    color: var(--text-primary);
    font-size: 2rem;
    margin-bottom: 2rem;
    font-weight: 700;
    position: relative;
    padding-bottom: 1rem;
}

.contact-form-section h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--gradient-green);
    border-radius: 2px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.2rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 16px 20px;
    background: var(--dark-bg);
    border: 2px solid var(--dark-border);
    border-radius: 12px;
    color: var(--text-primary);
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: var(--text-muted);
    opacity: 0.7;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--accent-green);
    box-shadow: 0 0 0 4px rgba(74, 124, 42, 0.15);
    background: rgba(74, 124, 42, 0.03);
    transform: translateY(-2px);
}

.contact-form textarea {
    resize: vertical;
    min-height: 140px;
    line-height: 1.6;
}

.contact-form .btn-primary {
    margin-top: 0.5rem;
    padding: 16px 32px;
    font-size: 1.05rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.contact-form .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(74, 124, 42, 0.4);
}

.contact-image-section {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.4);
    border: 1px solid var(--dark-border);
    height: fit-content;
    background: var(--dark-card);
    padding: 1.5rem;
    transition: transform 0.3s ease;
}

.contact-image-section:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.contact-image-section img {
    width: 100%;
    height: auto;
    display: block;
    margin: 0;
    padding: 0;
    border-radius: 16px;
    transition: transform 0.5s ease;
}

.contact-image-section:hover img {
    transform: scale(1.02);
}


.contact-badge {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-green);
    color: var(--text-primary);
    padding: 12px 28px;
    border-radius: 35px;
    font-size: 0.9rem;
    font-weight: 600;
    box-shadow: 0 8px 25px rgba(74, 124, 42, 0.5);
    white-space: nowrap;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    z-index: 10;
}

.contact-badge:hover {
    transform: translateX(-50%) scale(1.05);
    box-shadow: 0 10px 30px rgba(74, 124, 42, 0.6);
}

.cta-section {
    background: var(--gradient-dark);
    text-align: center;
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(74, 124, 42, 0.1) 0%, transparent 70%);
}

.cta-content {
    position: relative;
    z-index: 2;
}

.cta-content h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 800;
}

.cta-content p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: var(--dark-bg);
    border-top: 1px solid var(--dark-border);
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-logo {
    height: 120px;
    width: auto;
    max-width: 180px;
    object-fit: contain;
    margin-bottom: 1rem;
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

.footer-logo:hover {
    opacity: 1;
}

.footer-brand p {
    color: var(--text-muted);
    margin-top: 0.5rem;
}

.footer-links h4,
.footer-social h4 {
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    font-weight: 700;
}

.footer-links ul {
    list-style: none;
}

.footer-links ul li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--accent-green);
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.social-link {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.social-link:hover {
    color: var(--accent-green);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--dark-border);
    color: var(--text-muted);
}

/* ============================================
   LIGHTBOX
   ============================================ */
.lightbox {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.98);
}

.lightbox.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-content {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
    border-radius: 10px;
    box-shadow: 0 0 50px rgba(74, 124, 42, 0.3);
}

.lightbox-close {
    position: absolute;
    top: 30px;
    right: 40px;
    color: var(--text-primary);
    font-size: 50px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s ease;
    z-index: 2001;
}

.lightbox-close:hover {
    color: var(--accent-green);
}

.lightbox-nav {
    position: absolute;
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 30px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2001;
}

.lightbox-prev,
.lightbox-next {
    background: rgba(74, 124, 42, 0.3);
    color: var(--text-primary);
    border: 2px solid var(--accent-green);
    padding: 20px 25px;
    font-size: 28px;
    cursor: pointer;
    border-radius: 10px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.lightbox-prev:hover,
.lightbox-next:hover {
    background: var(--accent-green);
    transform: scale(1.1);
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu,
    .nav-cta {
        display: none;
    }

    .nav-menu.active {
        display: flex;
        flex-direction: column;
        position: fixed;
        top: 100px;
        left: 0;
        width: 100%;
        background: var(--dark-card);
        padding: 2rem;
        gap: 1.5rem;
        border-bottom: 1px solid var(--dark-border);
        z-index: 100;
    }

    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
        padding: 2rem 0 4rem;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.5rem;
    }

    .hero-stats {
        justify-content: center;
        gap: 2rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .features-grid,
    .testimonials-grid,
    .video-grid {
        grid-template-columns: 1fr;
    }

    .benefit-item {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .benefit-item.reverse {
        direction: ltr;
    }

    .specs-grid {
        grid-template-columns: 1fr;
    }

    .contact-content-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
        align-items: stretch;
    }

    .contact-form-section {
        padding: 2rem;
    }

    .contact-form-section h3 {
        font-size: 1.6rem;
        margin-bottom: 1.5rem;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .contact-image-section {
        padding: 1rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .hero-stats {
        flex-direction: column;
        gap: 1.5rem;
    }

    /* Clients Section Mobile */
    .clients-section {
        padding: 3rem 0;
    }

    .slider {
        height: 80px;
    }

    .slide {
        height: 70px;
        width: 130px;
        padding: 8px;
    }

    .slide img {
        max-height: 60px;
    }

    .slide-track {
        width: calc(130px * 34);
        gap: 1rem;
    }

    @keyframes scroll {
        0% {
            transform: translateX(0);
        }
        100% {
            transform: translateX(calc(-130px * 17));
        }
    }
}
