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

:root {
    --bg-dark: #0a0a1a;
    --bg-darker: #050510;
    --accent-green: #aaff00;
    --text-white: #ffffff;
    --text-light: rgba(255, 255, 255, 0.9);
    --text-gray: rgba(255, 255, 255, 0.7);
    --line-gray: rgba(255, 255, 255, 0.2);
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    color: var(--text-white);
    line-height: 1.6;
    overflow-x: hidden;
    background: var(--bg-dark);
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
    z-index: 2;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: var(--bg-dark);
    z-index: 1000;
    border-bottom: 1px solid var(--line-gray);
    transition: background-color 0.3s, backdrop-filter 0.3s;
}

.navbar.scrolled {
    background-color: rgba(10, 10, 26, 0.95);
    backdrop-filter: blur(10px);
}

/* Top contact bar */
.navbar-topbar {
    background: rgba(0, 0, 0, 0.3);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding: 7px 0;
    font-size: 13px;
}

.navbar-topbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.topbar-contact {
    display: flex;
    gap: 24px;
    align-items: center;
}

.topbar-contact a {
    color: var(--text-gray);
    text-decoration: none;
    transition: color 0.3s;
    display: flex;
    align-items: center;
    gap: 6px;
}

.topbar-contact a:hover {
    color: var(--accent-green);
}

.topbar-social {
    display: flex;
    gap: 14px;
    align-items: center;
}

.topbar-social a {
    color: var(--text-gray);
    font-size: 13px;
    text-decoration: none;
    transition: color 0.3s;
}

.topbar-social a:hover {
    color: var(--accent-green);
}

/* Main nav row */
.navbar-main {
    padding: 0;
}

.navbar-main .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 18px;
    font-weight: 600;
    color: var(--text-white);
    white-space: nowrap;
}

.logo-icon {
    height: 100px;
    width: auto;
    flex-shrink: 0;
    display: block;
    object-fit: contain;
    object-position: left center;
}

.logo-dot {
    color: var(--accent-green);
}

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

.nav-menu a {
    text-decoration: none;
    color: var(--text-white);
    text-transform: lowercase;
    font-size: 16px;
    transition: color 0.3s;
    font-weight: 400;
}

.nav-menu a:hover {
    color: var(--accent-green);
}

.contact-btn {
    background: var(--accent-green);
    color: var(--bg-dark);
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: opacity 0.3s, transform 0.3s;
    white-space: nowrap;
}

.contact-btn:hover {
    opacity: 0.9;
    transform: scale(1.05);
}

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

.hamburger span {
    width: 25px;
    height: 2px;
    background: var(--text-white);
    transition: all 0.3s;
}

/* Hero Section */
.hero {
    position: relative;
    margin-top: 130px;
    padding: 100px 0;
    background: var(--bg-dark);
    color: var(--text-white);
    min-height: calc(100vh - 130px);
    display: flex;
    align-items: center;
    overflow: hidden;
}

.network-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bg-dark);
    z-index: 1;
}

/* particles.js canvas styling */
#particles-js {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

.hero .container {
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
    background: rgba(10, 10, 26, 0.3);
    padding: 24px;
    border-radius: 8px;
    pointer-events: none;
}

.hero-title {
    font-size: clamp(56px, 8vw, 112px);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 40px;
    color: var(--text-white);
}

.title-line {
    display: inline-block;
}

.word {
    display: inline-block;
}

.accent-period {
    color: var(--accent-green);
}

.accent-period-hidden {
    display: none;
}

.hero-subtitle {
    font-size: 20px;
    font-weight: 300;
    margin-bottom: 30px;
    color: var(--text-white);
}

.stat-card {
    text-align: left;
}

.stat-number {
    font-size: clamp(48px, 6vw, 72px);
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--accent-green);
    line-height: 1;
}

.stat-label {
    font-size: 14px;
    line-height: 1.5;
    color: var(--text-white);
    font-weight: 300;
}

