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

body {
    font-family: 'Space Mono', monospace;
    background: #000000;
    color: #ffffff;
    cursor: none;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Bebas Neue', sans-serif;
}

html {
    scroll-behavior: smooth;
}

/* Container */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1rem;
}

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

/* Custom Cursor */
.custom-cursor {
    width: 20px;
    height: 20px;
    border: 2px solid rgba(220, 38, 38, 0.8);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    transition: transform 0.15s ease;
    mix-blend-mode: difference;
}

.custom-cursor::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 4px;
    height: 4px;
    background: rgba(220, 38, 38, 0.8);
    border-radius: 50%;
}

.custom-cursor.hover {
    transform: scale(1.8);
    border-color: #DC2626;
}

/* Red Dot Animation */
.red-dot-animated {
    width: 6px;
    height: 6px;
    background: #DC2626;
    border-radius: 50%;
    animation: pulse-dot 2s ease-in-out infinite, pulse-glow 2s ease-in-out infinite;
}

@keyframes pulse-dot {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.5);
        opacity: 0.8;
    }
}

@keyframes pulse-glow {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(220, 38, 38, 0.7);
    }
    50% {
        box-shadow: 0 0 0 8px rgba(220, 38, 38, 0);
    }
}

/* Grid Background */
.grid-background {
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    position: relative;
}

.grid-background::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
    background-size: 200px 200px;
    pointer-events: none;
}

/* Scroll Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.scroll-reveal { opacity: 0; }
.scroll-reveal.revealed { animation: fadeInUp 0.8s ease forwards; }
.scroll-reveal-left { opacity: 0; }
.scroll-reveal-left.revealed { animation: fadeInLeft 0.8s ease forwards; }
.scroll-reveal-right { opacity: 0; }
.scroll-reveal-right.revealed { animation: fadeInRight 0.8s ease forwards; }
.scroll-fade { opacity: 0; }
.scroll-fade.revealed { animation: fadeIn 0.8s ease forwards; }

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    padding-bottom: 1rem;
}

.brand-name {
    font-size: 1.5rem;
    font-weight: bold;
    letter-spacing: 0.05em;
    background: none;
    border: none;
    color: white;
    cursor: pointer;
    transition: color 0.3s;
}

.brand-name:hover {
    color: #DC2626;
}

.menu-btn {
    background: none;
    border: none;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    transition: color 0.3s;
}

.menu-btn:hover {
    color: #DC2626;
}

.hidden {
    display: none !important;
}

/* Fullscreen Menu */
.fullscreen-menu {
    position: fixed;
    inset: 0;
    z-index: 40;
    background: black;
    transform: translateX(100%);
    transition: transform 0.5s ease;
}

.fullscreen-menu.active {
    transform: translateX(0);
}

.menu-content {
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
}

.menu-link {
    font-size: 3rem;
    font-weight: bold;
    letter-spacing: 0.05em;
    background: none;
    border: none;
    color: white;
    cursor: pointer;
    transition: color 0.3s;
}

@media (min-width: 768px) {
    .menu-link {
        font-size: 5rem;
    }
}

.menu-link:hover {
    color: #DC2626;
}

.menu-corners .corner {
    position: absolute;
    width: 2rem;
    height: 2rem;
}

.menu-corners .top-left {
    top: 0;
    left: 0;
    border-top: 2px solid rgba(255, 255, 255, 0.2);
    border-left: 2px solid rgba(255, 255, 255, 0.2);
}

.menu-corners .top-right {
    top: 0;
    right: 0;
    border-top: 2px solid rgba(255, 255, 255, 0.2);
    border-right: 2px solid rgba(255, 255, 255, 0.2);
}

.menu-corners .bottom-left {
    bottom: 0;
    left: 0;
    border-bottom: 2px solid rgba(255, 255, 255, 0.2);
    border-left: 2px solid rgba(255, 255, 255, 0.2);
}

