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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: #000;
    color: #fff;
    line-height: 1.6;
    overflow-x: hidden;
}

/* Custom Properties */
:root {
    --purple-500: #7c3aed;
    --purple-600: #6d28d9;
    --cyan-500: #06b6d4;
    --cyan-600: #0891b2;
    --yellow-500: #eab308;
    --yellow-600: #ca8a04;
    --gray-800: #1f2937;
    --gray-900: #111827;
    --white-10: rgba(255, 255, 255, 0.1);
    --white-20: rgba(255, 255, 255, 0.2);
}

/* Utility Classes */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}

.gradient-text {
    background: linear-gradient(135deg, var(--purple-500), var(--cyan-500), var(--yellow-500));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, var(--purple-500), var(--cyan-500));
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 9999px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-family: inherit;
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--purple-600), var(--cyan-600));
    transform: scale(1.05);
}

.btn-primary.btn-large {
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

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

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: transparent;
    color: white;
    padding: 0.75rem 1.5rem;
    border: 2px solid var(--white-20);
    border-radius: 9999px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: var(--white-10);
}

.btn-secondary.btn-large {
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

/* Section Styles */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-subtitle {
    display: inline-block;
    background: linear-gradient(135deg, var(--purple-500), var(--cyan-500));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
}

.section-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.section-description {
    font-size: 1.25rem;
    color: #9ca3af;
    max-width: 48rem;
    margin: 0 auto;
}

.section-cta {
    text-align: center;
    margin-top: 4rem;
}

.section-cta p {
    color: #9ca3af;
    margin-bottom: 1.5rem;
}

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.3s ease;
    background: transparent;
}

.header.scrolled {
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(20px);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 4rem;
}

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

.logo-icon {
    position: relative;
    color: var(--purple-500);
}

.logo-dot {
    position: absolute;
    top: -4px;
    right: -4px;
    width: 12px;
    height: 12px;
    background: var(--cyan-500);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.logo-text {
    font-size: 1.25rem;
    font-weight: 700;
    color: white;
}

.nav-desktop {
    display: none;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--purple-500);
}

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

.hamburger-line {
    width: 24px;
    height: 2px;
    background: white;
    transition: all 0.3s ease;
}

.mobile-menu-btn.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-btn.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

.nav-mobile {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(20px);
    padding: 1rem 0;
}

.nav-mobile.active {
    display: block;
}

.nav-link-mobile {
    display: block;
    color: white;
    text-decoration: none;
    padding: 0.75rem 1rem;
    transition: color 0.3s ease;
}

.nav-link-mobile:hover {
    color: var(--purple-500);
}

.mobile-cta {
    padding: 0.75rem 1rem;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    background: linear-gradient(135deg, #000 0%, var(--gray-900) 50%, #000 100%);
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.bg-circle {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    animation: float 6s ease-in-out infinite;
}

.bg-circle-1 {
    top: 25%;
    left: 25%;
    width: 18rem;
    height: 18rem;
    background: rgba(124, 58, 237, 0.1);
}

.bg-circle-2 {
    top: 75%;
    right: 25%;
    width: 24rem;
    height: 24rem;
    background: rgba(6, 182, 212, 0.1);
    animation-delay: -2s;
}

.bg-circle-3 {
    bottom: 25%;
    left: 33%;
    width: 16rem;
    height: 16rem;
    background: rgba(234, 179, 8, 0.1);
    animation-delay: -4s;
}

.bg-circle-4 {
    top: 25%;
    left: 25%;
    width: 24rem;
    height: 24rem;
    background: rgba(124, 58, 237, 0.05);
}

.bg-circle-5 {
    bottom: 25%;
    right: 25%;
    width: 24rem;
    height: 24rem;
    background: rgba(6, 182, 212, 0.05);
}

.bg-circle-6 {
    top: 0;
    left: 25%;
    width: 24rem;
    height: 24rem;
    background: rgba(124, 58, 237, 0.1);
}

.bg-circle-7 {
    bottom: 0;
    right: 25%;
    width: 24rem;
    height: 24rem;
    background: rgba(6, 182, 212, 0.1);
}

.hero-content {
    display: grid;
    gap: 3rem;
    align-items: center;
    min-height: calc(100vh - 8rem);
    padding-top: 8rem;
    padding-bottom: 4rem;
}

.hero-text {
    text-align: center;
}

.hero-subtitle {
    display: inline-block;
    background: linear-gradient(135deg, var(--purple-500), var(--cyan-500));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1.5rem;
}

.hero-title {
    font-size: clamp(2.5rem, 8vw, 5rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.hero-description {
    font-size: 1.25rem;
    color: #d1d5db;
    margin-bottom: 2rem;
    max-width: 32rem;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    margin-bottom: 3rem;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--white-10);
}

.stat {
    text-align: center;
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: white;
}

.stat-label {
    color: #9ca3af;
    font-size: 0.875rem;
}

.hero-visual {
    display: flex;
    justify-content: center;
}

.visual-container {
    position: relative;
    width: 24rem;
    height: 24rem;
}

.rotating-circle {
    position: absolute;
    border-radius: 50%;
    border: 1px solid var(--white-10);
}

.outer-circle {
    inset: 0;
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.2), rgba(6, 182, 212, 0.2));
    animation: rotate 20s linear infinite;
}

.inner-circle {
    inset: 1rem;
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.2), rgba(234, 179, 8, 0.2));
    animation: rotate 25s linear infinite reverse;
}

.service-icons {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-icon {
    position: absolute;
    width: 4rem;
    height: 4rem;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.icon-web {
    top: -2rem;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--purple-500), var(--purple-600));
    box-shadow: 0 25px 50px -12px rgba(124, 58, 237, 0.3);
}

