/* Page-specific styles */

.page-content {
    padding-top: 2rem;
}

/* Page Hero Styles */
.page-hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    min-height: 70vh;
    padding: 2rem 0 4rem;
}

.page-hero-content .page-title {
    font-family: 'Orbitron', monospace;
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 2rem;
    display: flex;
    flex-direction: column;
}

.page-subtitle {
    font-size: 1.2rem;
    color: #b0b0b0;
    line-height: 1.6;
}

/* Active navigation link */
.nav-link.active {
    color: #ff006e;
}

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

/* Logo link */
.logo-link {
    text-decoration: none;
    color: inherit;
}

/* About Page Specific Styles */

/* DNA Helix */
.dna-container {
    display: flex;
    justify-content: center;
    align-items: center;
    perspective: 1000px;
}

.dna-helix {
    width: 300px;
    height: 400px;
    position: relative;
    transform-style: preserve-3d;
    animation: dnaRotate 20s linear infinite;
}

@keyframes dnaRotate {
    0% { transform: rotateY(0deg) rotateX(10deg); }
    100% { transform: rotateY(360deg) rotateX(10deg); }
}

.dna-strand {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 3px solid;
    border-radius: 50%;
    opacity: 0.8;
}

.strand-1 {
    border-color: #ff006e;
    animation: dnaStrand1 8s ease-in-out infinite;
    box-shadow: 0 0 20px rgba(255, 0, 110, 0.5);
}

.strand-2 {
    border-color: #8338ec;
    animation: dnaStrand2 8s ease-in-out infinite;
    box-shadow: 0 0 20px rgba(131, 56, 236, 0.5);
}

@keyframes dnaStrand1 {
    0%, 100% { transform: rotateX(0deg) rotateZ(0deg); }
    50% { transform: rotateX(30deg) rotateZ(180deg); }
}

@keyframes dnaStrand2 {
    0%, 100% { transform: rotateX(0deg) rotateZ(180deg); }
    50% { transform: rotateX(-30deg) rotateZ(0deg); }
}

