/*
--- THEME: Marketers of the Multiverse ---
* Root Variables
* Reset & Base Styles
* Utility Classes
* Starfield Background
* Header & Navigation
* Footer
* Buttons & Forms
* Reusable Components
* --- Page: Home ---
* Hero Section
* Services Section
* About Section
* Testimonials Section
* Calculator Section
* CTA Section
* --- Page: Contact & Legal ---
* Page Header
* Contact Page
* Legal Content
* Popup
* Animations & Keyframes
* Responsiveness (Media Queries)
*/

/* --- Root Variables --- */
:root {
    --cyan: #00FFFF;
    --magenta: #FF00C8;
    --navy: #0B0B0B;
    --light-navy: #1a1a2e;
    --light-gray: #c0c0c0;
    --white: #ffffff;

    --font-primary: 'Orbitron', sans-serif;
    --font-secondary: 'Roboto', sans-serif;

    --header-height: 80px;
    --transition-speed: 0.4s;
}

/* --- Reset & Base Styles --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--navy);
    color: var(--light-gray);
    font-family: var(--font-secondary);
    line-height: 1.7;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

h1,
h2,
h3,
h4 {
    font-family: var(--font-primary);
    color: var(--white);
    text-shadow: 0 0 5px var(--cyan);
    line-height: 1.3;
}

h1 {
    font-size: 3.5rem;
}

h2 {
    font-size: 2.5rem;
}

h3 {
    font-size: 1.5rem;
}

h4 {
    font-size: 1.2rem;
}

a {
    color: var(--cyan);
    text-decoration: none;
    transition: color var(--transition-speed) ease;
}

a:hover {
    color: var(--magenta);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

.section-padding {
    padding: 100px 0;
}

.section-title {
    margin-bottom: 60px;
}

.section-title h2 {
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--cyan), var(--magenta));
}

.section-title p {
    max-width: 600px;
    margin: 0 auto;
    color: var(--light-gray);
}

.text-center {
    text-align: center;
}

/* --- Starfield Background --- */
#starfield {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: radial-gradient(ellipse at bottom, #1b2735 0%, #090a0f 100%);
}

/* --- Header & Navigation --- */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    height: var(--header-height);
    background: rgba(11, 11, 11, 0.7);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 255, 255, 0.2);
    transition: all var(--transition-speed) ease;
}

.header.scrolled {
    background: rgba(11, 11, 11, 0.9);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.2);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-primary);
    font-size: 1.5rem;
    color: var(--white);
    font-weight: 700;
}

.logo-img {
    height: 40px;
}

.nav-menu {
    display: flex;
}

.nav-list {
    display: flex;
    gap: 40px;
}

.nav-link {
    font-family: var(--font-primary);
    color: var(--light-gray);
    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(--cyan), var(--magenta));
    transition: width var(--transition-speed) ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link:hover,
.nav-link.active {
    color: var(--white);
    text-shadow: 0 0 5px var(--cyan);
}

.nav-close {
    display: none;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.nav-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--white);
}

/* --- Footer --- */
.footer {
    background-color: #080808;
    padding: 80px 0 30px;
    border-top: 1px solid rgba(0, 255, 255, 0.2);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 50px;
}

.footer-col-title {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: var(--white);
    position: relative;
    padding-bottom: 10px;
}

.footer-col-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--cyan);
}

.footer-about-text {
    margin: 20px 0;
    font-size: 0.9rem;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    border: 1px solid var(--cyan);
    border-radius: 50%;
    color: var(--cyan);
    transition: all var(--transition-speed) ease;
}

.social-links a:hover {
    background-color: var(--cyan);
    color: var(--navy);
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 0 15px var(--cyan);
}

.footer-links ul li {
    margin-bottom: 10px;
}

.footer-links ul li a {
    color: var(--light-gray);
    position: relative;
}

