/*
--- ASTRAL INTERFACE THEME ---
Colors:
- Deep Space: #0A001A
- Galaxy Violet: #7B61FF
- Star White: #FFFFFF
- Light Violet: #a99dff
- Darker Violet: #5c45e0
- Subtle Gray: #ffffff1a

Fonts:
- Headings: 'Orbitron', sans-serif
- Body: 'Rajdhani', sans-serif
*/

/* 1. ROOT VARIABLES & BASE STYLES
--------------------------------------------- */
:root {
    --deep-space: #0A001A;
    --galaxy-violet: #7B61FF;
    --star-white: #FFFFFF;
    --light-violet: #a99dff;
    --darker-violet: #5c45e0;
    --subtle-gray: #ffffff1a;
    --transparent-violet: #7b61ff1a;
    --header-height: 80px;
    --font-heading: 'Orbitron', sans-serif;
    --font-body: 'Rajdhani', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--deep-space);
    color: var(--star-white);
    font-family: var(--font-body);
    font-size: 18px;
    line-height: 1.6;
    overflow-x: hidden;
    cursor: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    color: var(--star-white);
    line-height: 1.2;
    font-weight: 700;
}

a {
    color: var(--light-violet);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--star-white);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-padding {
    padding: 100px 0;
}

.text-center {
    text-align: center;
}

/* 2. CUSTOM CURSOR & SCROLLBAR
--------------------------------------------- */
.cursor-dot,
.cursor-outline {
    pointer-events: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    z-index: 9999;
    opacity: 0;
    transition: opacity 0.3s ease-in-out, transform 0.2s ease-in-out;
}

body:hover .cursor-dot,
body:hover .cursor-outline {
    opacity: 1;
}

.cursor-dot {
    width: 8px;
    height: 8px;
    background-color: var(--galaxy-violet);
}

.cursor-outline {
    width: 40px;
    height: 40px;
    border: 2px solid var(--galaxy-violet);
    transition-duration: 0.1s;
}

::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--deep-space);
}

::-webkit-scrollbar-thumb {
    background: var(--galaxy-violet);
    border-radius: 10px;
    border: 2px solid var(--deep-space);
}

::-webkit-scrollbar-thumb:hover {
    background: var(--darker-violet);
}


/* 3. PARTICLE CANVAS BACKGROUND
--------------------------------------------- */
#particle-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

/* 4. HEADER
--------------------------------------------- */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: transparent;
    padding: 15px 0;
    transition: background-color 0.4s ease, padding 0.4s ease, box-shadow 0.4s ease;
}

