/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-green: #0DA33E;
    --dark-black: #000000;
    --light-white: #FFFFFF;
    --dark-bg: #0a0a0a;
    --text-gray: #e0e0e0;
    --font-heading: 'Orbitron', sans-serif;
}

body {
    font-family: 'DM Sans', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-weight: 400;
    line-height: 1.6;
    color: var(--text-gray);
    background-color: var(--dark-black);
    overflow-x: hidden;
}

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

/* Navigation */
.navbar {
    background-color: rgba(0, 0, 0, 0.95);
    padding: 0.5rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(13, 163, 62, 0.2);
    transition: all 0.3s ease;
}

.navbar.scrolled {
    box-shadow: 0 4px 20px rgba(13, 163, 62, 0.1);
}

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

@media (min-width: 769px) {
    .nav-container {
        max-width: none;
        margin: 0;
        padding-left: 12px;
        padding-right: 24px;
    }
}

.nav-logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: transform 0.3s ease;
}

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

.nav-logo-text {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--primary-green);
    letter-spacing: 0.02em;
}

.nav-logo a:hover {
    transform: scale(1.03);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    color: var(--text-gray);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-green);
    transition: width 0.3s ease;
}

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

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

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

.bar {
    width: 25px;
    height: 3px;
    background-color: var(--primary-green);
    transition: all 0.3s ease;
    border-radius: 2px;
}

.hamburger.active .bar:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.hamburger.active .bar:nth-child(2) {
    opacity: 0;
}

.hamburger.active .bar:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

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

.hero-content {
    text-align: center;
    z-index: 2;
    max-width: 800px;
    padding: 0 20px;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--light-white);
    text-shadow: 0 0 20px rgba(13, 163, 62, 0.3);
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: var(--text-gray);
}

.cta-button {
    display: inline-block;
    padding: 15px 40px;
    background-color: var(--primary-green);
    color: var(--light-white);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 500;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(13, 163, 62, 0.4);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(13, 163, 62, 0.6);
    background-color: #0eb845;
}

/* Hero Laser Effects */
.hero-lasers {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
    overflow: hidden;
    pointer-events: none;
}

.laser {
    position: absolute;
    height: 3px;
    border-radius: 2px;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(13, 163, 62, 0.2) 20%,
        rgba(13, 163, 62, 0.9) 50%,
        rgba(13, 163, 62, 0.2) 80%,
        transparent 100%
    );
    box-shadow:
        0 0 8px rgba(13, 163, 62, 0.8),
        0 0 20px rgba(13, 163, 62, 0.5),
        0 0 40px rgba(13, 163, 62, 0.2);
    animation: laserPulse 2.5s ease-in-out infinite;
    overflow: hidden;
}

.laser::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(255, 255, 255, 0.6) 50%,
        transparent 100%
    );
    animation: laserScan 3s linear infinite;
}

.laser-1 {
    width: 120%;
    top: 15%;
    left: -10%;
    transform: rotate(-25deg);
    animation-delay: 0s;
}

.laser-1::before {
    animation-delay: 0s;
}

.laser-2 {
    width: 100%;
    top: 35%;
    right: -20%;
    left: auto;
    transform: rotate(15deg);
    background: linear-gradient(
        270deg,
        transparent 0%,
        rgba(13, 163, 62, 0.2) 20%,
        rgba(13, 163, 62, 0.9) 50%,
        rgba(13, 163, 62, 0.2) 80%,
        transparent 100%
    );
    animation-delay: 0.4s;
}

.laser-2::before {
    animation-direction: reverse;
    animation-delay: 0.2s;
}

.laser-3 {
    width: 80%;
    bottom: 40%;
    left: -10%;
    transform: rotate(10deg);
    animation-delay: 0.8s;
}

.laser-3::before {
    animation-delay: 0.5s;
}

.laser-4 {
    width: 110%;
    bottom: 25%;
    right: -15%;
    left: auto;
    transform: rotate(-20deg);
    background: linear-gradient(
        270deg,
        transparent 0%,
        rgba(13, 163, 62, 0.2) 20%,
        rgba(13, 163, 62, 0.9) 50%,
        rgba(13, 163, 62, 0.2) 80%,
        transparent 100%
    );
    animation-delay: 1.2s;
}

.laser-4::before {
    animation-direction: reverse;
    animation-delay: 1s;
}

.laser-5 {
    width: 60%;
    top: 55%;
    left: 50%;
    transform: rotate(5deg);
    animation-delay: 1.6s;
}

.laser-5::before {
    animation-delay: 0.3s;
}

.laser-6 {
    width: 90%;
    top: 70%;
    right: -5%;
    left: auto;
    transform: rotate(-12deg);
    background: linear-gradient(
        270deg,
        transparent 0%,
        rgba(13, 163, 62, 0.2) 20%,
        rgba(13, 163, 62, 0.9) 50%,
        rgba(13, 163, 62, 0.2) 80%,
        transparent 100%
    );
    animation-delay: 2s;
}