.footer-links ul li a::before {
    content: '\f105';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    margin-right: 8px;
    color: var(--cyan);
    opacity: 0;
    transition: opacity var(--transition-speed);
}

.footer-links ul li a:hover::before {
    opacity: 1;
}

.footer-contact ul li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 15px;
}

.footer-contact ul li i {
    color: var(--cyan);
    margin-top: 5px;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
}

/* --- Buttons & Forms --- */
.btn {
    display: inline-block;
    padding: 12px 30px;
    font-family: var(--font-primary);
    text-transform: uppercase;
    font-weight: 700;
    border-radius: 5px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition: color var(--transition-speed);
}

.btn span {
    position: relative;
    z-index: 2;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    transition: transform 0.5s;
    transform-origin: 0 0;
    transition-timing-function: cubic-bezier(0.5, 1.6, 0.4, 0.7);
}

.btn-primary {
    background: transparent;
    border: 2px solid var(--cyan);
    color: var(--cyan);
}

.btn-primary::before {
    background: var(--cyan);
    transform: scaleX(0);
}

.btn-primary:hover::before {
    transform: scaleX(1);
}

.btn-primary:hover {
    color: var(--navy);
}

.btn-secondary {
    background: transparent;
    border: 2px solid var(--magenta);
    color: var(--magenta);
}

.btn-secondary::before {
    background: var(--magenta);
    transform: scaleX(0);
}

.btn-secondary:hover::before {
    transform: scaleX(1);
}

.btn-secondary:hover {
    color: var(--navy);
}

/* Forms */
.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-family: var(--font-primary);
    color: var(--light-gray);
    font-size: 0.9rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    background-color: rgba(26, 26, 46, 0.7);
    border: 1px solid rgba(0, 255, 255, 0.3);
    border-radius: 5px;
    color: var(--white);
    font-family: var(--font-secondary);
    font-size: 1rem;
    transition: all var(--transition-speed) ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--cyan);
    box-shadow: 0 0 15px rgba(0, 255, 255, 0.5);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.btn-full {
    width: 100%;
    padding: 15px;
    font-size: 1.1rem;
}


/* --- Home: Hero Section --- */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: var(--header-height);
    position: relative;
    overflow: hidden;
}

.hero-content {
    max-width: 600px;
    z-index: 2;
}

.hero-content h1 {
    font-size: 4rem;
    margin-bottom: 20px;
    background: linear-gradient(90deg, var(--cyan), var(--white), var(--magenta));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradient-text 5s ease infinite;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    color: var(--light-gray);
}

.hero-buttons {
    display: flex;
    gap: 20px;
}

.hero-visual {
    position: absolute;
    right: 5%;
    top: 50%;
    transform: translateY(-50%);
    width: 500px;
    height: 500px;
    z-index: 1;
}

.rotating-globe {
    width: 100%;
    height: 100%;
    position: relative;
    animation: rotate-globe 30s linear infinite;
}

.globe-sphere {
    width: 60%;
    height: 60%;
    position: absolute;
    top: 20%;
    left: 20%;
    background: radial-gradient(circle at 30% 30%, var(--cyan), var(--navy) 70%);
    border-radius: 50%;
    box-shadow: 0 0 50px var(--cyan), inset 0 0 20px rgba(0, 0, 0, 0.5);
}

.globe-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    border: 2px solid rgba(0, 255, 255, 0.3);
    border-radius: 50%;
    transform-style: preserve-3d;
}

.ring-1 {
    width: 100%;
    height: 100%;
    margin-top: -50%;
    margin-left: -50%;
    transform: rotateX(70deg);
    animation: rotate-ring1 10s linear infinite;
}

.ring-2 {
    width: 80%;
    height: 80%;
    margin-top: -40%;
    margin-left: -40%;
    transform: rotateX(70deg) rotateY(45deg);
    animation: rotate-ring2 12s linear infinite reverse;
}