.header.scrolled {
    background-color: rgba(10, 0, 26, 0.85);
    padding: 10px 0;
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(123, 97, 255, 0.1);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-img {
    height: 60px;
    filter: brightness(0) invert(1);
    transition: transform 0.3s ease;
}

.logo:hover .logo-img {
    transform: rotate(360deg);
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 700;
    color: var(--star-white);
}

.nav-menu {
    display: flex;
}

.nav-list {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-link {
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 16px;
    color: var(--star-white);
    position: relative;
    padding: 5px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--galaxy-violet);
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.nav-toggle,
.nav-close {
    display: none;
    cursor: pointer;
    font-size: 24px;
    background: none;
    border: none;
    color: var(--star-white);
}

/* 5. BUTTONS
--------------------------------------------- */
.btn {
    padding: 12px 24px;
    border-radius: 5px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    position: relative;
    overflow: hidden;
}

.btn span {
    z-index: 1;
}

.btn-primary {
    background-color: var(--galaxy-violet);
    color: var(--star-white);
    box-shadow: 0 0 10px var(--galaxy-violet), 0 0 20px var(--galaxy-violet);
}

.btn-primary:hover {
    background-color: var(--darker-violet);
    transform: translateY(-2px);
    box-shadow: 0 0 15px var(--darker-violet), 0 0 30px var(--darker-violet);
}

.btn-secondary {
    background-color: transparent;
    color: var(--star-white);
    border-color: var(--galaxy-violet);
}

.btn-secondary:hover {
    background-color: var(--transparent-violet);
    color: var(--star-white);
    transform: translateY(-2px);
}

.btn-large {
    padding: 16px 32px;
    font-size: 18px;
}

.btn-full {
    width: 100%;
    justify-content: center;
}

/* 6. HERO SECTION
--------------------------------------------- */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: var(--header-height);
    position: relative;
}

.hero-container {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    align-items: center;
    gap: 40px;
}

.hero-title {
    font-size: 64px;
    margin-bottom: 20px;
    font-weight: 900;
    text-shadow: 0 0 15px var(--galaxy-violet);
}

.hero-subtitle {
    font-size: 22px;
    color: var(--light-violet);
    max-width: 550px;
    margin-bottom: 30px;
}

.hero-cta {
    display: flex;
    gap: 20px;
}

.hero-visual {
    perspective: 1000px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.cube-container {
    width: 250px;
    height: 250px;
}

.cube {
    width: 100%;
    height: 100%;
    position: relative;
    transform-style: preserve-3d;
    animation: rotate-cube 20s infinite linear;
}

.face {
    position: absolute;
    width: 250px;
    height: 250px;
    background: var(--transparent-violet);
    border: 1px solid var(--galaxy-violet);
    color: var(--star-white);
    font-size: 24px;
    font-family: var(--font-heading);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 15px;
    backdrop-filter: blur(5px);
}

.face i {
    font-size: 48px;
    color: var(--light-violet);
}

.front {
    transform: rotateY(0deg) translateZ(125px);
}

.back {
    transform: rotateY(180deg) translateZ(125px);
}

.right {
    transform: rotateY(90deg) translateZ(125px);
}

.left {
    transform: rotateY(-90deg) translateZ(125px);
}

.top {
    transform: rotateX(90deg) translateZ(125px);
}

.bottom {
    transform: rotateX(-90deg) translateZ(125px);
}

@keyframes rotate-cube {
    from {
        transform: rotateX(0deg) rotateY(0deg);
    }

    to {
        transform: rotateX(360deg) rotateY(360deg);
    }
}

.scroll-down-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 24px;
    animation: bounce 2s infinite;
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    40% {
        transform: translateX(-50%) translateY(-15px);
    }

    60% {
        transform: translateX(-50%) translateY(-10px);
    }
}


/* 7. GENERAL SECTION STYLES
--------------------------------------------- */
.section-header {
    margin-bottom: 60px;
}

.section-title {
    font-size: 48px;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: var(--galaxy-violet);
}

.section-subtitle {
    font-size: 20px;
    color: var(--light-violet);
    max-width: 700px;
    margin: 20px auto 0;
}

/* 8. SERVICES SECTION
--------------------------------------------- */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.service-card {
    background: var(--subtle-gray);
    border: 1px solid var(--subtle-gray);
    border-radius: 10px;
    padding: 1px;
    position: relative;
    overflow: hidden;
    transform-style: preserve-3d;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(123, 97, 255, 0.2);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at var(--x, 50%) var(--y, 50%), var(--galaxy-violet) 0%, transparent 40%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.service-card:hover::before {
    opacity: 0.15;
}

.service-card-inner {
    background-color: var(--deep-space);
    padding: 40px 30px;
    border-radius: 9px;
    height: 100%;
    display: flex;
    flex-direction: column;
    text-align: center;
    align-items: center;
}

.service-icon {
    font-size: 48px;
    color: var(--galaxy-violet);
    margin-bottom: 20px;
}

.service-title {
    font-size: 24px;
    margin-bottom: 15px;
}

.service-description {
    font-size: 16px;
    color: var(--light-violet);
    flex-grow: 1;
    margin-bottom: 20px;
}

.service-link {
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.service-link i {
    transition: transform 0.3s ease;
}

.service-link:hover i {
    transform: translateX(5px);
}

/* 9. ABOUT SECTION
--------------------------------------------- */
.about-section {
    background: var(--subtle-gray);
}

.about-container {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: center;
}

.about-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-image {
    z-index: 2;
    max-width: 300px;
    border-radius: 50%;
    position: relative;
    filter: brightness(0) invert(1);
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0% {
        transform: translatey(0px);
    }

    50% {
        transform: translatey(-20px);
    }

    100% {
        transform: translatey(0px);
    }
}

.about-visual-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    max-width: 350px;
    max-height: 350px;
    border: 2px solid var(--galaxy-violet);
    border-radius: 50%;
    z-index: 1;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(123, 97, 255, 0.7);
    }

    70% {
        transform: scale(1);
        box-shadow: 0 0 0 20px rgba(123, 97, 255, 0);
    }

    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(123, 97, 255, 0);
    }
}

.about-content .section-title {
    font-size: 42px;
}

.about-content .section-title::after {
    left: 0;
    transform: translateX(0);
}

.about-content p {
    margin-bottom: 20px;
}

.about-checklist {
    margin-bottom: 30px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.about-checklist li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
}

.about-checklist i {
    color: var(--galaxy-violet);
}

/* 10. INDUSTRY SECTION
--------------------------------------------- */
.industry-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    text-align: center;
}

.industry-item {
    background-color: var(--subtle-gray);
    padding: 30px;
    border-radius: 10px;
    border: 1px solid transparent;
    transition: all 0.3s ease;
}

