/* ---
Root Variables and Base Styles
--- */
:root {
    --color-primary: #00f2ea;
    --color-secondary: #ff00c1;
    --color-background: #0d0c1d;
    --color-surface: #191834;
    --color-surface-light: #222049;
    --color-text: #e0e0e0;
    --color-text-muted: #a0a0c0;
    --color-white: #ffffff;
    --font-primary: 'Poppins', sans-serif;
    --font-mono: 'Roboto Mono', monospace;
    --header-height: 80px;
    --border-radius: 8px;
    --transition-speed: 0.3s;
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: var(--header-height);
}

body {
    font-family: var(--font-primary);
    background-color: var(--color-background);
    color: var(--color-text);
    line-height: 1.7;
    overflow-x: hidden;
    cursor: none;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

a {
    color: var(--color-primary);
    text-decoration: none;
    transition: color var(--transition-speed) ease;
}

a:hover {
    color: var(--color-white);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

h1,
h2,
h3,
h4 {
    font-weight: 700;
    line-height: 1.2;
    color: var(--color-white);
}

h1 {
    font-size: 3rem;
}

h2 {
    font-size: 2.5rem;
}

h3 {
    font-size: 1.5rem;
}

section {
    padding: 100px 0;
}


/* ---
3D Background and Cursor
--- */
.grid-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-image:
        linear-gradient(rgba(25, 24, 52, 0.95) 1px, transparent 1px),
        linear-gradient(90deg, rgba(25, 24, 52, 0.95) 1px, transparent 1px),
        linear-gradient(rgba(25, 24, 52, 0.5) 1px, transparent 1px),
        linear-gradient(90deg, rgba(25, 24, 52, 0.5) 1px, transparent 1px);
    background-size: 100px 100px, 100px 100px, 20px 20px, 20px 20px;
    background-position: -1px -1px, -1px -1px, -1px -1px, -1px -1px;
    z-index: -1;
    animation: pan-grid 200s linear infinite;
}

@keyframes pan-grid {
    0% {
        background-position: -1px -1px, -1px -1px, -1px -1px, -1px -1px;
    }

    100% {
        background-position: 1000px 1000px, 1000px 1000px, 1000px 1000px, 1000px 1000px;
    }
}

.glow-cursor {
    position: fixed;
    width: 30px;
    height: 30px;
    border: 2px solid var(--color-primary);
    border-radius: 50%;
    left: 0;
    top: 0;
    pointer-events: none;
    transform: translate(-50%, -50%);
    transition: width 0.2s ease, height 0.2s ease, background-color 0.2s ease;
    z-index: 9999;
    mix-blend-mode: screen;
}

body:hover .glow-cursor {
    opacity: 1;
}

a:hover~.glow-cursor,
button:hover~.glow-cursor,
input:hover~.glow-cursor,
textarea:hover~.glow-cursor,
select:hover~.glow-cursor {
    width: 50px;
    height: 50px;
    background-color: rgba(0, 242, 234, 0.1);
}

/* ---
Header and Navigation
--- */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    display: flex;
    align-items: center;
    z-index: 1000;
    transition: all var(--transition-speed) ease;
}

.header.scrolled {
    background-color: rgba(13, 12, 29, 0.85);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    height: 70px;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    height: 100px;
    filter: brightness(0) invert(1);
    transition: transform var(--transition-speed) ease;
}

.logo-link:hover .logo {
    transform: rotate(10deg) scale(1.05);
}

.nav-list {
    display: flex;
    gap: 30px;
}

.nav-link {
    color: var(--color-text);
    font-weight: 500;
    position: relative;
    padding: 5px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--color-primary), var(--color-secondary));
    transition: width var(--transition-speed) ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 24px;
    border-radius: var(--border-radius);
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all var(--transition-speed) ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn span {
    z-index: 2;
}

.btn i {
    z-index: 2;
    transition: transform var(--transition-speed) ease;
}

.btn:hover i {
    transform: translateX(5px);
}

.btn-primary {
    background: linear-gradient(90deg, var(--color-primary), var(--color-secondary));
    color: var(--color-background);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, var(--color-secondary), var(--color-primary));
    opacity: 0;
    transition: opacity var(--transition-speed) ease;
    z-index: -1;
}

.btn-primary:hover::before {
    opacity: 1;
}

.btn-secondary {
    background-color: transparent;
    border: 2px solid var(--color-primary);
    color: var(--color-primary);
}

.btn-secondary:hover {
    background-color: var(--color-primary);
    color: var(--color-background);
}

.header-cta.active {
    box-shadow: 0 0 15px var(--color-primary);
}

/* --- Mobile Navigation --- */
.mobile-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    width: 30px;
    height: 22px;
    position: relative;
    z-index: 1001;
}