.ring-3 {
    width: 120%;
    height: 120%;
    margin-top: -60%;
    margin-left: -60%;
    transform: rotateX(70deg) rotateY(90deg);
    animation: rotate-ring3 8s linear infinite;
}


/* --- Home: Services Section --- */
.services-section {
    position: relative;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.service-card {
    background-color: var(--light-navy);
    padding: 40px 30px;
    border-radius: 10px;
    border: 1px solid rgba(0, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
    transition: all var(--transition-speed) ease;
    z-index: 1;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 0 30px rgba(0, 255, 255, 0.3);
    border-color: var(--cyan);
}

.service-card-portal {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 1px;
    height: 1px;
    background: var(--cyan);
    border-radius: 50%;
    transform: translate(-50%, -50%) scale(0);
    transition: transform 1s ease;
    z-index: -1;
    opacity: 0.1;
}

.service-card:hover .service-card-portal {
    transform: translate(-50%, -50%) scale(400);
}

.service-icon {
    font-size: 3rem;
    color: var(--cyan);
    margin-bottom: 20px;
    display: inline-block;
}

.service-card h3 {
    color: var(--cyan);
    margin-bottom: 15px;
}

.service-features {
    margin-top: 20px;
    text-align: left;
}

.service-features li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.service-features i {
    color: var(--magenta);
}

/* --- Home: About Section --- */
.about-section {
    background-color: rgba(26, 26, 46, 0.3);
}

.about-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-content .section-title {
    text-align: left;
    margin-bottom: 30px;
}

.about-content .section-title h2::after {
    left: 0;
    transform: translateX(0);
}

.about-stats {
    display: flex;
    gap: 30px;
    margin: 40px 0;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    color: var(--cyan);
}

.stat-label {
    font-family: var(--font-primary);
    color: var(--light-gray);
}

.about-visual {
    perspective: 1000px;
}

.visual-cube-wrapper {
    width: 300px;
    height: 300px;
    margin: auto;
}

.visual-cube {
    width: 100%;
    height: 100%;
    position: relative;
    transform-style: preserve-3d;
    animation: rotate-cube 20s infinite linear;
}

.face {
    position: absolute;
    width: 300px;
    height: 300px;
    border: 2px solid var(--cyan);
    background: rgba(0, 255, 255, 0.1);
    box-shadow: inset 0 0 50px rgba(0, 255, 255, 0.2);
}

.front {
    transform: rotateY(0deg) translateZ(150px);
}

.back {
    transform: rotateY(180deg) translateZ(150px);
}

.right {
    transform: rotateY(90deg) translateZ(150px);
}

.left {
    transform: rotateY(-90deg) translateZ(150px);
}

.top {
    transform: rotateX(90deg) translateZ(150px);
}

.bottom {
    transform: rotateX(-90deg) translateZ(150px);
}


/* --- Home: Testimonials Section --- */
.testimonial-slider-wrapper {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    overflow: hidden;
}

.testimonial-slider {
    display: flex;
    transition: transform var(--transition-speed) ease-in-out;
}

.testimonial-slide {
    min-width: 100%;
    padding: 40px;
    background: var(--light-navy);
    border: 1px solid rgba(255, 0, 200, 0.2);
    border-radius: 10px;
    text-align: center;
}

.testimonial-text {
    font-size: 1.1rem;
    font-style: italic;
    margin-bottom: 30px;
}

.testimonial-text::before {
    content: '\f10d';
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    font-size: 2rem;
    color: var(--magenta);
    display: block;
    margin-bottom: 10px;
}

.author-name {
    color: var(--magenta);
}

.author-title {
    color: var(--light-gray);
    font-size: 0.9rem;
}

.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 10px;
}

.slider-nav button {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid var(--magenta);
    color: var(--magenta);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    transition: all var(--transition-speed);
}

.slider-nav button:hover {
    background: var(--magenta);
    color: var(--navy);
}

/* --- Home: Calculator Section --- */
.calculator-section {
    background-color: rgba(26, 26, 46, 0.3);
}

.calculator-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    background: var(--light-navy);
    padding: 40px;
    border-radius: 10px;
    border: 1px solid rgba(0, 255, 255, 0.2);
}