/* Main Content */
.main-content {
    padding: 100px 0;
    background: var(--bg-darker);
    position: relative;
    z-index: 2;
}

.content-header {
    margin-bottom: 100px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.content-header-text {
    max-width: 900px;
}

.content-header-visual {
    position: relative;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.animated-shapes {
    position: relative;
    width: 100%;
    height: 100%;
}

.shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.6;
}

.shape-1 {
    width: 120px;
    height: 120px;
    background: var(--accent-green);
    top: 20%;
    left: 20%;
    filter: blur(1px);
}

.shape-2 {
    width: 80px;
    height: 80px;
    background: rgba(170, 255, 0, 0.3);
    top: 50%;
    right: 20%;
    filter: blur(0.5px);
}

.shape-3 {
    width: 100px;
    height: 100px;
    background: var(--accent-green);
    bottom: 20%;
    left: 30%;
    filter: blur(1px);
    opacity: 0.4;
}

.shape-4 {
    width: 60px;
    height: 60px;
    background: rgba(170, 255, 0, 0.5);
    top: 30%;
    right: 40%;
    filter: blur(0.5px);
}

.shape-5 {
    width: 90px;
    height: 90px;
    background: var(--accent-green);
    bottom: 30%;
    right: 10%;
    filter: blur(1px);
    opacity: 0.5;
}

.animated-text {
    font-size: clamp(40px, 6vw, 64px);
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 30px;
    color: var(--text-white);
}

.text-line {
    display: block;
    opacity: 0;
    transform: translateY(50px);
}

/* Fallback: Show elements if GSAP doesn't load (after 3 seconds) */
body:not(.gsap-loaded) .text-line,
body:not(.gsap-loaded) .service-card {
    animation: fallbackFadeIn 0.5s ease forwards;
    animation-delay: 3s;
}

@keyframes fallbackFadeIn {
    to {
        opacity: 1;
        transform: translateY(0) translateX(0);
    }
}

.content-description {
    font-size: 20px;
    line-height: 1.8;
    color: var(--text-gray);
    max-width: 800px;
    margin-bottom: 30px;
}

.quote {
    font-size: 24px;
    font-style: italic;
    color: var(--text-white);
    font-weight: 300;
}

/* Services Section */
.services-section {
    margin-bottom: 100px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.section-title {
    font-size: clamp(48px, 7vw, 72px);
    font-weight: 700;
    margin-bottom: 20px;
    text-align: center;
    color: var(--text-white);
}

.section-subtitle {
    font-size: 20px;
    text-align: center;
    color: var(--text-gray);
    margin-bottom: 60px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.services-scroll-wrapper {
    margin-bottom: 0;
    padding: 40px 0 0;
    width: 100%;
}

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

.service-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 40px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transform-style: preserve-3d;
    cursor: pointer;
    will-change: transform, opacity;
    flex-shrink: 0;
    min-width: 350px;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    text-decoration: none;
    color: var(--text-white);
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.service-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--accent-green);
    box-shadow: 0 8px 30px rgba(170, 255, 0, 0.2);
    transform: translateY(-5px);
}

.service-card .service-icon {
    font-size: 48px;
    color: var(--accent-green);
}

.service-card .learn-more {
    color: var(--accent-green);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: auto;
    transition: gap 0.3s ease;
}

.service-card:hover .learn-more {
    gap: 12px;
}

.service-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--text-white);
}

.service-card p {
    color: var(--text-gray);
    line-height: 1.6;
}

.services-footer {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-gray);
    max-width: 900px;
    margin: 40px auto 40px;
    text-align: center;
}

.cta-button-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 30px;
}

.cta-button {
    display: inline-block;
    background: var(--accent-green);
    color: var(--bg-dark);
    padding: 15px 40px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    transition: opacity 0.3s, transform 0.3s;
    text-align: center;
}

.cta-button:hover {
    opacity: 0.9;
    transform: scale(1.05);
}

