/* PixelForge Studios - Game Development Website Styles */

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #0a0a0a;
}

.page-wrapper {
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Orbitron', monospace;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.logo-text {
    font-family: 'Orbitron', monospace;
    font-weight: 900;
    font-size: 1.8rem;
    background: linear-gradient(135deg, #00f5ff, #ff00ff);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-decoration: none;
}

/* Navigation */
.main-navigation {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 245, 255, 0.2);
    z-index: 1000;
    padding: 1rem 0;
}

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

.brand-section .company-logo {
    text-decoration: none;
}

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

.nav-link {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: #00f5ff;
    background: rgba(0, 245, 255, 0.1);
}

.nav-link.active-page {
    color: #00f5ff;
    background: rgba(0, 245, 255, 0.15);
}

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

.hamburger-line {
    width: 25px;
    height: 3px;
    background: #00f5ff;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

/* Hero Section */
.hero-banner {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

.hero-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(10, 10, 10, 0.8), rgba(0, 245, 255, 0.1));
    z-index: -1;
}

.hero-content {
    position: relative;
    width: 100%;
    z-index: 1;
}

.content-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    text-align: center;
}

.welcome-tag {
    display: inline-block;
    background: linear-gradient(135deg, #00f5ff, #ff00ff);
    color: #000;
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
}

.hero-headline {
    font-size: 4rem;
    color: #fff;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #fff, #00f5ff);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-description {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin: 0 auto 2.5rem;
    line-height: 1.7;
}

.hero-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.primary-cta, .secondary-cta {
    padding: 1rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.primary-cta {
    background: linear-gradient(135deg, #00f5ff, #0080ff);
    color: #000;
    border: 2px solid transparent;
}

.primary-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 245, 255, 0.3);
}

.secondary-cta {
    background: transparent;
    color: #00f5ff;
    border: 2px solid #00f5ff;
}

.secondary-cta:hover {
    background: rgba(0, 245, 255, 0.1);
    transform: translateY(-2px);
}

/* Section Container */
.section-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Company Intro */
.company-intro {
    padding: 6rem 0;
    background: #111;
    position: relative;
}

.intro-content {
    text-align: center;
    position: relative;
}

.section-title {
    font-size: 2.5rem;
    color: #fff;
    margin-bottom: 2rem;
}

.intro-text {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

.highlight-shape {
    position: absolute;
    top: -50px;
    right: -50px;
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #00f5ff, #ff00ff);
    border-radius: 50%;
    opacity: 0.1;
    z-index: -1;
}

/* Services Showcase */
.services-showcase {
    padding: 6rem 0;
    background: #0a0a0a;
}

.showcase-grid {
    display: grid;
    gap: 4rem;
}

.service-column {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.service-column:nth-child(2) {
    direction: rtl;
}

.service-column:nth-child(2) * {
    direction: ltr;
}

.service-visual {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
}

.service-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.service-image:hover {
    transform: scale(1.05);
}

.service-details {
    padding: 2rem;
}

.service-name {
    font-size: 1.8rem;
    color: #00f5ff;
    margin-bottom: 1rem;
}

.service-summary {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    font-size: 1.1rem;
}

/* Technology Section */
.tech-expertise {
    padding: 6rem 0;
    background: #111;
}

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

.tech-visual {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
}

.tech-bg {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.tech-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
}

.floating-elements {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.tech-badge {
    background: linear-gradient(135deg, #00f5ff, #0080ff);
    color: #000;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    text-align: center;
}

.tech-content {
    padding: 2rem;
}

.tech-title {
    font-size: 2.2rem;
    color: #fff;
    margin-bottom: 1.5rem;
}

.tech-description {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.tech-features {
    display: grid;
    gap: 1.5rem;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.feature-icon {
    font-size: 1.5rem;
    margin-top: 0.2rem;
}

.feature-item h5 {
    color: #00f5ff;
    margin-bottom: 0.5rem;
}

.feature-item p {
    color: rgba(255, 255, 255, 0.7);
}

/* Company Values */
.company-values {
    position: relative;
    padding: 6rem 0;
    overflow: hidden;
}

.values-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

.values-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.values-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: -1;
}

.values-content {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

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

.value-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 245, 255, 0.2);
    border-radius: 12px;
    padding: 2.5rem;
    text-align: center;
    transition: transform 0.3s ease;
}

.value-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.08);
}

.value-icon {
    color: #00f5ff;
    margin-bottom: 1.5rem;
}

.value-title {
    color: #fff;
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.value-description {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

/* Studio Approach */
.studio-approach {
    padding: 6rem 0;
    background: #0a0a0a;
}

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

.visual-stack {
    position: relative;
}

.approach-main-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 12px;
}

.approach-accent {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #00f5ff, #ff00ff);
    border-radius: 50%;
    opacity: 0.3;
    z-index: -1;
}

.approach-content {
    padding: 2rem;
}

.section-label {
    color: #00f5ff;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

.approach-title {
    font-size: 2.2rem;
    color: #fff;
    margin: 1rem 0 1.5rem;
}

.approach-description {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    margin-bottom: 2rem;
}

.approach-link {
    color: #00f5ff;
    text-decoration: none;
    font-weight: 600;
    border-bottom: 2px solid transparent;
    transition: border-color 0.3s ease;
}

.approach-link:hover {
    border-bottom-color: #00f5ff;
}

/* Contact Section */
.contact-section {
    position: relative;
    padding: 6rem 0;
    background: #111;
}

.contact-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.gradient-overlay {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 245, 255, 0.1), rgba(255, 0, 255, 0.1));
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    align-items: start;
}

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

.social-link {
    color: #00f5ff;
    padding: 1rem;
    border: 2px solid rgba(0, 245, 255, 0.3);
    border-radius: 50%;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-link:hover {
    background: rgba(0, 245, 255, 0.1);
    border-color: #00f5ff;
    transform: translateY(-2px);
}

.contact-form-area {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 245, 255, 0.2);
    border-radius: 12px;
    padding: 3rem;
}

.form-title {
    color: #fff;
    font-size: 1.8rem;
    margin-bottom: 2rem;
    text-align: center;
}

.project-form {
    display: grid;
    gap: 1.5rem;
}

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

.form-input, .form-select, .form-textarea {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(0, 245, 255, 0.2);
    border-radius: 8px;
    padding: 1rem;
    color: #fff;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-input:focus, .form-select:focus, .form-textarea:focus {
    outline: none;
    border-color: #00f5ff;
}

.form-input::placeholder, .form-textarea::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.submit-button {
    background: linear-gradient(135deg, #00f5ff, #0080ff);
    color: #000;
    border: none;
    border-radius: 8px;
    padding: 1rem 2rem;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 245, 255, 0.3);
}

/* Footer */
.site-footer {
    background: #000;
    padding: 3rem 0;
    border-top: 1px solid rgba(0, 245, 255, 0.2);
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

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

.footer-heading {
    color: #00f5ff;
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.footer-text {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

.footer-nav {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-link {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: #00f5ff;
}

.contact-details p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0.5rem;
}

/* About Page Styles */
.about-hero-section {
    position: relative;
    height: 70vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    margin-top: 80px;
}

.about-hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

.about-hero-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(10, 10, 10, 0.9), rgba(0, 245, 255, 0.2));
    z-index: -1;
}

.about-hero-content {
    position: relative;
    width: 100%;
    z-index: 1;
}

.about-content-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    text-align: center;
}

.about-welcome-tag {
    display: inline-block;
    background: linear-gradient(135deg, #00f5ff, #ff00ff);
    color: #000;
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
}

.about-hero-headline {
    font-size: 3rem;
    color: #fff;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #fff, #00f5ff);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.about-hero-description {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

.company-story-section {
    padding: 6rem 0;
    background: #111;
}

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

.story-content {
    padding: 2rem;
}

.story-title {
    font-size: 2.2rem;
    color: #fff;
    margin: 1rem 0 2rem;
}

.story-description {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

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

.stat-item {
    text-align: center;
    padding: 1.5rem;
    background: rgba(0, 245, 255, 0.1);
    border-radius: 8px;
    border: 1px solid rgba(0, 245, 255, 0.2);
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 900;
    color: #00f5ff;
    font-family: 'Orbitron', monospace;
}

.stat-label {
    display: block;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 0.5rem;
}

.story-visual {
    position: relative;
}

.story-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 12px;
}

.story-accent-shape {
    position: absolute;
    top: -30px;
    left: -30px;
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, #ff00ff, #00f5ff);
    border-radius: 50%;
    opacity: 0.2;
    z-index: -1;
}

.team-showcase {
    padding: 6rem 0;
    background: #0a0a0a;
}

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

.team-intro {
    color: rgba(255, 255, 255, 0.7);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
}

.team-member {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 245, 255, 0.2);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    transition: transform 0.3s ease;
}

.team-member:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(0, 245, 255, 0.4);
}

.member-avatar {
    margin-bottom: 1.5rem;
}

.avatar-placeholder {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #00f5ff, #0080ff);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.avatar-initials {
    font-size: 1.5rem;
    font-weight: 700;
    color: #000;
}

.member-name {
    color: #fff;
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.member-role {
    color: #00f5ff;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: block;
    margin-bottom: 1rem;
}

.member-bio {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    font-size: 0.95rem;
}

.values-mission-section {
    position: relative;
    padding: 6rem 0;
    background: #111;
}

.values-mission-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.values-mission-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.mission-block, .values-block {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 245, 255, 0.2);
    border-radius: 12px;
    padding: 3rem;
}

.mission-title, .values-title {
    color: #00f5ff;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
}

.mission-text {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    font-size: 1.1rem;
}

.values-list {
    display: grid;
    gap: 1.5rem;
}

.value-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.value-icon {
    font-size: 1.5rem;
    margin-top: 0.2rem;
}

.value-content h4 {
    color: #fff;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.value-content p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

.technology-expertise {
    padding: 6rem 0;
    background: #0a0a0a;
}

.tech-content {
    text-align: center;
}

.tech-intro {
    color: rgba(255, 255, 255, 0.7);
    max-width: 600px;
    margin: 0 auto 3rem;
    line-height: 1.6;
}

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

.tech-category {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(0, 245, 255, 0.2);
    border-radius: 12px;
    padding: 2rem;
}

.category-title {
    color: #00f5ff;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.tech-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
}

.about-cta-section {
    padding: 6rem 0;
    background: #111;
}

.cta-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.cta-title {
    color: #fff;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.cta-description {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 2.5rem;
}

.cta-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-headline {
        font-size: 2.5rem;
    }

    .hero-actions {
        flex-direction: column;
        align-items: center;
    }

    .primary-cta, .secondary-cta {
        width: 100%;
        max-width: 300px;
        text-align: center;
    }

    .service-column,
    .tech-layout,
    .approach-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

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

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

    .primary-menu {
        display: none;
    }

    .nav-container {
        padding: 0 1rem;
    }

    .section-container {
        padding: 0 1rem;
    }

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

    .social-links {
        justify-content: center;
    }
}

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

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

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

    .tech-title,
    .approach-title {
        font-size: 1.8rem;
    }

    .contact-form-area {
        padding: 2rem;
    }

    .form-title {
        font-size: 1.5rem;
    }

    /* About page mobile responsive */
    .about-hero-headline {
        font-size: 2rem;
    }

    .story-layout,
    .values-mission-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .milestone-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

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

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

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

    .about-hero-section {
        height: 60vh;
    }
}

/* Legal Pages Styles */
.legal-page-section {
    padding: 8rem 0 6rem;
    background: #111;
    min-height: 100vh;
}

.legal-content {
    max-width: 800px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 245, 255, 0.2);
    border-radius: 12px;
    padding: 3rem;
}

.legal-title {
    color: #00f5ff;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    text-align: center;
}

.legal-updated {
    color: rgba(255, 255, 255, 0.6);
    text-align: center;
    margin-bottom: 3rem;
    font-style: italic;
}

.legal-text {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
}

.legal-text h2 {
    color: #fff;
    font-size: 1.5rem;
    margin: 2rem 0 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid rgba(0, 245, 255, 0.3);
}

.legal-text h3 {
    color: #00f5ff;
    font-size: 1.2rem;
    margin: 1.5rem 0 1rem;
}

.legal-text p {
    margin-bottom: 1rem;
}

.legal-text ul {
    margin: 1rem 0 1.5rem 2rem;
}

.legal-text li {
    margin-bottom: 0.5rem;
}

.contact-info {
    background: rgba(0, 245, 255, 0.1);
    border-left: 4px solid #00f5ff;
    padding: 1.5rem;
    margin: 2rem 0;
    border-radius: 0 8px 8px 0;
}

@media (max-width: 768px) {
    .legal-content {
        padding: 2rem;
    }

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

    .legal-text ul {
        margin-left: 1rem;
    }
}

/* Services Page Styles */
.services-hero-section {
    position: relative;
    height: 70vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    margin-top: 80px;
}

.services-hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

.services-hero-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.services-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(10, 10, 10, 0.9), rgba(0, 245, 255, 0.2));
    z-index: -1;
}