#budget {
    -webkit-appearance: none;
    width: 100%;
    height: 8px;
    background: rgba(0, 0, 0, 0.3);
    outline: none;
    border-radius: 5px;
}

#budget::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 20px;
    height: 20px;
    background: var(--cyan);
    cursor: pointer;
    border-radius: 50%;
    box-shadow: 0 0 10px var(--cyan);
}

#budget-value {
    display: block;
    text-align: right;
    font-family: var(--font-primary);
    color: var(--cyan);
}

.calculator-results {
    text-align: center;
    border-left: 1px solid rgba(0, 255, 255, 0.2);
    padding-left: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.result-display {
    margin: 20px 0;
}

#roi-result {
    font-family: var(--font-primary);
    font-size: 4rem;
    color: var(--cyan);
    text-shadow: 0 0 15px var(--cyan);
    margin-bottom: 10px;
}

.result-display span {
    font-family: var(--font-primary);
}

.disclaimer {
    font-size: 0.8rem;
    font-style: italic;
    opacity: 0.7;
}

/* --- Home: CTA Section --- */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(rgba(11, 11, 11, 0.8), rgba(11, 11, 11, 0.8)), url('https://www.transparenttextures.com/patterns/stardust.png');
}

.cta-section h2 {
    margin-bottom: 20px;
}

.cta-section p {
    max-width: 600px;
    margin: 0 auto 30px;
}

.btn-lg {
    padding: 15px 40px;
    font-size: 1.2rem;
}

/* --- Page: Contact & Legal --- */
.page-header-section {
    padding: 160px 0 80px;
    background: linear-gradient(rgba(11, 11, 11, 0.7), var(--navy)), url('https://www.transparenttextures.com/patterns/stardust.png');
    position: relative;
    text-align: center;
}

.page-header-desc {
    max-width: 600px;
    margin: 15px auto 20px;
    font-size: 1.1rem;
}

.breadcrumbs a {
    color: var(--light-gray);
}

.breadcrumbs span {
    color: var(--white);
}

.breadcrumbs i {
    margin: 0 10px;
    font-size: 0.8rem;
    color: var(--cyan);
}

/* Contact Page */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 50px;
    background: var(--light-navy);
    padding: 50px;
    border-radius: 10px;
}

.contact-info-panel {
    border-right: 1px solid rgba(0, 255, 255, 0.2);
    padding-right: 50px;
}

.contact-info-panel h3 {
    color: var(--cyan);
    margin-bottom: 15px;
}

.contact-details-list {
    margin-top: 30px;
}

.contact-details-list li {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
}

.contact-details-list i {
    font-size: 1.5rem;
    color: var(--cyan);
    margin-top: 5px;
}

.contact-details-list h4 {
    margin-bottom: 5px;
    color: var(--white);
}

.contact-details-list p,
.contact-details-list a {
    color: var(--light-gray);
    font-size: 0.9rem;
}

/* Legal Content */
.legal-content {
    max-width: 800px;
    margin: auto;
    background: var(--light-navy);
    padding: 40px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.legal-content h2 {
    color: var(--cyan);
    margin-top: 30px;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(0, 255, 255, 0.2);
}

.legal-content p {
    margin-bottom: 15px;
}

.legal-content strong {
    color: var(--white);
}

/* --- Popup --- */
.popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-speed) ease;
}

.popup.active {
    opacity: 1;
    visibility: visible;
}

.popup-content {
    background: var(--light-navy);
    padding: 40px;
    border-radius: 10px;
    border: 1px solid var(--cyan);
    text-align: center;
    max-width: 500px;
    transform: scale(0.9);
    transition: transform var(--transition-speed) ease;
}

.popup.active .popup-content {
    transform: scale(1);
}