.industry-item:hover {
    border-color: var(--galaxy-violet);
    transform: translateY(-5px);
    background: var(--transparent-violet);
}

.industry-item i {
    font-size: 48px;
    color: var(--galaxy-violet);
    margin-bottom: 20px;
}

.industry-item h4 {
    font-size: 22px;
    margin-bottom: 10px;
}

.industry-item p {
    color: var(--light-violet);
}

/* 11. TESTIMONIALS SECTION
--------------------------------------------- */
.testimonials-section {
    background: linear-gradient(rgba(10, 0, 26, 0.9), rgba(10, 0, 26, 0.9)),
        url('data:image/svg+xml,%3Csvg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"%3E%3Cg fill-rule="evenodd"%3E%3Cg fill="%237B61FF" fill-opacity="0.05"%3E%3Cpath opacity=".5" d="M96 95h4v1h-4v4h-1v-4h-9v4h-1v-4h-9v4h-1v-4h-9v4h-1v-4h-9v4h-1v-4h-9v4h-1v-4h-9v4h-1v-4h-9v4h-1v-4h-9v4h-1v-4H0v-1h15v-9H0v-1h15v-9H0v-1h15v-9H0v-1h15v-9H0v-1h15v-9H0v-1h15v-9H0v-1h15v-9H0v-1h15v-9H0v-1h16v-5h1v5h9v-5h1v5h9v-5h1v5h9v-5h1v5h9v-5h1v5h9v-5h1v5h9v-5h1v5h9v-5h1v5h5v1h-5v9h5v1h-5v9h5v1h-5v9h5v1h-5v9h5v1h-5v9h5v1h-5v9h5v1h-5v9h5v1h-5v9zm-1 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-9-10h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm9-10v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-9-10h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm9-10v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-9-10h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm9-10v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-9-10h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9z"/%3E%3Cpath d="M6 5V0h1v5h9V0h1v5h9V0h1v5h9V0h1v5h9V0h1v5h9V0h1v5h9V0h1v5h9V0h1v5h9V0h1v5h5v1h-5v9h5v1h-5v9h5v1h-5v9h5v1h-5v9h5v1h-5v9h5v1h-5v9h5v1h-5v9h5v1h-5v9h5v1h-4v4h-1v-4h-9v4h-1v-4h-9v4h-1v-4h-9v4h-1v-4h-9v4h-1v-4h-9v4h-1v-4h-9v4h-1v-4h-9v4h-1v-4h-9v4H0v-1h5v-9H0v-1h5v-9H0v-1h5v-9H0v-1h5v-9H0v-1h5v-9H0v-1h5v-9H0v-1h5v-9H0v-1h5v-9H0V5h6z"/%3E%3C/g%3E%3C/g%3E%3C/svg%3E');
}

.testimonial-slider-wrapper {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    overflow: hidden;
}

.testimonial-slider {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.testimonial-slide {
    min-width: 100%;
    padding: 40px;
    background-color: var(--subtle-gray);
    border-radius: 10px;
    text-align: center;
    border: 1px solid var(--subtle-gray);
    box-sizing: border-box;
}

.testimonial-text {
    font-size: 20px;
    font-style: italic;
    margin-bottom: 20px;
    position: relative;
    padding: 0 20px;
}

.testimonial-text::before,
.testimonial-text::after {
    content: '"';
    font-size: 48px;
    color: var(--galaxy-violet);
    position: absolute;
    font-family: serif;
}

.testimonial-text::before {
    top: -10px;
    left: -10px;
}

.testimonial-text::after {
    bottom: -30px;
    right: -10px;
}

.testimonial-author {
    margin-top: 30px;
}

.author-name {
    display: block;
    font-weight: 700;
    font-size: 18px;
}

.author-title {
    color: var(--light-violet);
}

.slider-controls {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0;
    pointer-events: none;
}

.slider-controls button {
    pointer-events: all;
    background: var(--galaxy-violet);
    border: none;
    color: var(--star-white);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.prev-btn {
    transform: translateX(-50px);
}

.next-btn {
    transform: translateX(50px);
}

.slider-controls button:hover {
    background: var(--darker-violet);
    transform: scale(1.1) translateX(var(--translateX, 0));
}

.prev-btn:hover {
    --translateX: -50px;
}

.next-btn:hover {
    --translateX: 50px;
}


/* 12. INTERACTIVE CALCULATOR SECTION
--------------------------------------------- */
.calculator-wrapper {
    max-width: 800px;
    margin: 0 auto;
    background: var(--subtle-gray);
    padding: 40px;
    border-radius: 10px;
    border: 1px solid var(--subtle-gray);
}

.calculator-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
    margin-bottom: 30px;
}

.form-group label {
    font-family: var(--font-heading);
    font-size: 20px;
    margin-bottom: 10px;
    display: block;
    text-align: center;
}

.range-slider {
    width: 100%;
    position: relative;
}

.range-value-label {
    position: absolute;
    top: -35px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--galaxy-violet);
    color: var(--star-white);
    padding: 2px 8px;
    border-radius: 3px;
    font-size: 14px;
    font-weight: bold;
}