.menu-corners .bottom-right {
    bottom: 0;
    right: 0;
    border-bottom: 2px solid rgba(255, 255, 255, 0.2);
    border-right: 2px solid rgba(255, 255, 255, 0.2);
}

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

.video-background {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    opacity: 0.7;
    width: 100vw;
    height: 56.25vw;
    min-height: 100vh;
    min-width: 177.77vh;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.6), rgba(0,0,0,0.5), rgba(0,0,0,1));
}

.hero-corners .hero-corner {
    position: absolute;
    width: 6rem;
    height: 6rem;
    z-index: 10;
}

.hero-corners .top-left {
    top: 0;
    left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    border-left: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-corners .top-right {
    top: 0;
    right: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    border-right: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-content {
    position: relative;
    z-index: 10;
    padding-bottom: 2rem;
}

@media (min-width: 640px) {
    .hero-content {
        padding-bottom: 3rem;
    }
}

@media (min-width: 1024px) {
    .hero-content {
        padding-bottom: 4rem;
    }
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    align-items: end;
}

@media (min-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
}

.hero-label {
    font-size: 0.625rem;
    letter-spacing: 0.3em;
    color: #9ca3af;
    text-transform: uppercase;
    margin-bottom: 0.25rem;
}

@media (min-width: 640px) {
    .hero-label {
        font-size: 0.75rem;
    }
}

.hero-project {
    font-size: 2rem;
    font-weight: bold;
    letter-spacing: 0.05em;
}

@media (min-width: 640px) {
    .hero-project {
        font-size: 2.5rem;
    }
}

@media (min-width: 768px) {
    .hero-project {
        font-size: 3rem;
    }
}

.hero-meta {
    font-size: 0.625rem;
    letter-spacing: 0.2em;
    color: #9ca3af;
    text-transform: uppercase;
}

@media (min-width: 640px) {
    .hero-meta {
        font-size: 0.75rem;
    }
}

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

@media (min-width: 1024px) {
    .hero-right {
        text-align: right;
    }
}

.hero-title {
    font-size: 3rem;
    font-weight: bold;
    letter-spacing: 0.05em;
    line-height: 1;
    margin-bottom: 1rem;
}

@media (min-width: 640px) {
    .hero-title {
        font-size: 4rem;
    }
}

@media (min-width: 768px) {
    .hero-title {
        font-size: 5rem;
    }
}

@media (min-width: 1024px) {
    .hero-title {
        font-size: 6rem;
    }
}

@media (min-width: 1280px) {
    .hero-title {
        font-size: 8rem;
    }
}

.hero-tagline {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 1rem;
}

@media (min-width: 1024px) {
    .hero-tagline {
        justify-content: flex-end;
    }
}

.hero-tagline p {
    font-size: 0.625rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
}

@media (min-width: 640px) {
    .hero-tagline p {
        font-size: 0.75rem;
    }
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
    color: #9ca3af;
    background: none;
    border: none;
    cursor: pointer;
    transition: color 0.3s;
    z-index: 10;
}

@media (max-width: 639px) {
    .hidden-mobile {
        display: none !important;
    }
}

.scroll-indicator:hover {
    color: white;
}

.scroll-indicator span {
    font-size: 0.625rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
}

.scroll-indicator svg {
    animation: bounce 1s infinite;
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-25%);
    }
}

/* Works Section */
.works {
    min-height: 100vh;
    padding: 4rem 1rem;
}

@media (min-width: 640px) {
    .works {
        padding: 5rem 1.5rem;
    }
}

@media (min-width: 1024px) {
    .works {
        padding: 6rem 1.5rem;
    }
}

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

@media (min-width: 640px) {
    .section-header {
        margin-bottom: 4rem;
    }
}

@media (min-width: 1024px) {
    .section-header {
        margin-bottom: 5rem;
    }
}

.section-title {
    font-size: 4rem;
    font-weight: bold;
    letter-spacing: 0.05em;
    margin-bottom: 0.5rem;
}