.dna-base {
    position: absolute;
    width: 8px;
    height: 8px;
    background: linear-gradient(45deg, #06ffa5, #3a86ff);
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(6, 255, 165, 0.7);
}

.base-1 { top: 10%; left: 50%; animation: baseFloat 3s ease-in-out infinite; }
.base-2 { top: 25%; right: 30%; animation: baseFloat 3s ease-in-out infinite 0.5s; }
.base-3 { top: 40%; left: 25%; animation: baseFloat 3s ease-in-out infinite 1s; }
.base-4 { top: 55%; right: 25%; animation: baseFloat 3s ease-in-out infinite 1.5s; }
.base-5 { top: 70%; left: 35%; animation: baseFloat 3s ease-in-out infinite 2s; }
.base-6 { top: 85%; right: 40%; animation: baseFloat 3s ease-in-out infinite 2.5s; }

@keyframes baseFloat {
    0%, 100% { transform: translateY(0px) scale(1); }
    50% { transform: translateY(-10px) scale(1.2); }
}

/* Story Section */
.story-section {
    padding: 6rem 0;
}

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

.section-title {
    font-family: 'Orbitron', monospace;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    background: linear-gradient(45deg, #ff006e, #8338ec);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.story-paragraph {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: #c0c0c0;
}

/* Floating 3D Objects */
.floating-objects {
    position: relative;
    height: 400px;
}

.floating-object {
    position: absolute;
    transform-style: preserve-3d;
}

.object-1 {
    width: 80px;
    height: 80px;
    top: 20%;
    left: 20%;
    animation: objectFloat1 12s ease-in-out infinite;
}

.object-2 {
    width: 60px;
    height: 60px;
    top: 60%;
    right: 30%;
    animation: objectFloat2 15s ease-in-out infinite;
}

@keyframes objectFloat1 {
    0%, 100% { transform: translateY(0px) rotateX(0deg) rotateY(0deg); }
    33% { transform: translateY(-20px) rotateX(120deg) rotateY(120deg); }
    66% { transform: translateY(-10px) rotateX(240deg) rotateY(240deg); }
}

@keyframes objectFloat2 {
    0%, 100% { transform: translateY(0px) rotateX(0deg) rotateY(0deg) rotateZ(0deg); }
    50% { transform: translateY(-30px) rotateX(180deg) rotateY(180deg) rotateZ(180deg); }
}

.object-face {
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(255, 0, 110, 0.3), rgba(131, 56, 236, 0.3));
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.face-1 { transform: translateZ(40px); }
.face-2 { transform: rotateY(90deg) translateZ(40px); }
.face-3 { transform: rotateY(180deg) translateZ(40px); }
.face-4 { transform: rotateY(-90deg) translateZ(40px); }
.face-5 { transform: rotateX(90deg) translateZ(40px); }
.face-6 { transform: rotateX(-90deg) translateZ(40px); }

.pyramid-face {
    position: absolute;
    width: 0;
    height: 0;
    border-style: solid;
}

.pyramid-1 {
    border-left: 30px solid transparent;
    border-right: 30px solid transparent;
    border-bottom: 30px solid rgba(6, 255, 165, 0.3);
    transform: translateZ(15px);
}

.pyramid-2 {
    border-left: 30px solid transparent;
    border-right: 30px solid transparent;
    border-bottom: 30px solid rgba(6, 255, 165, 0.3);
    transform: rotateY(90deg) translateZ(15px);
}

.pyramid-3 {
    border-left: 30px solid transparent;
    border-right: 30px solid transparent;
    border-bottom: 30px solid rgba(6, 255, 165, 0.3);
    transform: rotateY(180deg) translateZ(15px);
}

.pyramid-4 {
    border-left: 30px solid transparent;
    border-right: 30px solid transparent;
    border-bottom: 30px solid rgba(6, 255, 165, 0.3);
    transform: rotateY(-90deg) translateZ(15px);
}

/* Values Section */
.values-section {
    padding: 6rem 0;
}

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

.value-card {
    position: relative;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    text-align: center;
    transition: all 0.3s ease;
    overflow: hidden;
}

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

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

.value-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #ffffff;
}

.value-description {
    color: #b0b0b0;
    line-height: 1.6;
}

.value-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, #ff006e, #8338ec);
    filter: blur(20px);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.value-card:hover .value-glow {
    opacity: 0.2;
}

/* Team Section */
.team-section {
    padding: 6rem 0;
}

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

.team-member {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.team-member:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.06);
}

.member-avatar {
    position: relative;
    width: 120px;
    height: 120px;
    margin: 0 auto 2rem;
    border-radius: 50%;
    overflow: hidden;
}