.laser-6::before {
    animation-delay: 1.5s;
}

.laser-7 {
    width: 70%;
    top: 25%;
    left: 30%;
    transform: rotate(8deg);
    animation-delay: 2.4s;
}

.laser-7::before {
    animation-delay: 0.8s;
}

.laser-8 {
    width: 85%;
    bottom: 55%;
    right: 10%;
    left: auto;
    transform: rotate(-8deg);
    background: linear-gradient(
        270deg,
        transparent 0%,
        rgba(13, 163, 62, 0.2) 20%,
        rgba(13, 163, 62, 0.9) 50%,
        rgba(13, 163, 62, 0.2) 80%,
        transparent 100%
    );
    animation-delay: 2.8s;
}

.laser-8::before {
    animation-direction: reverse;
    animation-delay: 2s;
}

@keyframes laserPulse {
    0%, 100% {
        opacity: 0.5;
        box-shadow:
            0 0 6px rgba(13, 163, 62, 0.6),
            0 0 15px rgba(13, 163, 62, 0.35),
            0 0 30px rgba(13, 163, 62, 0.15);
    }
    50% {
        opacity: 1;
        box-shadow:
            0 0 12px rgba(13, 163, 62, 1),
            0 0 28px rgba(13, 163, 62, 0.6),
            0 0 50px rgba(13, 163, 62, 0.25);
    }
}

@keyframes laserScan {
    0% {
        left: -100%;
    }
    100% {
        left: 150%;
    }
}

/* Fade In Animations */
.fade-in {
    animation: fadeIn 1s ease-in;
}

.fade-in-delay {
    animation: fadeIn 1s ease-in 0.3s both;
}

.fade-in-delay-2 {
    animation: fadeIn 1s ease-in 0.6s both;
}

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

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

.section-title {
    font-family: var(--font-heading);
    text-align: center;
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 3rem;
    color: var(--light-white);
}

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

.service-card {
    background: linear-gradient(135deg, rgba(13, 163, 62, 0.1) 0%, rgba(0, 0, 0, 0.5) 100%);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(13, 163, 62, 0.2);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 260px;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(13, 163, 62, 0.3);
    border-color: var(--primary-green);
}

.service-icon {
    width: 56px;
    height: 56px;
    margin-bottom: 1rem;
    color: var(--primary-green);
}

.service-icon svg {
    width: 100%;
    height: 100%;
    display: block;
}

.service-card h3 {
    font-family: var(--font-heading);
    color: var(--primary-green);
    margin-bottom: 1rem;
    font-size: 1.5rem;
    text-align: center;
}

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

/* CTA Section */
.cta-section {
    padding: 100px 0;
    text-align: center;
    background: linear-gradient(135deg, rgba(13, 163, 62, 0.1) 0%, rgba(0, 0, 0, 0.8) 100%);
}

.cta-section h2 {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--light-white);
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: var(--text-gray);
}

/* Page Header */
.page-header {
    padding: 150px 0 80px;
    text-align: center;
    background: linear-gradient(135deg, rgba(13, 163, 62, 0.1) 0%, rgba(0, 0, 0, 0.8) 100%);
}

.page-header-about .page-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    text-align: left;
}

.page-title-left {
    text-align: left;
    margin-bottom: 0;
}

.about-photo-block {
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.about-photo-wrap {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid rgba(13, 163, 62, 0.4);
    background: rgba(13, 163, 62, 0.1);
}

.about-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.about-photo-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--text-gray);
    font-size: 0.9rem;
}

.about-photo-placeholder small {
    font-size: 0.7rem;
    color: var(--primary-green);
    margin-top: 0.25rem;
}

.about-profile-name {
    color: var(--light-white);
    font-size: 1rem;
    font-weight: 500;
    margin-top: 0.75rem;
    margin-bottom: 0;
    text-align: center;
}

.page-title {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 600;
    color: var(--light-white);
    margin-bottom: 1rem;
}

.page-subtitle {
    font-size: 1.2rem;
    color: var(--text-gray);
}

/* About Page */
.about-content {
    padding: 80px 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about-text h2 {
    font-family: var(--font-heading);
    color: var(--primary-green);
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.about-text p {
    margin-bottom: 1.5rem;
    color: var(--text-gray);
    line-height: 1.8;
}

.about-text p:last-child {
    margin-bottom: 0;
}

.about-checklist {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

@media (min-width: 769px) {
    .about-checklist {
        margin-left: 3rem;
    }
}

.about-checklist h3 {
    font-family: var(--font-heading);
    color: var(--light-white);
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 1rem;
}

.about-checklist .about-list {
    margin: 0;
}

.about-list {
    list-style: none;
    padding-left: 0;
}

.about-list li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-gray);
}

.about-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-green);
    font-weight: bold;
}