@media (min-width: 640px) {
    .section-title {
        font-size: 5rem;
    }
}

@media (min-width: 768px) {
    .section-title {
        font-size: 6rem;
    }
}

@media (min-width: 1024px) {
    .section-title {
        font-size: 7rem;
    }
}

@media (min-width: 1280px) {
    .section-title {
        font-size: 8rem;
    }
}

.section-subtitle {
    font-size: 0.75rem;
    letter-spacing: 0.3em;
    color: #6b7280;
    text-transform: uppercase;
}

.filter-buttons {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 3rem;
    overflow-x: auto;
    padding-bottom: 0.5rem;
}

@media (min-width: 640px) {
    .filter-buttons {
        gap: 0.75rem;
        margin-bottom: 4rem;
    }
}

.filter-btn {
    padding: 0.5rem 1rem;
    font-size: 0.625rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #9ca3af;
    cursor: pointer;
    transition: all 0.3s;
    white-space: nowrap;
}

@media (min-width: 640px) {
    .filter-btn {
        padding: 0.5rem 1.5rem;
        font-size: 0.75rem;
    }
}

.filter-btn:hover {
    color: white;
}

.filter-btn.active {
    background: white;
    color: black;
    border-color: white;
}

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

@media (min-width: 768px) {
    .projects-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.project-card {
    position: relative;
    aspect-ratio: 16/9;
    overflow: hidden;
    background: black;
    border: 1px solid rgba(255, 255, 255, 0.1);
    cursor: pointer;
}

.project-thumbnail {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.3s;
}

.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.3s;
    z-index: 10;
}

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

.play-button {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.play-icon {
    width: 4rem;
    height: 4rem;
    border: 2px solid white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: border-color 0.3s;
}

.project-card:hover .play-icon {
    border-color: #DC2626;
}

.play-icon svg {
    fill: white;
    transition: fill 0.3s;
}

.project-card:hover .play-icon svg {
    fill: #DC2626;
}

.play-text {
    font-size: 0.875rem;
    letter-spacing: 0.2em;
}

.project-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1rem;
    background: linear-gradient(to top, black, rgba(0,0,0,0.8), transparent);
    z-index: 10;
}

@media (min-width: 640px) {
    .project-info {
        padding: 1.5rem;
    }
}

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

.project-category {
    font-size: 0.625rem;
    letter-spacing: 0.3em;
    color: #DC2626;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
    display: block;
}

@media (min-width: 640px) {
    .project-category {
        margin-bottom: 0.75rem;
    }
}

.project-title {
    font-size: 1.125rem;
    font-weight: bold;
    letter-spacing: 0.05em;
}

@media (min-width: 640px) {
    .project-title {
        font-size: 1.25rem;
    }
}

@media (min-width: 768px) {
    .project-title {
        font-size: 1.5rem;
    }
}

@media (min-width: 1024px) {
    .project-title {
        font-size: 1.875rem;
    }
}

.corner-grids {
    position: absolute;
    inset: 0;
    z-index: 20;
    pointer-events: none;
}

.corner-grid {
    position: absolute;
}

.corner-grid.top-left {
    top: 0;
    left: 0;
}

.corner-grid.top-right {
    top: 0;
    right: 0;
}

.corner-grid.bottom-left {
    bottom: 0;
    left: 0;
}

.corner-grid.bottom-right {
    bottom: 0;
    right: 0;
}