.icon-mobile {
    bottom: 1rem;
    left: -2rem;
    background: linear-gradient(135deg, var(--cyan-500), var(--cyan-600));
    box-shadow: 0 25px 50px -12px rgba(6, 182, 212, 0.3);
}

.icon-game {
    bottom: 1rem;
    right: -2rem;
    background: linear-gradient(135deg, var(--yellow-500), var(--yellow-600));
    box-shadow: 0 25px 50px -12px rgba(234, 179, 8, 0.3);
}

.floating-elements {
    position: absolute;
    inset: 0;
}

.floating-dot {
    position: absolute;
    border-radius: 50%;
    animation: bounce 2s infinite;
}

.dot-1 {
    top: -2rem;
    right: -2rem;
    width: 1rem;
    height: 1rem;
    background: var(--purple-500);
}

.dot-2 {
    bottom: -2rem;
    left: -2rem;
    width: 1.5rem;
    height: 1.5rem;
    background: var(--cyan-500);
    animation-delay: -0.5s;
}

.dot-3 {
    top: 50%;
    right: -3rem;
    width: 0.75rem;
    height: 0.75rem;
    background: var(--yellow-500);
    animation-delay: -1s;
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

.scroll-line {
    width: 2px;
    height: 2rem;
    background: linear-gradient(to bottom, var(--purple-500), transparent);
    border-radius: 1px;
}

/* Services Section */
.services {
    padding: 6rem 0;
    background: linear-gradient(to bottom, #000, var(--gray-900));
}

.services-grid {
    display: grid;
    gap: 2rem;
    margin-bottom: 4rem;
}

.service-card {
    position: relative;
    background: linear-gradient(to bottom, rgba(31, 41, 55, 0.5), rgba(17, 24, 39, 0.5));
    backdrop-filter: blur(10px);
    border: 1px solid var(--white-10);
    border-radius: 1.5rem;
    padding: 2rem;
    transition: all 0.5s ease;
}

.service-card:hover {
    transform: scale(1.05);
    border-color: var(--white-20);
    background: linear-gradient(to bottom, rgba(31, 41, 55, 0.7), rgba(17, 24, 39, 0.7));
}

.service-icon-wrapper {
    width: 4rem;
    height: 4rem;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: transform 0.3s ease;
}

.service-card:hover .service-icon-wrapper {
    transform: scale(1.1);
}

.service-icon-wrapper.purple {
    background: linear-gradient(135deg, var(--purple-500), var(--purple-600));
    box-shadow: 0 25px 50px -12px rgba(124, 58, 237, 0.3);
}

.service-icon-wrapper.cyan {
    background: linear-gradient(135deg, var(--cyan-500), var(--cyan-600));
    box-shadow: 0 25px 50px -12px rgba(6, 182, 212, 0.3);
}

.service-icon-wrapper.yellow {
    background: linear-gradient(135deg, var(--yellow-500), var(--yellow-600));
    box-shadow: 0 25px 50px -12px rgba(234, 179, 8, 0.3);
}

.service-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
    transition: color 0.3s ease;
}

.service-card:hover .service-title {
    color: var(--purple-500);
}

.service-description {
    color: #9ca3af;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.service-features {
    list-style: none;
    margin-bottom: 2rem;
}

.service-features li {
    display: flex;
    align-items: center;
    color: #d1d5db;
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.service-features li::before {
    content: '';
    width: 0.5rem;
    height: 0.5rem;
    background: linear-gradient(135deg, var(--purple-500), var(--cyan-500));
    border-radius: 50%;
    margin-right: 0.75rem;
}

.service-cta {
    display: flex;
    align-items: center;
    color: var(--purple-500);
    font-weight: 500;
    cursor: pointer;
    transition: color 0.3s ease;
}

.service-cta:hover {
    color: var(--cyan-500);
}

.service-cta svg {
    margin-left: 0.5rem;
    transition: transform 0.3s ease;
}

.service-cta:hover svg {
    transform: translateX(0.25rem);
}

/* Projects Section */
.projects {
    padding: 6rem 0;
    background: linear-gradient(to bottom, var(--gray-900), #000);
}

.projects-grid {
    display: grid;
    gap: 2rem;
    margin-bottom: 4rem;
}

.project-card {
    position: relative;
    background: linear-gradient(to bottom, rgba(31, 41, 55, 0.5), rgba(17, 24, 39, 0.5));
    backdrop-filter: blur(10px);
    border: 1px solid var(--white-10);
    border-radius: 1.5rem;
    overflow: hidden;
    transition: all 0.5s ease;
}

.project-card:hover {
    transform: scale(1.05);
    border-color: var(--white-20);
}

.project-image {
    position: relative;
    height: 16rem;
    overflow: hidden;
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

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

.project-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.project-card:hover .project-overlay {
    opacity: 1;
}

.project-actions {
    display: flex;
    gap: 1rem;
}

.project-btn {
    width: 3rem;
    height: 3rem;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: none;
    border-radius: 50%;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
}

.project-btn:hover {
    background: rgba(255, 255, 255, 0.3);
}

.project-category {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(10px);
    color: white;
    padding: 0.5rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 500;
}

.project-content {
    padding: 1.5rem;
}

.project-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.75rem;
    transition: color 0.3s ease;
}

.project-card:hover .project-title {
    color: var(--purple-500);
}

.project-description {
    color: #9ca3af;
    font-size: 0.875rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.project-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.tag {
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.2), rgba(6, 182, 212, 0.2));
    color: #c084fc;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 500;
    border: 1px solid rgba(124, 58, 237, 0.3);
}

.project-cta {
    width: 100%;
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.2), rgba(6, 182, 212, 0.2));
    color: white;
    border: 1px solid var(--white-10);
    padding: 0.75rem;
    border-radius: 0.75rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.project-cta:hover {
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.3), rgba(6, 182, 212, 0.3));
    border-color: var(--white-20);
}