.avatar-glow {
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    background: linear-gradient(45deg, #ff006e, #8338ec, #3a86ff);
    border-radius: 50%;
    animation: avatarGlow 3s ease-in-out infinite alternate;
    z-index: -1;
}

@keyframes avatarGlow {
    0% { opacity: 0.5; transform: scale(1); }
    100% { opacity: 0.8; transform: scale(1.1); }
}

.avatar-content {
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, #1a1a1a, #2a2a2a);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Orbitron', monospace;
    font-size: 3rem;
    font-weight: 900;
    color: #ffffff;
}

.member-name {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #ffffff;
}

.member-role {
    font-size: 1rem;
    color: #ff006e;
    margin-bottom: 1rem;
    font-weight: 600;
}

.member-bio {
    color: #b0b0b0;
    line-height: 1.6;
}

/* Stats Section */
.stats-section {
    padding: 6rem 0;
}

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

.stat-item {
    position: relative;
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

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

.stat-number {
    font-family: 'Orbitron', monospace;
    font-size: 3rem;
    font-weight: 900;
    color: #ff006e;
    margin-bottom: 0.5rem;
    background: linear-gradient(45deg, #ff006e, #8338ec);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat-label {
    font-size: 1rem;
    color: #b0b0b0;
    font-weight: 500;
}

.stat-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, #ff006e, #8338ec);
    filter: blur(20px);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.stat-item:hover .stat-glow {
    opacity: 0.2;
}

/* Services Page Specific Styles */

/* Service Network Visualization */
.service-viz-container {
    display: flex;
    justify-content: center;
    align-items: center;
    perspective: 1000px;
}

.service-network {
    width: 400px;
    height: 400px;
    position: relative;
    animation: networkFloat 8s ease-in-out infinite;
}

@keyframes networkFloat {
    0%, 100% { transform: translateY(0px) rotateY(0deg); }
    50% { transform: translateY(-20px) rotateY(180deg); }
}

.network-node {
    position: absolute;
    width: 60px;
    height: 60px;
    animation: nodeGlow 2s ease-in-out infinite alternate;
}

.node-1 { top: 20%; left: 20%; animation-delay: 0s; }
.node-2 { top: 20%; right: 20%; animation-delay: 0.5s; }
.node-3 { bottom: 20%; left: 20%; animation-delay: 1s; }
.node-4 { bottom: 20%; right: 20%; animation-delay: 1.5s; }

.node-core {
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, #06ffa5, #3a86ff);
    border-radius: 50%;
    box-shadow: 0 0 30px rgba(6, 255, 165, 0.7);
}

.node-ring {
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    border: 2px solid rgba(255, 0, 110, 0.5);
    border-radius: 50%;
    animation: ringPulse 2s ease-in-out infinite;
}

@keyframes nodeGlow {
    0% { filter: brightness(1); }
    100% { filter: brightness(1.5); }
}

@keyframes ringPulse {
    0% { transform: scale(1); opacity: 1; }
    100% { transform: scale(1.3); opacity: 0; }
}

.network-connection {
    position: absolute;
    background: linear-gradient(45deg, #ff006e, #8338ec);
    height: 2px;
    opacity: 0.7;
    animation: connectionPulse 3s ease-in-out infinite;
}

.connection-1 {
    top: 35%;
    left: 25%;
    width: 50%;
    transform: rotate(0deg);
}

.connection-2 {
    top: 50%;
    left: 25%;
    width: 50%;
    transform: rotate(90deg);
}

.connection-3 {
    top: 35%;
    left: 25%;
    width: 70%;
    transform: rotate(45deg);
}

.connection-4 {
    top: 45%;
    left: 15%;
    width: 70%;
    transform: rotate(-45deg);
}

@keyframes connectionPulse {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.8; }
}

/* Services Grid */
.services-section {
    padding: 6rem 0;
}

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

.service-card {
    position: relative;
    padding: 2.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    overflow: hidden;
}

.service-card:hover {
    transform: translateY(-10px) scale(1.02);
    background: rgba(255, 255, 255, 0.08);
}

.service-icon {
    margin-bottom: 1.5rem;
}

.icon-3d {
    font-size: 3rem;
    display: inline-block;
    animation: iconFloat 3s ease-in-out infinite;
}

@keyframes iconFloat {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-5px); }
}

.service-title {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #ffffff;
}

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

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

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

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #06ffa5;
    font-weight: bold;
}

.service-price {
    font-size: 1.2rem;
    font-weight: 700;
    color: #ff006e;
    margin-bottom: 1.5rem;
}