/* CTA Section */
.cta-section {
    text-align: center;
    padding: 80px 20px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 20px;
    margin-bottom: 100px;
    border: 1px solid var(--line-gray);
}

.cta-section h2 {
    font-size: clamp(40px, 6vw, 56px);
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--text-white);
}

.cta-section h3 {
    font-size: clamp(28px, 4vw, 40px);
    font-weight: 400;
    margin-bottom: 40px;
    color: var(--text-gray);
}

/* Footer */
.footer {
    background: var(--bg-dark);
    color: var(--text-white);
    padding: 48px 0 32px;
    position: relative;
    overflow: hidden;
    border-top: 1px solid var(--line-gray);
}

.footer-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 50% 50%, rgba(170, 255, 0, 0.05) 1px, transparent 1px);
    background-size: 50px 50px;
    opacity: 0.5;
}

.footer .container {
    position: relative;
    z-index: 1;
}

.footer-logo {
    margin-bottom: 20px;
}

.footer-logo .logo-icon {
    height: 60px;
    width: auto;
}

.footer-title {
    font-size: clamp(32px, 5vw, 44px);
    font-weight: 700;
    margin-bottom: 32px;
    text-transform: lowercase;
    color: var(--text-white);
}

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

.footer-section h4 {
    font-size: 18px;
    margin-bottom: 20px;
    text-transform: lowercase;
    color: var(--text-gray);
    font-weight: 400;
}

.footer-section address,
.footer-section a {
    color: var(--text-white);
    text-decoration: none;
    line-height: 2;
    display: block;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: var(--accent-green);
}

.footer-icon {
    display: inline-block;
    margin-right: 10px;
    opacity: 0.9;
    font-size: 16px;
    color: var(--accent-green);
    transition: transform 0.3s ease;
}

.footer-section a:hover .footer-icon {
    transform: scale(1.1);
}

.footer-link {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 20px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 24px;
    border-top: 1px solid var(--line-gray);
    flex-wrap: wrap;
    gap: 16px;
    color: var(--text-gray);
}

.footer-nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-nav-list li a {
    color: var(--text-white);
    text-decoration: none;
    line-height: 2;
    display: block;
    transition: color 0.3s;
}

.footer-nav-list li a:hover {
    color: var(--accent-green);
}

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

.footer-links a {
    color: var(--text-gray);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--text-white);
}

/* Contact page */
.contact-hero {
    position: relative;
    margin-top: 130px;
    padding: 80px 0 70px;
    background: var(--bg-dark);
    color: var(--text-white);
    overflow: hidden;
    border-bottom: 1px solid var(--line-gray);
}

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

.contact-hero-content h1 {
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 16px;
}

.accent-green {
    color: var(--accent-green);
}

.contact-hero-content p {
    font-size: 18px;
    color: var(--text-gray);
}

.contact-main {
    padding: 80px 0 100px;
    background: var(--bg-dark);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    align-items: start;
}

.contact-info-panel {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    padding: 24px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--line-gray);
    border-radius: 12px;
    transition: border-color 0.3s;
}

.contact-info-item:hover {
    border-color: var(--accent-green);
}

.contact-info-icon {
    width: 44px;
    height: 44px;
    background: rgba(170, 255, 0, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-green);
    font-size: 18px;
    flex-shrink: 0;
}

.contact-info-item h3 {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-gray);
    font-weight: 500;
    margin-bottom: 4px;
}

.contact-info-item a,
.contact-info-item address {
    color: var(--text-white);
    text-decoration: none;
    font-size: 15px;
    font-style: normal;
    transition: color 0.3s;
}

.contact-info-item a:hover {
    color: var(--accent-green);
}

.contact-form-panel h2 {
    font-size: 28px;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 28px;
}

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

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

.contact-form input,
.contact-form textarea {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--line-gray);
    border-radius: 8px;
    padding: 14px 16px;
    color: var(--text-white);
    font-size: 15px;
    font-family: inherit;
    width: 100%;
    transition: border-color 0.3s;
    box-sizing: border-box;
}

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

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--accent-green);
}