#adSpend {
    -webkit-appearance: none;
    width: 100%;
    height: 8px;
    background: var(--deep-space);
    outline: none;
    border-radius: 5px;
    border: 1px solid var(--galaxy-violet);
}

#adSpend::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 20px;
    height: 20px;
    background: var(--galaxy-violet);
    cursor: pointer;
    border-radius: 50%;
    border: 2px solid var(--star-white);
    box-shadow: 0 0 10px var(--galaxy-violet);
}

.calculator-results {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    text-align: center;
    margin-bottom: 20px;
}

.result-box {
    background: var(--deep-space);
    padding: 20px;
    border-radius: 5px;
}

.result-box h4 {
    color: var(--light-violet);
    margin-bottom: 10px;
    font-size: 16px;
}

.result-box p {
    font-size: 32px;
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--galaxy-violet);
}

.calculator-wrapper .disclaimer {
    font-size: 12px;
    text-align: center;
    color: var(--light-violet);
    opacity: 0.7;
}

/* 13. FOOTER
--------------------------------------------- */
.footer {
    background-color: #060011;
    padding: 80px 0 20px;
    border-top: 1px solid var(--subtle-gray);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 60px;
}

.footer-col-title {
    font-size: 20px;
    margin-bottom: 20px;
    font-weight: 700;
}

.footer-about .logo-text {
    font-size: 28px;
    filter: brightness(0) invert(1);
}

.footer-about-text {
    margin: 20px 0;
    color: var(--light-violet);
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 40px;
    height: 40px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    border: 1px solid var(--subtle-gray);
    border-radius: 50%;
    color: var(--light-violet);
    transition: all 0.3s ease;
}

.social-links a:hover {
    background-color: var(--galaxy-violet);
    border-color: var(--galaxy-violet);
    color: var(--star-white);
    transform: translateY(-3px);
}

.footer-links ul li {
    margin-bottom: 10px;
}

.footer-links a {
    color: var(--light-violet);
}

.footer-links a:hover {
    padding-left: 5px;
}

.footer-contact ul li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 15px;
    color: var(--light-violet);
}

.footer-contact i {
    color: var(--galaxy-violet);
    margin-top: 5px;
}

.footer-contact a {
    color: var(--light-violet);
}

.footer-bottom {
    border-top: 1px solid var(--subtle-gray);
    padding-top: 20px;
    text-align: center;
    font-size: 14px;
    color: var(--light-violet);
}


/* 14. PAGE-SPECIFIC: CONTACT & LEGAL PAGES
--------------------------------------------- */
.page-header-section {
    padding: 180px 0 100px;
    text-align: center;
    position: relative;
    background: linear-gradient(rgba(10, 0, 26, 0.5), var(--deep-space));
}

.page-header-desc {
    font-size: 20px;
    color: var(--light-violet);
    max-width: 600px;
    margin: 15px auto 25px;
}

.breadcrumbs a,
.breadcrumbs span {
    color: var(--light-violet);
    font-weight: 600;
}

.breadcrumbs i {
    margin: 0 10px;
    font-size: 12px;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 40px;
    background: var(--subtle-gray);
    border-radius: 10px;
    overflow: hidden;
}

.contact-info-panel {
    padding: 40px;
    background: #060011;
}

.contact-info-panel h3 {
    font-size: 28px;
    margin-bottom: 15px;
}

.contact-details-list {
    margin-top: 30px;
}

.contact-details-list li {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
    align-items: flex-start;
}

.contact-details-list i {
    font-size: 24px;
    color: var(--galaxy-violet);
    margin-top: 5px;
}

.contact-details-list h4 {
    font-size: 18px;
    margin-bottom: 5px;
}

.contact-details-list p,
.contact-details-list a {
    color: var(--light-violet);
}

.contact-form-wrapper {
    padding: 40px;
}

.contact-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.contact-form .form-group {
    margin-bottom: 20px;
}

