:root {
    --primary: #367C2B;
    --primary-light: #4CAF50;
    --primary-dark: #2a5f21;
    --accent: #367C2B;
    --bg-dark: #0d0d1a;
    --bg-card: #151528;
    --bg-card-hover: #1a1a35;
    --text-primary: #ffffff;
    --text-secondary: #a0a0b0;
    --text-muted: #6b6b7b;
    --border: rgba(54, 124, 43, 0.2);
    --border-light: rgba(255, 255, 255, 0.1);
    --glass: rgba(21, 21, 40, 0.8);
    --gradient: linear-gradient(135deg, #367C2B 0%, #1a4d17 100%);
    --shadow: 0 4px 24px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.5);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

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

a {
    color: inherit;
    text-decoration: none;
}

ul {
    list-style: none;
}

/* Typography */
.section-tag {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(54, 124, 43, 0.15);
    border: 1px solid var(--border);
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--primary-light);
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.section-title {
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(1.75rem, 4vw, 2.75rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-header .section-subtitle {
    margin-left: auto;
    margin-right: auto;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    text-decoration: none;
}

.btn-primary {
    background: var(--gradient);
    color: white;
    box-shadow: 0 4px 16px rgba(54, 124, 43, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(54, 124, 43, 0.5);
}

.btn-secondary {
    background: transparent;
    color: var(--text-primary);
    border: 1px solid var(--border-light);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--primary);
}

.btn-full {
    width: 100%;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 0;
    background: rgba(13, 13, 26, 0.9);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-light);
    transition: all 0.3s ease;
}

.navbar.scrolled {
    padding: 12px 0;
    background: rgba(13, 13, 26, 0.95);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-img {
    height: 50px;
    width: auto;
    display: block;
}

.logo-text {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.15rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    line-height: 1;
    color: var(--primary);
}

.footer-logo {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 8px;
}

.footer-logo-img {
    height: 70px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-links a {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-secondary);
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--text-primary);
}

.nav-cta {
    padding: 10px 20px;
    background: var(--primary);
    border-radius: 6px;
    color: white !important;
    font-weight: 600;
}

.nav-cta:hover {
    background: var(--primary-light);
}

.nav-signin {
    color: var(--primary-light) !important;
    font-weight: 600;
}

.nav-signin:hover {
    color: var(--text-primary) !important;
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-menu-btn span {
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 24px 80px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(ellipse at 20% 50%, rgba(54, 124, 43, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 20%, rgba(54, 124, 43, 0.1) 0%, transparent 40%),
        radial-gradient(ellipse at 50% 80%, rgba(54, 124, 43, 0.08) 0%, transparent 50%),
        var(--bg-dark);
}

.grid-overlay {
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(rgba(54, 124, 43, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(54, 124, 43, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    animation: gridMove 20s linear infinite;
}

@keyframes gridMove {
    0% { transform: translate(0, 0); }
    100% { transform: translate(60px, 60px); }
}

.floating-particles {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--primary);
    border-radius: 50%;
    opacity: 0.3;
    animation: float 15s infinite ease-in-out;
}

@keyframes float {
    0%, 100% { transform: translateY(100vh) scale(0); opacity: 0; }
    10% { opacity: 0.3; }
    90% { opacity: 0.3; }
    100% { transform: translateY(-100vh) scale(1); opacity: 0; }
}

.hero-content {
    position: relative;
    text-align: center;
    max-width: 900px;
    animation: fadeInUp 1s ease-out;
}

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

.hero-badge {
    display: inline-block;
    padding: 8px 20px;
    background: var(--glass);
    border: 1px solid var(--border);
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--primary-light);
    margin-bottom: 24px;
    animation: fadeInUp 1s ease-out 0.2s both;
}

.hero-title {
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(2.5rem, 7vw, 4.5rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
}

.title-line {
    display: block;
}

.title-line.accent {
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto 40px;
    animation: fadeInUp 1s ease-out 0.4s both;
}

.hero-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 64px;
    animation: fadeInUp 1s ease-out 0.6s both;
}

.hero-stats {
    display: flex;
    gap: 48px;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease-out 0.8s both;
}

.stat {
    text-align: center;
}

.stat-value {
    display: block;
    font-family: 'Orbitron', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-light);
}

.stat-label {
    font-size: 0.875rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--text-muted);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    animation: bounce 2s infinite;
}

.scroll-arrow {
    width: 20px;
    height: 20px;
    border-right: 2px solid var(--primary);
    border-bottom: 2px solid var(--primary);
    transform: rotate(45deg);
}

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

/* Services Section */
.services {
    padding: 120px 0;
    background: var(--bg-dark);
    position: relative;
}

.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border), transparent);
}

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