.contact-form textarea {
    resize: vertical;
    min-height: 130px;
}

.submit-btn {
    background: var(--accent-green);
    color: var(--bg-dark);
    border: none;
    padding: 14px 32px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: opacity 0.3s, transform 0.2s;
    align-self: flex-start;
}

.submit-btn:hover {
    opacity: 0.9;
    transform: scale(1.03);
}

.submit-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.form-success {
    color: var(--accent-green);
    font-size: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.form-error {
    color: #ff6b6b;
    font-size: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Policy pages */
.policy-section {
    padding: 80px 0 100px;
    background: var(--bg-dark);
    color: var(--text-white);
    min-height: calc(100vh - 130px);
}

.policy-content {
    max-width: 760px;
    margin: 0 auto;
}

.policy-content h1 {
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text-white);
}

.policy-updated {
    color: var(--text-gray);
    font-size: 14px;
    margin-bottom: 48px;
}

.policy-content h2 {
    font-size: 22px;
    font-weight: 600;
    margin-top: 40px;
    margin-bottom: 12px;
    color: var(--accent-green);
}

.policy-content h3 {
    font-size: 17px;
    font-weight: 600;
    margin-top: 24px;
    margin-bottom: 8px;
    color: var(--text-white);
}

.policy-content p {
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 16px;
}

.policy-content ul {
    color: var(--text-gray);
    line-height: 1.8;
    padding-left: 24px;
    margin-bottom: 16px;
}

.policy-content li {
    margin-bottom: 6px;
}

.policy-content a {
    color: var(--accent-green);
    text-decoration: none;
    transition: opacity 0.2s;
}

.policy-content a:hover {
    opacity: 0.8;
}

.policy-content code {
    background: rgba(255, 255, 255, 0.08);
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 13px;
    font-family: monospace;
}

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

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

@keyframes networkPulse {
    0%, 100% {
        opacity: 0.4;
    }
    50% {
        opacity: 0.7;
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-content {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }

    .content-header {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .content-header-visual {
        height: 300px;
    }

    .shape-1 {
        width: 100px;
        height: 100px;
    }

    .shape-2 {
        width: 70px;
        height: 70px;
    }

    .shape-3 {
        width: 80px;
        height: 80px;
    }

    .shape-4 {
        width: 50px;
        height: 50px;
    }

    .shape-5 {
        width: 70px;
        height: 70px;
    }

    .navbar-topbar {
        padding: 6px 0;
    }

    .topbar-contact {
        gap: 16px;
        font-size: 12px;
        flex: 1;
        justify-content: center;
    }

    .topbar-social {
        display: none;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 130px;
        flex-direction: column;
        background: var(--bg-dark);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        padding: 40px 0;
        gap: 30px;
        border-bottom: 1px solid var(--line-gray);
    }

    .nav-menu.active {
        left: 0;
    }

    .hamburger {
        display: flex;
    }

    .contact-btn {
        display: none;
    }


    .hero {
        padding: 60px 0;
        min-height: auto;
    }

    .hero-content {
        max-width: 100%;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .content-description {
        font-size: 18px;
    }
}

/* Coming Soon Styles */
.coming-soon-hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.coming-soon-hero .container {
    pointer-events: auto;
}

.coming-soon-content {
    max-width: 700px;
    text-align: center;
    margin: 0 auto;
    background: rgba(10, 10, 26, 0.5);
    padding: 60px 40px;
    border-radius: 16px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    pointer-events: auto;
}

.coming-soon-content .hero-title {
    margin-bottom: 60px;
    font-size: clamp(56px, 8vw, 96px);
}

.coming-soon-box {
    margin-bottom: 40px;
}

.coming-soon-title {
    font-size: clamp(48px, 6vw, 72px);
    font-weight: 700;
    color: var(--accent-green);
    margin-bottom: 30px;
    line-height: 1.2;
}

.coming-soon-text {
    font-size: 20px;
    line-height: 1.8;
    color: var(--text-gray);
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.coming-soon-divider {
    width: 100px;
    height: 2px;
    background: var(--accent-green);
    margin: 40px auto;
    opacity: 0.5;
}

.coming-soon-subtitle {
    font-size: 18px;
    color: var(--text-white);
    font-weight: 300;
    font-style: italic;
}

.back-home-btn {
    display: inline-block;
    background: transparent;
    color: var(--text-white);
    padding: 15px 40px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    transition: all 0.3s;
    border: 2px solid var(--accent-green);
    margin-top: 20px;
    pointer-events: auto;
    cursor: pointer;
}

.back-home-btn:hover {
    background: var(--accent-green);
    color: var(--bg-dark);
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .coming-soon-content {
        padding: 40px 30px;
    }

    .coming-soon-text {
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }

    .stat-number {
        font-size: 56px;
    }

    .logo {
        font-size: 14px;
    }

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

    .footer-logo .logo-icon {
        height: 50px;
    }

    .coming-soon-content {
        padding: 30px 20px;
    }

    .coming-soon-title {
        font-size: 40px;
    }

    .back-home-btn {
        padding: 12px 30px;
        font-size: 16px;
    }
}

/* Services Overview Grid */
.services-overview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 80px;
}

.service-overview-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 40px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-decoration: none;
    color: var(--text-white);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.service-overview-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--accent-green);
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(170, 255, 0, 0.2);
}

.service-icon {
    font-size: 48px;
    color: var(--accent-green);
    margin-bottom: 10px;
}

.service-overview-card h3 {
    font-size: 24px;
    margin-bottom: 10px;
    color: var(--text-white);
}

.service-overview-card p {
    color: var(--text-gray);
    line-height: 1.6;
    flex-grow: 1;
}

.learn-more {
    color: var(--accent-green);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: gap 0.3s ease;
}

.service-overview-card:hover .learn-more {
    gap: 12px;
}

/* Service Detail Pages */
.service-detail-hero {
    min-height: 60vh;
}

.service-breadcrumb {
    margin-bottom: 20px;
    color: var(--text-gray);
    font-size: 16px;
}

.service-breadcrumb a {
    color: var(--accent-green);
    text-decoration: none;
    transition: opacity 0.3s;
}

.service-breadcrumb a:hover {
    opacity: 0.8;
}

.service-breadcrumb span {
    margin: 0 10px;
}

.service-detail-content {
    padding: 80px 0;
}

.service-description-section {
    margin-bottom: 80px;
    max-width: 900px;
}

.service-description {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-gray);
    margin-bottom: 20px;
}

/* Features Grid */
.service-features-section {
    margin-bottom: 80px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.feature-item {
    background: rgba(255, 255, 255, 0.03);
    padding: 30px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.feature-item:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(170, 255, 0, 0.3);
    transform: translateY(-3px);
}

.feature-icon {
    font-size: 36px;
    color: var(--accent-green);
    margin-bottom: 15px;
}

.feature-item h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--text-white);
}

