:root {
    --bg-color: #111111;
    --text-color: #ffffff;
    --accent-color: #aaff00;
    /* Neon Green */
    --secondary-bg: #1a1a1a;
    --font-main: 'Montserrat', sans-serif;
}

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

body {
    font-family: var(--font-main);
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: var(--text-color);
    transition: color 0.3s ease;
}

a:hover {
    color: var(--accent-color);
}

ul {
    list-style: none;
}

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

/* Header */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(17, 17, 17, 0.9);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 20px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

.logo {
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 2px;
    display: flex;
    align-items: baseline;
    gap: 8px;
}

.logo-main {
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 3px;
    color: var(--accent-color);
    text-shadow: 0 0 10px rgba(170, 255, 0, 0.3);
}

.logo-sub {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
    color: #ffffff;
    opacity: 0.9;
    text-transform: uppercase;
}

nav ul {
    display: flex;
    gap: 30px;
}

nav ul li a {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
}

nav ul li a.active {
    color: var(--accent-color);
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    font-size: 12px;
    font-weight: 600;
}

/* Hero Section */
.hero {
    height: 100vh;
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('assets/hero.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-video-mobile {
    display: none;
}

.hero-content h1 {
    font-size: 80px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 5px;
    text-transform: uppercase;
}

.hero-tagline {
    font-size: 32px;
    font-weight: 300;
    letter-spacing: 2px;
    margin-bottom: 30px;
    color: var(--accent-color);
    font-style: italic;
    text-shadow: 0 0 20px rgba(170, 255, 0, 0.4);
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.15));
    padding: 15px 30px;
    border-radius: 8px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(170, 255, 0, 0.3);
    display: inline-block;
}

.hero-subtitle {
    font-size: 18px;
    font-weight: 400;
    letter-spacing: 2px;
    color: #ffffff;
    display: block;
    margin-top: 20px;
    opacity: 0.85;
    text-transform: none;
    font-style: italic;
    line-height: 1.4;
}

/* Agency Section */
.agency {
    padding: 100px 0;
    background-color: var(--bg-color);
    text-align: left;
}

.agency h2 {
    font-size: 36px;
    margin-bottom: 40px;
    color: #ffffff;
}

.agency-content {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 60px;
    align-items: stretch;
}

.about-text {
    display: flex;
    align-items: stretch;
}

.about-text-content {
    background: linear-gradient(135deg, rgba(170, 255, 0, 0.03) 0%, rgba(26, 26, 26, 0.5) 100%);
    border-left: 4px solid var(--accent-color);
    padding: 30px 30px;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 15px;
    height: 100%;
}

.intro-text {
    font-size: 16px;
    line-height: 1.8;
    color: #e0e0e0;
    margin: 0;
}

.intro-text strong {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 18px;
    letter-spacing: 1px;
}

.highlight {
    color: var(--accent-color);
    font-weight: 600;
}

.description-text {
    font-size: 15px;
    line-height: 1.8;
    color: #b0b0b0;
    margin: 0;
    font-style: italic;
}

.about-text p,
.agency p {
    max-width: 800px;
    margin: 0;
    font-size: 18px;
    color: #cccccc;
}

.services-column {
    display: flex;
}

.services-card {
    background: linear-gradient(135deg, var(--secondary-bg) 0%, rgba(26, 26, 26, 0.95) 100%);
    border: 2px solid rgba(170, 255, 0, 0.2);
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    transition: all 0.4s ease;
}

.services-card:hover {
    border-color: var(--accent-color);
    box-shadow: 0 15px 50px rgba(170, 255, 0, 0.2);
    transform: translateY(-5px);
}

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

.stat-item {
    text-align: center;
    padding: 40px 20px;
    background: linear-gradient(135deg, rgba(170, 255, 0, 0.05) 0%, rgba(170, 255, 0, 0.02) 100%);
    border: 2px solid rgba(170, 255, 0, 0.2);
    border-radius: 12px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(170, 255, 0, 0.1), transparent);
    transition: left 0.6s ease;
}

.stat-item:hover::before {
    left: 100%;
}

.stat-item:hover {
    border-color: var(--accent-color);
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(170, 255, 0, 0.3);
}

.stat-number {
    font-size: 52px;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 12px;
    line-height: 1;
    text-shadow: 0 0 20px rgba(170, 255, 0, 0.3);
}

.stat-label {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
    color: #888;
    text-transform: uppercase;
}

.service-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 25px 0;
    border-bottom: 1px solid rgba(170, 255, 0, 0.1);
    transition: all 0.3s ease;
}

.service-item:last-child {
    border-bottom: none;
}

.service-item:hover {
    padding-left: 10px;
}

