/*
Theme Name: NextEnergie
Theme URI: https://nextenergie.us
Author: NextEnergie
Author URI: https://nextenergie.us
Description: A futuristic, high-performance WordPress theme for NextEnergie - Next-Generation Drilling Systems.
Version: 1.0.1
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: nextenergie
Tags: one-column, custom-menu, featured-images
*/

/* ============================================
   RESET & BASE
   ============================================ */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
}

body {
    font-family: 'Exo 2', 'Segoe UI', sans-serif;
    font-size: 1rem;
    line-height: 1.7;
    color: #ffffff;
    background-color: #0a0a0a;
    min-height: 100vh;
    overflow-x: hidden;
}

a {
    color: #8BC53F;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #A4D65E;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul, ol {
    list-style: none;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Rajdhani', 'Segoe UI', sans-serif;
    font-weight: 600;
    line-height: 1.2;
    color: #ffffff;
}

h1 { font-size: 3.5rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 1.75rem; }
h4 { font-size: 1.25rem; }

/* ============================================
   LAYOUT
   ============================================ */
.container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section {
    padding: 6rem 0;
}

.section--dark {
    background: #111111;
}

/* ============================================
   ANIMATED BACKGROUND
   ============================================ */
.ne-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
    overflow: hidden;
}

.ne-background__grid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(139, 197, 63, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(139, 197, 63, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
}

.ne-background__glow {
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    filter: blur(100px);
    animation: glowPulse 8s ease-in-out infinite alternate;
}

.ne-background__glow--1 {
    top: -200px;
    right: -200px;
    background: radial-gradient(circle, rgba(139, 197, 63, 0.15) 0%, transparent 70%);
}

.ne-background__glow--2 {
    bottom: -200px;
    left: -200px;
    background: radial-gradient(circle, rgba(0, 188, 212, 0.1) 0%, transparent 70%);
    animation-delay: -4s;
}

@keyframes glowPulse {
    0% { opacity: 0.3; transform: scale(1); }
    100% { opacity: 0.6; transform: scale(1.1); }
}

/* ============================================
   HEADER
   ============================================ */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 80px;
    z-index: 1000;
    background: rgba(10, 10, 10, 0.9);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

.site-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

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

.site-logo__text {
    font-family: 'Orbitron', 'Segoe UI', sans-serif;
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: 0.02em;
}

.text-cyan {
    color: #00BCD4;
}

.text-lime {
    color: #8BC53F;
}

/* Navigation */
.main-nav__list {
    display: flex;
    align-items: center;
    gap: 3rem;
}

.main-nav__link {
    font-family: 'Rajdhani', sans-serif;
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.7);
    position: relative;
    padding: 0.5rem 0;
}

.main-nav__link:hover,
.main-nav__link.active {
    color: #ffffff;
}

.main-nav__link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #8BC53F, #00BCD4);
    transition: width 0.3s ease;
}

.main-nav__link:hover::after,
.main-nav__link.active::after {
    width: 100%;
}

/* Mobile Toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.menu-toggle span {
    display: block;
    width: 28px;
    height: 2px;
    background: #ffffff;
    transition: 0.3s ease;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    font-family: 'Rajdhani', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn--primary {
    background: linear-gradient(135deg, #8BC53F, #00BCD4);
    color: #0a0a0a;
}

.btn--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 40px rgba(139, 197, 63, 0.3);
    color: #0a0a0a;
}

.btn--outline {
    background: transparent;
    color: #ffffff;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn--outline:hover {
    border-color: #8BC53F;
    color: #8BC53F;
}

.btn svg {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.btn:hover svg {
    transform: translateX(4px);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: 80px;
    overflow: hidden;
}

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

.hero__content {
    max-width: 800px;
}

.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.85rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: #8BC53F;
    margin-bottom: 2rem;
    padding: 0.5rem 1rem;
    border: 1px solid rgba(139, 197, 63, 0.3);
    border-radius: 4px;
    animation: fadeSlideUp 0.8s ease-out;
}

.hero__badge-dot {
    width: 8px;
    height: 8px;
    background: #8BC53F;
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

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

.hero__title {
    font-family: 'Orbitron', sans-serif;
    font-size: 4rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    animation: fadeSlideUp 0.8s ease-out 0.1s backwards;
}

.hero__title .highlight {
    color: #8BC53F;
}

.hero__subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.7);
    max-width: 600px;
    margin-bottom: 2.5rem;
    line-height: 1.8;
    animation: fadeSlideUp 0.8s ease-out 0.2s backwards;
}

.hero__cta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    animation: fadeSlideUp 0.8s ease-out 0.3s backwards;
}

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

/* Hero Circles */
.hero__visuals {
    position: absolute;
    right: 5%;
    top: 50%;
    transform: translateY(-50%);
    width: 500px;
    height: 500px;
    pointer-events: none;
}