.feature-item p {
    color: var(--text-gray);
    line-height: 1.6;
    font-size: 16px;
}

/* Benefits List */
.service-benefits-section {
    margin-bottom: 80px;
}

.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-top: 40px;
}

.benefit-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    padding: 25px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.benefit-item:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(170, 255, 0, 0.3);
}

.benefit-item > i {
    font-size: 24px;
    color: var(--accent-green);
    flex-shrink: 0;
    margin-top: 5px;
}

.benefit-item h3 {
    font-size: 20px;
    margin-bottom: 8px;
    color: var(--text-white);
}

.benefit-item p {
    color: var(--text-gray);
    line-height: 1.6;
}

/* Technologies Section */
.service-technologies-section {
    margin-bottom: 80px;
}

.tech-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.tech-category {
    background: rgba(255, 255, 255, 0.03);
    padding: 30px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.tech-category h3 {
    font-size: 20px;
    margin-bottom: 20px;
    color: var(--accent-green);
}

.tech-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.tech-tag {
    background: rgba(170, 255, 0, 0.1);
    color: var(--accent-green);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    border: 1px solid rgba(170, 255, 0, 0.2);
    transition: all 0.3s ease;
}

.tech-tag:hover {
    background: rgba(170, 255, 0, 0.2);
    border-color: var(--accent-green);
    transform: scale(1.05);
}

/* About Page Styles */
.about-intro {
    margin-bottom: 80px;
    max-width: 900px;
}

.about-description {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-gray);
    margin-bottom: 20px;
}