.contact-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
    width: 100%;
    padding: 12px 15px;
    background: var(--deep-space);
    border: 1px solid var(--subtle-gray);
    border-radius: 5px;
    color: var(--star-white);
    font-family: var(--font-body);
    font-size: 16px;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
    outline: none;
    border-color: var(--galaxy-violet);
    box-shadow: 0 0 10px var(--transparent-violet);
}

.contact-form select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23a99dff' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 1em;
}

/* POPUP */
.popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 0, 26, 0.8);
    backdrop-filter: blur(10px);
    z-index: 1001;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.popup.active {
    opacity: 1;
    visibility: visible;
}

.popup-content {
    background: var(--deep-space);
    padding: 40px;
    border-radius: 10px;
    text-align: center;
    max-width: 500px;
    border: 1px solid var(--galaxy-violet);
    box-shadow: 0 0 30px var(--transparent-violet);
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.popup.active .popup-content {
    transform: scale(1);
}

.popup-icon {
    font-size: 60px;
    color: #4CAF50;
    margin-bottom: 20px;
}

.popup-content h3 {
    font-size: 28px;
    margin-bottom: 10px;
}

.popup-content p {
    color: var(--light-violet);
    margin-bottom: 30px;
}

/* LEGAL CONTENT */
.legal-content {
    max-width: 800px;
    margin: 0 auto;
    background: var(--subtle-gray);
    padding: 50px;
    border-radius: 10px;
}

.legal-content h2 {
    font-size: 28px;
    margin: 30px 0 15px;
    color: var(--galaxy-violet);
}

.legal-content p {
    color: var(--light-violet);
    margin-bottom: 15px;
}

/* 15. ANIMATIONS & RESPONSIVENESS
--------------------------------------------- */
.animate-in {
    opacity: 0;
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in-up {
    transform: translateY(30px);
}

.fade-in-left {
    transform: translateX(-30px);
}

.fade-in-right {
    transform: translateX(30px);
}

.zoom-in {
    transform: scale(0.9);
}

.animate-in.is-visible {
    opacity: 1;
    transform: translate(0, 0) scale(1);
}

/* RESPONSIVE DESIGN */
@media (max-width: 992px) {
    .header {
        padding: 10px 0;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        max-width: 300px;
        height: 100vh;
        background: var(--deep-space);
        flex-direction: column;
        padding-top: var(--header-height);
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.2);
        transition: right 0.4s ease;
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-list {
        flex-direction: column;
        align-items: flex-start;
        padding: 30px;
        gap: 25px;
    }

    .nav-close {
        display: block;
        position: absolute;
        top: 20px;
        right: 20px;
        font-size: 28px;
    }

    .nav-toggle {
        display: block;
    }

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-content {
        order: 2;
    }

    .hero-visual {
        order: 1;
        margin-bottom: 40px;
    }

    .hero-subtitle {
        margin: 0 auto 30px;
    }

    .hero-cta {
        justify-content: center;
    }

    .cube-container {
        width: 200px;
        height: 200px;
    }

    .face {
        width: 200px;
        height: 200px;
    }

    .front {
        transform: rotateY(0deg) translateZ(100px);
    }

    .back {
        transform: rotateY(180deg) translateZ(100px);
    }

    .right {
        transform: rotateY(90deg) translateZ(100px);
    }

    .left {
        transform: rotateY(-90deg) translateZ(100px);
    }

    .top {
        transform: rotateX(90deg) translateZ(100px);
    }

    .bottom {
        transform: rotateX(-90deg) translateZ(100px);
    }

    .about-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .about-visual {
        margin-bottom: 40px;
    }

    .about-content .section-title::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .about-checklist {
        grid-template-columns: 1fr;
        text-align: left;
        max-width: 300px;
        margin: 0 auto 30px;
    }

    .industry-grid {
        grid-template-columns: 1fr 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .slider-controls button {
        background: var(--transparent-violet);
    }

    .prev-btn {
        transform: translateX(-20px);
    }

    .next-btn {
        transform: translateX(20px);
    }

    .prev-btn:hover {
        --translateX: -20px;
    }

    .next-btn:hover {
        --translateX: 20px;
    }
}

@media (max-width: 768px) {
    body {
        font-size: 16px;
    }

    .section-padding {
        padding: 80px 0;
    }

    .section-title {
        font-size: 36px;
    }

    .hero-title {
        font-size: 42px;
    }

    .hero-subtitle {
        font-size: 18px;
    }

    .industry-grid {
        grid-template-columns: 1fr;
    }

    .calculator-results {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-col {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .footer-links ul {
        text-align: center;
    }

    .footer-contact ul li {
        justify-content: center;
    }

    .contact-form .form-row {
        grid-template-columns: 1fr;
    }

    .legal-content {
        padding: 30px;
    }
}