.hero__circles {
    position: absolute;
    width: 100%;
    height: 100%;
}

.hero__circle {
    position: absolute;
    border-radius: 50%;
    border: 1px solid #8BC53F;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: circlePulse 3s ease-in-out infinite;
}

.hero__circle--1 {
    width: 400px;
    height: 400px;
    opacity: 0.3;
    animation-delay: 0s;
}

.hero__circle--2 {
    width: 300px;
    height: 300px;
    border-color: #00BCD4;
    opacity: 0.4;
    animation-delay: 0.5s;
}

.hero__circle--3 {
    width: 200px;
    height: 200px;
    opacity: 0.5;
    animation-delay: 1s;
}

.hero__circle--4 {
    width: 100px;
    height: 100px;
    background: rgba(139, 197, 63, 0.1);
    opacity: 0.7;
    animation-delay: 1.5s;
}

.hero__circle-center {
    position: absolute;
    width: 30px;
    height: 30px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #8BC53F;
    border-radius: 50%;
    box-shadow: 0 0 30px rgba(139, 197, 63, 0.8);
}

@keyframes circlePulse {
    0%, 100% { 
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.4;
    }
    50% { 
        transform: translate(-50%, -50%) scale(1.08);
        opacity: 0.7;
    }
}

/* ============================================
   STATS SECTION
   ============================================ */
.stats {
    padding: 4rem 0;
    background: rgba(139, 197, 63, 0.05);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.stats__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    text-align: center;
}

.stat__value {
    font-family: 'Orbitron', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    color: #8BC53F;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat:nth-child(2) .stat__value,
.stat:nth-child(4) .stat__value {
    color: #00BCD4;
}

.stat__suffix {
    font-size: 2rem;
}

.stat__label {
    font-family: 'Rajdhani', sans-serif;
    font-size: 0.85rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
}

/* ============================================
   MISSION SECTION
   ============================================ */
.mission {
    padding: 6rem 0;
    text-align: center;
}

.mission__label {
    display: inline-block;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.8rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: #8BC53F;
    margin-bottom: 1rem;
}

.mission__title {
    font-family: 'Orbitron', sans-serif;
    margin-bottom: 1.5rem;
}

.mission__text {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.7);
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.9;
}

/* ============================================
   FEATURES SECTION
   ============================================ */
.features {
    padding: 6rem 0;
    background: #111111;
}

.features__header {
    text-align: center;
    margin-bottom: 4rem;
}

.features__label {
    display: inline-block;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.8rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: #8BC53F;
    margin-bottom: 1rem;
}

.features__title {
    font-family: 'Orbitron', sans-serif;
}

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

.feature-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 2.5rem;
    transition: all 0.3s ease;
}

.feature-card:hover {
    border-color: rgba(139, 197, 63, 0.3);
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.feature-card__icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(139, 197, 63, 0.1);
    border: 1px solid rgba(139, 197, 63, 0.3);
    border-radius: 12px;
    margin-bottom: 1.5rem;
}

.feature-card__icon svg {
    width: 28px;
    height: 28px;
    stroke: #8BC53F;
    fill: none;
    stroke-width: 2;
}