/* Mission & Vision Section */
.mission-vision-section {
    margin-bottom: 80px;
}

.mission-vision-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.mission-card,
.vision-card {
    background: rgba(255, 255, 255, 0.03);
    padding: 40px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    transition: all 0.3s ease;
}

.mission-card:hover,
.vision-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(170, 255, 0, 0.3);
    transform: translateY(-5px);
}

.mv-icon {
    font-size: 56px;
    color: var(--accent-green);
    margin-bottom: 24px;
}

.mission-card h3,
.vision-card h3 {
    font-size: 28px;
    margin-bottom: 16px;
    color: var(--text-white);
}

.mission-card p,
.vision-card p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-gray);
}

/* Core Values Section */
.values-section {
    margin-bottom: 80px;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.value-item {
    background: rgba(255, 255, 255, 0.03);
    padding: 30px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    transition: all 0.3s ease;
}

.value-item:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(170, 255, 0, 0.3);
    transform: translateY(-3px);
}

.value-icon {
    font-size: 40px;
    color: var(--accent-green);
    margin-bottom: 16px;
}

.value-item h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--text-white);
}

.value-item p {
    font-size: 15px;
    line-height: 1.6;
    color: var(--text-gray);
}

/* Why Choose Us Section */
.why-choose-section {
    margin-bottom: 80px;
}

.why-choose-grid {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-top: 40px;
}

.why-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    padding: 25px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.why-item:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(170, 255, 0, 0.3);
}

.why-item > i {
    font-size: 24px;
    color: var(--accent-green);
    flex-shrink: 0;
    margin-top: 5px;
}

.why-item h3 {
    font-size: 20px;
    margin-bottom: 8px;
    color: var(--text-white);
}

.why-item p {
    color: var(--text-gray);
    line-height: 1.6;
}

/* Stats Section for About Page */
.stats-section {
    margin-bottom: 80px;
    padding: 60px 0;
    background: rgba(170, 255, 0, 0.05);
    border-radius: 20px;
    border: 1px solid rgba(170, 255, 0, 0.1);
}

.stats-grid-about {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    padding: 0 40px;
}

.stat-card-about {
    text-align: center;
}

.stat-card-about .stat-number {
    font-size: clamp(48px, 6vw, 72px);
    font-weight: 700;
    color: var(--accent-green);
    line-height: 1;
    margin-bottom: 12px;
}

.stat-card-about .stat-label {
    font-size: 16px;
    color: var(--text-white);
    font-weight: 400;
}

/* Responsive Design for Services */
@media (max-width: 768px) {
    .services-overview-grid {
        grid-template-columns: 1fr;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .tech-categories {
        grid-template-columns: 1fr;
    }

    .benefit-item {
        flex-direction: column;
        gap: 15px;
    }

    .service-icon {
        font-size: 40px;
    }

    .mission-vision-grid {
        grid-template-columns: 1fr;
    }

    .values-grid {
        grid-template-columns: 1fr;
    }

    .stats-grid-about {
        grid-template-columns: repeat(2, 1fr);
        padding: 0 20px;
        gap: 30px;
    }

    .why-item {
        flex-direction: column;
        gap: 15px;
    }
}

@media (max-width: 768px) {
    .contact-hero {
        padding: 50px 0 40px;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .submit-btn {
        width: 100%;
        justify-content: center;
    }
}