.popup-icon {
    font-size: 4rem;
    color: var(--cyan);
    margin-bottom: 20px;
}

.popup h3 {
    margin-bottom: 15px;
}

.popup p {
    margin-bottom: 30px;
}

/* --- Animations & Keyframes --- */
@keyframes rotate-globe {
    from {
        transform: rotateY(0deg);
    }

    to {
        transform: rotateY(360deg);
    }
}

@keyframes rotate-ring1 {
    from {
        transform: rotateX(70deg) rotateY(0deg);
    }

    to {
        transform: rotateX(70deg) rotateY(360deg);
    }
}

@keyframes rotate-ring2 {
    from {
        transform: rotateX(70deg) rotateY(45deg);
    }

    to {
        transform: rotateX(70deg) rotateY(405deg);
    }
}

@keyframes rotate-ring3 {
    from {
        transform: rotateX(70deg) rotateY(90deg);
    }

    to {
        transform: rotateX(70deg) rotateY(450deg);
    }
}

@keyframes gradient-text {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

@keyframes rotate-cube {
    from {
        transform: rotateX(0) rotateY(0);
    }

    to {
        transform: rotateX(360deg) rotateY(360deg);
    }
}

/* Scroll Animations */
.animate-in {
    opacity: 0;
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.animate-in[data-animation="fade-in-up"] {
    transform: translateY(50px);
}

.animate-in[data-animation="fade-in-left"] {
    transform: translateX(-50px);
}

.animate-in[data-animation="fade-in-right"] {
    transform: translateX(50px);
}

.animate-in.is-visible {
    opacity: 1;
    transform: translate(0, 0);
}


/* --- Responsiveness (Media Queries) --- */
@media (max-width: 992px) {
    h1 {
        font-size: 2.8rem;
    }

    .hero-content h1 {
        font-size: 3rem;
    }

    h2 {
        font-size: 2rem;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        max-width: 300px;
        height: 100vh;
        background: var(--navy);
        box-shadow: -5px 0 20px rgba(0, 0, 0, 0.5);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: right var(--transition-speed) ease;
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-list {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }

    .nav-link {
        font-size: 1.2rem;
    }

    .nav-close {
        display: block;
        position: absolute;
        top: 20px;
        right: 20px;
        font-size: 2rem;
        background: none;
        border: none;
        color: var(--white);
        cursor: pointer;
    }

    .nav-toggle {
        display: block;
    }

    .header .btn-primary {
        display: none;
    }

    .hero-section {
        flex-direction: column;
        text-align: center;
        padding: 120px 0 60px;
    }

    .hero-visual {
        position: relative;
        width: 300px;
        height: 300px;
        transform: none;
        top: auto;
        right: auto;
        margin-top: 40px;
    }

    .hero-buttons {
        justify-content: center;
    }

    .about-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .about-content .section-title {
        text-align: center;
    }

    .about-content .section-title h2::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .about-stats {
        justify-content: center;
    }

    .about-visual {
        margin-top: 40px;
    }

    .calculator-wrapper {
        grid-template-columns: 1fr;
    }

    .calculator-results {
        border-left: none;
        border-top: 1px solid rgba(0, 255, 255, 0.2);
        padding-left: 0;
        padding-top: 40px;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .contact-info-panel {
        border-right: none;
        border-bottom: 1px solid rgba(0, 255, 255, 0.2);
        padding-right: 0;
        padding-bottom: 40px;
    }
}

@media (max-width: 768px) {
    .section-padding {
        padding: 80px 0;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-col-title::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .social-links {
        justify-content: center;
    }

    .footer-contact ul li {
        justify-content: center;
    }
}

@media (max-width: 576px) {
    body {
        font-size: 15px;
    }

    h1 {
        font-size: 2.2rem;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 1.8rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .contact-wrapper,
    .legal-content {
        padding: 30px;
    }

    .popup-content {
        padding: 30px 20px;
        width: 90%;
    }
}