.feature-card__title {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.feature-card__text {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* ============================================
   PROCESS SECTION
   ============================================ */
.process {
    padding: 6rem 0;
}

.process__header {
    text-align: center;
    margin-bottom: 4rem;
}

.process__label {
    display: inline-block;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.8rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: #8BC53F;
    margin-bottom: 1rem;
}

.process__title {
    font-family: 'Orbitron', sans-serif;
}

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

.process-step {
    text-align: center;
    padding: 2rem;
    position: relative;
}

.process-step__number {
    font-family: 'Orbitron', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    color: rgba(139, 197, 63, 0.2);
    margin-bottom: 1rem;
}

.process-step__title {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: #8BC53F;
}

.process-step__text {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    line-height: 1.7;
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta {
    padding: 6rem 0;
    background: #111111;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 1px;
    height: 100px;
    background: linear-gradient(to bottom, transparent, #8BC53F);
}

.cta__title {
    font-family: 'Orbitron', sans-serif;
    margin-bottom: 1rem;
}

.cta__text {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
    max-width: 600px;
    margin: 0 auto 2.5rem;
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
    background: #1a1a1a;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 4rem 0 2rem;
}

.footer__grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer__logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.footer__logo img {
    height: 40px;
}

.footer__logo-text {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.25rem;
    font-weight: 800;
    letter-spacing: 0.02em;
}

.footer__tagline {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
}

.footer__heading {
    font-family: 'Rajdhani', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 1.5rem;
}

.footer__links li {
    margin-bottom: 0.75rem;
}

.footer__links a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.footer__links a:hover {
    color: #8BC53F;
}

.footer__bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer__copyright {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.85rem;
}

.footer__legal {
    display: flex;
    gap: 2rem;
}

.footer__legal a {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.85rem;
}

.footer__legal a:hover {
    color: #8BC53F;
}

/* ============================================
   UTILITIES
   ============================================ */
.screen-reader-text {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

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

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
    .hero__visuals {
        width: 350px;
        height: 350px;
        right: -50px;
        opacity: 0.5;
    }
    
    .hero__circle--1 { width: 280px; height: 280px; }
    .hero__circle--2 { width: 210px; height: 210px; }
    .hero__circle--3 { width: 140px; height: 140px; }
    .hero__circle--4 { width: 70px; height: 70px; }
    
    .features__grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .process__grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer__grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    h1 { font-size: 2.5rem; }
    h2 { font-size: 2rem; }
    
    .main-nav {
        position: fixed;
        top: 80px;
        left: 0;
        width: 100%;
        height: calc(100vh - 80px);
        background: #0a0a0a;
        padding: 2rem;
        transform: translateX(-100%);
        transition: transform 0.3s ease;
    }
    
    .main-nav.active {
        transform: translateX(0);
    }
    
    .main-nav__list {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.5rem;
    }
    
    .main-nav__link {
        font-size: 1.5rem;
    }
    
    .menu-toggle {
        display: flex;
    }
    
    .hero__title {
        font-size: 2.5rem;
    }
    
    .hero__content {
        text-align: center;
    }
    
    .hero__cta {
        justify-content: center;
    }
    
    .hero__visuals {
        width: 250px;
        height: 250px;
        right: 50%;
        top: 25%;
        transform: translate(50%, -50%);
        opacity: 0.25;
    }
    
    .stats__grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .features__grid,
    .process__grid {
        grid-template-columns: 1fr;
    }
    
    .footer__grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer__bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }
    
    .hero__title {
        font-size: 2rem;
    }
    
    .stat__value {
        font-size: 2rem;
    }
    
    .btn {
        width: 100%;
        justify-content: center;
    }
}

/* ============================================
   PAGE TEMPLATES
   ============================================ */
.page-hero {
    padding: 10rem 0 4rem;
    text-align: center;
    background: linear-gradient(180deg, rgba(139, 197, 63, 0.05) 0%, transparent 100%);
}

.page-hero__title {
    font-family: 'Orbitron', sans-serif;
    margin-bottom: 1rem;
}

.page-hero__subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.7);
    max-width: 600px;
    margin: 0 auto;
}

/* Services Page */
.capabilities {
    padding: 6rem 0;
}

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

.capability-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 2.5rem;
    text-align: center;
    transition: all 0.3s ease;
}

.capability-card:hover {
    border-color: rgba(139, 197, 63, 0.3);
    transform: translateY(-4px);
}

.capability-card--featured {
    border-color: rgba(139, 197, 63, 0.3);
    background: rgba(139, 197, 63, 0.05);
}

.capability-card__icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(139, 197, 63, 0.1);
    border-radius: 50%;
    margin: 0 auto 1.5rem;
}

.capability-card__icon svg {
    width: 36px;
    height: 36px;
    stroke: #8BC53F;
    fill: none;
    stroke-width: 2;
}

.capability-card__title {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.capability-card__text {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
}

/* Contact Page */
.contact-section {
    padding: 6rem 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
}

.contact-info__title {
    font-family: 'Orbitron', sans-serif;
    margin-bottom: 1rem;
}

.contact-info__text {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 2rem;
}

.contact-method {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.contact-method__icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(139, 197, 63, 0.1);
    border: 1px solid rgba(139, 197, 63, 0.3);
    border-radius: 8px;
}

.contact-method__icon svg {
    width: 24px;
    height: 24px;
    stroke: #8BC53F;
    fill: none;
    stroke-width: 2;
}

.contact-method__label {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 0.25rem;
}

.contact-method__value {
    color: #ffffff;
}

/* Contact Form */
.contact-form {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 2.5rem;
}

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

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

.form-group label {
    display: block;
    font-family: 'Rajdhani', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    font-family: 'Exo 2', sans-serif;
    font-size: 1rem;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #8BC53F;
    background: rgba(139, 197, 63, 0.05);
}

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

.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='%238BC53F' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 20px;
}

.form-group select option {
    background: #1a1a1a;
    color: #ffffff;
}

@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .capabilities__grid {
        grid-template-columns: 1fr;
    }
}