.services-content-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    text-align: center;
}

.services-welcome-tag {
    display: inline-block;
    background: linear-gradient(135deg, #00f5ff, #ff00ff);
    color: #000;
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
}

.services-hero-headline {
    font-size: 3rem;
    color: #fff;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #fff, #00f5ff);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.services-hero-description {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

.main-services-section {
    padding: 6rem 0;
    background: #111;
}

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

.services-intro {
    color: rgba(255, 255, 255, 0.7);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

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

.service-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 245, 255, 0.2);
    border-radius: 12px;
    padding: 2.5rem;
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(0, 245, 255, 0.4);
}

.service-icon .icon-symbol {
    font-size: 3rem;
    text-align: center;
    display: block;
    margin-bottom: 1.5rem;
}

.service-title {
    color: #00f5ff;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.service-description {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

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

.service-features li {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.service-features li:before {
    content: '✓';
    color: #00f5ff;
    position: absolute;
    left: 0;
}

.service-technologies {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.development-process-section {
    padding: 6rem 0;
    background: #0a0a0a;
}

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

.process-intro {
    color: rgba(255, 255, 255, 0.7);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.process-timeline {
    display: grid;
    gap: 3rem;
}

.process-step {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 2rem;
    align-items: center;
}

.step-number {
    font-size: 3rem;
    font-weight: 900;
    color: #00f5ff;
    font-family: 'Orbitron', monospace;
    line-height: 1;
}

.step-title {
    color: #fff;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.step-description {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

.pricing-section {
    position: relative;
    padding: 6rem 0;
    background: #111;
}

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

.pricing-intro {
    color: rgba(255, 255, 255, 0.7);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

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

.pricing-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 245, 255, 0.2);
    border-radius: 12px;
    padding: 2.5rem;
    text-align: center;
    position: relative;
    transition: transform 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-5px);
}

.pricing-card.featured {
    border-color: #00f5ff;
    background: rgba(0, 245, 255, 0.1);
}

.pricing-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #00f5ff, #0080ff);
    color: #000;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.pricing-title {
    color: #fff;
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.pricing-price {
    color: #00f5ff;
    font-size: 2.5rem;
    font-weight: 900;
    font-family: 'Orbitron', monospace;
    margin-bottom: 2rem;
}

.pricing-period {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
}

.pricing-features ul {
    list-style: none;
    text-align: left;
    margin-bottom: 2rem;
}

.pricing-features li {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0.8rem;
    padding-left: 1.5rem;
    position: relative;
}

.pricing-features li:before {
    content: '✓';
    color: #00f5ff;
    position: absolute;
    left: 0;
}

.pricing-cta {
    padding: 1rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
    width: 100%;
    text-align: center;
}

/* Portfolio Page Styles */
.portfolio-hero-section {
    position: relative;
    height: 70vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    margin-top: 80px;
}

.portfolio-hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

.portfolio-hero-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.portfolio-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(10, 10, 10, 0.9), rgba(0, 245, 255, 0.2));
    z-index: -1;
}

.portfolio-content-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    text-align: center;
}

.portfolio-welcome-tag {
    display: inline-block;
    background: linear-gradient(135deg, #00f5ff, #ff00ff);
    color: #000;
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
}

.portfolio-hero-headline {
    font-size: 3rem;
    color: #fff;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #fff, #00f5ff);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.portfolio-hero-description {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

.portfolio-stats-section {
    padding: 4rem 0;
    background: #111;
}

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

.stat-card {
    text-align: center;
    padding: 2rem;
    background: rgba(0, 245, 255, 0.1);
    border-radius: 8px;
    border: 1px solid rgba(0, 245, 255, 0.2);
}

.featured-games-section {
    padding: 6rem 0;
    background: #0a0a0a;
}

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

.featured-intro {
    color: rgba(255, 255, 255, 0.7);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.featured-games-grid {
    display: grid;
    gap: 4rem;
}

.featured-game {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.featured-game:nth-child(even) {
    direction: rtl;
}

.featured-game:nth-child(even) * {
    direction: ltr;
}

.game-image {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
}

.game-screenshot {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.game-overlay {
    position: absolute;
    top: 1rem;
    right: 1rem;
}

.game-badges {
    display: flex;
    gap: 0.5rem;
}

.platform-badge, .genre-badge {
    background: rgba(0, 0, 0, 0.8);
    color: #00f5ff;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
}

.game-info {
    padding: 2rem;
}

.game-title {
    color: #00f5ff;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.game-description {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 2rem;
}

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

.metric {
    text-align: center;
}

.metric-value {
    display: block;
    color: #00f5ff;
    font-weight: 700;
    font-size: 1.2rem;
}

.metric-label {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.8rem;
    text-transform: uppercase;
}

.game-technologies {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.portfolio-grid-section {
    padding: 6rem 0;
    background: #111;
}

.portfolio-filter {
    text-align: center;
    margin-bottom: 3rem;
}

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

.filter-btn {
    background: transparent;
    color: rgba(255, 255, 255, 0.7);
    border: 2px solid rgba(255, 255, 255, 0.2);
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
}

.filter-btn:hover,
.filter-btn.active {
    color: #000;
    background: linear-gradient(135deg, #00f5ff, #0080ff);
    border-color: transparent;
}

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

.portfolio-game {
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.portfolio-game-image {
    position: relative;
    overflow: hidden;
}

.portfolio-screenshot {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.portfolio-game:hover .portfolio-screenshot {
    transform: scale(1.05);
}

.portfolio-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.9));
    padding: 2rem 1.5rem 1.5rem;
    color: #fff;
}

.portfolio-game-title {
    color: #00f5ff;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.portfolio-game-genre {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.portfolio-game-stats {
    display: flex;
    justify-content: space-between;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
}

.awards-section {
    padding: 6rem 0;
    background: #0a0a0a;
}

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

.awards-intro {
    color: rgba(255, 255, 255, 0.7);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

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

.award-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(0, 245, 255, 0.2);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    transition: transform 0.3s ease;
}

.award-item:hover {
    transform: translateY(-5px);
}

.award-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.award-title {
    color: #00f5ff;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.award-source {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.award-game {
    color: #fff;
    font-weight: 600;
}

.testimonials-section {
    position: relative;
    padding: 6rem 0;
    background: #111;
}

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

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

.testimonial-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 245, 255, 0.2);
    border-radius: 12px;
    padding: 2rem;
}

.testimonial-content {
    margin-bottom: 1.5rem;
}

.testimonial-content p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.author-name {
    color: #00f5ff;
    margin-bottom: 0.2rem;
}

.author-title {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

.testimonial-rating {
    color: #ffb800;
    font-size: 1.2rem;
}

/* Contact Page Styles */
.contact-hero-section {
    position: relative;
    height: 50vh;
    display: flex;
    align-items: center;
    margin-top: 80px;
    background: linear-gradient(135deg, #111, #0a0a0a);
}

.contact-content-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    text-align: center;
}

.contact-welcome-tag {
    display: inline-block;
    background: linear-gradient(135deg, #00f5ff, #ff00ff);
    color: #000;
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
}

.contact-hero-headline {
    font-size: 3rem;
    color: #fff;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #fff, #00f5ff);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.contact-hero-description {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

.contact-methods-section {
    padding: 4rem 0;
    background: #111;
}

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

.contact-method {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(0, 245, 255, 0.2);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    transition: transform 0.3s ease;
}

.contact-method:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 245, 255, 0.4);
}

.method-icon .icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.method-title {
    color: #00f5ff;
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.method-description {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.method-link {
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    border-bottom: 2px solid transparent;
    transition: border-color 0.3s ease;
}

.method-link:hover {
    border-bottom-color: #00f5ff;
}

.chat-button {
    background: transparent;
    border: 2px solid #00f5ff;
    color: #00f5ff;
    padding: 0.8rem 1.5rem;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.chat-button:hover {
    background: rgba(0, 245, 255, 0.1);
}

.main-contact-form-section {
    padding: 6rem 0;
    background: #0a0a0a;
}

.contact-form-layout {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    align-items: start;
}

.form-intro {
    position: sticky;
    top: 120px;
}

.form-section-title {
    color: #00f5ff;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.form-intro-text {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 2rem;
}

.contact-benefits {
    display: grid;
    gap: 1rem;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.benefit-icon {
    color: #00f5ff;
    font-weight: 700;
}

.benefit-text {
    color: rgba(255, 255, 255, 0.7);
}

.contact-form-container {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 245, 255, 0.2);
    border-radius: 12px;
    padding: 3rem;
}

.form-section {
    margin-bottom: 3rem;
}

.form-section-label {
    color: #00f5ff;
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    display: block;
}

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

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

.form-label {
    color: #fff;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.form-input, .form-select, .form-textarea {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(0, 245, 255, 0.2);
    border-radius: 8px;
    padding: 1rem;
    color: #fff;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-input:focus, .form-select:focus, .form-textarea:focus {
    outline: none;
    border-color: #00f5ff;
}

.form-input::placeholder, .form-textarea::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.checkbox-group {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
    margin-top: 0.5rem;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.7);
    cursor: pointer;
}

.form-checkbox {
    accent-color: #00f5ff;
}

.form-help {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 0.5rem;
}

.form-actions {
    text-align: center;
}

.form-submit-button {
    background: linear-gradient(135deg, #00f5ff, #0080ff);
    color: #000;
    border: none;
    border-radius: 8px;
    padding: 1.2rem 3rem;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 1rem;
}

.form-submit-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 245, 255, 0.3);
}

.form-privacy-note {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

.privacy-link {
    color: #00f5ff;
    text-decoration: none;
}

.contact-faq-section {
    padding: 6rem 0;
    background: #111;
}

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

.faq-intro {
    color: rgba(255, 255, 255, 0.7);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

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

.faq-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(0, 245, 255, 0.2);
    border-radius: 12px;
    padding: 2rem;
}

.faq-question {
    color: #00f5ff;
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.faq-answer {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

.office-info-section {
    padding: 6rem 0;
    background: #0a0a0a;
}

.office-info-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.office-title {
    color: #00f5ff;
    font-size: 2rem;
    margin-bottom: 2rem;
}

.office-details > div {
    margin-bottom: 2rem;
}

.office-details h4 {
    color: #fff;
    margin-bottom: 1rem;
}

.office-details p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

.map-placeholder {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(0, 245, 255, 0.2);
    border-radius: 12px;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.map-content {
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
}

.map-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.map-button {
    background: transparent;
    border: 2px solid #00f5ff;
    color: #00f5ff;
    padding: 0.8rem 1.5rem;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.map-button:hover {
    background: rgba(0, 245, 255, 0.1);
}

/* Responsive styles for new pages */
@media (max-width: 768px) {
    .services-hero-headline,
    .portfolio-hero-headline,
    .contact-hero-headline {
        font-size: 2rem;
    }

    .services-grid,
    .featured-games-grid,
    .contact-form-layout,
    .office-info-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .game-metrics {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }

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

    .checkbox-group {
        grid-template-columns: 1fr;
    }

    .filter-buttons {
        flex-direction: column;
        align-items: center;
    }

    .process-step {
        grid-template-columns: 1fr;
        text-align: center;
    }

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

    .contact-form-container {
        padding: 2rem;
    }

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