.service-item:hover .service-icon {
    transform: scale(1.2) rotate(360deg);
    color: var(--accent-color);
    text-shadow: 0 0 15px rgba(170, 255, 0, 0.6);
}

.service-icon {
    font-size: 32px;
    color: var(--accent-color);
    min-width: 40px;
    text-align: center;
    transition: all 0.6s ease;
    text-shadow: 0 0 10px rgba(170, 255, 0, 0.3);
}

.service-content {
    flex: 1;
}

.service-item h3 {
    font-size: 16px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 8px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.service-item p {
    font-size: 13px;
    color: #999;
    line-height: 1.7;
    margin: 0;
}

@media (max-width: 968px) {
    .agency-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 640px) {

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

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

    .services-card {
        padding: 25px;
    }
}

/* Projects Section */
.projects {
    padding: 100px 0;
    background-color: #2a2a2a;
}

.projects-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 50px;
    flex-wrap: wrap;
    gap: 20px;
}

.projects-header h2 {
    font-size: 36px;
    letter-spacing: 2px;
}

.filters button {
    background: none;
    border: none;
    color: #888;
    font-family: var(--font-main);
    font-size: 14px;
    font-weight: 600;
    margin-left: 20px;
    cursor: pointer;
    transition: color 0.3s ease;
    text-transform: uppercase;
}

.filters button.active,
.filters button:hover {
    color: var(--accent-color);
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
}

.project-item {
    position: relative;
    height: 300px;
    overflow: hidden;
    cursor: pointer;
}

.project-image {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.5s ease;
}

.project-item:hover .project-image {
    transform: scale(1.1);
}