.bar {
    display: block;
    width: 100%;
    height: 3px;
    background-color: var(--color-white);
    border-radius: 3px;
    position: absolute;
    transition: all 0.35s ease-in-out;
}

.bar-top {
    top: 0;
}

.bar-middle {
    top: 50%;
    transform: translateY(-50%);
}

.bar-bottom {
    bottom: 0;
}

.mobile-toggle.open .bar-top {
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
}

.mobile-toggle.open .bar-middle {
    opacity: 0;
}

.mobile-toggle.open .bar-bottom {
    bottom: 50%;
    transform: translateY(50%) rotate(-45deg);
}

.mobile-nav {
    display: none;
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background-color: var(--color-surface);
    z-index: 999;
    transition: right 0.35s ease-in-out;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.mobile-nav.open {
    right: 0;
}

.mobile-nav nav ul {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.mobile-nav nav ul a {
    font-size: 1.5rem;
}


/* --- Hero Section --- */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: var(--header-height);
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 50px;
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 20px;
}

.hero-title .highlight {
    background: -webkit-linear-gradient(45deg, var(--color-primary), var(--color-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--color-text-muted);
    margin-bottom: 40px;
}

.hero-cta {
    display: flex;
    gap: 20px;
}

.hero-visual {
    perspective: 1000px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-cube {
    width: 250px;
    height: 250px;
    position: relative;
    transform-style: preserve-3d;
    animation: rotate-cube 20s infinite linear;
}

.hero-cube .face {
    position: absolute;
    width: 250px;
    height: 250px;
    background: rgba(25, 24, 52, 0.7);
    border: 2px solid var(--color-primary);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 4rem;
    color: var(--color-primary);
    box-shadow: inset 0 0 20px rgba(0, 242, 234, 0.3);
}

.face.front {
    transform: rotateY(0deg) translateZ(125px);
}

.face.back {
    transform: rotateY(180deg) translateZ(125px);
}

.face.right {
    transform: rotateY(90deg) translateZ(125px);
}

.face.left {
    transform: rotateY(-90deg) translateZ(125px);
}

.face.top {
    transform: rotateX(90deg) translateZ(125px);
}

.face.bottom {
    transform: rotateX(-90deg) translateZ(125px);
}

@keyframes rotate-cube {
    from {
        transform: rotateX(0deg) rotateY(0deg);
    }

    to {
        transform: rotateX(360deg) rotateY(360deg);
    }
}

/* --- Section Headers --- */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section-title::before {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: -webkit-linear-gradient(45deg, var(--color-primary), var(--color-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    opacity: 0.1;
    font-size: 3.5rem;
    z-index: -1;
}

.section-description {
    max-width: 600px;
    margin: 0 auto;
    color: var(--color-text-muted);
}

/* --- Services Section --- */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    background: var(--color-surface);
    border-radius: var(--border-radius);
    padding: 2px;
    background: linear-gradient(135deg, var(--color-surface-light), var(--color-surface));
    position: relative;
    overflow: hidden;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    perspective: 1000px;
}

.service-card:hover {
    transform: translateY(-10px) rotateX(5deg) rotateY(-5deg);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.service-card-inner {
    background-color: var(--color-surface);
    padding: 30px;
    border-radius: calc(var(--border-radius) - 2px);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.service-icon {
    font-size: 2.5rem;
    color: var(--color-primary);
    margin-bottom: 20px;
    width: 60px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--color-surface-light);
    border-radius: 50%;
}

.service-title {
    margin-bottom: 15px;
}

.service-description {
    color: var(--color-text-muted);
    flex-grow: 1;
}

.service-link {
    margin-top: 20px;
    font-weight: 600;
    color: var(--color-primary);
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.service-link i {
    transition: transform var(--transition-speed) ease;
}

.service-link:hover i {
    transform: translateX(5px);
}

/* --- About Us Section --- */
.about-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: center;
}

.about-image-container {
    position: relative;
}

.about-image {
    border-radius: var(--border-radius);
    position: relative;
    z-index: 2;
}

.about-image-bg {
    position: absolute;
    top: -20px;
    left: -20px;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    border-radius: var(--border-radius);
    z-index: 1;
}

.about-content .section-title {
    text-align: left;
    margin-bottom: 10px;
}

.about-content .section-title::before {
    left: -20px;
}

.about-content h3 {
    margin-bottom: 20px;
    color: var(--color-text);
}

.about-content p {
    color: var(--color-text-muted);
    margin-bottom: 20px;
}

.about-stats {
    display: flex;
    gap: 30px;
    margin-top: 30px;
}

.about-stats li {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    font-family: var(--font-mono);
    color: var(--color-primary);
}

/* --- Industries Section --- */
.industries-section {
    background-color: var(--color-surface);
}

.industries-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
}

.industry-item {
    background-color: var(--color-surface-light);
    padding: 25px;
    border-radius: var(--border-radius);
    text-align: center;
    transition: all var(--transition-speed) ease;
    border: 1px solid transparent;
}

.industry-item:hover {
    transform: translateY(-5px);
    border-color: var(--color-primary);
    background-color: var(--color-surface);
}

.industry-item i {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: var(--color-primary);
    display: block;
}

.industry-item span {
    font-weight: 600;
}

/* --- Testimonials Section --- */
.testimonial-slider-wrapper {
    position: relative;
}

.testimonial-slider {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.testimonial-card {
    background-color: var(--color-surface);
    padding: 40px;
    border-radius: var(--border-radius);
    border-left: 5px solid var(--color-primary);
    position: relative;
}

.testimonial-quote-icon {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 3rem;
    color: var(--color-surface-light);
}

.testimonial-text {
    font-style: italic;
    color: var(--color-text-muted);
    margin-bottom: 30px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-name {
    margin-bottom: 2px;
}

.author-title {
    font-size: 0.9rem;
    color: var(--color-text-muted);
}

/* --- CTA Section --- */
.cta-section {
    background: linear-gradient(45deg, rgba(0, 242, 234, 0.1), rgba(255, 0, 193, 0.1)), var(--color-background);
    padding: 80px 0;
}

.cta-content {
    text-align: center;
}

.cta-title {
    font-size: 2rem;
    margin-bottom: 15px;
}

.cta-text {
    color: var(--color-text-muted);
    margin-bottom: 30px;
}

/* --- Footer --- */
.footer {
    background-color: var(--color-surface);
    padding-top: 80px;
    position: relative;
    overflow: hidden;
}

.footer-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.footer-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
}

.footer-shape.shape-1 {
    width: 300px;
    height: 300px;
    background-color: rgba(0, 242, 234, 0.1);
    left: -100px;
    bottom: -100px;
}

.footer-shape.shape-2 {
    width: 250px;
    height: 250px;
    background-color: rgba(255, 0, 193, 0.1);
    right: -100px;
    top: -50px;
}

.footer .container {
    position: relative;
    z-index: 1;
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    padding-bottom: 40px;
}

.footer-logo {
    height: 100px;
    margin-bottom: 20px;
    filter: brightness(0) invert(1);
}

.footer-about-text {
    color: var(--color-text-muted);
    margin-bottom: 20px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-link {
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid var(--color-surface-light);
    border-radius: 50%;
    color: var(--color-text-muted);
    transition: all var(--transition-speed) ease;
}

.social-link:hover {
    color: var(--color-white);
    background-color: var(--color-primary);
    border-color: var(--color-primary);
}

.footer-col-title {
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.footer-links ul li {
    margin-bottom: 10px;
}

.footer-links ul li a {
    color: var(--color-text-muted);
}

.footer-links ul li a:hover {
    color: var(--color-primary);
    padding-left: 5px;
}

.contact-info li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 15px;
    color: var(--color-text-muted);
}

.contact-info li i {
    margin-top: 5px;
    color: var(--color-primary);
}

.contact-info a {
    color: var(--color-text-muted);
}

.contact-info a:hover {
    color: var(--color-primary);
}

.footer-bottom {
    padding: 20px 0;
    text-align: center;
    border-top: 1px solid var(--color-surface-light);
    color: var(--color-text-muted);
}

/* --- Subpage Styles (Contact, Legal pages) --- */
.subpage main {
    padding-top: var(--header-height);
}

.page-header {
    padding: 60px 0;
    text-align: center;
    background: linear-gradient(rgba(13, 12, 29, 0.5), rgba(13, 12, 29, 0.9));
}

.page-header h1 {
    font-size: 3.5rem;
    position: relative;
    color: transparent;
}

.page-header h1::before {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    background: -webkit-linear-gradient(45deg, var(--color-primary), var(--color-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.breadcrumbs {
    margin-top: 10px;
    margin-bottom: 20px;
    color: var(--color-text-muted);
}

.breadcrumbs a {
    color: var(--color-text);
}

.breadcrumbs i {
    font-size: 0.8rem;
    margin: 0 10px;
    color: var(--color-text-muted);
}

.page-content {
    padding: 80px 0;
}

.content-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.content-wrapper h2 {
    margin: 40px 0 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--color-surface-light);
}

.content-wrapper p,
.content-wrapper ul {
    margin-bottom: 20px;
    color: var(--color-text-muted);
}

.content-wrapper ul {
    list-style: disc;
    padding-left: 20px;
}

.content-wrapper ul li {
    margin-bottom: 10px;
}


/* --- Contact Page --- */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 40px;
    background-color: var(--color-surface);
    padding: 40px;
    border-radius: var(--border-radius);
}

.contact-info-panel h2 {
    margin-bottom: 15px;
}

.contact-info-panel p {
    color: var(--color-text-muted);
    margin-bottom: 30px;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 15px;
}

.method-icon {
    width: 50px;
    height: 50px;
    flex-shrink: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--color-surface-light);
    border-radius: 50%;
    color: var(--color-primary);
    font-size: 1.2rem;
}

.method-details h3 {
    font-size: 1.1rem;
    margin-bottom: 2px;
}

.method-details p {
    margin-bottom: 0;
}

.method-details a {
    color: var(--color-text-muted);
}

.method-details a:hover {
    color: var(--color-primary);
}

.contact-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px 15px;
    background-color: var(--color-background);
    border: 1px solid var(--color-surface-light);
    border-radius: var(--border-radius);
    color: var(--color-text);
    font-family: var(--font-primary);
    transition: border-color var(--transition-speed) ease, box-shadow var(--transition-speed) ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 10px rgba(0, 242, 234, 0.3);
}

textarea {
    resize: vertical;
}

/* --- Popup --- */
.popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 1001;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.popup:target {
    opacity: 1;
    pointer-events: auto;
}

.popup-content {
    background: var(--color-surface);
    padding: 40px;
    border-radius: var(--border-radius);
    text-align: center;
    position: relative;
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.popup:target .popup-content {
    transform: scale(1);
}

.popup-close {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 1.5rem;
    color: var(--color-text-muted);
}

.popup-content i {
    font-size: 4rem;
    color: var(--color-primary);
    margin-bottom: 20px;
}

.popup-content h3 {
    margin-bottom: 10px;
}

.popup-content p {
    color: var(--color-text-muted);
    margin-bottom: 30px;
}


/* --- Scroll Animations --- */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

.service-card.animate-on-scroll {
    transition-delay: calc(var(--i, 0) * 100ms);
}

.industry-item.animate-on-scroll {
    transition-delay: calc(var(--i, 0) * 50ms);
}


/* ---
Responsive Design
--- */

/* Laptops / Small Desktops */
@media (max-width: 1200px) {
    .testimonial-slider {
        grid-template-columns: 1fr 1fr;
    }

    .testimonial-card:last-child {
        grid-column: 1 / -1;
    }
}

/* Tablets */
@media (max-width: 992px) {
    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 2rem;
    }

    .section-title::before {
        font-size: 3rem;
    }

    .nav {
        display: none;
    }

    .mobile-toggle {
        display: block;
    }

    .mobile-nav {
        display: flex;
    }

    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-visual {
        margin-top: 50px;
    }

    .hero-cta {
        justify-content: center;
    }

    .about-wrapper {
        grid-template-columns: 1fr;
    }

    .about-image-container {
        max-width: 500px;
        margin: 0 auto 40px auto;
    }

    .about-content {
        text-align: center;
    }

    .about-content .section-title,
    .about-content .section-title::before {
        text-align: center;
        left: 0;
    }

    .about-stats {
        justify-content: center;
    }

    .testimonial-slider {
        grid-template-columns: 1fr;
    }

    .footer-top {
        grid-template-columns: 1fr 1fr;
    }

    .footer-about,
    .footer-contact {
        grid-column: 1 / -1;
    }

    .footer-about {
        text-align: center;
    }

    .social-links {
        justify-content: center;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
    }
}

/* Mobile Devices */
@media (max-width: 768px) {
    :root {
        --header-height: 70px;
    }

    body {
        cursor: auto;
    }

    .glow-cursor {
        display: none;
    }

    section {
        padding: 80px 0;
    }

    .hero-title {
        font-size: 2.2rem;
    }

    .hero-cube {
        width: 200px;
        height: 200px;
    }

    .hero-cube .face {
        width: 200px;
        height: 200px;
        font-size: 3rem;
    }

    .face.front {
        transform: rotateY(0deg) translateZ(100px);
    }

    .face.back {
        transform: rotateY(180deg) translateZ(100px);
    }

    .face.right {
        transform: rotateY(90deg) translateZ(100px);
    }

    .face.left {
        transform: rotateY(-90deg) translateZ(100px);
    }

    .face.top {
        transform: rotateX(90deg) translateZ(100px);
    }

    .face.bottom {
        transform: rotateX(-90deg) translateZ(100px);
    }

    .contact-form .form-row {
        grid-template-columns: 1fr;
    }

    .contact-wrapper {
        padding: 20px;
    }

    .footer-top {
        grid-template-columns: 1fr;
    }

    .footer-col {
        text-align: center;
    }

    .footer-links ul,
    .contact-info ul {
        text-align: center;
    }

    .contact-info li {
        justify-content: center;
    }
}