/* About Section */
.about {
    position: relative;
    padding: 6rem 0;
    background: linear-gradient(to bottom, #000, var(--gray-900));
    overflow: hidden;
}

.about-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.about-content {
    display: grid;
    gap: 4rem;
    align-items: center;
}

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

.about-description {
    color: #9ca3af;
    font-size: 1.125rem;
    line-height: 1.7;
    margin-bottom: 3rem;
}

.about-description p {
    margin-bottom: 1.5rem;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--white-10);
}

.about-values {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.value-card {
    position: relative;
    background: linear-gradient(to bottom, rgba(31, 41, 55, 0.5), rgba(17, 24, 39, 0.5));
    backdrop-filter: blur(10px);
    border: 1px solid var(--white-10);
    border-radius: 1rem;
    padding: 1.5rem;
    transition: all 0.5s ease;
}

.value-card:hover {
    transform: scale(1.05);
    border-color: var(--white-20);
}

.value-icon {
    width: 3rem;
    height: 3rem;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    transition: transform 0.3s ease;
}

.value-card:hover .value-icon {
    transform: scale(1.1);
}

.value-icon.purple {
    background: linear-gradient(135deg, var(--purple-500), var(--purple-600));
    box-shadow: 0 10px 25px -5px rgba(124, 58, 237, 0.3);
}

.value-icon.cyan {
    background: linear-gradient(135deg, var(--cyan-500), var(--cyan-600));
    box-shadow: 0 10px 25px -5px rgba(6, 182, 212, 0.3);
}

.value-icon.yellow {
    background: linear-gradient(135deg, var(--yellow-500), var(--yellow-600));
    box-shadow: 0 10px 25px -5px rgba(234, 179, 8, 0.3);
}

.value-icon.gradient {
    background: linear-gradient(135deg, var(--purple-500), var(--cyan-500));
    box-shadow: 0 10px 25px -5px rgba(124, 58, 237, 0.3);
}

.value-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

.value-card:hover .value-title {
    color: var(--purple-500);
}

.value-description {
    color: #9ca3af;
    font-size: 0.875rem;
    line-height: 1.6;
}

.about-cta {
    margin-top: 5rem;
}

.cta-card {
    background: linear-gradient(to right, rgba(31, 41, 55, 0.5), rgba(17, 24, 39, 0.5));
    backdrop-filter: blur(10px);
    border: 1px solid var(--white-10);
    border-radius: 1.5rem;
    padding: 3rem 2rem;
    text-align: center;
}

.cta-card h3 {
    font-size: clamp(1.5rem, 4vw, 2rem);
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
}

.cta-card p {
    color: #9ca3af;
    font-size: 1.125rem;
    margin-bottom: 2rem;
    max-width: 32rem;
    margin-left: auto;
    margin-right: auto;
}

/* Contact Section */
.contact {
    position: relative;
    padding: 6rem 0;
    background: linear-gradient(to bottom, var(--gray-900), #000);
    overflow: hidden;
}

.contact-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.contact-content {
    display: grid;
    gap: 4rem;
}

.contact-form-wrapper {
    background: linear-gradient(to bottom, rgba(31, 41, 55, 0.5), rgba(17, 24, 39, 0.5));
    backdrop-filter: blur(10px);
    border: 1px solid var(--white-10);
    border-radius: 1.5rem;
    padding: 2rem;
}

.contact-form-wrapper h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 2rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    color: #d1d5db;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea {
    background: rgba(31, 41, 55, 0.5);
    border: 1px solid var(--white-10);
    border-radius: 0.75rem;
    padding: 0.75rem 1rem;
    color: white;
    font-family: inherit;
    transition: border-color 0.3s ease;
    resize: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #9ca3af;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--purple-500);
    box-shadow: 0 0 0 2px rgba(124, 58, 237, 0.2);
}

.contact-info h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 2rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    padding: 1.5rem;
    background: linear-gradient(to bottom, rgba(31, 41, 55, 0.5), rgba(17, 24, 39, 0.5));
    backdrop-filter: blur(10px);
    border: 1px solid var(--white-10);
    border-radius: 1rem;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

.contact-item:hover {
    transform: scale(1.05);
    border-color: var(--white-20);
}

.contact-icon {
    width: 3rem;
    height: 3rem;
    background: linear-gradient(135deg, var(--purple-500), var(--cyan-500));
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    transition: transform 0.3s ease;
}

.contact-item:hover .contact-icon {
    transform: scale(1.1);
}

.contact-details-text {
    flex: 1;
}

.contact-label {
    color: #9ca3af;
    font-size: 0.875rem;
}

.contact-value {
    color: white;
    font-weight: 500;
    transition: color 0.3s ease;
}

.contact-item:hover .contact-value {
    color: var(--purple-500);
}

.social-media {
    margin-bottom: 2rem;
}

.social-media h4 {
    font-size: 1.125rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 3rem;
    height: 3rem;
    background: linear-gradient(to bottom, rgba(31, 41, 55, 0.5), rgba(17, 24, 39, 0.5));
    backdrop-filter: blur(10px);
    border: 1px solid var(--white-10);
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #9ca3af;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    border-color: var(--white-20);
    transform: scale(1.1);
    color: var(--purple-500);
}

.working-hours {
    background: linear-gradient(to bottom, rgba(31, 41, 55, 0.5), rgba(17, 24, 39, 0.5));
    backdrop-filter: blur(10px);
    border: 1px solid var(--white-10);
    border-radius: 1rem;
    padding: 1.5rem;
}

.working-hours h4 {
    font-size: 1.125rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
}

.hours-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.hours-item {
    display: flex;
    justify-content: space-between;
    color: #9ca3af;
}

/* Footer */
.footer {
    background: linear-gradient(to bottom, #000, var(--gray-900));
    border-top: 1px solid var(--white-10);
    padding: 4rem 0 2rem;
    position: relative;
}

.footer-content {
    display: grid;
    gap: 3rem;
    margin-bottom: 3rem;
}

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

.footer-description {
    color: #9ca3af;
    line-height: 1.6;
    margin: 1.5rem 0;
}

.newsletter h4 {
    color: white;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.newsletter-form {
    display: flex;
    max-width: 20rem;
    margin: 0 auto;
}

.newsletter-form input {
    flex: 1;
    padding: 0.5rem 1rem;
    background: rgba(31, 41, 55, 0.5);
    border: 1px solid var(--white-10);
    border-radius: 0.5rem 0 0 0.5rem;
    color: white;
    font-family: inherit;
}

.newsletter-form input::placeholder {
    color: #9ca3af;
}

.newsletter-form button {
    background: linear-gradient(135deg, var(--purple-500), var(--cyan-500));
    color: white;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 0 0.5rem 0.5rem 0;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.newsletter-form button:hover {
    background: linear-gradient(135deg, var(--purple-600), var(--cyan-600));
}

.footer-links {
    display: grid;
    gap: 2rem;
    text-align: center;
}

.footer-column h3 {
    color: white;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.footer-column ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-column a {
    color: #9ca3af;
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: var(--purple-500);
}

.footer-bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    padding-top: 2rem;
    border-top: 1px solid var(--white-10);
    text-align: center;
}

.footer-copyright {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    color: #9ca3af;
    font-size: 0.875rem;
}

.heart-icon {
    color: var(--purple-500);
    animation: pulse 2s infinite;
}

.footer-legal {
    display: flex;
    gap: 2rem;
    font-size: 0.875rem;
}

.footer-legal a {
    color: #9ca3af;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-legal a:hover {
    color: var(--purple-500);
}

/* Animations */
@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes bounce {
    0%, 20%, 53%, 80%, 100% { transform: translateY(0); }
    40%, 43% { transform: translateY(-30px); }
    70% { transform: translateY(-15px); }
    90% { transform: translateY(-4px); }
}

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

/* Page Header Styles */
.page-header {
    position: relative;
    padding: 8rem 0 4rem;
    background: linear-gradient(135deg, #000 0%, var(--gray-900) 50%, #000 100%);
    overflow: hidden;
}

.page-header-content {
    text-align: center;
    position: relative;
    z-index: 2;
}

.page-title {
    font-size: clamp(3rem, 8vw, 5rem);
    font-weight: 700;
    color: white;
    margin-bottom: 1.5rem;
}

.page-description {
    font-size: 1.25rem;
    color: #d1d5db;
    max-width: 48rem;
    margin: 0 auto;
    line-height: 1.6;
}

.page-header-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

/* Projects Page Styles */
.filter-section {
    padding: 2rem 0;
    background: var(--gray-900);
}

.filter-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.filter-btn {
    background: transparent;
    color: #9ca3af;
    border: 1px solid var(--white-10);
    padding: 0.75rem 1.5rem;
    border-radius: 9999px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn.active,
.filter-btn:hover {
    background: linear-gradient(135deg, var(--purple-500), var(--cyan-500));
    color: white;
    border-color: transparent;
}

.projects-full {
    padding: 4rem 0;
    background: linear-gradient(to bottom, var(--gray-900), #000);
}

.projects-grid-full {
    display: grid;
    gap: 2rem;
    margin-bottom: 4rem;
}

.load-more-section {
    text-align: center;
    margin-top: 3rem;
}

.cta-section {
    padding: 4rem 0;
    background: #000;
}

/* Project Detail Styles */
.project-detail {
    padding-top: 4rem;
}

.project-hero {
    padding: 4rem 0;
    background: linear-gradient(135deg, #000 0%, var(--gray-900) 50%, #000 100%);
}

.project-breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 2rem;
    color: #9ca3af;
    font-size: 0.875rem;
}

.project-breadcrumb a {
    color: #9ca3af;
    text-decoration: none;
    transition: color 0.3s ease;
}

.project-breadcrumb a:hover {
    color: var(--purple-500);
}

.project-hero-content {
    display: grid;
    gap: 3rem;
    align-items: center;
}

.project-category-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--purple-500), var(--cyan-500));
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 1rem;
}

.project-hero-title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 700;
    color: white;
    margin-bottom: 1.5rem;
}

.project-hero-description {
    font-size: 1.25rem;
    color: #d1d5db;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.project-meta {
    display: grid;
    gap: 1rem;
    margin-bottom: 2rem;
}

.project-meta-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.meta-label {
    color: #9ca3af;
    font-weight: 500;
}

.meta-value {
    color: white;
    font-weight: 600;
}

.project-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.project-hero-image {
    position: relative;
}

.project-hero-image img {
    width: 100%;
    height: auto;
    border-radius: 1rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.project-tech-stack {
    position: absolute;
    bottom: 1rem;
    left: 1rem;
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.tech-tag {
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 500;
}

.project-overview {
    padding: 4rem 0;
    background: var(--gray-900);
}

.overview-grid {
    display: grid;
    gap: 3rem;
    align-items: start;
}

.overview-content h2 {
    font-size: 2rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1.5rem;
}

.overview-text p {
    color: #d1d5db;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.overview-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.stat-card {
    background: linear-gradient(to bottom, rgba(31, 41, 55, 0.5), rgba(17, 24, 39, 0.5));
    backdrop-filter: blur(10px);
    border: 1px solid var(--white-10);
    border-radius: 1rem;
    padding: 1.5rem;
    text-align: center;
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--purple-500), var(--cyan-500));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: #9ca3af;
    font-size: 0.875rem;
}

.project-features {
    padding: 4rem 0;
    background: #000;
}

.features-grid {
    display: grid;
    gap: 2rem;
    margin-top: 3rem;
}

.feature-card {
    background: linear-gradient(to bottom, rgba(31, 41, 55, 0.5), rgba(17, 24, 39, 0.5));
    backdrop-filter: blur(10px);
    border: 1px solid var(--white-10);
    border-radius: 1rem;
    padding: 2rem;
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: var(--white-20);
}

.feature-icon {
    width: 3rem;
    height: 3rem;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    color: white;
}

.feature-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.75rem;
}

.feature-card p {
    color: #9ca3af;
    line-height: 1.6;
}

.project-gallery {
    padding: 4rem 0;
    background: var(--gray-900);
}

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

.gallery-item {
    position: relative;
    border-radius: 1rem;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s ease;
}

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

.gallery-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay h4 {
    color: white;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.gallery-overlay p {
    color: #d1d5db;
    font-size: 0.875rem;
}

.next-project {
    padding: 4rem 0;
    background: #000;
}

.next-project-card {
    display: grid;
    gap: 2rem;
    align-items: center;
    background: linear-gradient(to bottom, rgba(31, 41, 55, 0.5), rgba(17, 24, 39, 0.5));
    backdrop-filter: blur(10px);
    border: 1px solid var(--white-10);
    border-radius: 1.5rem;
    padding: 2rem;
}

.next-label {
    color: var(--purple-500);
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.next-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    margin: 0.5rem 0;
}

.next-description {
    color: #9ca3af;
    margin-bottom: 1.5rem;
}

.next-project-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 0.75rem;
}

/* Blog Styles */
.blog-section {
    padding: 4rem 0;
    background: linear-gradient(to bottom, var(--gray-900), #000);
}

.featured-article {
    margin-bottom: 4rem;
}

.featured-content {
    display: grid;
    gap: 3rem;
    align-items: center;
    background: linear-gradient(to bottom, rgba(31, 41, 55, 0.5), rgba(17, 24, 39, 0.5));
    backdrop-filter: blur(10px);
    border: 1px solid var(--white-10);
    border-radius: 1.5rem;
    padding: 2rem;
}

.article-category {
    display: inline-block;
    background: linear-gradient(135deg, var(--purple-500), var(--cyan-500));
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 500;
    margin-bottom: 1rem;
}

.featured-content h2 {
    font-size: 2rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
}

.featured-content p {
    color: #d1d5db;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.article-meta {
    display: flex;
    gap: 1rem;
    color: #9ca3af;
    font-size: 0.875rem;
    margin-bottom: 1.5rem;
}

.featured-image img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 0.75rem;
}

.blog-grid {
    display: grid;
    gap: 2rem;
    margin-bottom: 3rem;
}

.blog-card {
    background: linear-gradient(to bottom, rgba(31, 41, 55, 0.5), rgba(17, 24, 39, 0.5));
    backdrop-filter: blur(10px);
    border: 1px solid var(--white-10);
    border-radius: 1rem;
    overflow: hidden;
    transition: all 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-5px);
    border-color: var(--white-20);
}

.blog-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.blog-card:hover .blog-image img {
    transform: scale(1.1);
}

.blog-category {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 500;
}

.blog-content {
    padding: 1.5rem;
}

.blog-content h3 {
    margin-bottom: 0.75rem;
}

.blog-content h3 a {
    color: white;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.blog-content h3 a:hover {
    color: var(--purple-500);
}

.blog-content p {
    color: #9ca3af;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.blog-meta {
    display: flex;
    gap: 1rem;
    color: #6b7280;
    font-size: 0.875rem;
}

.newsletter-section {
    padding: 4rem 0;
    background: #000;
}

.newsletter-card {
    background: linear-gradient(to bottom, rgba(31, 41, 55, 0.5), rgba(17, 24, 39, 0.5));
    backdrop-filter: blur(10px);
    border: 1px solid var(--white-10);
    border-radius: 1.5rem;
    padding: 3rem 2rem;
    text-align: center;
}

.newsletter-content h3 {
    font-size: 1.75rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
}

.newsletter-content p {
    color: #9ca3af;
    margin-bottom: 2rem;
    max-width: 32rem;
    margin-left: auto;
    margin-right: auto;
}

.newsletter-form-large {
    display: flex;
    max-width: 24rem;
    margin: 0 auto;
    gap: 0.5rem;
}

.newsletter-form-large input {
    flex: 1;
    padding: 0.75rem 1rem;
    background: rgba(31, 41, 55, 0.5);
    border: 1px solid var(--white-10);
    border-radius: 0.5rem;
    color: white;
    font-family: inherit;
}

.newsletter-form-large input::placeholder {
    color: #9ca3af;
}

/* Careers Styles */
.why-work-section {
    padding: 4rem 0;
    background: linear-gradient(to bottom, var(--gray-900), #000);
}

.benefits-grid {
    display: grid;
    gap: 2rem;
    margin-top: 3rem;
}

.benefit-card {
    background: linear-gradient(to bottom, rgba(31, 41, 55, 0.5), rgba(17, 24, 39, 0.5));
    backdrop-filter: blur(10px);
    border: 1px solid var(--white-10);
    border-radius: 1rem;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
    border-color: var(--white-20);
}

.benefit-icon {
    width: 3rem;
    height: 3rem;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: white;
}

.benefit-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.75rem;
}

.benefit-card p {
    color: #9ca3af;
    line-height: 1.6;
}

.positions-section {
    padding: 4rem 0;
    background: #000;
}

.positions-grid {
    display: grid;
    gap: 2rem;
    margin-top: 3rem;
}

.position-card {
    background: linear-gradient(to bottom, rgba(31, 41, 55, 0.5), rgba(17, 24, 39, 0.5));
    backdrop-filter: blur(10px);
    border: 1px solid var(--white-10);
    border-radius: 1rem;
    padding: 2rem;
    transition: all 0.3s ease;
}

.position-card:hover {
    transform: translateY(-5px);
    border-color: var(--white-20);
}

.position-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.position-title h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.25rem;
}

.position-type {
    background: linear-gradient(135deg, var(--purple-500), var(--cyan-500));
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 500;
}

.position-location {
    color: #9ca3af;
    font-size: 0.875rem;
}

.position-description {
    color: #d1d5db;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.position-requirements h4 {
    color: white;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.position-requirements ul {
    list-style: none;
    margin-bottom: 1.5rem;
}

.position-requirements li {
    color: #9ca3af;
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
    padding-left: 1rem;
    position: relative;
}

.position-requirements li::before {
    content: '•';
    color: var(--purple-500);
    position: absolute;
    left: 0;
}

.position-tech {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.position-footer {
    border-top: 1px solid var(--white-10);
    padding-top: 1.5rem;
}

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

/* Modal Styles */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    padding: 1rem;
}

.modal-content {
    background: linear-gradient(to bottom, rgba(31, 41, 55, 0.9), rgba(17, 24, 39, 0.9));
    backdrop-filter: blur(20px);
    border: 1px solid var(--white-10);
    border-radius: 1rem;
    width: 100%;
    max-width: 32rem;
    max-height: 90vh;
    overflow-y: auto;
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    border-bottom: 1px solid var(--white-10);
}

.modal-header h3 {
    color: white;
    font-weight: 700;
}

.modal-close {
    background: none;
    border: none;
    color: #9ca3af;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.25rem;
    transition: color 0.3s ease;
}

.modal-close:hover {
    color: white;
}

.application-form {
    padding: 1.5rem;
}

.form-actions {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.form-actions .btn-secondary {
    flex: 1;
    justify-content: center;
}

.form-actions .btn-primary {
    flex: 2;
    justify-content: center;
}

/* FAQ Styles */
.faq-section {
    padding: 4rem 0;
    background: linear-gradient(to bottom, var(--gray-900), #000);
}

.faq-categories {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.faq-category-btn {
    background: transparent;
    color: #9ca3af;
    border: 1px solid var(--white-10);
    padding: 0.75rem 1.5rem;
    border-radius: 9999px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-category-btn.active,
.faq-category-btn:hover {
    background: linear-gradient(135deg, var(--purple-500), var(--cyan-500));
    color: white;
    border-color: transparent;
}

.faq-category-content {
    display: none;
}

.faq-category-content.active {
    display: block;
}

.faq-item {
    background: linear-gradient(to bottom, rgba(31, 41, 55, 0.5), rgba(17, 24, 39, 0.5));
    backdrop-filter: blur(10px);
    border: 1px solid var(--white-10);
    border-radius: 1rem;
    margin-bottom: 1rem;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: var(--white-20);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-question h3 {
    color: white;
    font-weight: 600;
    margin: 0;
}

.faq-icon {
    color: var(--purple-500);
    transition: transform 0.3s ease;
    flex-shrink: 0;
    margin-left: 1rem;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-answer p {
    padding: 0 1.5rem 1.5rem;
    color: #d1d5db;
    line-height: 1.6;
    margin: 0;
}

.faq-cta {
    padding: 4rem 0;
    background: #000;
}

/* Lightbox Styles */
.lightbox-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    padding: 2rem;
}

.lightbox-content {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
}

.lightbox-content img {
    width: 100%;
    height: auto;
    border-radius: 0.5rem;
}

.lightbox-close {
    position: absolute;
    top: -3rem;
    right: 0;
    background: none;
    border: none;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    padding: 0.5rem;
    transition: opacity 0.3s ease;
}

.lightbox-close:hover {
    opacity: 0.7;
}

/* Services Page Styles */
.services-detailed {
    padding: 4rem 0;
    background: linear-gradient(to bottom, var(--gray-900), #000);
}

.service-detail {
    margin-bottom: 6rem;
}

.service-detail.reverse .service-detail-content {
    flex-direction: row-reverse;
}

.service-detail-content {
    display: flex;
    gap: 4rem;
    align-items: center;
    background: linear-gradient(to bottom, rgba(31, 41, 55, 0.5), rgba(17, 24, 39, 0.5));
    backdrop-filter: blur(10px);
    border: 1px solid var(--white-10);
    border-radius: 2rem;
    padding: 3rem;
    transition: all 0.3s ease;
}

.service-detail-content:hover {
    border-color: var(--white-20);
    transform: translateY(-5px);
}

.service-detail-text {
    flex: 1;
}

.service-detail-image {
    flex: 1;
}

.service-detail-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 1rem;
}

.service-icon-large {
    width: 4rem;
    height: 4rem;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: white;
}

.service-icon-large.purple {
    background: linear-gradient(135deg, var(--purple-500), var(--purple-600));
    box-shadow: 0 25px 50px -12px rgba(124, 58, 237, 0.3);
}

.service-icon-large.cyan {
    background: linear-gradient(135deg, var(--cyan-500), var(--cyan-600));
    box-shadow: 0 25px 50px -12px rgba(6, 182, 212, 0.3);
}

.service-icon-large.yellow {
    background: linear-gradient(135deg, var(--yellow-500), var(--yellow-600));
    box-shadow: 0 25px 50px -12px rgba(234, 179, 8, 0.3);
}

.service-detail h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1.5rem;
}

.service-description {
    color: #d1d5db;
    font-size: 1.125rem;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.service-features-list h3,
.service-tech h3,
.service-pricing h3 {
    color: white;
    font-weight: 600;
    margin-bottom: 1rem;
}

.service-features-list ul {
    list-style: none;
    margin-bottom: 2rem;
}

.service-features-list li {
    color: #9ca3af;
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.service-features-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.5rem;
    width: 0.5rem;
    height: 0.5rem;
    background: linear-gradient(135deg, var(--purple-500), var(--cyan-500));
    border-radius: 50%;
}

.tech-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 2rem;
}

.tech-tag {
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.2), rgba(6, 182, 212, 0.2));
    color: #c084fc;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 500;
    border: 1px solid rgba(124, 58, 237, 0.3);
}

.pricing-options {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.pricing-option {
    background: rgba(31, 41, 55, 0.5);
    border: 1px solid var(--white-10);
    border-radius: 0.75rem;
    padding: 1rem;
    flex: 1;
    min-width: 150px;
}

.pricing-option h4 {
    color: white;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.pricing-option p {
    color: #9ca3af;
    font-size: 0.875rem;
}

.pricing-option strong {
    color: var(--purple-400);
}

/* Process Section */
.process-section {
    padding: 4rem 0;
    background: #000;
}

.process-steps {
    display: grid;
    gap: 2rem;
    margin-top: 3rem;
}

.process-step {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    background: linear-gradient(to bottom, rgba(31, 41, 55, 0.5), rgba(17, 24, 39, 0.5));
    backdrop-filter: blur(10px);
    border: 1px solid var(--white-10);
    border-radius: 1rem;
    padding: 2rem;
    transition: all 0.3s ease;
}

.process-step:hover {
    border-color: var(--white-20);
    transform: translateY(-5px);
}

.step-number {
    width: 3rem;
    height: 3rem;
    background: linear-gradient(135deg, var(--purple-500), var(--cyan-500));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 1.125rem;
    flex-shrink: 0;
}

.step-content h3 {
    color: white;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.step-content p {
    color: #9ca3af;
    line-height: 1.6;
}

.services-cta {
    padding: 4rem 0;
    background: var(--gray-900);
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Contact Page Styles */
.contact-methods {
    padding: 4rem 0;
    background: linear-gradient(to bottom, var(--gray-900), #000);
}

.contact-methods-grid {
    display: grid;
    gap: 2rem;
    margin-top: 2rem;
}

.contact-method {
    background: linear-gradient(to bottom, rgba(31, 41, 55, 0.5), rgba(17, 24, 39, 0.5));
    backdrop-filter: blur(10px);
    border: 1px solid var(--white-10);
    border-radius: 1.5rem;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.contact-method:hover {
    border-color: var(--white-20);
    transform: translateY(-5px);
}

.contact-method-icon {
    width: 4rem;
    height: 4rem;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
}

.contact-method-icon.purple {
    background: linear-gradient(135deg, var(--purple-500), var(--purple-600));
    box-shadow: 0 25px 50px -12px rgba(124, 58, 237, 0.3);
}

.contact-method-icon.cyan {
    background: linear-gradient(135deg, var(--cyan-500), var(--cyan-600));
    box-shadow: 0 25px 50px -12px rgba(6, 182, 212, 0.3);
}

.contact-method-icon.yellow {
    background: linear-gradient(135deg, var(--yellow-500), var(--yellow-600));
    box-shadow: 0 25px 50px -12px rgba(234, 179, 8, 0.3);
}

.contact-method h3 {
    color: white;
    font-weight: 700;
    margin-bottom: 1rem;
}

.contact-method p {
    color: #9ca3af;
    margin-bottom: 1rem;
}

.contact-link {
    color: var(--purple-400);
    font-weight: 500;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-link:hover {
    color: var(--cyan-400);
}

.contact-main {
    padding: 4rem 0;
    background: #000;
}

.contact-main-grid {
    display: grid;
    gap: 4rem;
    align-items: start;
}

.contact-form-section h2,
.contact-info-section h2 {
    color: white;
    font-weight: 700;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.form-description {
    color: #9ca3af;
    margin-bottom: 2rem;
}

.contact-form-detailed {
    background: linear-gradient(to bottom, rgba(31, 41, 55, 0.5), rgba(17, 24, 39, 0.5));
    backdrop-filter: blur(10px);
    border: 1px solid var(--white-10);
    border-radius: 1.5rem;
    padding: 2rem;
}

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

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

.form-group label {
    display: block;
    color: #d1d5db;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    background: rgba(31, 41, 55, 0.5);
    border: 1px solid var(--white-10);
    border-radius: 0.75rem;
    color: white;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #9ca3af;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--purple-500);
    box-shadow: 0 0 0 2px rgba(124, 58, 237, 0.2);
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    color: #d1d5db;
    font-size: 0.875rem;
    line-height: 1.5;
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin: 0;
}

.checkbox-label a {
    color: var(--purple-400);
    text-decoration: none;
}

.checkbox-label a:hover {
    color: var(--cyan-400);
}

.contact-details-list {
    margin-bottom: 2rem;
}

.contact-detail-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: linear-gradient(to bottom, rgba(31, 41, 55, 0.5), rgba(17, 24, 39, 0.5));
    backdrop-filter: blur(10px);
    border: 1px solid var(--white-10);
    border-radius: 1rem;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.contact-detail-item:hover {
    border-color: var(--white-20);
    transform: translateY(-2px);
}

.contact-detail-icon {
    width: 3rem;
    height: 3rem;
    background: linear-gradient(135deg, var(--purple-500), var(--cyan-500));
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
}

.contact-detail-content h4 {
    color: white;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.contact-detail-content p {
    color: #9ca3af;
    font-size: 0.875rem;
}

.working-hours,
.social-media,
.quick-response {
    background: linear-gradient(to bottom, rgba(31, 41, 55, 0.5), rgba(17, 24, 39, 0.5));
    backdrop-filter: blur(10px);
    border: 1px solid var(--white-10);
    border-radius: 1rem;
    padding: 1.5rem;
    margin-bottom: 2rem;
}

.working-hours h3,
.social-media h3,
.quick-response h3 {
    color: white;
    font-weight: 600;
    margin-bottom: 1rem;
}

.hours-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.hours-item {
    display: flex;
    justify-content: space-between;
    color: #9ca3af;
    font-size: 0.875rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 3rem;
    height: 3rem;
    background: rgba(31, 41, 55, 0.5);
    border: 1px solid var(--white-10);
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #9ca3af;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    border-color: var(--white-20);
    color: var(--purple-400);
    transform: scale(1.1);
}

.quick-response p {
    color: #9ca3af;
    margin-bottom: 1rem;
}

.response-times {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.response-time {
    color: #d1d5db;
    font-size: 0.875rem;
}

.response-time strong {
    color: var(--purple-400);
}

.contact-faq {
    padding: 4rem 0;
    background: var(--gray-900);
}

.contact-faq h2 {
    color: white;
    font-weight: 700;
    font-size: 2rem;
    text-align: center;
    margin-bottom: 3rem;
}

.faq-quick-grid {
    display: grid;
    gap: 2rem;
    margin-bottom: 3rem;
}

.faq-quick-item {
    background: linear-gradient(to bottom, rgba(31, 41, 55, 0.5), rgba(17, 24, 39, 0.5));
    backdrop-filter: blur(10px);
    border: 1px solid var(--white-10);
    border-radius: 1rem;
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.faq-quick-item:hover {
    border-color: var(--white-20);
    transform: translateY(-2px);
}

.faq-quick-item h3 {
    color: white;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.faq-quick-item p {
    color: #9ca3af;
    line-height: 1.6;
}

.faq-cta {
    text-align: center;
}

/* Responsive Design */
@media (min-width: 640px) {
    .container {
        padding: 0 1.5rem;
    }

    .hero-buttons {
        flex-direction: row;
        justify-content: center;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .projects-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-links {
        grid-template-columns: repeat(2, 1fr);
        text-align: left;
    }

    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
    }

    .projects-grid-full {
        grid-template-columns: repeat(2, 1fr);
    }

    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .positions-grid {
        grid-template-columns: repeat(1, 1fr);
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .overview-grid {
        grid-template-columns: 2fr 1fr;
    }

    .project-hero-content {
        grid-template-columns: 1fr 1fr;
    }

    .next-project-card {
        grid-template-columns: 1fr 1fr;
    }

    .featured-content {
        grid-template-columns: 1fr 1fr;
    }

    .newsletter-form-large {
        flex-direction: row;
    }

    .project-meta {
        grid-template-columns: repeat(3, 1fr);
    }

    .contact-methods-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .faq-quick-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

@media (min-width: 768px) {
    .nav-desktop {
        display: flex;
    }

    .mobile-menu-btn {
        display: none;
    }

    .hero-content {
        grid-template-columns: 1fr 1fr;
        text-align: left;
    }

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

    .hero-description {
        margin-left: 0;
        margin-right: 0;
    }

    .hero-buttons {
        justify-content: flex-start;
    }

    .about-content {
        grid-template-columns: 1fr 1fr;
        text-align: left;
    }

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

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

    .footer-content {
        grid-template-columns: 1fr 1fr;
    }

    .service-detail-content {
        flex-direction: column;
        text-align: center;
    }

    .service-detail.reverse .service-detail-content {
        flex-direction: column;
    }

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

@media (min-width: 1024px) {
    .container {
        padding: 0 2rem;
    }

    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .projects-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .footer-content {
        grid-template-columns: 1fr 1fr 1fr 1fr;
    }

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

    .footer-links {
        grid-template-columns: repeat(3, 1fr);
        text-align: left;
    }

    .projects-grid-full {
        grid-template-columns: repeat(3, 1fr);
    }

    .blog-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .positions-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .service-detail-content {
        flex-direction: row;
        text-align: left;
    }

    .service-detail.reverse .service-detail-content {
        flex-direction: row-reverse;
    }

    .process-steps {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1280px) {
    .container {
        padding: 0 2rem;
    }

    .process-steps {
        grid-template-columns: repeat(3, 1fr);
    }
}

.nav-link.active{
    color: var(--purple-500);
}

.title-text a{
    text-decoration: none;

}