.about-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.placeholder-box {
    width: 100%;
    max-width: 400px;
    height: 400px;
    background: linear-gradient(135deg, rgba(13, 163, 62, 0.1) 0%, rgba(0, 0, 0, 0.5) 100%);
    border: 2px dashed rgba(13, 163, 62, 0.3);
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: var(--text-gray);
}

.placeholder-box p {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.placeholder-box small {
    color: var(--primary-green);
}

/* Contact Page */
.contact-section {
    padding: 80px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    align-items: start;
}

.contact-form-container h2,
.contact-info h2 {
    font-family: var(--font-heading);
    color: var(--primary-green);
    margin-bottom: 1.5rem;
    font-size: 1.75rem;
    font-weight: 600;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-gray);
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    background-color: rgba(13, 163, 62, 0.08);
    border: 1px solid rgba(13, 163, 62, 0.3);
    border-radius: 8px;
    color: var(--light-white);
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-green);
    box-shadow: 0 0 0 2px rgba(13, 163, 62, 0.2);
}

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

.submit-button {
    padding: 14px 32px;
    background-color: var(--primary-green);
    color: var(--light-white);
    border: none;
    border-radius: 50px;
    font-weight: 500;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(13, 163, 62, 0.4);
}

.submit-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(13, 163, 62, 0.5);
    background-color: #0eb845;
}

.contact-info {
    background: linear-gradient(135deg, rgba(13, 163, 62, 0.1) 0%, rgba(0, 0, 0, 0.5) 100%);
    padding: 2.5rem;
    border-radius: 15px;
    border: 1px solid rgba(13, 163, 62, 0.2);
}

.contact-info-centered {
    max-width: 500px;
    margin: 0 auto;
    text-align: center;
}

.contact-lead {
    color: var(--text-gray);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.contact-info-centered .contact-lead:first-child {
    margin-top: 0;
}

.info-item {
    margin-bottom: 2rem;
}

.info-item:last-child {
    margin-bottom: 0;
}

.info-item h3 {
    font-family: var(--font-heading);
    color: var(--primary-green);
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
    font-weight: 500;
}

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

.info-item-email {
    margin-top: 1.5rem;
}

.contact-email {
    font-size: 1.25rem;
    color: var(--primary-green);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.contact-email:hover {
    color: #0eb845;
}

/* Portfolio Page */
.portfolio-section {
    padding: 80px 0;
}

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

.portfolio-item {
    background: linear-gradient(135deg, rgba(13, 163, 62, 0.1) 0%, rgba(0, 0, 0, 0.5) 100%);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid rgba(13, 163, 62, 0.2);
}

.portfolio-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(13, 163, 62, 0.3);
    border-color: var(--primary-green);
}

.portfolio-image-wrap {
    width: 100%;
    height: 250px;
    overflow: hidden;
    background: var(--dark-bg);
}

.portfolio-screenshot {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Fallback if no image yet */
.portfolio-placeholder {
    width: 100%;
    height: 250px;
    background: linear-gradient(135deg, rgba(13, 163, 62, 0.1) 0%, rgba(0, 0, 0, 0.5) 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: var(--text-gray);
}

.portfolio-placeholder h3 {
    color: var(--primary-green);
    margin-bottom: 0.5rem;
}

.portfolio-info {
    padding: 1.5rem;
}

.portfolio-info h3 {
    font-family: var(--font-heading);
    color: var(--light-white);
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.portfolio-info p {
    color: var(--text-gray);
    margin-bottom: 1rem;
}

.portfolio-link {
    color: var(--primary-green);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.portfolio-link:hover {
    color: #0eb845;
}

/* Footer */
.footer {
    background-color: var(--dark-bg);
    padding: 2rem 0;
    border-top: 1px solid rgba(13, 163, 62, 0.2);
}

.footer-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-left,
.footer-right {
    color: var(--text-gray);
    margin: 0;
}

.footer-left {
    text-align: left;
}

.footer-right {
    text-align: right;
}

@media (min-width: 769px) {
    .footer .container.footer-inner {
        max-width: none;
        margin: 0;
        padding-left: 12px;
        padding-right: 24px;
    }
}

/* Responsive Design */
@media screen and (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 62px;
        flex-direction: column;
        background-color: rgba(0, 0, 0, 0.98);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
        border-top: 1px solid rgba(13, 163, 62, 0.2);
    }

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

    .nav-item {
        margin: 1rem 0;
    }

    .nav-logo-img {
        height: 44px;
    }

    .nav-logo-text {
        font-size: 1.1rem;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .page-title {
        font-size: 2rem;
    }

    .page-header-about .page-header-inner {
        flex-direction: column;
        text-align: center;
    }

    .page-title-left {
        text-align: center;
    }

    .about-photo-block {
        align-items: center;
    }

    .about-photo-wrap {
        width: 120px;
        height: 120px;
    }

    .about-profile-name {
        font-size: 0.95rem;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

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

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

    .laser {
        opacity: 0.6;
    }
}

@media screen and (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .cta-button {
        padding: 12px 30px;
        font-size: 1rem;
    }
}