.service-card {
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: 16px;
    padding: 32px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    background: var(--bg-card-hover);
    border-color: var(--border);
    box-shadow: var(--shadow-lg);
}

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

.service-icon {
    width: 64px;
    height: 64px;
    background: rgba(54, 124, 43, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: var(--primary-light);
}

.service-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 12px;
}

.service-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* Why Us Section */
.why-us {
    padding: 120px 0;
    background: linear-gradient(180deg, var(--bg-dark) 0%, var(--bg-card) 100%);
}

/* Drone Comparison Card (under Why Choose Us) */
.comparison-section {
    margin-top: 24px;
    padding: 16px;
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: 12px;
}
.comparison-chart {
    width: 100%;
    height: auto;
}

.why-us-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.why-us-intro {
    font-size: 1.125rem;
    color: var(--text-secondary);
    margin-bottom: 32px;
}

.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.benefits-list li {
    display: flex;
    gap: 16px;
}

.benefit-icon {
    width: 32px;
    height: 32px;
    background: rgba(54, 124, 43, 0.15);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-light);
    font-weight: 700;
    flex-shrink: 0;
}

.benefit-content h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 4px;
}

.benefit-content p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.visual-card {
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: 20px;
    overflow: visible;
}

.visual-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    background: linear-gradient(135deg, rgba(54, 124, 43, 0.1) 0%, transparent 100%);
    color: var(--text-muted);
}

.visual-placeholder svg {
    opacity: 0.3;
}

/* Service Area Section */
.service-area {
    padding: 120px 0;
    background: var(--bg-dark);
}

.area-map {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 48px;
    align-items: start;
}

.map-visual {
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: 20px;
    aspect-ratio: 16/10;
    overflow: hidden;
    position: relative;
}

.map-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(54, 124, 43, 0.05) 0%, transparent 50%);
    position: relative;
}

.map-dot {
    position: absolute;
    width: 12px;
    height: 12px;
    background: var(--primary);
    border-radius: 50%;
    left: var(--x, 50%);
    top: var(--y, 50%);
    transform: translate(-50%, -50%);
    box-shadow: 0 0 20px var(--primary);
    animation: pulse 2s infinite;
}

.map-dot.freeport {
    width: 20px;
    height: 20px;
    background: var(--primary-light);
    z-index: 2;
}

.map-lines {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.area-list h3 {
    font-size: 1.25rem;
    margin-bottom: 20px;
}

.counties-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.county {
    padding: 8px 16px;
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: 8px;
    font-size: 0.9rem;
    color: var(--text-secondary);
    transition: all 0.3s ease;
}

.county:hover {
    border-color: var(--primary);
    color: var(--primary-light);
}

/* Apply Section */
.apply-section {
    padding: 120px 0;
    background: linear-gradient(180deg, var(--bg-dark) 0%, var(--bg-card) 100%);
}

.apply-content {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 64px;
    align-items: start;
}

.apply-text .section-subtitle {
    margin: 0 0 32px;
    text-align: left;
}

.apply-text p {
    color: var(--text-secondary);
    margin-bottom: 32px;
}

.apply-contact-mini {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-mini-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-secondary);
}

.contact-mini-item svg {
    color: var(--primary-light);
}