/* Video Modal */
.video-modal {
    position: fixed;
    inset: 0;
    z-index: 50;
    background: rgba(0, 0, 0, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    animation: fadeIn 0.3s ease;
}

.modal-close {
    position: absolute;
    top: 2rem;
    right: 2rem;
    background: none;
    border: none;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    z-index: 10;
    transition: color 0.3s;
}

.modal-close:hover {
    color: #DC2626;
}

.modal-content {
    width: 100%;
    max-width: 1200px;
}

.modal-video-container {
    aspect-ratio: 16/9;
    background: black;
    margin-bottom: 1.5rem;
}

.modal-video-container iframe {
    width: 100%;
    height: 100%;
}

.modal-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.modal-detail {
    font-size: 0.875rem;
}

.modal-label {
    display: block;
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    color: #6b7280;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

.modal-detail h3 {
    font-size: 1.25rem;
    font-weight: bold;
    letter-spacing: 0.05em;
}

.modal-description p {
    color: #d1d5db;
    line-height: 1.6;
}

.modal-corners .corner {
    position: absolute;
    width: 3rem;
    height: 3rem;
}

.modal-corners .top-left {
    top: 0;
    left: 0;
    border-top: 2px solid rgba(255, 255, 255, 0.2);
    border-left: 2px solid rgba(255, 255, 255, 0.2);
}

.modal-corners .top-right {
    top: 0;
    right: 0;
    border-top: 2px solid rgba(255, 255, 255, 0.2);
    border-right: 2px solid rgba(255, 255, 255, 0.2);
}

.modal-corners .bottom-left {
    bottom: 0;
    left: 0;
    border-bottom: 2px solid rgba(255, 255, 255, 0.2);
    border-left: 2px solid rgba(255, 255, 255, 0.2);
}

.modal-corners .bottom-right {
    bottom: 0;
    right: 0;
    border-bottom: 2px solid rgba(255, 255, 255, 0.2);
    border-right: 2px solid rgba(255, 255, 255, 0.2);
}

/* About Section */
.about {
    min-height: 100vh;
    padding: 4rem 1rem;
}

@media (min-width: 640px) {
    .about {
        padding: 5rem 1.5rem;
    }
}

@media (min-width: 1024px) {
    .about {
        padding: 6rem 1.5rem;
    }
}

.about-container {
    max-width: 1400px;
}

.about-header {
    margin-bottom: 4rem;
}

@media (min-width: 640px) {
    .about-header {
        margin-bottom: 5rem;
    }
}

@media (min-width: 1024px) {
    .about-header {
        margin-bottom: 6rem;
    }
}

.about-title {
    font-size: 3rem;
    font-weight: bold;
    letter-spacing: 0.05em;
    line-height: 1.2;
    margin-bottom: 2rem;
}

@media (min-width: 640px) {
    .about-title {
        font-size: 4rem;
    }
}

@media (min-width: 768px) {
    .about-title {
        font-size: 5rem;
    }
}

@media (min-width: 1024px) {
    .about-title {
        font-size: 6rem;
        margin-bottom: 3rem;
    }
}

.text-muted {
    color: #4b5563;
}

.about-intro {
    font-size: 1rem;
    color: #9ca3af;
    max-width: 48rem;
}

@media (min-width: 640px) {
    .about-intro {
        font-size: 1.125rem;
    }
}

@media (min-width: 1024px) {
    .about-intro {
        font-size: 1.25rem;
    }
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    margin-bottom: 4rem;
}

@media (min-width: 640px) {
    .about-grid {
        gap: 3.5rem;
    }
}

@media (min-width: 1024px) {
    .about-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 4rem;
        margin-bottom: 6rem;
    }
}

.about-heading {
    font-size: 1.25rem;
    font-weight: bold;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
}

@media (min-width: 640px) {
    .about-heading {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
    }
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.process-step {
    border-left: 2px solid rgba(255, 255, 255, 0.2);
    padding-left: 1rem;
}

.process-step.red-border {
    border-left-color: #DC2626;
}

.process-step h4 {
    font-weight: bold;
    letter-spacing: 0.05em;
    margin-bottom: 0.5rem;
}

.process-step p {
    font-size: 0.875rem;
    color: #9ca3af;
    line-height: 1.6;
}

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

@media (min-width: 640px) {
    .skills-tags {
        gap: 0.75rem;
        margin-bottom: 2.5rem;
    }
}

@media (min-width: 1024px) {
    .skills-tags {
        margin-bottom: 3rem;
    }
}

.skill-tag {
    padding: 0.5rem 1rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 0.75rem;
    letter-spacing: 0.05em;
    transition: all 0.3s;
    cursor: default;
}

@media (min-width: 640px) {
    .skill-tag {
        font-size: 0.875rem;
    }
}

.skill-tag:hover {
    border-color: #DC2626;
    color: #DC2626;
}

.mt-large {
    margin-top: 2rem;
}

@media (min-width: 640px) {
    .mt-large {
        margin-top: 2.5rem;
    }
}

@media (min-width: 1024px) {
    .mt-large {
        margin-top: 3rem;
    }
}

.tools-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.tool-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    cursor: default;
    transition: color 0.3s;
}

.tool-item:hover {
    color: #DC2626;
}

.tool-item span {
    letter-spacing: 0.05em;
}

/* FAQs Section */
.faqs {
    min-height: 100vh;
    padding: 4rem 1rem;
}

@media (min-width: 640px) {
    .faqs {
        padding: 5rem 1.5rem;
    }
}

@media (min-width: 1024px) {
    .faqs {
        padding: 6rem 1.5rem;
    }
}

.faqs-container {
    max-width: 1200px;
}

.faqs-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: border-color 0.3s;
}