.service-btn {
    padding: 0.8rem 1.5rem;
    background: linear-gradient(45deg, #ff006e, #8338ec);
    color: #ffffff;
    border: none;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.service-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(255, 0, 110, 0.3);
}

.service-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, #ff006e, #8338ec);
    filter: blur(20px);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.service-card:hover .service-glow {
    opacity: 0.2;
}

/* Portfolio Section */
.portfolio-section {
    padding: 6rem 0;
}

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

.portfolio-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.portfolio-item:hover {
    transform: translateY(-10px) scale(1.02);
}

.portfolio-image {
    position: relative;
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.image-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 600;
    color: #ffffff;
    position: relative;
}

.gradient-1 { background: linear-gradient(45deg, #ff006e, #8338ec); }
.gradient-2 { background: linear-gradient(45deg, #8338ec, #3a86ff); }
.gradient-3 { background: linear-gradient(45deg, #3a86ff, #06ffa5); }
.gradient-4 { background: linear-gradient(45deg, #06ffa5, #ffbe0b); }

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: all 0.3s ease;
    padding: 2rem;
    text-align: center;
}

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

.portfolio-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
}

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

.portfolio-btn {
    padding: 0.8rem 1.5rem;
    background: transparent;
    color: #ffffff;
    border: 2px solid #ff006e;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.portfolio-btn:hover {
    background: #ff006e;
    transform: translateY(-2px);
}

/* Process Section */
.process-section {
    padding: 6rem 0;
}

.process-timeline {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 3rem;
}

.process-step {
    position: relative;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 2rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    align-items: center;
}

.process-step:hover {
    transform: translateX(10px);
    background: rgba(255, 255, 255, 0.08);
}

.step-number {
    font-family: 'Orbitron', monospace;
    font-size: 2rem;
    font-weight: 900;
    background: linear-gradient(45deg, #ff006e, #8338ec);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    width: 80px;
    height: 80px;
    border: 2px solid rgba(255, 0, 110, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.step-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.step-description {
    color: #b0b0b0;
    line-height: 1.6;
}

.step-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, #ff006e, #8338ec);
    filter: blur(20px);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.process-step:hover .step-glow {
    opacity: 0.1;
}

/* CTA Section */
.cta-section {
    padding: 6rem 0;
    text-align: center;
}

.cta-title {
    font-family: 'Orbitron', monospace;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, #ff006e, #8338ec);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.cta-description {
    font-size: 1.2rem;
    color: #b0b0b0;
    margin-bottom: 2rem;
}

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

/* Contact Page Specific Styles */

/* Contact Hologram */
.contact-viz-container {
    display: flex;
    justify-content: center;
    align-items: center;
    perspective: 1000px;
}

.contact-hologram {
    width: 300px;
    height: 300px;
    position: relative;
    animation: hologramFloat 6s ease-in-out infinite;
}

@keyframes hologramFloat {
    0%, 100% { transform: translateY(0px) rotateY(0deg); }
    50% { transform: translateY(-15px) rotateY(180deg); }
}

.hologram-ring {
    position: absolute;
    border: 2px solid;
    border-radius: 50%;
    opacity: 0.6;
    animation: hologramRing 4s linear infinite;
}

.ring-1 {
    width: 100%;
    height: 100%;
    border-color: #ff006e;
    animation-delay: 0s;
}

.ring-2 {
    width: 70%;
    height: 70%;
    top: 15%;
    left: 15%;
    border-color: #8338ec;
    animation-delay: 1.3s;
}

.ring-3 {
    width: 40%;
    height: 40%;
    top: 30%;
    left: 30%;
    border-color: #3a86ff;
    animation-delay: 2.6s;
}

@keyframes hologramRing {
    0% { transform: rotateX(0deg) rotateZ(0deg); opacity: 0.6; }
    50% { opacity: 1; }
    100% { transform: rotateX(360deg) rotateZ(360deg); opacity: 0.6; }
}

.hologram-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: radial-gradient(circle, #06ffa5, #3a86ff);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: centerPulse 2s ease-in-out infinite alternate;
}

.center-icon {
    font-size: 2rem;
}

@keyframes centerPulse {
    0% { transform: translate(-50%, -50%) scale(1); box-shadow: 0 0 20px rgba(6, 255, 165, 0.5); }
    100% { transform: translate(-50%, -50%) scale(1.1); box-shadow: 0 0 40px rgba(6, 255, 165, 0.8); }
}

.hologram-particles {
    position: absolute;
    width: 100%;
    height: 100%;
}

.holo-particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: #06ffa5;
    border-radius: 50%;
    animation: particleOrbit 8s linear infinite;
}

.holo-particle:nth-child(1) { animation-delay: 0s; }
.holo-particle:nth-child(2) { animation-delay: 1.6s; }
.holo-particle:nth-child(3) { animation-delay: 3.2s; }
.holo-particle:nth-child(4) { animation-delay: 4.8s; }
.holo-particle:nth-child(5) { animation-delay: 6.4s; }

@keyframes particleOrbit {
    0% { transform: rotate(0deg) translateX(150px) rotate(0deg); }
    100% { transform: rotate(360deg) translateX(150px) rotate(-360deg); }
}

/* Contact Form Section */
.contact-form-section {
    padding: 6rem 0;
}

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

.contact-description {
    font-size: 1.1rem;
    color: #b0b0b0;
    line-height: 1.8;
    margin-bottom: 3rem;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.contact-method:hover {
    transform: translateX(10px);
    background: rgba(255, 255, 255, 0.08);
}

.method-icon {
    font-size: 1.5rem;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(45deg, #ff006e, #8338ec);
    border-radius: 50%;
}

.method-content h4 {
    color: #ffffff;
    margin-bottom: 0.25rem;
    font-weight: 600;
}

.method-content p {
    color: #b0b0b0;
    margin: 0;
}

/* Contact Form */
.contact-form-container {
    position: relative;
}

.contact-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.form-group {
    position: relative;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

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

.form-input,
.form-select,
.form-textarea {
    width: 100%;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    color: #ffffff;
    font-family: 'Space Grotesk', sans-serif;
    transition: all 0.3s ease;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    outline: none;
    border-color: #ff006e;
    background: rgba(255, 255, 255, 0.12);
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: #888;
}

.form-select option {
    background: #1a1a1a;
    color: #ffffff;
}

.input-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, #ff006e, #8338ec);
    border-radius: 10px;
    filter: blur(15px);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
    pointer-events: none;
}

.form-input:focus + .input-glow,
.form-select:focus + .input-glow,
.form-textarea:focus + .input-glow {
    opacity: 0.3;
}

.submit-btn {
    position: relative;
    padding: 1.2rem 2rem;
    background: linear-gradient(45deg, #ff006e, #8338ec);
    color: #ffffff;
    border: none;
    border-radius: 50px;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 0, 110, 0.4);
}

.submit-loader {
    display: none;
}

.submit-btn.loading .button-text {
    opacity: 0;
}

.submit-btn.loading .submit-loader {
    display: block;
}

.loader-spinner {
    width: 20px;
    height: 20px;
    border: 2px solid transparent;
    border-top: 2px solid #ffffff;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* FAQ Section */
.faq-section {
    padding: 6rem 0;
}

.faq-container {
    max-width: 800px;
    margin: 3rem auto 0;
}

.faq-item {
    margin-bottom: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    overflow: hidden;
    transition: all 0.3s ease;
}

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

.faq-question:hover {
    background: rgba(255, 255, 255, 0.08);
}

.faq-question h4 {
    color: #ffffff;
    margin: 0;
    font-weight: 600;
}

.faq-toggle {
    font-size: 1.5rem;
    color: #ff006e;
    font-weight: bold;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

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

.faq-item.active .faq-answer {
    max-height: 200px;
}

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

/* Social Proof Section */
.social-proof-section {
    padding: 6rem 0;
    text-align: center;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 3rem;
    flex-wrap: wrap;
}

.social-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    text-decoration: none;
    color: #ffffff;
    transition: all 0.3s ease;
    min-width: 120px;
}

.social-link:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.08);
    color: #ff006e;
}

.social-icon {
    font-size: 2rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .page-hero,
    .story-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

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

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

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

@media (max-width: 768px) {
    .page-hero-content .page-title {
        font-size: 2.5rem;
    }

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

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

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

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

    .social-links {
        gap: 1rem;
    }

    .social-link {
        min-width: 100px;
        padding: 1rem;
    }

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

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

@media (max-width: 480px) {
    .contact-methods {
        gap: 1rem;
    }

    .contact-method {
        padding: 1rem;
    }

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