.apply-form {
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: 20px;
    padding: 40px;
}

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

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

.form-group label {
    display: block;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    background: var(--bg-dark);
    border: 1px solid var(--border-light);
    border-radius: 10px;
    color: var(--text-primary);
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(54, 124, 43, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-muted);
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%236b6b7b' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 18px;
}

.form-group select option {
    background: var(--bg-dark);
}

.radio-group {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.radio-label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    color: var(--text-secondary);
}

.radio-label input {
    display: none;
}

.radio-custom {
    width: 20px;
    height: 20px;
    border: 2px solid var(--border-light);
    border-radius: 50%;
    position: relative;
    transition: all 0.3s ease;
}

.radio-label input:checked + .radio-custom {
    border-color: var(--primary);
}

.radio-label input:checked + .radio-custom::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 10px;
    height: 10px;
    background: var(--primary);
    border-radius: 50%;
}

.form-note {
    text-align: center;
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: 16px;
}

/* Contact Section */
.contact-section {
    padding: 80px 0;
    background: var(--bg-dark);
    border-top: 1px solid var(--border-light);
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.contact-card {
    text-align: center;
    padding: 32px;
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: 16px;
    transition: all 0.3s ease;
}

.contact-card:hover {
    border-color: var(--border);
    transform: translateY(-4px);
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: rgba(54, 124, 43, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    color: var(--primary-light);
}

.contact-card h3 {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
    margin-bottom: 8px;
}

.contact-card a,
.contact-card p {
    font-size: 1.1rem;
    color: var(--text-primary);
    font-weight: 500;
}

.contact-card .contact-note {
    display: block;
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 4px;
}

/* Footer */
.footer {
    padding: 80px 0 40px;
    background: var(--bg-card);
    border-top: 1px solid var(--border-light);
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 2fr;
    gap: 64px;
    margin-bottom: 48px;
}

.footer-brand {
    text-align: center;
}

.footer-brand p {
    color: var(--text-secondary);
    margin-top: 20px;
    max-width: 300px;
    font-size: 0.95rem;
    margin-left: auto;
    margin-right: auto;
}

.footer-links {
    display: flex;
    gap: 64px;
}

.footer-column h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.footer-column ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-column a {
    color: var(--text-secondary);
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: var(--primary-light);
}

.footer-bottom {
    text-align: center;
    padding-top: 32px;
    border-top: 1px solid var(--border-light);
}

.footer-bottom p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Form Success Modal */
.form-success {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.form-success.active {
    opacity: 1;
    visibility: visible;
}

.success-content {
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: 20px;
    padding: 48px;
    text-align: center;
    max-width: 400px;
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.form-success.active .success-content {
    transform: scale(1);
}

.success-icon {
    width: 80px;
    height: 80px;
    background: rgba(54, 124, 43, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    font-size: 2.5rem;
    color: var(--primary-light);
}

.success-content h3 {
    font-size: 1.5rem;
    margin-bottom: 12px;
}

.success-content p {
    color: var(--text-secondary);
    margin-bottom: 24px;
}

/* Responsive */
@media (max-width: 1200px) {
    .container {
        padding: 0 20px;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .why-us-content {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .apply-content {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .area-map {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .footer-links {
        gap: 48px;
    }
}

@media (max-width: 992px) {
    .nav-links {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: rgba(13, 13, 26, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 20px;
        gap: 0;
        border-bottom: 1px solid var(--border-light);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }
    
    .nav-links.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .nav-links li {
        width: 100%;
        text-align: center;
    }
    
    .nav-links a {
        display: block;
        padding: 16px;
        border-bottom: 1px solid var(--border-light);
    }
    
    .nav-links li:last-child a {
        border-bottom: none;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    .hero {
        padding: 120px 20px 60px;
    }
    
    .hero-title {
        font-size: clamp(2rem, 6vw, 3rem);
    }
    
    .hero-stats {
        gap: 24px;
    }
    
    .stat-value {
        font-size: 1.75rem;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .service-card {
        padding: 24px;
    }
    
    .contact-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .apply-form {
        padding: 32px;
    }
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 60px;
    }
    
    .hero {
        padding: 100px 16px 50px;
    }
    
    .hero-content {
        padding: 0 8px;
    }
    
    .hero-badge {
        padding: 6px 14px;
        font-size: 0.8rem;
    }
    
    .hero-title {
        font-size: clamp(1.75rem, 5vw, 2.5rem);
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }
    
    .hero-actions .btn {
        width: 100%;
        max-width: 280px;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 20px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .service-card {
        padding: 20px;
    }
    
    .service-icon {
        width: 48px;
        height: 48px;
    }
    
    .service-icon svg {
        width: 24px;
        height: 24px;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-card {
        padding: 20px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .apply-form {
        padding: 20px;
    }
    
    .radio-group {
        flex-direction: column;
        gap: 12px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 24px;
    }
    
    .footer-brand p {
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .navbar {
        padding: 12px 0;
    }
    
    .logo-img {
        height: 40px;
    }
    
    .logo-text {
        font-size: 1rem;
    }
    
    .hero {
        padding: 90px 12px 40px;
    }
    
    .hero-title {
        font-size: 1.5rem;
    }
    
    .stat-value {
        font-size: 1.5rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .section-tag {
        padding: 6px 12px;
        font-size: 0.75rem;
    }
    
    .btn {
        padding: 12px 20px;
        font-size: 0.9rem;
    }
    
    .service-card h3 {
        font-size: 1.1rem;
    }
    
    .service-card p {
        font-size: 0.85rem;
    }
}

/* Animation Classes */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Field Location Input */
.field-location-input {
    display: flex;
    gap: 8px;
}

.field-location-input input {
    flex: 1;
    min-width: 0;
}

/* Map Modal */
.map-modal {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    padding: 20px;
}

.map-modal.active {
    display: flex;
}

.map-modal-content {
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: 16px;
    width: 100%;
    max-width: 900px;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.map-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 20px;
    border-bottom: 1px solid var(--border-light);
}

.map-modal-header h3 {
    margin: 0;
    font-family: 'Orbitron', sans-serif;
    font-size: 1.1rem;
    color: var(--text-primary);
}

.map-close-btn {
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0;
    line-height: 1;
}

.map-close-btn:hover {
    color: var(--text-primary);
}

.map-modal-body {
    padding: 16px 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 12px;
    overflow: hidden;
}

.map-instructions {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin: 0;
}

#map {
    flex: 1;
    min-height: 400px;
    border-radius: 8px;
    z-index: 1;
}

.map-info {
    background: rgba(54, 124, 43, 0.15);
    padding: 10px 16px;
    border-radius: 8px;
    text-align: center;
}

#pinCoords {
    color: var(--primary-light);
    font-size: 0.9rem;
    font-family: monospace;
}

.map-modal-footer {
    display: flex;
    justify-content: flex-end;
    gap: 12px;
    padding: 16px 20px;
    border-top: 1px solid var(--border-light);
}

@media (max-width: 768px) {
    .map-modal-content {
        max-height: 95vh;
    }
    
    #map {
        min-height: 300px;
    }
    
    .map-modal-footer {
        flex-direction: column;
    }
    
    .map-modal-footer .btn {
        width: 100%;
    }
}

/* Application Page */
.field-info-section {
    margin: 24px 0;
    padding: 24px;
    background: rgba(54, 124, 43, 0.05);
    border: 1px solid var(--border-light);
    border-radius: 16px;
}

.field-info-section .section-subtitle {
    font-family: 'Orbitron', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0 0 12px;
}

.field-info-section .section-intro {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin: 0 0 20px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border-light);
}

.field-group {
    background: var(--bg-dark);
    border: 1px solid var(--border-light);
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 16px;
}

.field-group:last-of-type {
    margin-bottom: 16px;
}

.field-group-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--border-light);
}

.field-group-header span {
    font-weight: 600;
    color: var(--primary-light);
    font-size: 0.95rem;
}

.remove-field-btn {
    background: none;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
    padding: 4px;
    border-radius: 4px;
    transition: all 0.2s ease;
}

.remove-field-btn:hover {
    color: #ef4444;
    background: rgba(239, 68, 68, 0.1);
}

.add-field-btn {
    width: 100%;
    margin-top: 8px;
}

/* Chemical Selector */
.chemical-selector {
    display: flex;
    gap: 8px;
    margin-bottom: 8px;
}

.chemical-input-wrapper {
    flex: 1;
    position: relative;
}

.chemical-search {
    width: 100%;
    padding: 10px 14px;
    background: var(--bg-dark);
    border: 1px solid var(--border-light);
    border-radius: 8px;
    color: var(--text-primary);
    font-size: 0.9rem;
}

.chemical-search:focus {
    outline: none;
    border-color: var(--primary-light);
}

.chemical-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: 8px;
    max-height: 250px;
    overflow-y: auto;
    z-index: 100;
    display: none;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.chemical-dropdown.active {
    display: block;
}

.chemical-type-header {
    padding: 8px 12px;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--primary-light);
    text-transform: uppercase;
    background: rgba(54, 124, 43, 0.1);
    border-bottom: 1px solid var(--border-light);
}

.chemical-option {
    padding: 10px 12px;
    cursor: pointer;
    font-size: 0.9rem;
    color: var(--text-secondary);
    transition: background 0.2s ease;
}

.chemical-option:hover {
    background: rgba(54, 124, 43, 0.1);
    color: var(--text-primary);
}

.chemical-no-results {
    padding: 16px;
    text-align: center;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.selected-chemicals {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 8px;
}

.chemical-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 10px;
    background: rgba(54, 124, 43, 0.15);
    color: var(--primary-light);
    border-radius: 16px;
    font-size: 0.8rem;
}

.chemical-tag button {
    background: none;
    border: none;
    color: var(--primary-light);
    cursor: pointer;
    padding: 0;
    font-size: 1rem;
    line-height: 1;
    opacity: 0.7;
}

.chemical-tag button:hover {
    opacity: 1;
}

.label-hint {
    font-size: 0.8rem;
    color: var(--text-muted);
    font-weight: 400;
}

.custom-chemical-input {
    display: flex;
    gap: 8px;
    margin-top: 12px;
    padding: 12px;
    background: rgba(54, 124, 43, 0.1);
    border: 1px dashed var(--primary-light);
    border-radius: 8px;
}

.custom-chemical-input .custom-chem-field {
    flex: 1;
    padding: 8px 12px;
    background: var(--bg-dark);
    border: 1px solid var(--border-light);
    border-radius: 6px;
    color: var(--text-primary);
    font-size: 0.9rem;
}

.custom-chemical-input .custom-chem-field:focus {
    outline: none;
    border-color: var(--primary-light);
}

.application-hero {
    position: relative;
    min-height: 35vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 140px 24px 60px;
    text-align: center;
    overflow: hidden;
}

.application-hero .hero-bg {
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(ellipse at 30% 50%, rgba(54, 124, 43, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 70% 30%, rgba(54, 124, 43, 0.1) 0%, transparent 40%),
        var(--bg-dark);
}

.application-hero-content {
    position: relative;
    max-width: 600px;
}

.application-hero-content h1 {
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 16px;
}

.application-hero-content p {
    font-size: 1.1rem;
    color: var(--text-secondary);
}

.pricing-note {
    font-size: 0.85rem !important;
    color: var(--text-muted) !important;
    margin-top: 16px;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-light);
    border-radius: 8px;
    line-height: 1.5;
}

.application-section {
    padding: 80px 0 120px;
    background: var(--bg-dark);
}

.application-content {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 40px;
    align-items: start;
}

.application-sidebar {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.sidebar-card {
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: 16px;
    padding: 24px;
}

.sidebar-card h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.sidebar-card .benefits-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.sidebar-card .benefits-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.sidebar-card .benefit-icon {
    color: var(--primary-light);
    font-weight: 700;
    flex-shrink: 0;
}

.sidebar-card .contact-info {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.sidebar-card .contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
}

.sidebar-card .contact-item svg {
    color: var(--primary-light);
    flex-shrink: 0;
}

.sidebar-card .contact-item a {
    color: var(--text-secondary);
    text-decoration: none;
}

.sidebar-card .contact-item a:hover {
    color: var(--primary-light);
}

.sidebar-card .contact-item-text {
    display: flex;
    flex-direction: column;
}

.sidebar-card .contact-note {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-top: 2px;
}

.application-form-container {
    position: relative;
}

.application-form {
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: 20px;
    padding: 40px;
}

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

.application-form .form-group {
    margin-bottom: 20px;
}

.application-form label {
    display: block;
    margin-bottom: 8px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-primary);
}

.application-form input,
.application-form select,
.application-form textarea {
    width: 100%;
    padding: 12px 16px;
    background: var(--bg-dark);
    border: 1px solid var(--border-light);
    border-radius: 10px;
    color: var(--text-primary);
    font-size: 0.95rem;
    transition: border-color 0.3s ease;
}

.application-form input:focus,
.application-form select:focus,
.application-form textarea:focus {
    outline: none;
    border-color: var(--primary-light);
}

.application-form .radio-group {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.application-form .radio-label {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.application-form .radio-label input {
    width: auto;
}

.application-form .form-note {
    text-align: center;
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: 16px;
}

.form-success {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.8);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 1000;
}

.form-success.active {
    display: flex;
}

.success-content {
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: 20px;
    padding: 48px;
    text-align: center;
    max-width: 400px;
}

.success-content svg {
    color: var(--primary-light);
    margin-bottom: 24px;
}

.success-content h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.5rem;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.success-content p {
    color: var(--text-secondary);
    margin-bottom: 24px;
}

/* Responsive */
@media (max-width: 1024px) {
    .application-content {
        grid-template-columns: 1fr;
    }
    
    .application-sidebar {
        flex-direction: row;
        flex-wrap: wrap;
    }
    
    .sidebar-card {
        flex: 1;
        min-width: 280px;
    }
}

@media (max-width: 768px) {
    .application-hero {
        padding: 120px 16px 40px;
        min-height: 30vh;
    }
    
    .application-section {
        padding: 40px 0 80px;
    }
    
    .application-form {
        padding: 24px;
    }
    
    .application-form .form-row {
        grid-template-columns: 1fr;
    }
    
    .application-sidebar {
        flex-direction: column;
    }
    
    .field-info-section {
        padding: 16px;
    }
    
    .field-group {
        padding: 16px;
    }
    
    .field-group-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
    
    .add-field-btn {
        width: 100%;
    }
    
    .success-content {
        padding: 32px 24px;
        margin: 16px;
    }
    
    .modal-content {
        width: calc(100% - 24px);
        margin: 12px;
    }
    
    .map-modal-content {
        max-height: calc(100vh - 24px);
    }
    
    #map {
        min-height: 300px;
    }
    
    .map-modal-footer {
        flex-direction: column;
    }
    
    .map-modal-footer .btn {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .application-hero-content h1 {
        font-size: 1.5rem;
    }
    
    .application-form {
        padding: 16px;
    }
    
    .sidebar-card {
        min-width: 100%;
    }
    
    .sidebar-card h3 {
        font-size: 0.9rem;
    }
    
    .sidebar-card .benefits-list li {
        font-size: 0.85rem;
    }
    
    .chemical-selector {
        flex-direction: column;
    }
    
    .chemical-input-wrapper {
        width: 100%;
    }
    
    .selected-chemicals {
        flex-wrap: wrap;
    }
    
    .chemical-tag {
        font-size: 0.75rem;
    }
    
    .custom-chemical-input {
        flex-direction: column;
    }
    
    .custom-chemical-input .custom-chem-field {
        width: 100%;
    }
}