.project-info {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.project-item:hover .project-info {
    opacity: 1;
}

.project-info h3 {
    font-size: 18px;
    margin-bottom: 5px;
    color: var(--accent-color);
}

.project-info span {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Partnerships Section */
.partnerships {
    padding: 100px 0;
    background-color: var(--bg-color);
}

.partnerships h2 {
    font-size: 36px;
    letter-spacing: 2px;
    text-align: left;
    margin-bottom: 15px;
    color: #ffffff;
}

.partnerships-intro {
    text-align: left;
    font-size: 16px;
    color: #888;
    margin-bottom: 60px;
    font-style: italic;
}

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

.partner-card {
    background: var(--secondary-bg);
    border: 2px solid rgba(170, 255, 0, 0.1);
    border-radius: 12px;
    padding: 30px 20px;
    text-align: center;
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.partner-card:hover {
    border-color: var(--accent-color);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(170, 255, 0, 0.2);
}

.partner-logo-img {
    width: 120px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    overflow: hidden;
    background: #ffffff;
    padding: 15px;
    transition: all 0.3s ease;
}

.partner-logo-img img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.partner-card:hover .partner-logo-img {
    transform: scale(1.05);
    box-shadow: 0 5px 20px rgba(170, 255, 0, 0.3);
}

.partner-card h3 {
    font-size: 16px;
    font-weight: 600;
    color: #ffffff;
    margin: 0;
    letter-spacing: 0.5px;
}

/* Contact Section */
.contact {
    padding: 100px 0;
    background-color: var(--bg-color);
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.contact-info h2 {
    font-size: 36px;
    margin-bottom: 30px;
    color: #ffffff;
}

.contact-info p {
    margin-bottom: 15px;
    font-size: 16px;
}

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

.contact-form input,
.contact-form textarea {
    background-color: var(--secondary-bg);
    border: 1px solid #333;
    padding: 15px;
    color: var(--text-color);
    font-family: var(--font-main);
    font-size: 14px;
}

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

.contact-form button {
    background-color: var(--accent-color);
    color: #000;
    border: none;
    padding: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.contact-form button:hover {
    background-color: #fff;
}

/* Footer */
footer {
    padding: 50px 0;
    border-top: 1px solid #333;
    text-align: center;
}

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

.footer-nav a {
    margin: 0 15px;
    font-size: 14px;
    font-weight: 600;
}

.footer-social {
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
}

.social-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(170, 255, 0, 0.3);
    border-radius: 50%;
    color: var(--accent-color);
    transition: all 0.3s ease;
}

.social-icon:hover {
    border-color: var(--accent-color);
    background-color: var(--accent-color);
    color: var(--bg-color);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(170, 255, 0, 0.3);
}

.social-icon svg {
    width: 20px;
    height: 20px;
}

.copyright {
    font-size: 12px;
    color: #666;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--accent-color);
    transition: all 0.3s ease;
    border-radius: 2px;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
}

.mobile-menu-toggle.active span:nth-child(2),
.mobile-menu-toggle.active span:nth-child(3) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(4) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Responsive */
@media (max-width: 768px) {
    .header-container {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .logo {
        font-size: 18px;
    }

    .logo-main {
        font-size: 18px;
    }

    .logo-sub {
        font-size: 8px;
    }

    .mobile-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        height: 100vh;
        background: linear-gradient(135deg, var(--bg-color) 0%, var(--secondary-bg) 100%);
        z-index: 1000;
        transition: right 0.4s ease;
        padding-top: 80px;
        box-shadow: -5px 0 20px rgba(0, 0, 0, 0.5);
    }

    .mobile-nav.active {
        right: 0;
    }

    nav ul {
        flex-direction: column;
        gap: 0;
        text-align: left;
        width: 100%;
        padding: 20px;
    }

    nav ul li {
        width: 100%;
        border-bottom: 1px solid rgba(170, 255, 0, 0.1);
    }

    nav ul li a {
        font-size: 16px;
        padding: 20px 15px;
        display: block;
        width: 100%;
        transition: all 0.3s ease;
    }

    nav ul li a:hover,
    nav ul li a.active {
        background: rgba(170, 255, 0, 0.1);
        padding-left: 25px;
    }

    /* Hero Section - Mobile Video */
    .hero {
        background-image: none;
    }

    .hero-video-mobile {
        display: block;
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        z-index: 1;
    }

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

    .hero-content h1 {
        font-size: 40px;
    }

    .hero-tagline {
        font-size: 18px;
        padding: 10px 20px;
    }

    .hero-subtitle {
        font-size: 14px;
        padding: 0 20px;
        margin-left: 20px;
        margin-right: 20px;
    }

    .projects-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .filters button {
        margin-left: 0;
        margin-right: 15px;
        margin-bottom: 10px;
    }

    .contact-container {
        grid-template-columns: 1fr;
    }
}

/* Project Details Page */
.project-details-hero {
    height: 60vh;
    background-size: cover;
    background-position: center;
    position: relative;
    margin-top: 80px;
    /* Space for fixed header */
}

.project-details-hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3), var(--bg-color));
}

.project-content {
    padding: 80px 0;
}

.project-header {
    margin-bottom: 50px;
}

.project-header h1 {
    font-size: 48px;
    margin-bottom: 10px;
    color: var(--accent-color);
}

.project-header .category {
    font-size: 18px;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.project-info-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 50px;
    margin-bottom: 80px;
}

.project-description p {
    margin-bottom: 20px;
    font-size: 16px;
    color: #ccc;
}

.project-stats {
    background-color: var(--secondary-bg);
    padding: 30px;
    border-left: 3px solid var(--accent-color);
}

.stat-item {
    margin-bottom: 20px;
}

.stat-item h4 {
    font-size: 14px;
    color: #888;
    margin-bottom: 5px;
    text-transform: uppercase;
}

.stat-item p {
    font-size: 18px;
    font-weight: 600;
}

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

.gallery-item {
    height: 300px;
    background-size: cover;
    background-position: center;
    transition: transform 0.3s ease;
}

.gallery-item:hover {
    transform: scale(1.02);
}

@media (max-width: 768px) {
    .project-info-grid {
        grid-template-columns: 1fr;
    }

    .project-header h1 {
        font-size: 36px;
    }
}

/* Team Section */
.team {
    padding: 100px 0;
    background-color: var(--bg-color);
    text-align: center;
}

.team h2 {
    font-size: 36px;
    margin-bottom: 60px;
    color: #ffffff;
    letter-spacing: 2px;
}

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

.team-member {
    background-color: var(--secondary-bg);
    padding: 25px 15px;
    border-radius: 15px;
    border: 1px solid #333;
    transition: all 0.4s ease;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.team-member:hover {
    transform: translateY(-10px);
    border-color: var(--accent-color);
    box-shadow: 0 10px 30px rgba(0, 255, 0, 0.1);
}

.member-image {
    width: 140px;
    height: 180px;
    background-size: cover;
    background-position: center;
    border-radius: 70px;
    /* Vertical Ellipse */
    margin-bottom: 20px;
    filter: grayscale(100%);
    transition: all 0.5s ease;
    border: 2px solid transparent;
}

.team-member:hover .member-image {
    filter: grayscale(0%);
    border-color: var(--accent-color);
}

.member-info {
    text-align: center;
}

.member-info h3 {
    font-size: 22px;
    margin-bottom: 8px;
    color: var(--text-color);
    font-weight: 700;
}

.member-info span {
    font-size: 13px;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    transition: color 0.3s ease;
}

.team-member:hover .member-info span {
    color: var(--accent-color);
}