.faq-item:hover {
    border-color: rgba(220, 38, 38, 0.5);
}

.faq-question {
    width: 100%;
    padding: 1rem;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 0.75rem;
    background: none;
    border: none;
    color: white;
    text-align: left;
    cursor: pointer;
}

@media (min-width: 640px) {
    .faq-question {
        padding: 1.5rem;
        gap: 1rem;
    }
}

.faq-question-content {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    flex: 1;
}

@media (min-width: 640px) {
    .faq-question-content {
        gap: 1rem;
    }
}

.faq-number {
    color: #DC2626;
    font-weight: bold;
    font-size: 1rem;
}

@media (min-width: 640px) {
    .faq-number {
        font-size: 1.125rem;
    }
}

.faq-question-text {
    font-size: 1rem;
    font-weight: bold;
    letter-spacing: 0.05em;
    transition: color 0.3s;
}

@media (min-width: 640px) {
    .faq-question-text {
        font-size: 1.125rem;
    }
}

@media (min-width: 1024px) {
    .faq-question-text {
        font-size: 1.25rem;
    }
}

.faq-question:hover .faq-question-text {
    color: #DC2626;
}

.faq-icon {
    flex-shrink: 0;
    transition: transform 0.3s, color 0.3s;
}

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

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

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

.faq-answer-content {
    padding: 0 1rem 1rem 3rem;
    border-left: 2px solid #DC2626;
    margin-left: 1rem;
}

@media (min-width: 640px) {
    .faq-answer-content {
        padding: 0 1.5rem 1.5rem 4rem;
        margin-left: 1.5rem;
    }
}

@media (min-width: 1024px) {
    .faq-answer-content {
        padding: 0 1.5rem 1.5rem 5rem;
    }
}

.faq-answer-content p {
    color: #9ca3af;
    line-height: 1.6;
    font-size: 0.875rem;
}

@media (min-width: 640px) {
    .faq-answer-content p {
        font-size: 1rem;
    }
}

.faqs-cta {
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

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

.cta-btn {
    padding: 0.75rem 2rem;
    background: #DC2626;
    border: 1px solid #DC2626;
    color: white;
    font-weight: bold;
    letter-spacing: 0.2em;
    cursor: pointer;
    transition: all 0.3s;
}

.cta-btn:hover {
    background: transparent;
}

/* Contact Section */
.contact {
    min-height: 100vh;
    padding: 4rem 1rem;
}

@media (min-width: 640px) {
    .contact {
        padding: 5rem 1.5rem;
    }
}

@media (min-width: 1024px) {
    .contact {
        padding: 6rem 1.5rem;
    }
}

.contact-container {
    max-width: 1400px;
}

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

@media (min-width: 1024px) {
    .contact-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 4rem;
    }
}

.contact-heading {
    font-size: 1.5rem;
    font-weight: bold;
    letter-spacing: 0.05em;
    margin-bottom: 1.5rem;
}

@media (min-width: 640px) {
    .contact-heading {
        font-size: 1.875rem;
        margin-bottom: 2rem;
    }
}

.contact-text {
    font-size: 0.875rem;
    color: #9ca3af;
    line-height: 1.6;
    margin-bottom: 2rem;
}

@media (min-width: 640px) {
    .contact-text {
        font-size: 1rem;
        margin-bottom: 2.5rem;
    }
}

@media (min-width: 1024px) {
    .contact-text {
        margin-bottom: 3rem;
    }
}

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

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

.contact-icon {
    color: #DC2626;
    margin-top: 0.25rem;
    flex-shrink: 0;
}

.contact-label {
    display: block;
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    color: #6b7280;
    text-transform: uppercase;
    margin-bottom: 0.25rem;
}

.contact-item a {
    color: white;
    text-decoration: none;
    transition: color 0.3s;
}

.contact-item a:hover {
    color: #DC2626;
}

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

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 0.75rem;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    font-family: 'Space Mono', monospace;
    font-size: 0.875rem;
    margin-bottom: 1.5rem;
    transition: border-color 0.3s;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #DC2626;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: #4b5563;
}

.contact-form textarea {
    resize: none;
}

.submit-btn {
    width: 100%;
    padding: 0.75rem;
    background: #DC2626;
    border: 1px solid #DC2626;
    color: white;
    font-weight: bold;
    letter-spacing: 0.2em;
    cursor: pointer;
    transition: all 0.3s;
}

.submit-btn:hover {
    background: transparent;
}

.form-message {
    margin-top: 1rem;
    padding: 1rem;
    border-radius: 0.25rem;
    text-align: center;
}

.form-message.success {
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid #22c55e;
    color: #22c55e;
}

.form-message.error {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid #ef4444;
    color: #ef4444;
}

/* Footer */
.footer {
    background: black;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1.5rem 1rem;
}

@media (min-width: 640px) {
    .footer {
        padding: 2rem 1.5rem;
    }
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

@media (min-width: 768px) {
    .footer-content {
        flex-direction: row;
        justify-content: space-between;
        gap: 1.5rem;
    }
}

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

@media (min-width: 768px) {
    .footer-brand {
        text-align: left;
    }
}

.footer-brand h3 {
    font-size: 1.25rem;
    font-weight: bold;
    letter-spacing: 0.05em;
}

@media (min-width: 640px) {
    .footer-brand h3 {
        font-size: 1.5rem;
    }
}

.footer-brand p {
    font-size: 0.75rem;
    color: #6b7280;
    letter-spacing: 0.05em;
}

@media (min-width: 640px) {
    .footer-brand p {
        font-size: 0.875rem;
    }
}

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

@media (min-width: 640px) {
    .footer-social {
        gap: 1.5rem;
    }
}

.footer-social a {
    color: #9ca3af;
    text-decoration: none;
    font-size: 0.75rem;
    letter-spacing: 0.05em;
    transition: color 0.3s;
}

@media (min-width: 640px) {
    .footer-social a {
        font-size: 0.875rem;
    }
}

.footer-social a:hover {
    color: #DC2626;
}

.footer-copyright {
    color: #6b7280;
    font-size: 0.75rem;
    letter-spacing: 0.05em;
    text-align: center;
}

@media (min-width: 640px) {
    .footer-copyright {
        font-size: 0.875rem;
    }
}

@media (min-width: 768px) {
    .footer-copyright {
        text-align: right;
    }
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #000000;
}

::-webkit-scrollbar-thumb {
    background: #DC2626;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #B91C1C;
}
